2 * WININET - Ftp implementation
4 * Copyright 1999 Corel Corporation
5 * Copyright 2004 Mike McCormack for CodeWeavers
6 * Copyright 2004 Kevin Koltzau
11 * Copyright 2000 Andreas Mohr
12 * Copyright 2002 Jaco Greeff
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/port.h"
37 #include <sys/types.h>
38 #ifdef HAVE_SYS_SOCKET_H
39 # include <sys/socket.h>
58 #include "wine/debug.h"
61 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
63 #define DATA_PACKET_SIZE 0x2000
68 /* FTP commands with arguments. */
84 /* FTP commands without arguments. */
93 static const CHAR
*szFtpCommands
[] = {
116 static const CHAR szMonths
[] = "JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC";
117 static const WCHAR szNoAccount
[] = {'n','o','a','c','c','o','u','n','t','\0'};
119 static void FTP_CloseFileTransferHandle(LPWININETHANDLEHEADER hdr
);
120 static void FTP_CloseSessionHandle(LPWININETHANDLEHEADER hdr
);
121 static void FTP_CloseFindNextHandle(LPWININETHANDLEHEADER hdr
);
122 static BOOL
FTP_SendCommand(INT nSocket
, FTP_COMMAND ftpCmd
, LPCWSTR lpszParam
,
123 INTERNET_STATUS_CALLBACK lpfnStatusCB
, LPWININETHANDLEHEADER hdr
, DWORD dwContext
);
124 static BOOL
FTP_SendStore(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszRemoteFile
, DWORD dwType
);
125 static BOOL
FTP_GetDataSocket(LPWININETFTPSESSIONW lpwfs
, LPINT nDataSocket
);
126 static BOOL
FTP_SendData(LPWININETFTPSESSIONW lpwfs
, INT nDataSocket
, HANDLE hFile
);
127 static INT
FTP_ReceiveResponse(LPWININETFTPSESSIONW lpwfs
, DWORD dwContext
);
128 static DWORD
FTP_SendRetrieve(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszRemoteFile
, DWORD dwType
);
129 static BOOL
FTP_RetrieveFileData(LPWININETFTPSESSIONW lpwfs
, INT nDataSocket
, DWORD nBytes
, HANDLE hFile
);
130 static BOOL
FTP_InitListenSocket(LPWININETFTPSESSIONW lpwfs
);
131 static BOOL
FTP_ConnectToHost(LPWININETFTPSESSIONW lpwfs
);
132 static BOOL
FTP_SendPassword(LPWININETFTPSESSIONW lpwfs
);
133 static BOOL
FTP_SendAccount(LPWININETFTPSESSIONW lpwfs
);
134 static BOOL
FTP_SendType(LPWININETFTPSESSIONW lpwfs
, DWORD dwType
);
135 static BOOL
FTP_GetFileSize(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszRemoteFile
, DWORD
*dwSize
);
136 static BOOL
FTP_SendPort(LPWININETFTPSESSIONW lpwfs
);
137 static BOOL
FTP_DoPassive(LPWININETFTPSESSIONW lpwfs
);
138 static BOOL
FTP_SendPortOrPasv(LPWININETFTPSESSIONW lpwfs
);
139 static BOOL
FTP_ParsePermission(LPCSTR lpszPermission
, LPFILEPROPERTIESW lpfp
);
140 static BOOL
FTP_ParseNextFile(INT nSocket
, LPCWSTR lpszSearchFile
, LPFILEPROPERTIESW fileprop
);
141 static BOOL
FTP_ParseDirectory(LPWININETFTPSESSIONW lpwfs
, INT nSocket
, LPCWSTR lpszSearchFile
,
142 LPFILEPROPERTIESW
*lpafp
, LPDWORD dwfp
);
143 static HINTERNET
FTP_ReceiveFileList(LPWININETFTPSESSIONW lpwfs
, INT nSocket
, LPCWSTR lpszSearchFile
,
144 LPWIN32_FIND_DATAW lpFindFileData
, DWORD dwContext
);
145 static DWORD
FTP_SetResponseError(DWORD dwResponse
);
147 /***********************************************************************
148 * FtpPutFileA (WININET.@)
150 * Uploads a file to the FTP server
157 BOOL WINAPI
FtpPutFileA(HINTERNET hConnect
, LPCSTR lpszLocalFile
,
158 LPCSTR lpszNewRemoteFile
, DWORD dwFlags
, DWORD dwContext
)
160 LPWSTR lpwzLocalFile
;
161 LPWSTR lpwzNewRemoteFile
;
164 lpwzLocalFile
= lpszLocalFile
?WININET_strdup_AtoW(lpszLocalFile
):NULL
;
165 lpwzNewRemoteFile
= lpszNewRemoteFile
?WININET_strdup_AtoW(lpszNewRemoteFile
):NULL
;
166 ret
= FtpPutFileW(hConnect
, lpwzLocalFile
, lpwzNewRemoteFile
,
168 HeapFree(GetProcessHeap(), 0, lpwzLocalFile
);
169 HeapFree(GetProcessHeap(), 0, lpwzNewRemoteFile
);
173 /***********************************************************************
174 * FtpPutFileW (WININET.@)
176 * Uploads a file to the FTP server
183 BOOL WINAPI
FtpPutFileW(HINTERNET hConnect
, LPCWSTR lpszLocalFile
,
184 LPCWSTR lpszNewRemoteFile
, DWORD dwFlags
, DWORD dwContext
)
186 LPWININETFTPSESSIONW lpwfs
;
187 LPWININETAPPINFOW hIC
= NULL
;
190 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hConnect
);
191 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
193 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
197 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
198 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
200 WORKREQUEST workRequest
;
201 struct WORKREQ_FTPPUTFILEW
*req
= &workRequest
.u
.FtpPutFileW
;
203 workRequest
.asyncall
= FTPPUTFILEW
;
204 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
205 req
->lpszLocalFile
= WININET_strdupW(lpszLocalFile
);
206 req
->lpszNewRemoteFile
= WININET_strdupW(lpszNewRemoteFile
);
207 req
->dwFlags
= dwFlags
;
208 req
->dwContext
= dwContext
;
210 r
= INTERNET_AsyncCall(&workRequest
);
214 r
= FTP_FtpPutFileW(lpwfs
, lpszLocalFile
,
215 lpszNewRemoteFile
, dwFlags
, dwContext
);
220 WININET_Release( &lpwfs
->hdr
);
225 /***********************************************************************
226 * FTP_FtpPutFileW (Internal)
228 * Uploads a file to the FTP server
235 BOOL WINAPI
FTP_FtpPutFileW(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszLocalFile
,
236 LPCWSTR lpszNewRemoteFile
, DWORD dwFlags
, DWORD dwContext
)
239 BOOL bSuccess
= FALSE
;
240 LPWININETAPPINFOW hIC
= NULL
;
243 TRACE(" lpszLocalFile(%s) lpszNewRemoteFile(%s)\n", debugstr_w(lpszLocalFile
), debugstr_w(lpszNewRemoteFile
));
245 if (!lpszLocalFile
|| !lpszNewRemoteFile
)
247 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
251 assert( WH_HFTPSESSION
== lpwfs
->hdr
.htype
);
253 /* Clear any error information */
254 INTERNET_SetLastError(0);
255 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
257 /* Open file to be uploaded */
258 if (INVALID_HANDLE_VALUE
==
259 (hFile
= CreateFileW(lpszLocalFile
, GENERIC_READ
, 0, 0, OPEN_EXISTING
, 0, 0)))
261 INTERNET_SetLastError(ERROR_FILE_NOT_FOUND
);
265 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_SENDING_REQUEST
, NULL
, 0);
267 if (FTP_SendStore(lpwfs
, lpszNewRemoteFile
, dwFlags
))
271 /* Get data socket to server */
272 if (FTP_GetDataSocket(lpwfs
, &nDataSocket
))
274 FTP_SendData(lpwfs
, nDataSocket
, hFile
);
275 closesocket(nDataSocket
);
276 nResCode
= FTP_ReceiveResponse(lpwfs
, dwContext
);
282 FTP_SetResponseError(nResCode
);
288 if (lpwfs
->lstnSocket
!= -1)
289 closesocket(lpwfs
->lstnSocket
);
291 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
293 INTERNET_ASYNC_RESULT iar
;
295 iar
.dwResult
= (DWORD
)bSuccess
;
296 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
297 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
298 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
308 /***********************************************************************
309 * FtpSetCurrentDirectoryA (WININET.@)
311 * Change the working directory on the FTP server
318 BOOL WINAPI
FtpSetCurrentDirectoryA(HINTERNET hConnect
, LPCSTR lpszDirectory
)
320 LPWSTR lpwzDirectory
;
323 lpwzDirectory
= lpszDirectory
?WININET_strdup_AtoW(lpszDirectory
):NULL
;
324 ret
= FtpSetCurrentDirectoryW(hConnect
, lpwzDirectory
);
325 HeapFree(GetProcessHeap(), 0, lpwzDirectory
);
330 /***********************************************************************
331 * FtpSetCurrentDirectoryW (WININET.@)
333 * Change the working directory on the FTP server
340 BOOL WINAPI
FtpSetCurrentDirectoryW(HINTERNET hConnect
, LPCWSTR lpszDirectory
)
342 LPWININETFTPSESSIONW lpwfs
= NULL
;
343 LPWININETAPPINFOW hIC
= NULL
;
348 SetLastError(ERROR_INVALID_PARAMETER
);
352 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hConnect
);
353 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
355 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
359 TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory
));
361 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
362 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
364 WORKREQUEST workRequest
;
365 struct WORKREQ_FTPSETCURRENTDIRECTORYW
*req
;
367 workRequest
.asyncall
= FTPSETCURRENTDIRECTORYW
;
368 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
369 req
= &workRequest
.u
.FtpSetCurrentDirectoryW
;
370 req
->lpszDirectory
= WININET_strdupW(lpszDirectory
);
372 r
= INTERNET_AsyncCall(&workRequest
);
376 r
= FTP_FtpSetCurrentDirectoryW(lpwfs
, lpszDirectory
);
381 WININET_Release( &lpwfs
->hdr
);
387 /***********************************************************************
388 * FTP_FtpSetCurrentDirectoryW (Internal)
390 * Change the working directory on the FTP server
397 BOOL WINAPI
FTP_FtpSetCurrentDirectoryW(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszDirectory
)
400 LPWININETAPPINFOW hIC
= NULL
;
401 DWORD bSuccess
= FALSE
;
403 TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory
));
405 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
407 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
411 /* Clear any error information */
412 INTERNET_SetLastError(0);
414 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
415 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_CWD
, lpszDirectory
,
416 lpwfs
->hdr
.lpfnStatusCB
, &lpwfs
->hdr
, lpwfs
->hdr
.dwContext
))
419 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
426 FTP_SetResponseError(nResCode
);
430 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
432 INTERNET_ASYNC_RESULT iar
;
434 iar
.dwResult
= (DWORD
)bSuccess
;
435 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: ERROR_INTERNET_EXTENDED_ERROR
;
436 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
437 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
443 /***********************************************************************
444 * FtpCreateDirectoryA (WININET.@)
446 * Create new directory on the FTP server
453 BOOL WINAPI
FtpCreateDirectoryA(HINTERNET hConnect
, LPCSTR lpszDirectory
)
455 LPWSTR lpwzDirectory
;
458 lpwzDirectory
= lpszDirectory
?WININET_strdup_AtoW(lpszDirectory
):NULL
;
459 ret
= FtpCreateDirectoryW(hConnect
, lpwzDirectory
);
460 HeapFree(GetProcessHeap(), 0, lpwzDirectory
);
465 /***********************************************************************
466 * FtpCreateDirectoryW (WININET.@)
468 * Create new directory on the FTP server
475 BOOL WINAPI
FtpCreateDirectoryW(HINTERNET hConnect
, LPCWSTR lpszDirectory
)
477 LPWININETFTPSESSIONW lpwfs
;
478 LPWININETAPPINFOW hIC
= NULL
;
481 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hConnect
);
482 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
484 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
488 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
489 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
491 WORKREQUEST workRequest
;
492 struct WORKREQ_FTPCREATEDIRECTORYW
*req
;
494 workRequest
.asyncall
= FTPCREATEDIRECTORYW
;
495 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
496 req
= &workRequest
.u
.FtpCreateDirectoryW
;
497 req
->lpszDirectory
= WININET_strdupW(lpszDirectory
);
499 r
= INTERNET_AsyncCall(&workRequest
);
503 r
= FTP_FtpCreateDirectoryW(lpwfs
, lpszDirectory
);
507 WININET_Release( &lpwfs
->hdr
);
513 /***********************************************************************
514 * FTP_FtpCreateDirectoryW (Internal)
516 * Create new directory on the FTP server
523 BOOL WINAPI
FTP_FtpCreateDirectoryW(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszDirectory
)
526 BOOL bSuccess
= FALSE
;
527 LPWININETAPPINFOW hIC
= NULL
;
529 TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory
));
531 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
533 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
537 /* Clear any error information */
538 INTERNET_SetLastError(0);
540 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_MKD
, lpszDirectory
, 0, 0, 0))
543 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
549 FTP_SetResponseError(nResCode
);
553 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
554 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
556 INTERNET_ASYNC_RESULT iar
;
558 iar
.dwResult
= (DWORD
)bSuccess
;
559 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
560 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
561 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
567 /***********************************************************************
568 * FtpFindFirstFileA (WININET.@)
570 * Search the specified directory
573 * HINTERNET on success
577 HINTERNET WINAPI
FtpFindFirstFileA(HINTERNET hConnect
,
578 LPCSTR lpszSearchFile
, LPWIN32_FIND_DATAA lpFindFileData
, DWORD dwFlags
, DWORD dwContext
)
580 LPWSTR lpwzSearchFile
;
581 WIN32_FIND_DATAW wfd
;
582 LPWIN32_FIND_DATAW lpFindFileDataW
;
585 lpwzSearchFile
= lpszSearchFile
?WININET_strdup_AtoW(lpszSearchFile
):NULL
;
586 lpFindFileDataW
= lpFindFileData
?&wfd
:NULL
;
587 ret
= FtpFindFirstFileW(hConnect
, lpwzSearchFile
, lpFindFileDataW
, dwFlags
, dwContext
);
588 HeapFree(GetProcessHeap(), 0, lpwzSearchFile
);
591 WININET_find_data_WtoA(lpFindFileDataW
, lpFindFileData
);
597 /***********************************************************************
598 * FtpFindFirstFileW (WININET.@)
600 * Search the specified directory
603 * HINTERNET on success
607 HINTERNET WINAPI
FtpFindFirstFileW(HINTERNET hConnect
,
608 LPCWSTR lpszSearchFile
, LPWIN32_FIND_DATAW lpFindFileData
, DWORD dwFlags
, DWORD dwContext
)
610 LPWININETFTPSESSIONW lpwfs
;
611 LPWININETAPPINFOW hIC
= NULL
;
614 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hConnect
);
615 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
617 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
621 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
622 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
624 WORKREQUEST workRequest
;
625 struct WORKREQ_FTPFINDFIRSTFILEW
*req
;
627 workRequest
.asyncall
= FTPFINDFIRSTFILEW
;
628 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
629 req
= &workRequest
.u
.FtpFindFirstFileW
;
630 req
->lpszSearchFile
= (lpszSearchFile
== NULL
) ? NULL
: WININET_strdupW(lpszSearchFile
);
631 req
->lpFindFileData
= lpFindFileData
;
632 req
->dwFlags
= dwFlags
;
633 req
->dwContext
= dwContext
;
635 INTERNET_AsyncCall(&workRequest
);
640 r
= FTP_FtpFindFirstFileW(lpwfs
, lpszSearchFile
, lpFindFileData
,
645 WININET_Release( &lpwfs
->hdr
);
651 /***********************************************************************
652 * FTP_FtpFindFirstFileW (Internal)
654 * Search the specified directory
657 * HINTERNET on success
661 HINTERNET WINAPI
FTP_FtpFindFirstFileW(LPWININETFTPSESSIONW lpwfs
,
662 LPCWSTR lpszSearchFile
, LPWIN32_FIND_DATAW lpFindFileData
, DWORD dwFlags
, DWORD dwContext
)
665 LPWININETAPPINFOW hIC
= NULL
;
666 HINTERNET hFindNext
= NULL
;
670 assert(WH_HFTPSESSION
== lpwfs
->hdr
.htype
);
672 /* Clear any error information */
673 INTERNET_SetLastError(0);
675 if (!FTP_InitListenSocket(lpwfs
))
678 if (!FTP_SendType(lpwfs
, INTERNET_FLAG_TRANSFER_ASCII
))
681 if (!FTP_SendPortOrPasv(lpwfs
))
684 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
685 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_LIST
, NULL
,
686 lpwfs
->hdr
.lpfnStatusCB
, &lpwfs
->hdr
, lpwfs
->hdr
.dwContext
))
689 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
692 if (nResCode
== 125 || nResCode
== 150)
696 /* Get data socket to server */
697 if (FTP_GetDataSocket(lpwfs
, &nDataSocket
))
699 hFindNext
= FTP_ReceiveFileList(lpwfs
, nDataSocket
, lpszSearchFile
, lpFindFileData
, dwContext
);
700 closesocket(nDataSocket
);
701 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
702 if (nResCode
!= 226 && nResCode
!= 250)
703 INTERNET_SetLastError(ERROR_NO_MORE_FILES
);
707 FTP_SetResponseError(nResCode
);
711 if (lpwfs
->lstnSocket
!= -1)
712 closesocket(lpwfs
->lstnSocket
);
714 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
716 INTERNET_ASYNC_RESULT iar
;
720 iar
.dwResult
= (DWORD
)hFindNext
;
721 iar
.dwError
= ERROR_SUCCESS
;
722 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_HANDLE_CREATED
,
723 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
726 iar
.dwResult
= (DWORD
)hFindNext
;
727 iar
.dwError
= hFindNext
? ERROR_SUCCESS
: INTERNET_GetLastError();
728 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
729 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
736 /***********************************************************************
737 * FtpGetCurrentDirectoryA (WININET.@)
739 * Retrieves the current directory
746 BOOL WINAPI
FtpGetCurrentDirectoryA(HINTERNET hFtpSession
, LPSTR lpszCurrentDirectory
,
747 LPDWORD lpdwCurrentDirectory
)
753 if(lpdwCurrentDirectory
) {
754 len
= *lpdwCurrentDirectory
;
755 if(lpszCurrentDirectory
)
757 dir
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
760 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
765 ret
= FtpGetCurrentDirectoryW(hFtpSession
, lpszCurrentDirectory
?dir
:NULL
, lpdwCurrentDirectory
?&len
:NULL
);
766 if(lpdwCurrentDirectory
) {
767 *lpdwCurrentDirectory
= len
;
768 if(lpszCurrentDirectory
) {
769 WideCharToMultiByte(CP_ACP
, 0, dir
, len
, lpszCurrentDirectory
, *lpdwCurrentDirectory
, NULL
, NULL
);
770 HeapFree(GetProcessHeap(), 0, dir
);
777 /***********************************************************************
778 * FtpGetCurrentDirectoryW (WININET.@)
780 * Retrieves the current directory
787 BOOL WINAPI
FtpGetCurrentDirectoryW(HINTERNET hFtpSession
, LPWSTR lpszCurrentDirectory
,
788 LPDWORD lpdwCurrentDirectory
)
790 LPWININETFTPSESSIONW lpwfs
;
791 LPWININETAPPINFOW hIC
= NULL
;
794 TRACE("len(%ld)\n", *lpdwCurrentDirectory
);
796 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hFtpSession
);
797 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
799 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
803 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
804 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
806 WORKREQUEST workRequest
;
807 struct WORKREQ_FTPGETCURRENTDIRECTORYW
*req
;
809 workRequest
.asyncall
= FTPGETCURRENTDIRECTORYW
;
810 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
811 req
= &workRequest
.u
.FtpGetCurrentDirectoryW
;
812 req
->lpszDirectory
= lpszCurrentDirectory
;
813 req
->lpdwDirectory
= lpdwCurrentDirectory
;
815 r
= INTERNET_AsyncCall(&workRequest
);
819 r
= FTP_FtpGetCurrentDirectoryW(lpwfs
, lpszCurrentDirectory
,
820 lpdwCurrentDirectory
);
825 WININET_Release( &lpwfs
->hdr
);
831 /***********************************************************************
832 * FTP_FtpGetCurrentDirectoryA (Internal)
834 * Retrieves the current directory
841 BOOL WINAPI
FTP_FtpGetCurrentDirectoryW(LPWININETFTPSESSIONW lpwfs
, LPWSTR lpszCurrentDirectory
,
842 LPDWORD lpdwCurrentDirectory
)
845 LPWININETAPPINFOW hIC
= NULL
;
846 DWORD bSuccess
= FALSE
;
848 TRACE("len(%ld)\n", *lpdwCurrentDirectory
);
850 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
852 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
856 /* Clear any error information */
857 INTERNET_SetLastError(0);
859 ZeroMemory(lpszCurrentDirectory
, *lpdwCurrentDirectory
);
861 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
862 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PWD
, NULL
,
863 lpwfs
->hdr
.lpfnStatusCB
, &lpwfs
->hdr
, lpwfs
->hdr
.dwContext
))
866 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
869 if (nResCode
== 257) /* Extract directory name */
871 DWORD firstpos
, lastpos
, len
;
872 LPWSTR lpszResponseBuffer
= WININET_strdup_AtoW(INTERNET_GetResponseBuffer());
874 for (firstpos
= 0, lastpos
= 0; lpszResponseBuffer
[lastpos
]; lastpos
++)
876 if ('"' == lpszResponseBuffer
[lastpos
])
885 len
= lastpos
- firstpos
- 1;
886 lstrcpynW(lpszCurrentDirectory
, &lpszResponseBuffer
[firstpos
+1], *lpdwCurrentDirectory
);
887 HeapFree(GetProcessHeap(), 0, lpszResponseBuffer
);
888 *lpdwCurrentDirectory
= len
;
892 FTP_SetResponseError(nResCode
);
896 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
898 INTERNET_ASYNC_RESULT iar
;
900 iar
.dwResult
= (DWORD
)bSuccess
;
901 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: ERROR_INTERNET_EXTENDED_ERROR
;
902 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
903 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
906 return (DWORD
) bSuccess
;
909 /***********************************************************************
910 * FtpOpenFileA (WININET.@)
912 * Open a remote file for writing or reading
915 * HINTERNET handle on success
919 HINTERNET WINAPI
FtpOpenFileA(HINTERNET hFtpSession
,
920 LPCSTR lpszFileName
, DWORD fdwAccess
, DWORD dwFlags
,
926 lpwzFileName
= lpszFileName
?WININET_strdup_AtoW(lpszFileName
):NULL
;
927 ret
= FtpOpenFileW(hFtpSession
, lpwzFileName
, fdwAccess
, dwFlags
, dwContext
);
928 HeapFree(GetProcessHeap(), 0, lpwzFileName
);
933 /***********************************************************************
934 * FtpOpenFileW (WININET.@)
936 * Open a remote file for writing or reading
939 * HINTERNET handle on success
943 HINTERNET WINAPI
FtpOpenFileW(HINTERNET hFtpSession
,
944 LPCWSTR lpszFileName
, DWORD fdwAccess
, DWORD dwFlags
,
947 LPWININETFTPSESSIONW lpwfs
;
948 LPWININETAPPINFOW hIC
= NULL
;
951 TRACE("(%p,%s,0x%08lx,0x%08lx,0x%08lx)\n", hFtpSession
,
952 debugstr_w(lpszFileName
), fdwAccess
, dwFlags
, dwContext
);
954 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hFtpSession
);
955 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
957 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
961 if (lpwfs
->download_in_progress
!= NULL
) {
962 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
965 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
966 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
968 WORKREQUEST workRequest
;
969 struct WORKREQ_FTPOPENFILEW
*req
;
971 workRequest
.asyncall
= FTPOPENFILEW
;
972 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
973 req
= &workRequest
.u
.FtpOpenFileW
;
974 req
->lpszFilename
= WININET_strdupW(lpszFileName
);
975 req
->dwAccess
= fdwAccess
;
976 req
->dwFlags
= dwFlags
;
977 req
->dwContext
= dwContext
;
979 INTERNET_AsyncCall(&workRequest
);
984 r
= FTP_FtpOpenFileW(lpwfs
, lpszFileName
, fdwAccess
, dwFlags
, dwContext
);
989 WININET_Release( &lpwfs
->hdr
);
995 /***********************************************************************
996 * FTP_FtpOpenFileW (Internal)
998 * Open a remote file for writing or reading
1001 * HINTERNET handle on success
1005 HINTERNET
FTP_FtpOpenFileW(LPWININETFTPSESSIONW lpwfs
,
1006 LPCWSTR lpszFileName
, DWORD fdwAccess
, DWORD dwFlags
,
1010 BOOL bSuccess
= FALSE
;
1011 LPWININETFILE lpwh
= NULL
;
1012 LPWININETAPPINFOW hIC
= NULL
;
1013 HINTERNET handle
= NULL
;
1017 assert (WH_HFTPSESSION
== lpwfs
->hdr
.htype
);
1019 /* Clear any error information */
1020 INTERNET_SetLastError(0);
1022 if (GENERIC_READ
== fdwAccess
)
1024 /* Set up socket to retrieve data */
1025 bSuccess
= FTP_SendRetrieve(lpwfs
, lpszFileName
, dwFlags
);
1027 else if (GENERIC_WRITE
== fdwAccess
)
1029 /* Set up socket to send data */
1030 bSuccess
= FTP_SendStore(lpwfs
, lpszFileName
, dwFlags
);
1033 /* Get data socket to server */
1034 if (bSuccess
&& FTP_GetDataSocket(lpwfs
, &nDataSocket
))
1036 lpwh
= HeapAlloc(GetProcessHeap(), 0, sizeof(WININETFILE
));
1037 lpwh
->hdr
.htype
= WH_HFILE
;
1038 lpwh
->hdr
.dwFlags
= dwFlags
;
1039 lpwh
->hdr
.dwContext
= dwContext
;
1040 lpwh
->hdr
.lpwhparent
= WININET_AddRef( &lpwfs
->hdr
);
1041 lpwh
->hdr
.dwRefCount
= 1;
1042 lpwh
->hdr
.destroy
= FTP_CloseFileTransferHandle
;
1043 lpwh
->hdr
.lpfnStatusCB
= lpwfs
->hdr
.lpfnStatusCB
;
1044 lpwh
->nDataSocket
= nDataSocket
;
1045 lpwh
->session_deleted
= FALSE
;
1047 handle
= WININET_AllocHandle( &lpwh
->hdr
);
1051 /* Indicate that a download is currently in progress */
1052 lpwfs
->download_in_progress
= lpwh
;
1055 if (lpwfs
->lstnSocket
!= -1)
1056 closesocket(lpwfs
->lstnSocket
);
1058 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1059 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1061 INTERNET_ASYNC_RESULT iar
;
1065 iar
.dwResult
= (DWORD
)handle
;
1066 iar
.dwError
= ERROR_SUCCESS
;
1067 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_HANDLE_CREATED
,
1068 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1071 iar
.dwResult
= (DWORD
)bSuccess
;
1072 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1073 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1074 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1079 WININET_Release( &lpwh
->hdr
);
1085 /***********************************************************************
1086 * FtpGetFileA (WININET.@)
1088 * Retrieve file from the FTP server
1095 BOOL WINAPI
FtpGetFileA(HINTERNET hInternet
, LPCSTR lpszRemoteFile
, LPCSTR lpszNewFile
,
1096 BOOL fFailIfExists
, DWORD dwLocalFlagsAttribute
, DWORD dwInternetFlags
,
1099 LPWSTR lpwzRemoteFile
;
1103 lpwzRemoteFile
= lpszRemoteFile
?WININET_strdup_AtoW(lpszRemoteFile
):NULL
;
1104 lpwzNewFile
= lpszNewFile
?WININET_strdup_AtoW(lpszNewFile
):NULL
;
1105 ret
= FtpGetFileW(hInternet
, lpwzRemoteFile
, lpwzNewFile
, fFailIfExists
,
1106 dwLocalFlagsAttribute
, dwInternetFlags
, dwContext
);
1107 HeapFree(GetProcessHeap(), 0, lpwzRemoteFile
);
1108 HeapFree(GetProcessHeap(), 0, lpwzNewFile
);
1113 /***********************************************************************
1114 * FtpGetFileW (WININET.@)
1116 * Retrieve file from the FTP server
1123 BOOL WINAPI
FtpGetFileW(HINTERNET hInternet
, LPCWSTR lpszRemoteFile
, LPCWSTR lpszNewFile
,
1124 BOOL fFailIfExists
, DWORD dwLocalFlagsAttribute
, DWORD dwInternetFlags
,
1127 LPWININETFTPSESSIONW lpwfs
;
1128 LPWININETAPPINFOW hIC
= NULL
;
1131 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hInternet
);
1132 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1134 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1138 if (lpwfs
->download_in_progress
!= NULL
) {
1139 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
1143 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1144 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1146 WORKREQUEST workRequest
;
1147 struct WORKREQ_FTPGETFILEW
*req
;
1149 workRequest
.asyncall
= FTPGETFILEW
;
1150 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
1151 req
= &workRequest
.u
.FtpGetFileW
;
1152 req
->lpszRemoteFile
= WININET_strdupW(lpszRemoteFile
);
1153 req
->lpszNewFile
= WININET_strdupW(lpszNewFile
);
1154 req
->dwLocalFlagsAttribute
= dwLocalFlagsAttribute
;
1155 req
->fFailIfExists
= fFailIfExists
;
1156 req
->dwFlags
= dwInternetFlags
;
1157 req
->dwContext
= dwContext
;
1159 r
= INTERNET_AsyncCall(&workRequest
);
1163 r
= FTP_FtpGetFileW(lpwfs
, lpszRemoteFile
, lpszNewFile
,
1164 fFailIfExists
, dwLocalFlagsAttribute
, dwInternetFlags
, dwContext
);
1169 WININET_Release( &lpwfs
->hdr
);
1175 /***********************************************************************
1176 * FTP_FtpGetFileW (Internal)
1178 * Retrieve file from the FTP server
1185 BOOL WINAPI
FTP_FtpGetFileW(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszRemoteFile
, LPCWSTR lpszNewFile
,
1186 BOOL fFailIfExists
, DWORD dwLocalFlagsAttribute
, DWORD dwInternetFlags
,
1190 BOOL bSuccess
= FALSE
;
1192 LPWININETAPPINFOW hIC
= NULL
;
1194 TRACE("lpszRemoteFile(%s) lpszNewFile(%s)\n", debugstr_w(lpszRemoteFile
), debugstr_w(lpszNewFile
));
1196 assert (WH_HFTPSESSION
== lpwfs
->hdr
.htype
);
1198 /* Clear any error information */
1199 INTERNET_SetLastError(0);
1201 /* Ensure we can write to lpszNewfile by opening it */
1202 hFile
= CreateFileW(lpszNewFile
, GENERIC_WRITE
, 0, 0, fFailIfExists
?
1203 CREATE_NEW
: CREATE_ALWAYS
, dwLocalFlagsAttribute
, 0);
1204 if (INVALID_HANDLE_VALUE
== hFile
)
1207 /* Set up socket to retrieve data */
1208 nBytes
= FTP_SendRetrieve(lpwfs
, lpszRemoteFile
, dwInternetFlags
);
1214 /* Get data socket to server */
1215 if (FTP_GetDataSocket(lpwfs
, &nDataSocket
))
1220 FTP_RetrieveFileData(lpwfs
, nDataSocket
, nBytes
, hFile
);
1221 nResCode
= FTP_ReceiveResponse(lpwfs
, dwContext
);
1224 if (nResCode
== 226)
1227 FTP_SetResponseError(nResCode
);
1229 closesocket(nDataSocket
);
1234 if (lpwfs
->lstnSocket
!= -1)
1235 closesocket(lpwfs
->lstnSocket
);
1240 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1241 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1243 INTERNET_ASYNC_RESULT iar
;
1245 iar
.dwResult
= (DWORD
)bSuccess
;
1246 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1247 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1248 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1254 /***********************************************************************
1255 * FtpGetFileSize (WININET.@)
1257 DWORD WINAPI
FtpGetFileSize( HINTERNET hFile
, LPDWORD lpdwFileSizeHigh
)
1259 FIXME("(%p, %p)\n", hFile
, lpdwFileSizeHigh
);
1261 if (lpdwFileSizeHigh
)
1262 *lpdwFileSizeHigh
= 0;
1267 /***********************************************************************
1268 * FtpDeleteFileA (WININET.@)
1270 * Delete a file on the ftp server
1277 BOOL WINAPI
FtpDeleteFileA(HINTERNET hFtpSession
, LPCSTR lpszFileName
)
1279 LPWSTR lpwzFileName
;
1282 lpwzFileName
= lpszFileName
?WININET_strdup_AtoW(lpszFileName
):NULL
;
1283 ret
= FtpDeleteFileW(hFtpSession
, lpwzFileName
);
1284 HeapFree(GetProcessHeap(), 0, lpwzFileName
);
1288 /***********************************************************************
1289 * FtpDeleteFileW (WININET.@)
1291 * Delete a file on the ftp server
1298 BOOL WINAPI
FtpDeleteFileW(HINTERNET hFtpSession
, LPCWSTR lpszFileName
)
1300 LPWININETFTPSESSIONW lpwfs
;
1301 LPWININETAPPINFOW hIC
= NULL
;
1304 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hFtpSession
);
1305 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1307 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1311 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1312 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1314 WORKREQUEST workRequest
;
1315 struct WORKREQ_FTPDELETEFILEW
*req
;
1317 workRequest
.asyncall
= FTPDELETEFILEW
;
1318 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
1319 req
= &workRequest
.u
.FtpDeleteFileW
;
1320 req
->lpszFilename
= WININET_strdupW(lpszFileName
);
1322 r
= INTERNET_AsyncCall(&workRequest
);
1326 r
= FTP_FtpDeleteFileW(hFtpSession
, lpszFileName
);
1331 WININET_Release( &lpwfs
->hdr
);
1336 /***********************************************************************
1337 * FTP_FtpDeleteFileW (Internal)
1339 * Delete a file on the ftp server
1346 BOOL
FTP_FtpDeleteFileW(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszFileName
)
1349 BOOL bSuccess
= FALSE
;
1350 LPWININETAPPINFOW hIC
= NULL
;
1352 TRACE("%p\n", lpwfs
);
1354 assert (WH_HFTPSESSION
== lpwfs
->hdr
.htype
);
1356 /* Clear any error information */
1357 INTERNET_SetLastError(0);
1359 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_DELE
, lpszFileName
, 0, 0, 0))
1362 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1365 if (nResCode
== 250)
1368 FTP_SetResponseError(nResCode
);
1371 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1372 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1374 INTERNET_ASYNC_RESULT iar
;
1376 iar
.dwResult
= (DWORD
)bSuccess
;
1377 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1378 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1379 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1386 /***********************************************************************
1387 * FtpRemoveDirectoryA (WININET.@)
1389 * Remove a directory on the ftp server
1396 BOOL WINAPI
FtpRemoveDirectoryA(HINTERNET hFtpSession
, LPCSTR lpszDirectory
)
1398 LPWSTR lpwzDirectory
;
1401 lpwzDirectory
= lpszDirectory
?WININET_strdup_AtoW(lpszDirectory
):NULL
;
1402 ret
= FtpRemoveDirectoryW(hFtpSession
, lpwzDirectory
);
1403 HeapFree(GetProcessHeap(), 0, lpwzDirectory
);
1407 /***********************************************************************
1408 * FtpRemoveDirectoryW (WININET.@)
1410 * Remove a directory on the ftp server
1417 BOOL WINAPI
FtpRemoveDirectoryW(HINTERNET hFtpSession
, LPCWSTR lpszDirectory
)
1419 LPWININETFTPSESSIONW lpwfs
;
1420 LPWININETAPPINFOW hIC
= NULL
;
1423 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hFtpSession
);
1424 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1426 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1430 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1431 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1433 WORKREQUEST workRequest
;
1434 struct WORKREQ_FTPREMOVEDIRECTORYW
*req
;
1436 workRequest
.asyncall
= FTPREMOVEDIRECTORYW
;
1437 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
1438 req
= &workRequest
.u
.FtpRemoveDirectoryW
;
1439 req
->lpszDirectory
= WININET_strdupW(lpszDirectory
);
1441 r
= INTERNET_AsyncCall(&workRequest
);
1445 r
= FTP_FtpRemoveDirectoryW(lpwfs
, lpszDirectory
);
1450 WININET_Release( &lpwfs
->hdr
);
1455 /***********************************************************************
1456 * FTP_FtpRemoveDirectoryW (Internal)
1458 * Remove a directory on the ftp server
1465 BOOL
FTP_FtpRemoveDirectoryW(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszDirectory
)
1468 BOOL bSuccess
= FALSE
;
1469 LPWININETAPPINFOW hIC
= NULL
;
1473 assert (WH_HFTPSESSION
== lpwfs
->hdr
.htype
);
1475 /* Clear any error information */
1476 INTERNET_SetLastError(0);
1478 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RMD
, lpszDirectory
, 0, 0, 0))
1481 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1484 if (nResCode
== 250)
1487 FTP_SetResponseError(nResCode
);
1491 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1492 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1494 INTERNET_ASYNC_RESULT iar
;
1496 iar
.dwResult
= (DWORD
)bSuccess
;
1497 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1498 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1499 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1506 /***********************************************************************
1507 * FtpRenameFileA (WININET.@)
1509 * Rename a file on the ftp server
1516 BOOL WINAPI
FtpRenameFileA(HINTERNET hFtpSession
, LPCSTR lpszSrc
, LPCSTR lpszDest
)
1522 lpwzSrc
= lpszSrc
?WININET_strdup_AtoW(lpszSrc
):NULL
;
1523 lpwzDest
= lpszDest
?WININET_strdup_AtoW(lpszDest
):NULL
;
1524 ret
= FtpRenameFileW(hFtpSession
, lpwzSrc
, lpwzDest
);
1525 HeapFree(GetProcessHeap(), 0, lpwzSrc
);
1526 HeapFree(GetProcessHeap(), 0, lpwzDest
);
1530 /***********************************************************************
1531 * FtpRenameFileW (WININET.@)
1533 * Rename a file on the ftp server
1540 BOOL WINAPI
FtpRenameFileW(HINTERNET hFtpSession
, LPCWSTR lpszSrc
, LPCWSTR lpszDest
)
1542 LPWININETFTPSESSIONW lpwfs
;
1543 LPWININETAPPINFOW hIC
= NULL
;
1546 lpwfs
= (LPWININETFTPSESSIONW
) WININET_GetObject( hFtpSession
);
1547 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1549 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1553 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1554 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1556 WORKREQUEST workRequest
;
1557 struct WORKREQ_FTPRENAMEFILEW
*req
;
1559 workRequest
.asyncall
= FTPRENAMEFILEW
;
1560 workRequest
.hdr
= WININET_AddRef( &lpwfs
->hdr
);
1561 req
= &workRequest
.u
.FtpRenameFileW
;
1562 req
->lpszSrcFile
= WININET_strdupW(lpszSrc
);
1563 req
->lpszDestFile
= WININET_strdupW(lpszDest
);
1565 r
= INTERNET_AsyncCall(&workRequest
);
1569 r
= FTP_FtpRenameFileW(hFtpSession
, lpszSrc
, lpszDest
);
1574 WININET_Release( &lpwfs
->hdr
);
1579 /***********************************************************************
1580 * FTP_FtpRenameFileA (Internal)
1582 * Rename a file on the ftp server
1589 BOOL
FTP_FtpRenameFileW( LPWININETFTPSESSIONW lpwfs
,
1590 LPCWSTR lpszSrc
, LPCWSTR lpszDest
)
1593 BOOL bSuccess
= FALSE
;
1594 LPWININETAPPINFOW hIC
= NULL
;
1598 assert (WH_HFTPSESSION
== lpwfs
->hdr
.htype
);
1600 /* Clear any error information */
1601 INTERNET_SetLastError(0);
1603 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RNFR
, lpszSrc
, 0, 0, 0))
1606 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1607 if (nResCode
== 350)
1609 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RNTO
, lpszDest
, 0, 0, 0))
1612 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1615 if (nResCode
== 250)
1618 FTP_SetResponseError(nResCode
);
1621 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1622 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1624 INTERNET_ASYNC_RESULT iar
;
1626 iar
.dwResult
= (DWORD
)bSuccess
;
1627 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1628 SendAsyncCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1629 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1635 /***********************************************************************
1636 * FtpCommandA (WININET.@)
1638 BOOL WINAPI
FtpCommandA( HINTERNET hConnect
, BOOL fExpectResponse
, DWORD dwFlags
,
1639 LPCSTR lpszCommand
, DWORD_PTR dwContext
, HINTERNET
* phFtpCommand
)
1641 FIXME("%p %d 0x%08lx %s 0x%08lx %p\n", hConnect
, fExpectResponse
, dwFlags
,
1642 debugstr_a(lpszCommand
), dwContext
, phFtpCommand
);
1647 /***********************************************************************
1648 * FtpCommandW (WININET.@)
1650 BOOL WINAPI
FtpCommandW( HINTERNET hConnect
, BOOL fExpectResponse
, DWORD dwFlags
,
1651 LPCWSTR lpszCommand
, DWORD_PTR dwContext
, HINTERNET
* phFtpCommand
)
1653 FIXME("%p %d 0x%08lx %s 0x%08lx %p\n", hConnect
, fExpectResponse
, dwFlags
,
1654 debugstr_w(lpszCommand
), dwContext
, phFtpCommand
);
1659 /***********************************************************************
1660 * FTP_Connect (internal)
1662 * Connect to a ftp server
1665 * HINTERNET a session handle on success
1670 HINTERNET
FTP_Connect(LPWININETAPPINFOW hIC
, LPCWSTR lpszServerName
,
1671 INTERNET_PORT nServerPort
, LPCWSTR lpszUserName
,
1672 LPCWSTR lpszPassword
, DWORD dwFlags
, DWORD dwContext
,
1673 DWORD dwInternalFlags
)
1675 static const WCHAR szDefaultUsername
[] = {'a','n','o','n','y','m','o','u','s','\0'};
1676 static const WCHAR szDefaultPassword
[] = {'u','s','e','r','@','s','e','r','v','e','r','\0'};
1677 static const WCHAR szEmpty
[] = {'\0'};
1678 struct sockaddr_in socketAddr
;
1681 BOOL bSuccess
= FALSE
;
1682 LPWININETFTPSESSIONW lpwfs
= NULL
;
1683 HINTERNET handle
= NULL
;
1685 TRACE("%p Server(%s) Port(%d) User(%s) Paswd(%s)\n",
1686 hIC
, debugstr_w(lpszServerName
),
1687 nServerPort
, debugstr_w(lpszUserName
), debugstr_w(lpszPassword
));
1689 assert( hIC
->hdr
.htype
== WH_HINIT
);
1691 if (NULL
== lpszUserName
&& NULL
!= lpszPassword
)
1693 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1697 lpwfs
= HeapAlloc(GetProcessHeap(), 0, sizeof(WININETFTPSESSIONW
));
1700 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1704 if (nServerPort
== INTERNET_INVALID_PORT_NUMBER
)
1705 nServerPort
= INTERNET_DEFAULT_FTP_PORT
;
1707 lpwfs
->hdr
.htype
= WH_HFTPSESSION
;
1708 lpwfs
->hdr
.lpwhparent
= WININET_AddRef( &hIC
->hdr
);
1709 lpwfs
->hdr
.dwFlags
= dwFlags
;
1710 lpwfs
->hdr
.dwContext
= dwContext
;
1711 lpwfs
->hdr
.dwInternalFlags
= dwInternalFlags
;
1712 lpwfs
->hdr
.dwRefCount
= 1;
1713 lpwfs
->hdr
.destroy
= FTP_CloseSessionHandle
;
1714 lpwfs
->hdr
.lpfnStatusCB
= hIC
->hdr
.lpfnStatusCB
;
1715 lpwfs
->download_in_progress
= NULL
;
1717 handle
= WININET_AllocHandle( &lpwfs
->hdr
);
1720 ERR("Failed to alloc handle\n");
1721 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1725 if(hIC
->lpszProxy
&& hIC
->dwAccessType
== INTERNET_OPEN_TYPE_PROXY
) {
1726 if(strchrW(hIC
->lpszProxy
, ' '))
1727 FIXME("Several proxies not implemented.\n");
1728 if(hIC
->lpszProxyBypass
)
1729 FIXME("Proxy bypass is ignored.\n");
1731 if ( !lpszUserName
) {
1732 lpwfs
->lpszUserName
= WININET_strdupW(szDefaultUsername
);
1733 lpwfs
->lpszPassword
= WININET_strdupW(szDefaultPassword
);
1736 lpwfs
->lpszUserName
= WININET_strdupW(lpszUserName
);
1739 lpwfs
->lpszPassword
= WININET_strdupW(lpszPassword
);
1741 lpwfs
->lpszPassword
= WININET_strdupW(szEmpty
);
1744 /* Don't send a handle created callback if this handle was created with InternetOpenUrl */
1745 if (!(lpwfs
->hdr
.dwInternalFlags
& INET_OPENURL
))
1747 INTERNET_ASYNC_RESULT iar
;
1749 iar
.dwResult
= (DWORD
)handle
;
1750 iar
.dwError
= ERROR_SUCCESS
;
1752 SendAsyncCallback(&hIC
->hdr
, dwContext
,
1753 INTERNET_STATUS_HANDLE_CREATED
, &iar
,
1754 sizeof(INTERNET_ASYNC_RESULT
));
1757 SendAsyncCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_RESOLVING_NAME
,
1758 (LPWSTR
) lpszServerName
, strlenW(lpszServerName
));
1760 if (!GetAddress(lpszServerName
, nServerPort
, &socketAddr
))
1762 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED
);
1766 SendAsyncCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_NAME_RESOLVED
,
1767 (LPWSTR
) lpszServerName
, strlenW(lpszServerName
));
1769 nsocket
= socket(AF_INET
,SOCK_STREAM
,0);
1772 INTERNET_SetLastError(ERROR_INTERNET_CANNOT_CONNECT
);
1776 SendAsyncCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_CONNECTING_TO_SERVER
,
1777 &socketAddr
, sizeof(struct sockaddr_in
));
1779 if (connect(nsocket
, (struct sockaddr
*)&socketAddr
, sizeof(socketAddr
)) < 0)
1781 ERR("Unable to connect (%s)\n", strerror(errno
));
1782 INTERNET_SetLastError(ERROR_INTERNET_CANNOT_CONNECT
);
1786 TRACE("Connected to server\n");
1787 lpwfs
->sndSocket
= nsocket
;
1788 SendAsyncCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_CONNECTED_TO_SERVER
,
1789 &socketAddr
, sizeof(struct sockaddr_in
));
1791 sock_namelen
= sizeof(lpwfs
->socketAddress
);
1792 getsockname(nsocket
, (struct sockaddr
*) &lpwfs
->socketAddress
, &sock_namelen
);
1794 if (FTP_ConnectToHost(lpwfs
))
1796 TRACE("Successfully logged into server\n");
1802 if (!bSuccess
&& nsocket
== -1)
1803 closesocket(nsocket
);
1805 if (!bSuccess
&& lpwfs
)
1807 HeapFree(GetProcessHeap(), 0, lpwfs
);
1808 WININET_FreeHandle( handle
);
1812 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1814 INTERNET_ASYNC_RESULT iar
;
1816 iar
.dwResult
= (DWORD
)lpwfs
;
1817 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1818 SendAsyncCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1819 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1826 /***********************************************************************
1827 * FTP_ConnectToHost (internal)
1829 * Connect to a ftp server
1836 static BOOL
FTP_ConnectToHost(LPWININETFTPSESSIONW lpwfs
)
1839 BOOL bSuccess
= FALSE
;
1842 FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1844 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_USER
, lpwfs
->lpszUserName
, 0, 0, 0))
1847 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1850 /* Login successful... */
1851 if (nResCode
== 230)
1853 /* User name okay, need password... */
1854 else if (nResCode
== 331)
1855 bSuccess
= FTP_SendPassword(lpwfs
);
1856 /* Need account for login... */
1857 else if (nResCode
== 332)
1858 bSuccess
= FTP_SendAccount(lpwfs
);
1860 FTP_SetResponseError(nResCode
);
1863 TRACE("Returning %d\n", bSuccess
);
1869 /***********************************************************************
1870 * FTP_SendCommandA (internal)
1872 * Send command to server
1879 static BOOL
FTP_SendCommandA(INT nSocket
, FTP_COMMAND ftpCmd
, LPCSTR lpszParam
,
1880 INTERNET_STATUS_CALLBACK lpfnStatusCB
, LPWININETHANDLEHEADER hdr
, DWORD dwContext
)
1884 DWORD nBytesSent
= 0;
1888 TRACE("%d: (%s) %d\n", ftpCmd
, lpszParam
, nSocket
);
1892 HINTERNET hHandle
= WININET_FindHandle( hdr
);
1895 lpfnStatusCB(hHandle
, dwContext
, INTERNET_STATUS_SENDING_REQUEST
, NULL
, 0);
1896 WININET_Release( hdr
);
1900 dwParamLen
= lpszParam
?strlen(lpszParam
)+1:0;
1901 len
= dwParamLen
+ strlen(szFtpCommands
[ftpCmd
]) + strlen(szCRLF
);
1902 if (NULL
== (buf
= HeapAlloc(GetProcessHeap(), 0, len
+1)))
1904 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1907 sprintf(buf
, "%s%s%s%s", szFtpCommands
[ftpCmd
], dwParamLen
? " " : "",
1908 dwParamLen
? lpszParam
: "", szCRLF
);
1910 TRACE("Sending (%s) len(%ld)\n", buf
, len
);
1911 while((nBytesSent
< len
) && (nRC
!= -1))
1913 nRC
= send(nSocket
, buf
+nBytesSent
, len
- nBytesSent
, 0);
1917 HeapFree(GetProcessHeap(), 0, (LPVOID
)buf
);
1921 HINTERNET hHandle
= WININET_FindHandle( hdr
);
1924 lpfnStatusCB(hHandle
, dwContext
, INTERNET_STATUS_REQUEST_SENT
,
1925 &nBytesSent
, sizeof(DWORD
));
1926 WININET_Release( hdr
);
1930 TRACE("Sent %ld bytes\n", nBytesSent
);
1934 /***********************************************************************
1935 * FTP_SendCommand (internal)
1937 * Send command to server
1944 static BOOL
FTP_SendCommand(INT nSocket
, FTP_COMMAND ftpCmd
, LPCWSTR lpszParam
,
1945 INTERNET_STATUS_CALLBACK lpfnStatusCB
, LPWININETHANDLEHEADER hdr
, DWORD dwContext
)
1948 LPSTR lpszParamA
= lpszParam
?WININET_strdup_WtoA(lpszParam
):NULL
;
1949 ret
= FTP_SendCommandA(nSocket
, ftpCmd
, lpszParamA
, lpfnStatusCB
, hdr
, dwContext
);
1950 HeapFree(GetProcessHeap(), 0, lpszParamA
);
1954 /***********************************************************************
1955 * FTP_ReceiveResponse (internal)
1957 * Receive response from server
1960 * Reply code on success
1964 INT
FTP_ReceiveResponse(LPWININETFTPSESSIONW lpwfs
, DWORD dwContext
)
1966 LPSTR lpszResponse
= INTERNET_GetResponseBuffer();
1969 char firstprefix
[5];
1970 BOOL multiline
= FALSE
;
1971 LPWININETAPPINFOW hIC
= NULL
;
1973 TRACE("socket(%d)\n", lpwfs
->sndSocket
);
1975 hIC
= (LPWININETAPPINFOW
) lpwfs
->hdr
.lpwhparent
;
1976 SendAsyncCallback(&lpwfs
->hdr
, dwContext
, INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
1980 if (!INTERNET_GetNextLine(lpwfs
->sndSocket
, &nRecv
))
1987 if(lpszResponse
[3] != '-')
1990 { /* Start of multiline repsonse. Loop until we get "nnn " */
1992 memcpy(firstprefix
, lpszResponse
, 3);
1993 firstprefix
[3] = ' ';
1994 firstprefix
[4] = '\0';
1999 if(!memcmp(firstprefix
, lpszResponse
, 4))
2007 rc
= atoi(lpszResponse
);
2009 SendAsyncCallback(&lpwfs
->hdr
, dwContext
, INTERNET_STATUS_RESPONSE_RECEIVED
,
2010 &nRecv
, sizeof(DWORD
));
2014 TRACE("return %d\n", rc
);
2019 /***********************************************************************
2020 * FTP_SendPassword (internal)
2022 * Send password to ftp server
2029 static BOOL
FTP_SendPassword(LPWININETFTPSESSIONW lpwfs
)
2032 BOOL bSuccess
= FALSE
;
2035 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PASS
, lpwfs
->lpszPassword
, 0, 0, 0))
2038 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2041 TRACE("Received reply code %d\n", nResCode
);
2042 /* Login successful... */
2043 if (nResCode
== 230)
2045 /* Command not implemented, superfluous at the server site... */
2046 /* Need account for login... */
2047 else if (nResCode
== 332)
2048 bSuccess
= FTP_SendAccount(lpwfs
);
2050 FTP_SetResponseError(nResCode
);
2054 TRACE("Returning %d\n", bSuccess
);
2059 /***********************************************************************
2060 * FTP_SendAccount (internal)
2069 static BOOL
FTP_SendAccount(LPWININETFTPSESSIONW lpwfs
)
2072 BOOL bSuccess
= FALSE
;
2075 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_ACCT
, szNoAccount
, 0, 0, 0))
2078 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2082 FTP_SetResponseError(nResCode
);
2089 /***********************************************************************
2090 * FTP_SendStore (internal)
2092 * Send request to upload file to ftp server
2099 static BOOL
FTP_SendStore(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszRemoteFile
, DWORD dwType
)
2102 BOOL bSuccess
= FALSE
;
2105 if (!FTP_InitListenSocket(lpwfs
))
2108 if (!FTP_SendType(lpwfs
, dwType
))
2111 if (!FTP_SendPortOrPasv(lpwfs
))
2114 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_STOR
, lpszRemoteFile
, 0, 0, 0))
2116 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2119 if (nResCode
== 150 || nResCode
== 125)
2122 FTP_SetResponseError(nResCode
);
2126 if (!bSuccess
&& lpwfs
->lstnSocket
!= -1)
2128 closesocket(lpwfs
->lstnSocket
);
2129 lpwfs
->lstnSocket
= -1;
2136 /***********************************************************************
2137 * FTP_InitListenSocket (internal)
2139 * Create a socket to listen for server response
2146 static BOOL
FTP_InitListenSocket(LPWININETFTPSESSIONW lpwfs
)
2148 BOOL bSuccess
= FALSE
;
2149 size_t namelen
= sizeof(struct sockaddr_in
);
2153 lpwfs
->lstnSocket
= socket(PF_INET
, SOCK_STREAM
, 0);
2154 if (lpwfs
->lstnSocket
== -1)
2156 TRACE("Unable to create listening socket\n");
2160 /* We obtain our ip addr from the name of the command channel socket */
2161 lpwfs
->lstnSocketAddress
= lpwfs
->socketAddress
;
2163 /* and get the system to assign us a port */
2164 lpwfs
->lstnSocketAddress
.sin_port
= htons((u_short
) 0);
2166 if (bind(lpwfs
->lstnSocket
,(struct sockaddr
*) &lpwfs
->lstnSocketAddress
, sizeof(struct sockaddr_in
)) == -1)
2168 TRACE("Unable to bind socket\n");
2172 if (listen(lpwfs
->lstnSocket
, MAX_BACKLOG
) == -1)
2174 TRACE("listen failed\n");
2178 if (getsockname(lpwfs
->lstnSocket
, (struct sockaddr
*) &lpwfs
->lstnSocketAddress
, &namelen
) != -1)
2182 if (!bSuccess
&& lpwfs
->lstnSocket
== -1)
2184 closesocket(lpwfs
->lstnSocket
);
2185 lpwfs
->lstnSocket
= -1;
2192 /***********************************************************************
2193 * FTP_SendType (internal)
2195 * Tell server type of data being transferred
2201 * W98SE doesn't cache the type that's currently set
2202 * (i.e. it sends it always),
2203 * so we probably don't want to do that either.
2205 static BOOL
FTP_SendType(LPWININETFTPSESSIONW lpwfs
, DWORD dwType
)
2208 WCHAR type
[] = { 'I','\0' };
2209 BOOL bSuccess
= FALSE
;
2212 if (dwType
& INTERNET_FLAG_TRANSFER_ASCII
)
2215 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_TYPE
, type
, 0, 0, 0))
2218 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
)/100;
2224 FTP_SetResponseError(nResCode
);
2231 /***********************************************************************
2232 * FTP_GetFileSize (internal)
2234 * Retrieves from the server the size of the given file
2241 static BOOL
FTP_GetFileSize(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszRemoteFile
, DWORD
*dwSize
)
2244 BOOL bSuccess
= FALSE
;
2248 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_SIZE
, lpszRemoteFile
, 0, 0, 0))
2251 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2254 if (nResCode
== 213) {
2255 /* Now parses the output to get the actual file size */
2257 LPSTR lpszResponseBuffer
= INTERNET_GetResponseBuffer();
2259 for (i
= 0; (lpszResponseBuffer
[i
] != ' ') && (lpszResponseBuffer
[i
] != '\0'); i
++) ;
2260 if (lpszResponseBuffer
[i
] == '\0') return FALSE
;
2261 *dwSize
= atol(&(lpszResponseBuffer
[i
+ 1]));
2265 FTP_SetResponseError(nResCode
);
2274 /***********************************************************************
2275 * FTP_SendPort (internal)
2277 * Tell server which port to use
2284 static BOOL
FTP_SendPort(LPWININETFTPSESSIONW lpwfs
)
2286 static const WCHAR szIPFormat
[] = {'%','d',',','%','d',',','%','d',',','%','d',',','%','d',',','%','d','\0'};
2288 WCHAR szIPAddress
[64];
2289 BOOL bSuccess
= FALSE
;
2292 sprintfW(szIPAddress
, szIPFormat
,
2293 lpwfs
->lstnSocketAddress
.sin_addr
.s_addr
&0x000000FF,
2294 (lpwfs
->lstnSocketAddress
.sin_addr
.s_addr
&0x0000FF00)>>8,
2295 (lpwfs
->lstnSocketAddress
.sin_addr
.s_addr
&0x00FF0000)>>16,
2296 (lpwfs
->lstnSocketAddress
.sin_addr
.s_addr
&0xFF000000)>>24,
2297 lpwfs
->lstnSocketAddress
.sin_port
& 0xFF,
2298 (lpwfs
->lstnSocketAddress
.sin_port
& 0xFF00)>>8);
2300 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PORT
, szIPAddress
, 0, 0, 0))
2303 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2306 if (nResCode
== 200)
2309 FTP_SetResponseError(nResCode
);
2317 /***********************************************************************
2318 * FTP_DoPassive (internal)
2320 * Tell server that we want to do passive transfers
2321 * and connect data socket
2328 static BOOL
FTP_DoPassive(LPWININETFTPSESSIONW lpwfs
)
2331 BOOL bSuccess
= FALSE
;
2334 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PASV
, NULL
, 0, 0, 0))
2337 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2340 if (nResCode
== 227)
2342 LPSTR lpszResponseBuffer
= INTERNET_GetResponseBuffer();
2346 char *pAddr
, *pPort
;
2348 struct sockaddr_in dataSocketAddress
;
2350 p
= lpszResponseBuffer
+4; /* skip status code */
2352 /* do a very strict check; we can improve that later. */
2354 if (strncmp(p
, "Entering Passive Mode", 21))
2356 ERR("unknown response '%.*s', aborting\n", 21, p
);
2359 p
+= 21; /* skip string */
2360 if ((*p
++ != ' ') || (*p
++ != '('))
2362 ERR("unknown response format, aborting\n");
2366 if (sscanf(p
, "%d,%d,%d,%d,%d,%d", &f
[0], &f
[1], &f
[2], &f
[3],
2369 ERR("unknown response address format '%s', aborting\n", p
);
2372 for (i
=0; i
< 6; i
++)
2375 dataSocketAddress
= lpwfs
->socketAddress
;
2376 pAddr
= (char *)&(dataSocketAddress
.sin_addr
.s_addr
);
2377 pPort
= (char *)&(dataSocketAddress
.sin_port
);
2385 nsocket
= socket(AF_INET
,SOCK_STREAM
,0);
2389 if (connect(nsocket
, (struct sockaddr
*)&dataSocketAddress
, sizeof(dataSocketAddress
)))
2391 ERR("can't connect passive FTP data port.\n");
2394 lpwfs
->pasvSocket
= nsocket
;
2398 FTP_SetResponseError(nResCode
);
2406 static BOOL
FTP_SendPortOrPasv(LPWININETFTPSESSIONW lpwfs
)
2408 if (lpwfs
->hdr
.dwFlags
& INTERNET_FLAG_PASSIVE
)
2410 if (!FTP_DoPassive(lpwfs
))
2415 if (!FTP_SendPort(lpwfs
))
2422 /***********************************************************************
2423 * FTP_GetDataSocket (internal)
2425 * Either accepts an incoming data socket connection from the server
2426 * or just returns the already opened socket after a PASV command
2427 * in case of passive FTP.
2435 static BOOL
FTP_GetDataSocket(LPWININETFTPSESSIONW lpwfs
, LPINT nDataSocket
)
2437 struct sockaddr_in saddr
;
2438 size_t addrlen
= sizeof(struct sockaddr
);
2441 if (lpwfs
->hdr
.dwFlags
& INTERNET_FLAG_PASSIVE
)
2443 *nDataSocket
= lpwfs
->pasvSocket
;
2447 *nDataSocket
= accept(lpwfs
->lstnSocket
, (struct sockaddr
*) &saddr
, &addrlen
);
2448 closesocket(lpwfs
->lstnSocket
);
2449 lpwfs
->lstnSocket
= -1;
2451 return *nDataSocket
!= -1;
2455 /***********************************************************************
2456 * FTP_SendData (internal)
2458 * Send data to the server
2465 static BOOL
FTP_SendData(LPWININETFTPSESSIONW lpwfs
, INT nDataSocket
, HANDLE hFile
)
2467 BY_HANDLE_FILE_INFORMATION fi
;
2468 DWORD nBytesRead
= 0;
2469 DWORD nBytesSent
= 0;
2470 DWORD nTotalSent
= 0;
2471 DWORD nBytesToSend
, nLen
;
2473 time_t s_long_time
, e_long_time
;
2478 lpszBuffer
= HeapAlloc(GetProcessHeap(), 0, sizeof(CHAR
)*DATA_PACKET_SIZE
);
2479 memset(lpszBuffer
, 0, sizeof(CHAR
)*DATA_PACKET_SIZE
);
2481 /* Get the size of the file. */
2482 GetFileInformationByHandle(hFile
, &fi
);
2487 nBytesToSend
= nBytesRead
- nBytesSent
;
2489 if (nBytesToSend
<= 0)
2491 /* Read data from file. */
2493 if (!ReadFile(hFile
, lpszBuffer
, DATA_PACKET_SIZE
, &nBytesRead
, 0))
2494 ERR("Failed reading from file\n");
2497 nBytesToSend
= nBytesRead
;
2502 nLen
= DATA_PACKET_SIZE
< nBytesToSend
?
2503 DATA_PACKET_SIZE
: nBytesToSend
;
2504 nRC
= send(nDataSocket
, lpszBuffer
, nLen
, 0);
2512 /* Do some computation to display the status. */
2514 nSeconds
= e_long_time
- s_long_time
;
2515 if( nSeconds
/ 60 > 0 )
2517 TRACE( "%ld bytes of %ld bytes (%ld%%) in %ld min %ld sec estimated remaining time %ld sec\n",
2518 nTotalSent
, fi
.nFileSizeLow
, nTotalSent
*100/fi
.nFileSizeLow
, nSeconds
/ 60,
2519 nSeconds
% 60, (fi
.nFileSizeLow
- nTotalSent
) * nSeconds
/ nTotalSent
);
2523 TRACE( "%ld bytes of %ld bytes (%ld%%) in %ld sec estimated remaining time %ld sec\n",
2524 nTotalSent
, fi
.nFileSizeLow
, nTotalSent
*100/fi
.nFileSizeLow
, nSeconds
,
2525 (fi
.nFileSizeLow
- nTotalSent
) * nSeconds
/ nTotalSent
);
2527 } while (nRC
!= -1);
2529 TRACE("file transfer complete!\n");
2531 HeapFree(GetProcessHeap(), 0, lpszBuffer
);
2537 /***********************************************************************
2538 * FTP_SendRetrieve (internal)
2540 * Send request to retrieve a file
2543 * Number of bytes to be received on success
2547 static DWORD
FTP_SendRetrieve(LPWININETFTPSESSIONW lpwfs
, LPCWSTR lpszRemoteFile
, DWORD dwType
)
2553 if (!FTP_InitListenSocket(lpwfs
))
2556 if (!FTP_SendType(lpwfs
, dwType
))
2559 if (!FTP_SendPortOrPasv(lpwfs
))
2562 if (!FTP_GetFileSize(lpwfs
, lpszRemoteFile
, &nResult
))
2565 TRACE("Waiting to receive %ld bytes\n", nResult
);
2567 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RETR
, lpszRemoteFile
, 0, 0, 0))
2570 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2571 if ((nResCode
!= 125) && (nResCode
!= 150)) {
2572 /* That means that we got an error getting the file. */
2577 if (0 == nResult
&& lpwfs
->lstnSocket
!= -1)
2579 closesocket(lpwfs
->lstnSocket
);
2580 lpwfs
->lstnSocket
= -1;
2587 /***********************************************************************
2588 * FTP_RetrieveData (internal)
2590 * Retrieve data from server
2597 static BOOL
FTP_RetrieveFileData(LPWININETFTPSESSIONW lpwfs
, INT nDataSocket
, DWORD nBytes
, HANDLE hFile
)
2599 DWORD nBytesWritten
;
2600 DWORD nBytesReceived
= 0;
2606 if (INVALID_HANDLE_VALUE
== hFile
)
2609 lpszBuffer
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(CHAR
)*DATA_PACKET_SIZE
);
2610 if (NULL
== lpszBuffer
)
2612 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2616 while (nBytesReceived
< nBytes
&& nRC
!= -1)
2618 nRC
= recv(nDataSocket
, lpszBuffer
, DATA_PACKET_SIZE
, 0);
2621 /* other side closed socket. */
2624 WriteFile(hFile
, lpszBuffer
, nRC
, &nBytesWritten
, NULL
);
2625 nBytesReceived
+= nRC
;
2628 TRACE("%ld bytes of %ld (%ld%%)\r", nBytesReceived
, nBytes
,
2629 nBytesReceived
* 100 / nBytes
);
2632 TRACE("Data transfer complete\n");
2633 HeapFree(GetProcessHeap(), 0, lpszBuffer
);
2640 /***********************************************************************
2641 * FTP_CloseSessionHandle (internal)
2643 * Deallocate session handle
2650 static void FTP_CloseSessionHandle(LPWININETHANDLEHEADER hdr
)
2652 LPWININETFTPSESSIONW lpwfs
= (LPWININETFTPSESSIONW
) hdr
;
2656 if (lpwfs
->download_in_progress
!= NULL
)
2657 lpwfs
->download_in_progress
->session_deleted
= TRUE
;
2659 if (lpwfs
->sndSocket
!= -1)
2660 closesocket(lpwfs
->sndSocket
);
2662 if (lpwfs
->lstnSocket
!= -1)
2663 closesocket(lpwfs
->lstnSocket
);
2665 HeapFree(GetProcessHeap(), 0, lpwfs
->lpszPassword
);
2666 HeapFree(GetProcessHeap(), 0, lpwfs
->lpszUserName
);
2667 HeapFree(GetProcessHeap(), 0, lpwfs
);
2671 /***********************************************************************
2672 * FTP_CloseFindNextHandle (internal)
2674 * Deallocate session handle
2681 static void FTP_CloseFindNextHandle(LPWININETHANDLEHEADER hdr
)
2683 LPWININETFINDNEXTW lpwfn
= (LPWININETFINDNEXTW
) hdr
;
2688 for (i
= 0; i
< lpwfn
->size
; i
++)
2690 HeapFree(GetProcessHeap(), 0, lpwfn
->lpafp
[i
].lpszName
);
2693 HeapFree(GetProcessHeap(), 0, lpwfn
->lpafp
);
2694 HeapFree(GetProcessHeap(), 0, lpwfn
);
2697 /***********************************************************************
2698 * FTP_CloseFileTransferHandle (internal)
2700 * Closes the file transfer handle. This also 'cleans' the data queue of
2701 * the 'transfer conplete' message (this is a bit of a hack though :-/ )
2704 static void FTP_CloseFileTransferHandle(LPWININETHANDLEHEADER hdr
)
2706 LPWININETFILE lpwh
= (LPWININETFILE
) hdr
;
2707 LPWININETFTPSESSIONW lpwfs
= (LPWININETFTPSESSIONW
) lpwh
->hdr
.lpwhparent
;
2712 if (!lpwh
->session_deleted
)
2713 lpwfs
->download_in_progress
= NULL
;
2715 /* This just serves to flush the control socket of any spurrious lines written
2716 to it (like '226 Transfer complete.').
2718 Wonder what to do if the server sends us an error code though...
2720 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2722 if (lpwh
->nDataSocket
!= -1)
2723 closesocket(lpwh
->nDataSocket
);
2725 HeapFree(GetProcessHeap(), 0, lpwh
);
2728 /***********************************************************************
2729 * FTP_ReceiveFileList (internal)
2731 * Read file list from server
2734 * Handle to file list on success
2738 static HINTERNET
FTP_ReceiveFileList(LPWININETFTPSESSIONW lpwfs
, INT nSocket
, LPCWSTR lpszSearchFile
,
2739 LPWIN32_FIND_DATAW lpFindFileData
, DWORD dwContext
)
2742 LPFILEPROPERTIESW lpafp
= NULL
;
2743 LPWININETFINDNEXTW lpwfn
= NULL
;
2744 HINTERNET handle
= 0;
2746 TRACE("(%p,%d,%s,%p,%ld)\n", lpwfs
, nSocket
, debugstr_w(lpszSearchFile
), lpFindFileData
, dwContext
);
2748 if (FTP_ParseDirectory(lpwfs
, nSocket
, lpszSearchFile
, &lpafp
, &dwSize
))
2751 FTP_ConvertFileProp(lpafp
, lpFindFileData
);
2753 lpwfn
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WININETFINDNEXTW
));
2756 lpwfn
->hdr
.htype
= WH_HFINDNEXT
;
2757 lpwfn
->hdr
.lpwhparent
= WININET_AddRef( &lpwfs
->hdr
);
2758 lpwfn
->hdr
.dwContext
= dwContext
;
2759 lpwfn
->hdr
.dwRefCount
= 1;
2760 lpwfn
->hdr
.destroy
= FTP_CloseFindNextHandle
;
2761 lpwfn
->hdr
.lpfnStatusCB
= lpwfs
->hdr
.lpfnStatusCB
;
2762 lpwfn
->index
= 1; /* Next index is 1 since we return index 0 */
2763 lpwfn
->size
= dwSize
;
2764 lpwfn
->lpafp
= lpafp
;
2766 handle
= WININET_AllocHandle( &lpwfn
->hdr
);
2771 WININET_Release( &lpwfn
->hdr
);
2773 TRACE("Matched %ld files\n", dwSize
);
2778 /***********************************************************************
2779 * FTP_ConvertFileProp (internal)
2781 * Converts FILEPROPERTIESW struct to WIN32_FIND_DATAA
2788 BOOL
FTP_ConvertFileProp(LPFILEPROPERTIESW lpafp
, LPWIN32_FIND_DATAW lpFindFileData
)
2790 BOOL bSuccess
= FALSE
;
2792 ZeroMemory(lpFindFileData
, sizeof(WIN32_FIND_DATAW
));
2796 /* Convert 'Unix' time to Windows time */
2797 RtlSecondsSince1970ToTime(mktime(&lpafp
->tmLastModified
),
2798 (LARGE_INTEGER
*) &(lpFindFileData
->ftLastAccessTime
));
2799 lpFindFileData
->ftLastWriteTime
= lpFindFileData
->ftLastAccessTime
;
2800 lpFindFileData
->ftCreationTime
= lpFindFileData
->ftLastAccessTime
;
2802 /* Not all fields are filled in */
2803 lpFindFileData
->nFileSizeHigh
= 0; /* We do not handle files bigger than 0xFFFFFFFF bytes yet :-) */
2804 lpFindFileData
->nFileSizeLow
= lpafp
->nSize
;
2806 if (lpafp
->bIsDirectory
)
2807 lpFindFileData
->dwFileAttributes
|= FILE_ATTRIBUTE_DIRECTORY
;
2809 if (lpafp
->lpszName
)
2810 lstrcpynW(lpFindFileData
->cFileName
, lpafp
->lpszName
, MAX_PATH
);
2818 /***********************************************************************
2819 * FTP_ParseNextFile (internal)
2821 * Parse the next line in file listing
2827 static BOOL
FTP_ParseNextFile(INT nSocket
, LPCWSTR lpszSearchFile
, LPFILEPROPERTIESW lpfp
)
2829 static const char szSpace
[] = " \t";
2837 lpfp
->lpszName
= NULL
;
2839 if(!(pszLine
= INTERNET_GetNextLine(nSocket
, &nBufLen
)))
2842 pszToken
= strtok(pszLine
, szSpace
);
2844 * <Permissions> <NoLinks> <owner> <group> <size> <date> <time or year> <filename>
2847 * drwx--s--- 2 pcarrier ens 512 Sep 28 1995 pcarrier
2849 if(!isdigit(pszToken
[0]) && 10 == strlen(pszToken
)) {
2850 if(!FTP_ParsePermission(pszToken
, lpfp
))
2851 lpfp
->bIsDirectory
= FALSE
;
2852 for(i
=0; i
<=3; i
++) {
2853 if(!(pszToken
= strtok(NULL
, szSpace
)))
2856 if(!pszToken
) continue;
2857 if(lpfp
->bIsDirectory
) {
2858 TRACE("Is directory\n");
2862 TRACE("Size: %s\n", pszToken
);
2863 lpfp
->nSize
= atol(pszToken
);
2866 lpfp
->tmLastModified
.tm_sec
= 0;
2867 lpfp
->tmLastModified
.tm_min
= 0;
2868 lpfp
->tmLastModified
.tm_hour
= 0;
2869 lpfp
->tmLastModified
.tm_mday
= 0;
2870 lpfp
->tmLastModified
.tm_mon
= 0;
2871 lpfp
->tmLastModified
.tm_year
= 0;
2873 /* Determine month */
2874 pszToken
= strtok(NULL
, szSpace
);
2875 if(!pszToken
) continue;
2876 if(strlen(pszToken
) >= 3) {
2878 if((pszTmp
= StrStrIA(szMonths
, pszToken
)))
2879 lpfp
->tmLastModified
.tm_mon
= ((pszTmp
- szMonths
) / 3)+1;
2882 pszToken
= strtok(NULL
, szSpace
);
2883 if(!pszToken
) continue;
2884 lpfp
->tmLastModified
.tm_mday
= atoi(pszToken
);
2885 /* Determine time or year */
2886 pszToken
= strtok(NULL
, szSpace
);
2887 if(!pszToken
) continue;
2888 if((pszTmp
= strchr(pszToken
, ':'))) {
2893 lpfp
->tmLastModified
.tm_min
= atoi(pszTmp
);
2894 lpfp
->tmLastModified
.tm_hour
= atoi(pszToken
);
2896 apTM
= localtime(&aTime
);
2897 lpfp
->tmLastModified
.tm_year
= apTM
->tm_year
;
2900 lpfp
->tmLastModified
.tm_year
= atoi(pszToken
) - 1900;
2901 lpfp
->tmLastModified
.tm_hour
= 12;
2903 TRACE("Mod time: %02d:%02d:%02d %02d/%02d/%02d\n",
2904 lpfp
->tmLastModified
.tm_hour
, lpfp
->tmLastModified
.tm_min
, lpfp
->tmLastModified
.tm_sec
,
2905 (lpfp
->tmLastModified
.tm_year
>= 100) ? lpfp
->tmLastModified
.tm_year
- 100 : lpfp
->tmLastModified
.tm_year
,
2906 lpfp
->tmLastModified
.tm_mon
, lpfp
->tmLastModified
.tm_mday
);
2908 pszToken
= strtok(NULL
, szSpace
);
2909 if(!pszToken
) continue;
2910 lpfp
->lpszName
= WININET_strdup_AtoW(pszToken
);
2911 TRACE("File: %s\n", debugstr_w(lpfp
->lpszName
));
2913 /* NT way of parsing ... :
2915 07-13-03 08:55PM <DIR> sakpatch
2916 05-09-03 06:02PM 12656686 2003-04-21bgm_cmd_e.rgz
2918 else if(isdigit(pszToken
[0]) && 8 == strlen(pszToken
)) {
2919 lpfp
->permissions
= 0xFFFF; /* No idea, put full permission :-) */
2921 sscanf(pszToken
, "%d-%d-%d",
2922 &lpfp
->tmLastModified
.tm_mon
,
2923 &lpfp
->tmLastModified
.tm_mday
,
2924 &lpfp
->tmLastModified
.tm_year
);
2926 /* Hacky and bad Y2K protection :-) */
2927 if (lpfp
->tmLastModified
.tm_year
< 70)
2928 lpfp
->tmLastModified
.tm_year
+= 100;
2930 pszToken
= strtok(NULL
, szSpace
);
2931 if(!pszToken
) continue;
2932 sscanf(pszToken
, "%d:%d",
2933 &lpfp
->tmLastModified
.tm_hour
,
2934 &lpfp
->tmLastModified
.tm_min
);
2935 if((pszToken
[5] == 'P') && (pszToken
[6] == 'M')) {
2936 lpfp
->tmLastModified
.tm_hour
+= 12;
2938 lpfp
->tmLastModified
.tm_sec
= 0;
2940 TRACE("Mod time: %02d:%02d:%02d %02d/%02d/%02d\n",
2941 lpfp
->tmLastModified
.tm_hour
, lpfp
->tmLastModified
.tm_min
, lpfp
->tmLastModified
.tm_sec
,
2942 (lpfp
->tmLastModified
.tm_year
>= 100) ? lpfp
->tmLastModified
.tm_year
- 100 : lpfp
->tmLastModified
.tm_year
,
2943 lpfp
->tmLastModified
.tm_mon
, lpfp
->tmLastModified
.tm_mday
);
2945 pszToken
= strtok(NULL
, szSpace
);
2946 if(!pszToken
) continue;
2947 if(!strcasecmp(pszToken
, "<DIR>")) {
2948 lpfp
->bIsDirectory
= TRUE
;
2950 TRACE("Is directory\n");
2953 lpfp
->bIsDirectory
= FALSE
;
2954 lpfp
->nSize
= atol(pszToken
);
2955 TRACE("Size: %ld\n", lpfp
->nSize
);
2958 pszToken
= strtok(NULL
, szSpace
);
2959 if(!pszToken
) continue;
2960 lpfp
->lpszName
= WININET_strdup_AtoW(pszToken
);
2961 TRACE("Name: %s\n", debugstr_w(lpfp
->lpszName
));
2963 /* EPLF format - http://cr.yp.to/ftp/list/eplf.html */
2964 else if(pszToken
[0] == '+') {
2965 FIXME("EPLF Format not implemented\n");
2968 if(lpfp
->lpszName
) {
2969 if((lpszSearchFile
== NULL
) ||
2970 (PathMatchSpecW(lpfp
->lpszName
, lpszSearchFile
))) {
2972 TRACE("Matched: %s\n", debugstr_w(lpfp
->lpszName
));
2975 HeapFree(GetProcessHeap(), 0, lpfp
->lpszName
);
2976 lpfp
->lpszName
= NULL
;
2983 /***********************************************************************
2984 * FTP_ParseDirectory (internal)
2986 * Parse string of directory information
2992 static BOOL
FTP_ParseDirectory(LPWININETFTPSESSIONW lpwfs
, INT nSocket
, LPCWSTR lpszSearchFile
,
2993 LPFILEPROPERTIESW
*lpafp
, LPDWORD dwfp
)
2995 BOOL bSuccess
= TRUE
;
2996 INT sizeFilePropArray
= 500;/*20; */
2997 INT indexFilePropArray
= -1;
3001 /* Allocate intial file properties array */
3002 *lpafp
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(FILEPROPERTIESW
)*(sizeFilePropArray
));
3007 if (indexFilePropArray
+1 >= sizeFilePropArray
)
3009 LPFILEPROPERTIESW tmpafp
;
3011 sizeFilePropArray
*= 2;
3012 tmpafp
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, *lpafp
,
3013 sizeof(FILEPROPERTIESW
)*sizeFilePropArray
);
3022 indexFilePropArray
++;
3023 } while (FTP_ParseNextFile(nSocket
, lpszSearchFile
, &(*lpafp
)[indexFilePropArray
]));
3025 if (bSuccess
&& indexFilePropArray
)
3027 if (indexFilePropArray
< sizeFilePropArray
- 1)
3029 LPFILEPROPERTIESW tmpafp
;
3031 tmpafp
= HeapReAlloc(GetProcessHeap(), 0, *lpafp
,
3032 sizeof(FILEPROPERTIESW
)*indexFilePropArray
);
3036 *dwfp
= indexFilePropArray
;
3040 HeapFree(GetProcessHeap(), 0, *lpafp
);
3041 INTERNET_SetLastError(ERROR_NO_MORE_FILES
);
3049 /***********************************************************************
3050 * FTP_ParsePermission (internal)
3052 * Parse permission string of directory information
3059 static BOOL
FTP_ParsePermission(LPCSTR lpszPermission
, LPFILEPROPERTIESW lpfp
)
3061 BOOL bSuccess
= TRUE
;
3062 unsigned short nPermission
= 0;
3067 if ((*lpszPermission
!= 'd') && (*lpszPermission
!= '-') && (*lpszPermission
!= 'l'))
3073 lpfp
->bIsDirectory
= (*lpszPermission
== 'd');
3079 nPermission
|= (*(lpszPermission
+1) == 'r' ? 1 : 0) << 8;
3082 nPermission
|= (*(lpszPermission
+2) == 'w' ? 1 : 0) << 7;
3085 nPermission
|= (*(lpszPermission
+3) == 'x' ? 1 : 0) << 6;
3088 nPermission
|= (*(lpszPermission
+4) == 'r' ? 1 : 0) << 5;
3091 nPermission
|= (*(lpszPermission
+5) == 'w' ? 1 : 0) << 4;
3094 nPermission
|= (*(lpszPermission
+6) == 'x' ? 1 : 0) << 3;
3097 nPermission
|= (*(lpszPermission
+7) == 'r' ? 1 : 0) << 2;
3100 nPermission
|= (*(lpszPermission
+8) == 'w' ? 1 : 0) << 1;
3103 nPermission
|= (*(lpszPermission
+9) == 'x' ? 1 : 0);
3107 }while (nPos
<= nLast
);
3109 lpfp
->permissions
= nPermission
;
3114 /***********************************************************************
3115 * FTP_SetResponseError (internal)
3117 * Set the appropriate error code for a given response from the server
3122 static DWORD
FTP_SetResponseError(DWORD dwResponse
)
3128 case 421: /* Service not available - Server may be shutting down. */
3129 dwCode
= ERROR_INTERNET_TIMEOUT
;
3132 case 425: /* Cannot open data connection. */
3133 dwCode
= ERROR_INTERNET_CANNOT_CONNECT
;
3136 case 426: /* Connection closed, transer aborted. */
3137 dwCode
= ERROR_INTERNET_CONNECTION_ABORTED
;
3140 case 500: /* Syntax error. Command unrecognized. */
3141 case 501: /* Syntax error. Error in parameters or arguments. */
3142 dwCode
= ERROR_INTERNET_INCORRECT_FORMAT
;
3145 case 530: /* Not logged in. Login incorrect. */
3146 dwCode
= ERROR_INTERNET_LOGIN_FAILURE
;
3149 case 550: /* File action not taken. File not found or no access. */
3150 dwCode
= ERROR_INTERNET_ITEM_NOT_FOUND
;
3153 case 450: /* File action not taken. File may be busy. */
3154 case 451: /* Action aborted. Server error. */
3155 case 452: /* Action not taken. Insufficient storage space on server. */
3156 case 502: /* Command not implemented. */
3157 case 503: /* Bad sequence of command. */
3158 case 504: /* Command not implemented for that parameter. */
3159 case 532: /* Need account for storing files */
3160 case 551: /* Requested action aborted. Page type unknown */
3161 case 552: /* Action aborted. Exceeded storage allocation */
3162 case 553: /* Action not taken. File name not allowed. */
3165 dwCode
= ERROR_INTERNET_INTERNAL_ERROR
;
3169 INTERNET_SetLastError(dwCode
);