2 * WININET - Ftp implementation
4 * Copyright 1999 Corel Corporation
5 * Copyright 2004 Mike McCormack for CodeWeavers
6 * Copyright 2004 Kevin Koltzau
7 * Copyright 2007 Hans Leidekker
12 * Copyright 2000 Andreas Mohr
13 * Copyright 2002 Jaco Greeff
15 * This library is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU Lesser General Public
17 * License as published by the Free Software Foundation; either
18 * version 2.1 of the License, or (at your option) any later version.
20 * This library is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Lesser General Public License for more details.
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
50 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
55 #define RESPONSE_TIMEOUT 30
57 typedef struct _ftp_session_t ftp_session_t
;
62 ftp_session_t
*lpFtpSession
;
66 HANDLE cache_file_handle
;
75 int pasvSocket
; /* data socket connected by us in case of passive FTP */
76 ftp_file_t
*download_in_progress
;
77 struct sockaddr_in socketAddress
;
78 struct sockaddr_in lstnSocketAddress
;
80 INTERNET_PORT serverport
;
90 SYSTEMTIME tmLastModified
;
91 unsigned short permissions
;
92 } FILEPROPERTIESW
, *LPFILEPROPERTIESW
;
97 ftp_session_t
*lpFtpSession
;
100 LPFILEPROPERTIESW lpafp
;
101 } WININETFTPFINDNEXTW
, *LPWININETFTPFINDNEXTW
;
103 #define DATA_PACKET_SIZE 0x2000
104 #define szCRLF "\r\n"
105 #define MAX_BACKLOG 5
107 /* Testing shows that Windows only accepts dwFlags where the last
108 * 3 (yes 3) bits define FTP_TRANSFER_TYPE_UNKNOWN, FTP_TRANSFER_TYPE_ASCII or FTP_TRANSFER_TYPE_BINARY.
110 #define FTP_CONDITION_MASK 0x0007
113 /* FTP commands with arguments. */
129 /* FTP commands without arguments. */
138 static const CHAR
*const szFtpCommands
[] = {
161 static const CHAR szMonths
[] = "JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC";
163 static BOOL
FTP_SendCommand(INT nSocket
, FTP_COMMAND ftpCmd
, LPCWSTR lpszParam
,
164 INTERNET_STATUS_CALLBACK lpfnStatusCB
, object_header_t
*hdr
, DWORD_PTR dwContext
);
165 static BOOL
FTP_SendStore(ftp_session_t
*, LPCWSTR lpszRemoteFile
, DWORD dwType
);
166 static BOOL
FTP_GetDataSocket(ftp_session_t
*, LPINT nDataSocket
);
167 static BOOL
FTP_SendData(ftp_session_t
*, INT nDataSocket
, HANDLE hFile
);
168 static INT
FTP_ReceiveResponse(ftp_session_t
*, DWORD_PTR dwContext
);
169 static BOOL
FTP_SendRetrieve(ftp_session_t
*, LPCWSTR lpszRemoteFile
, DWORD dwType
);
170 static BOOL
FTP_RetrieveFileData(ftp_session_t
*, INT nDataSocket
, HANDLE hFile
);
171 static BOOL
FTP_InitListenSocket(ftp_session_t
*);
172 static BOOL
FTP_ConnectToHost(ftp_session_t
*);
173 static BOOL
FTP_SendPassword(ftp_session_t
*);
174 static BOOL
FTP_SendAccount(ftp_session_t
*);
175 static BOOL
FTP_SendType(ftp_session_t
*, DWORD dwType
);
176 static BOOL
FTP_SendPort(ftp_session_t
*);
177 static BOOL
FTP_DoPassive(ftp_session_t
*);
178 static BOOL
FTP_SendPortOrPasv(ftp_session_t
*);
179 static BOOL
FTP_ParsePermission(LPCSTR lpszPermission
, LPFILEPROPERTIESW lpfp
);
180 static BOOL
FTP_ParseNextFile(INT nSocket
, LPCWSTR lpszSearchFile
, LPFILEPROPERTIESW fileprop
);
181 static BOOL
FTP_ParseDirectory(ftp_session_t
*, INT nSocket
, LPCWSTR lpszSearchFile
,
182 LPFILEPROPERTIESW
*lpafp
, LPDWORD dwfp
);
183 static HINTERNET
FTP_ReceiveFileList(ftp_session_t
*, INT nSocket
, LPCWSTR lpszSearchFile
,
184 LPWIN32_FIND_DATAW lpFindFileData
, DWORD_PTR dwContext
);
185 static DWORD
FTP_SetResponseError(DWORD dwResponse
);
186 static BOOL
FTP_ConvertFileProp(LPFILEPROPERTIESW lpafp
, LPWIN32_FIND_DATAW lpFindFileData
);
187 static BOOL
FTP_FtpPutFileW(ftp_session_t
*, LPCWSTR lpszLocalFile
,
188 LPCWSTR lpszNewRemoteFile
, DWORD dwFlags
, DWORD_PTR dwContext
);
189 static BOOL
FTP_FtpSetCurrentDirectoryW(ftp_session_t
*, LPCWSTR lpszDirectory
);
190 static BOOL
FTP_FtpCreateDirectoryW(ftp_session_t
*, LPCWSTR lpszDirectory
);
191 static HINTERNET
FTP_FtpFindFirstFileW(ftp_session_t
*,
192 LPCWSTR lpszSearchFile
, LPWIN32_FIND_DATAW lpFindFileData
, DWORD dwFlags
, DWORD_PTR dwContext
);
193 static BOOL
FTP_FtpGetCurrentDirectoryW(ftp_session_t
*, LPWSTR lpszCurrentDirectory
,
194 LPDWORD lpdwCurrentDirectory
);
195 static BOOL
FTP_FtpRenameFileW(ftp_session_t
*, LPCWSTR lpszSrc
, LPCWSTR lpszDest
);
196 static BOOL
FTP_FtpRemoveDirectoryW(ftp_session_t
*, LPCWSTR lpszDirectory
);
197 static BOOL
FTP_FtpDeleteFileW(ftp_session_t
*, LPCWSTR lpszFileName
);
198 static BOOL
FTP_FtpGetFileW(ftp_session_t
*, LPCWSTR lpszRemoteFile
, LPCWSTR lpszNewFile
,
199 BOOL fFailIfExists
, DWORD dwLocalFlagsAttribute
, DWORD dwInternetFlags
,
200 DWORD_PTR dwContext
);
202 /* A temporary helper until we get rid of INTERNET_GetLastError calls */
203 static BOOL
res_to_le(DWORD res
)
205 if(res
!= ERROR_SUCCESS
)
206 INTERNET_SetLastError(res
);
207 return res
== ERROR_SUCCESS
;
210 /***********************************************************************
211 * FtpPutFileA (WININET.@)
213 * Uploads a file to the FTP server
220 BOOL WINAPI
FtpPutFileA(HINTERNET hConnect
, LPCSTR lpszLocalFile
,
221 LPCSTR lpszNewRemoteFile
, DWORD dwFlags
, DWORD_PTR dwContext
)
223 LPWSTR lpwzLocalFile
;
224 LPWSTR lpwzNewRemoteFile
;
227 lpwzLocalFile
= heap_strdupAtoW(lpszLocalFile
);
228 lpwzNewRemoteFile
= heap_strdupAtoW(lpszNewRemoteFile
);
229 ret
= FtpPutFileW(hConnect
, lpwzLocalFile
, lpwzNewRemoteFile
,
231 heap_free(lpwzLocalFile
);
232 heap_free(lpwzNewRemoteFile
);
244 static void AsyncFtpPutFileProc(task_header_t
*hdr
)
246 put_file_task_t
*task
= (put_file_task_t
*)hdr
;
247 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
249 TRACE("%p\n", session
);
251 FTP_FtpPutFileW(session
, task
->local_file
, task
->remote_file
,
252 task
->flags
, task
->context
);
254 heap_free(task
->local_file
);
255 heap_free(task
->remote_file
);
258 /***********************************************************************
259 * FtpPutFileW (WININET.@)
261 * Uploads a file to the FTP server
268 BOOL WINAPI
FtpPutFileW(HINTERNET hConnect
, LPCWSTR lpszLocalFile
,
269 LPCWSTR lpszNewRemoteFile
, DWORD dwFlags
, DWORD_PTR dwContext
)
271 ftp_session_t
*lpwfs
;
272 appinfo_t
*hIC
= NULL
;
275 if (!lpszLocalFile
|| !lpszNewRemoteFile
)
277 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
281 lpwfs
= (ftp_session_t
*) get_handle_object( hConnect
);
284 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
288 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
290 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
294 if (lpwfs
->download_in_progress
!= NULL
)
296 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
300 if ((dwFlags
& FTP_CONDITION_MASK
) > FTP_TRANSFER_TYPE_BINARY
)
302 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
306 hIC
= lpwfs
->lpAppInfo
;
307 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
309 put_file_task_t
*task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpPutFileProc
, sizeof(*task
));
311 task
->local_file
= heap_strdupW(lpszLocalFile
);
312 task
->remote_file
= heap_strdupW(lpszNewRemoteFile
);
313 task
->flags
= dwFlags
;
314 task
->context
= dwContext
;
316 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
320 r
= FTP_FtpPutFileW(lpwfs
, lpszLocalFile
,
321 lpszNewRemoteFile
, dwFlags
, dwContext
);
325 WININET_Release( &lpwfs
->hdr
);
330 /***********************************************************************
331 * FTP_FtpPutFileW (Internal)
333 * Uploads a file to the FTP server
340 static BOOL
FTP_FtpPutFileW(ftp_session_t
*lpwfs
, LPCWSTR lpszLocalFile
,
341 LPCWSTR lpszNewRemoteFile
, DWORD dwFlags
, DWORD_PTR dwContext
)
344 BOOL bSuccess
= FALSE
;
345 appinfo_t
*hIC
= NULL
;
348 TRACE(" lpszLocalFile(%s) lpszNewRemoteFile(%s)\n", debugstr_w(lpszLocalFile
), debugstr_w(lpszNewRemoteFile
));
350 /* Clear any error information */
351 INTERNET_SetLastError(0);
353 /* Open file to be uploaded */
354 if (INVALID_HANDLE_VALUE
==
355 (hFile
= CreateFileW(lpszLocalFile
, GENERIC_READ
, 0, 0, OPEN_EXISTING
, 0, 0)))
356 /* Let CreateFile set the appropriate error */
359 hIC
= lpwfs
->lpAppInfo
;
361 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_SENDING_REQUEST
, NULL
, 0);
363 if (FTP_SendStore(lpwfs
, lpszNewRemoteFile
, dwFlags
))
367 /* Get data socket to server */
368 if (FTP_GetDataSocket(lpwfs
, &nDataSocket
))
370 FTP_SendData(lpwfs
, nDataSocket
, hFile
);
371 closesocket(nDataSocket
);
372 nResCode
= FTP_ReceiveResponse(lpwfs
, dwContext
);
378 FTP_SetResponseError(nResCode
);
383 if (lpwfs
->lstnSocket
!= -1)
385 closesocket(lpwfs
->lstnSocket
);
386 lpwfs
->lstnSocket
= -1;
389 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
391 INTERNET_ASYNC_RESULT iar
;
393 iar
.dwResult
= (DWORD
)bSuccess
;
394 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
395 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
396 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
405 /***********************************************************************
406 * FtpSetCurrentDirectoryA (WININET.@)
408 * Change the working directory on the FTP server
415 BOOL WINAPI
FtpSetCurrentDirectoryA(HINTERNET hConnect
, LPCSTR lpszDirectory
)
417 LPWSTR lpwzDirectory
;
420 lpwzDirectory
= heap_strdupAtoW(lpszDirectory
);
421 ret
= FtpSetCurrentDirectoryW(hConnect
, lpwzDirectory
);
422 heap_free(lpwzDirectory
);
431 static void AsyncFtpSetCurrentDirectoryProc(task_header_t
*hdr
)
433 directory_task_t
*task
= (directory_task_t
*)hdr
;
434 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
436 TRACE("%p\n", session
);
438 FTP_FtpSetCurrentDirectoryW(session
, task
->directory
);
439 heap_free(task
->directory
);
442 /***********************************************************************
443 * FtpSetCurrentDirectoryW (WININET.@)
445 * Change the working directory on the FTP server
452 BOOL WINAPI
FtpSetCurrentDirectoryW(HINTERNET hConnect
, LPCWSTR lpszDirectory
)
454 ftp_session_t
*lpwfs
= NULL
;
455 appinfo_t
*hIC
= NULL
;
460 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
464 lpwfs
= (ftp_session_t
*) get_handle_object( hConnect
);
465 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
467 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
471 if (lpwfs
->download_in_progress
!= NULL
)
473 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
477 TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory
));
479 hIC
= lpwfs
->lpAppInfo
;
480 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
482 directory_task_t
*task
;
484 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpSetCurrentDirectoryProc
, sizeof(*task
));
485 task
->directory
= heap_strdupW(lpszDirectory
);
487 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
491 r
= FTP_FtpSetCurrentDirectoryW(lpwfs
, lpszDirectory
);
496 WININET_Release( &lpwfs
->hdr
);
502 /***********************************************************************
503 * FTP_FtpSetCurrentDirectoryW (Internal)
505 * Change the working directory on the FTP server
512 static BOOL
FTP_FtpSetCurrentDirectoryW(ftp_session_t
*lpwfs
, LPCWSTR lpszDirectory
)
515 appinfo_t
*hIC
= NULL
;
516 BOOL bSuccess
= FALSE
;
518 TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory
));
520 /* Clear any error information */
521 INTERNET_SetLastError(0);
523 hIC
= lpwfs
->lpAppInfo
;
524 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_CWD
, lpszDirectory
,
525 lpwfs
->hdr
.lpfnStatusCB
, &lpwfs
->hdr
, lpwfs
->hdr
.dwContext
))
528 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
535 FTP_SetResponseError(nResCode
);
539 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
541 INTERNET_ASYNC_RESULT iar
;
543 iar
.dwResult
= bSuccess
;
544 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: ERROR_INTERNET_EXTENDED_ERROR
;
545 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
546 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
552 /***********************************************************************
553 * FtpCreateDirectoryA (WININET.@)
555 * Create new directory on the FTP server
562 BOOL WINAPI
FtpCreateDirectoryA(HINTERNET hConnect
, LPCSTR lpszDirectory
)
564 LPWSTR lpwzDirectory
;
567 lpwzDirectory
= heap_strdupAtoW(lpszDirectory
);
568 ret
= FtpCreateDirectoryW(hConnect
, lpwzDirectory
);
569 heap_free(lpwzDirectory
);
574 static void AsyncFtpCreateDirectoryProc(task_header_t
*hdr
)
576 directory_task_t
*task
= (directory_task_t
*)hdr
;
577 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
579 TRACE(" %p\n", session
);
581 FTP_FtpCreateDirectoryW(session
, task
->directory
);
582 heap_free(task
->directory
);
585 /***********************************************************************
586 * FtpCreateDirectoryW (WININET.@)
588 * Create new directory on the FTP server
595 BOOL WINAPI
FtpCreateDirectoryW(HINTERNET hConnect
, LPCWSTR lpszDirectory
)
597 ftp_session_t
*lpwfs
;
598 appinfo_t
*hIC
= NULL
;
601 lpwfs
= (ftp_session_t
*) get_handle_object( hConnect
);
604 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
608 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
610 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
614 if (lpwfs
->download_in_progress
!= NULL
)
616 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
622 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
626 hIC
= lpwfs
->lpAppInfo
;
627 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
629 directory_task_t
*task
;
631 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpCreateDirectoryProc
, sizeof(*task
));
632 task
->directory
= heap_strdupW(lpszDirectory
);
634 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
638 r
= FTP_FtpCreateDirectoryW(lpwfs
, lpszDirectory
);
641 WININET_Release( &lpwfs
->hdr
);
647 /***********************************************************************
648 * FTP_FtpCreateDirectoryW (Internal)
650 * Create new directory on the FTP server
657 static BOOL
FTP_FtpCreateDirectoryW(ftp_session_t
*lpwfs
, LPCWSTR lpszDirectory
)
660 BOOL bSuccess
= FALSE
;
661 appinfo_t
*hIC
= NULL
;
663 TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory
));
665 /* Clear any error information */
666 INTERNET_SetLastError(0);
668 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_MKD
, lpszDirectory
, 0, 0, 0))
671 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
677 FTP_SetResponseError(nResCode
);
681 hIC
= lpwfs
->lpAppInfo
;
682 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
684 INTERNET_ASYNC_RESULT iar
;
686 iar
.dwResult
= (DWORD
)bSuccess
;
687 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
688 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
689 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
695 /***********************************************************************
696 * FtpFindFirstFileA (WININET.@)
698 * Search the specified directory
701 * HINTERNET on success
705 HINTERNET WINAPI
FtpFindFirstFileA(HINTERNET hConnect
,
706 LPCSTR lpszSearchFile
, LPWIN32_FIND_DATAA lpFindFileData
, DWORD dwFlags
, DWORD_PTR dwContext
)
708 LPWSTR lpwzSearchFile
;
709 WIN32_FIND_DATAW wfd
;
710 LPWIN32_FIND_DATAW lpFindFileDataW
;
713 lpwzSearchFile
= heap_strdupAtoW(lpszSearchFile
);
714 lpFindFileDataW
= lpFindFileData
?&wfd
:NULL
;
715 ret
= FtpFindFirstFileW(hConnect
, lpwzSearchFile
, lpFindFileDataW
, dwFlags
, dwContext
);
716 heap_free(lpwzSearchFile
);
718 if (ret
&& lpFindFileData
)
719 WININET_find_data_WtoA(lpFindFileDataW
, lpFindFileData
);
727 WIN32_FIND_DATAW
*find_file_data
;
730 } find_first_file_task_t
;
732 static void AsyncFtpFindFirstFileProc(task_header_t
*hdr
)
734 find_first_file_task_t
*task
= (find_first_file_task_t
*)hdr
;
735 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
737 TRACE("%p\n", session
);
739 FTP_FtpFindFirstFileW(session
, task
->search_file
, task
->find_file_data
, task
->flags
, task
->context
);
740 heap_free(task
->search_file
);
743 /***********************************************************************
744 * FtpFindFirstFileW (WININET.@)
746 * Search the specified directory
749 * HINTERNET on success
753 HINTERNET WINAPI
FtpFindFirstFileW(HINTERNET hConnect
,
754 LPCWSTR lpszSearchFile
, LPWIN32_FIND_DATAW lpFindFileData
, DWORD dwFlags
, DWORD_PTR dwContext
)
756 ftp_session_t
*lpwfs
;
757 appinfo_t
*hIC
= NULL
;
760 lpwfs
= (ftp_session_t
*) get_handle_object( hConnect
);
761 if (NULL
== lpwfs
|| WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
763 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
767 if (lpwfs
->download_in_progress
!= NULL
)
769 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
773 hIC
= lpwfs
->lpAppInfo
;
774 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
776 find_first_file_task_t
*task
;
778 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpFindFirstFileProc
, sizeof(*task
));
779 task
->search_file
= heap_strdupW(lpszSearchFile
);
780 task
->find_file_data
= lpFindFileData
;
781 task
->flags
= dwFlags
;
782 task
->context
= dwContext
;
784 INTERNET_AsyncCall(&task
->hdr
);
789 r
= FTP_FtpFindFirstFileW(lpwfs
, lpszSearchFile
, lpFindFileData
,
794 WININET_Release( &lpwfs
->hdr
);
800 /***********************************************************************
801 * FTP_FtpFindFirstFileW (Internal)
803 * Search the specified directory
806 * HINTERNET on success
810 static HINTERNET
FTP_FtpFindFirstFileW(ftp_session_t
*lpwfs
,
811 LPCWSTR lpszSearchFile
, LPWIN32_FIND_DATAW lpFindFileData
, DWORD dwFlags
, DWORD_PTR dwContext
)
814 appinfo_t
*hIC
= NULL
;
815 HINTERNET hFindNext
= NULL
;
816 LPWSTR lpszSearchPath
= NULL
;
820 /* Clear any error information */
821 INTERNET_SetLastError(0);
823 if (!FTP_InitListenSocket(lpwfs
))
826 if (!FTP_SendType(lpwfs
, INTERNET_FLAG_TRANSFER_ASCII
))
829 if (!FTP_SendPortOrPasv(lpwfs
))
832 /* split search path into file and path */
835 LPCWSTR name
= lpszSearchFile
, p
;
836 if ((p
= wcsrchr( name
, '\\' ))) name
= p
+ 1;
837 if ((p
= wcsrchr( name
, '/' ))) name
= p
+ 1;
838 if (name
!= lpszSearchFile
)
840 lpszSearchPath
= heap_strndupW(lpszSearchFile
, name
- lpszSearchFile
);
841 lpszSearchFile
= name
;
845 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_LIST
, lpszSearchPath
,
846 lpwfs
->hdr
.lpfnStatusCB
, &lpwfs
->hdr
, lpwfs
->hdr
.dwContext
))
849 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
852 if (nResCode
== 125 || nResCode
== 150)
856 /* Get data socket to server */
857 if (FTP_GetDataSocket(lpwfs
, &nDataSocket
))
859 hFindNext
= FTP_ReceiveFileList(lpwfs
, nDataSocket
, lpszSearchFile
, lpFindFileData
, dwContext
);
860 closesocket(nDataSocket
);
861 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
862 if (nResCode
!= 226 && nResCode
!= 250)
863 INTERNET_SetLastError(ERROR_NO_MORE_FILES
);
867 FTP_SetResponseError(nResCode
);
871 heap_free(lpszSearchPath
);
873 if (lpwfs
->lstnSocket
!= -1)
875 closesocket(lpwfs
->lstnSocket
);
876 lpwfs
->lstnSocket
= -1;
879 hIC
= lpwfs
->lpAppInfo
;
880 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
882 INTERNET_ASYNC_RESULT iar
;
886 iar
.dwResult
= (DWORD_PTR
)hFindNext
;
887 iar
.dwError
= ERROR_SUCCESS
;
888 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_HANDLE_CREATED
,
889 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
892 iar
.dwResult
= (DWORD_PTR
)hFindNext
;
893 iar
.dwError
= hFindNext
? ERROR_SUCCESS
: INTERNET_GetLastError();
894 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
895 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
902 /***********************************************************************
903 * FtpGetCurrentDirectoryA (WININET.@)
905 * Retrieves the current directory
912 BOOL WINAPI
FtpGetCurrentDirectoryA(HINTERNET hFtpSession
, LPSTR lpszCurrentDirectory
,
913 LPDWORD lpdwCurrentDirectory
)
919 if(lpdwCurrentDirectory
) {
920 len
= *lpdwCurrentDirectory
;
921 if(lpszCurrentDirectory
)
923 dir
= heap_alloc(len
* sizeof(WCHAR
));
926 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
931 ret
= FtpGetCurrentDirectoryW(hFtpSession
, lpszCurrentDirectory
?dir
:NULL
, lpdwCurrentDirectory
?&len
:NULL
);
933 if (ret
&& lpszCurrentDirectory
)
934 WideCharToMultiByte(CP_ACP
, 0, dir
, -1, lpszCurrentDirectory
, len
, NULL
, NULL
);
936 if (lpdwCurrentDirectory
) *lpdwCurrentDirectory
= len
;
944 DWORD
*directory_len
;
945 } get_current_dir_task_t
;
947 static void AsyncFtpGetCurrentDirectoryProc(task_header_t
*hdr
)
949 get_current_dir_task_t
*task
= (get_current_dir_task_t
*)hdr
;
950 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
952 TRACE("%p\n", session
);
954 FTP_FtpGetCurrentDirectoryW(session
, task
->directory
, task
->directory_len
);
957 /***********************************************************************
958 * FtpGetCurrentDirectoryW (WININET.@)
960 * Retrieves the current directory
967 BOOL WINAPI
FtpGetCurrentDirectoryW(HINTERNET hFtpSession
, LPWSTR lpszCurrentDirectory
,
968 LPDWORD lpdwCurrentDirectory
)
970 ftp_session_t
*lpwfs
;
971 appinfo_t
*hIC
= NULL
;
974 TRACE("%p %p %p\n", hFtpSession
, lpszCurrentDirectory
, lpdwCurrentDirectory
);
976 lpwfs
= (ftp_session_t
*) get_handle_object( hFtpSession
);
979 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
983 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
985 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
989 if (!lpdwCurrentDirectory
)
991 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
995 if (lpszCurrentDirectory
== NULL
)
997 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1001 if (lpwfs
->download_in_progress
!= NULL
)
1003 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
1007 hIC
= lpwfs
->lpAppInfo
;
1008 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1010 get_current_dir_task_t
*task
;
1012 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpGetCurrentDirectoryProc
, sizeof(*task
));
1013 task
->directory
= lpszCurrentDirectory
;
1014 task
->directory_len
= lpdwCurrentDirectory
;
1016 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
1020 r
= FTP_FtpGetCurrentDirectoryW(lpwfs
, lpszCurrentDirectory
,
1021 lpdwCurrentDirectory
);
1026 WININET_Release( &lpwfs
->hdr
);
1032 /***********************************************************************
1033 * FTP_FtpGetCurrentDirectoryW (Internal)
1035 * Retrieves the current directory
1042 static BOOL
FTP_FtpGetCurrentDirectoryW(ftp_session_t
*lpwfs
, LPWSTR lpszCurrentDirectory
,
1043 LPDWORD lpdwCurrentDirectory
)
1046 appinfo_t
*hIC
= NULL
;
1047 BOOL bSuccess
= FALSE
;
1049 /* Clear any error information */
1050 INTERNET_SetLastError(0);
1052 hIC
= lpwfs
->lpAppInfo
;
1053 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PWD
, NULL
,
1054 lpwfs
->hdr
.lpfnStatusCB
, &lpwfs
->hdr
, lpwfs
->hdr
.dwContext
))
1057 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1060 if (nResCode
== 257) /* Extract directory name */
1062 DWORD firstpos
, lastpos
, len
;
1063 LPWSTR lpszResponseBuffer
= heap_strdupAtoW(INTERNET_GetResponseBuffer());
1065 for (firstpos
= 0, lastpos
= 0; lpszResponseBuffer
[lastpos
]; lastpos
++)
1067 if ('"' == lpszResponseBuffer
[lastpos
])
1075 len
= lastpos
- firstpos
;
1076 if (*lpdwCurrentDirectory
>= len
)
1078 memcpy(lpszCurrentDirectory
, &lpszResponseBuffer
[firstpos
+ 1], len
* sizeof(WCHAR
));
1079 lpszCurrentDirectory
[len
- 1] = 0;
1080 *lpdwCurrentDirectory
= len
;
1083 else INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1085 heap_free(lpszResponseBuffer
);
1088 FTP_SetResponseError(nResCode
);
1092 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1094 INTERNET_ASYNC_RESULT iar
;
1096 iar
.dwResult
= bSuccess
;
1097 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: ERROR_INTERNET_EXTENDED_ERROR
;
1098 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1099 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1106 /***********************************************************************
1107 * FTPFILE_Destroy(internal)
1109 * Closes the file transfer handle. This also 'cleans' the data queue of
1110 * the 'transfer complete' message (this is a bit of a hack though :-/ )
1113 static void FTPFILE_Destroy(object_header_t
*hdr
)
1115 ftp_file_t
*lpwh
= (ftp_file_t
*) hdr
;
1116 ftp_session_t
*lpwfs
= lpwh
->lpFtpSession
;
1121 if (lpwh
->cache_file_handle
!= INVALID_HANDLE_VALUE
)
1122 CloseHandle(lpwh
->cache_file_handle
);
1124 heap_free(lpwh
->cache_file
);
1126 if (!lpwh
->session_deleted
)
1127 lpwfs
->download_in_progress
= NULL
;
1129 if (lpwh
->nDataSocket
!= -1)
1130 closesocket(lpwh
->nDataSocket
);
1132 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1133 if (nResCode
> 0 && nResCode
!= 226) WARN("server reports failed transfer\n");
1135 WININET_Release(&lpwh
->lpFtpSession
->hdr
);
1138 static DWORD
FTPFILE_QueryOption(object_header_t
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
1141 case INTERNET_OPTION_HANDLE_TYPE
:
1142 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
1144 if (*size
< sizeof(ULONG
))
1145 return ERROR_INSUFFICIENT_BUFFER
;
1147 *size
= sizeof(DWORD
);
1148 *(DWORD
*)buffer
= INTERNET_HANDLE_TYPE_FTP_FILE
;
1149 return ERROR_SUCCESS
;
1150 case INTERNET_OPTION_DATAFILE_NAME
:
1153 ftp_file_t
*file
= (ftp_file_t
*)hdr
;
1155 TRACE("INTERNET_OPTION_DATAFILE_NAME\n");
1157 if (!file
->cache_file
)
1160 return ERROR_INTERNET_ITEM_NOT_FOUND
;
1164 required
= (lstrlenW(file
->cache_file
) + 1) * sizeof(WCHAR
);
1165 if (*size
< required
)
1166 return ERROR_INSUFFICIENT_BUFFER
;
1169 memcpy(buffer
, file
->cache_file
, *size
);
1170 return ERROR_SUCCESS
;
1174 required
= WideCharToMultiByte(CP_ACP
, 0, file
->cache_file
, -1, NULL
, 0, NULL
, NULL
);
1175 if (required
> *size
)
1176 return ERROR_INSUFFICIENT_BUFFER
;
1178 *size
= WideCharToMultiByte(CP_ACP
, 0, file
->cache_file
, -1, buffer
, *size
, NULL
, NULL
);
1179 return ERROR_SUCCESS
;
1183 return INET_QueryOption(hdr
, option
, buffer
, size
, unicode
);
1186 static DWORD
FTPFILE_ReadFile(object_header_t
*hdr
, void *buffer
, DWORD size
, DWORD
*read
,
1187 DWORD flags
, DWORD_PTR context
)
1189 ftp_file_t
*file
= (ftp_file_t
*)hdr
;
1193 if (file
->nDataSocket
== -1)
1194 return ERROR_INTERNET_DISCONNECTED
;
1196 /* FIXME: FTP should use NETCON_ stuff */
1197 res
= sock_recv(file
->nDataSocket
, buffer
, size
, MSG_WAITALL
);
1198 *read
= res
>0 ? res
: 0;
1200 error
= res
>= 0 ? ERROR_SUCCESS
: INTERNET_ERROR_BASE
; /* FIXME */
1201 if (error
== ERROR_SUCCESS
&& file
->cache_file
)
1203 DWORD bytes_written
;
1205 if (!WriteFile(file
->cache_file_handle
, buffer
, *read
, &bytes_written
, NULL
))
1206 WARN("WriteFile failed: %lu\n", GetLastError());
1211 static DWORD
FTPFILE_WriteFile(object_header_t
*hdr
, const void *buffer
, DWORD size
, DWORD
*written
)
1213 ftp_file_t
*lpwh
= (ftp_file_t
*) hdr
;
1216 res
= sock_send(lpwh
->nDataSocket
, buffer
, size
, 0);
1218 *written
= res
>0 ? res
: 0;
1219 return res
>= 0 ? ERROR_SUCCESS
: WSAGetLastError();
1222 static void FTP_ReceiveRequestData(ftp_file_t
*file
, BOOL first_notif
)
1224 INTERNET_ASYNC_RESULT iar
;
1228 TRACE("%p\n", file
);
1230 available
= sock_recv(file
->nDataSocket
, buffer
, sizeof(buffer
), MSG_PEEK
);
1232 if(available
!= -1) {
1233 iar
.dwResult
= (DWORD_PTR
)file
->hdr
.hInternet
;
1234 iar
.dwError
= first_notif
? 0 : available
;
1237 iar
.dwError
= INTERNET_GetLastError();
1240 INTERNET_SendCallback(&file
->hdr
, file
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
1241 sizeof(INTERNET_ASYNC_RESULT
));
1244 static void FTPFILE_AsyncQueryDataAvailableProc(task_header_t
*task
)
1246 ftp_file_t
*file
= (ftp_file_t
*)task
->hdr
;
1248 FTP_ReceiveRequestData(file
, FALSE
);
1251 static DWORD
FTPFILE_QueryDataAvailable(object_header_t
*hdr
, DWORD
*available
, DWORD flags
, DWORD_PTR ctx
)
1253 ftp_file_t
*file
= (ftp_file_t
*) hdr
;
1257 TRACE("(%p %p %lx %Ix)\n", file
, available
, flags
, ctx
);
1259 retval
= ioctlsocket(file
->nDataSocket
, FIONREAD
, &unread
);
1261 TRACE("%ld bytes of queued, but unread data\n", unread
);
1263 *available
= unread
;
1270 retval
= sock_recv(file
->nDataSocket
, &byte
, 1, MSG_PEEK
);
1272 task_header_t
*task
;
1274 task
= alloc_async_task(&file
->hdr
, FTPFILE_AsyncQueryDataAvailableProc
, sizeof(*task
));
1275 INTERNET_AsyncCall(task
);
1277 return ERROR_IO_PENDING
;
1281 return ERROR_SUCCESS
;
1284 static DWORD
FTPFILE_LockRequestFile(object_header_t
*hdr
, req_file_t
**ret
)
1286 ftp_file_t
*file
= (ftp_file_t
*)hdr
;
1287 FIXME("%p\n", file
);
1288 return ERROR_NOT_SUPPORTED
;
1291 static const object_vtbl_t FTPFILEVtbl
= {
1294 FTPFILE_QueryOption
,
1298 FTPFILE_QueryDataAvailable
,
1300 FTPFILE_LockRequestFile
1303 /***********************************************************************
1304 * FTP_FtpOpenFileW (Internal)
1306 * Open a remote file for writing or reading
1309 * HINTERNET handle on success
1313 static HINTERNET
FTP_FtpOpenFileW(ftp_session_t
*lpwfs
,
1314 LPCWSTR lpszFileName
, DWORD fdwAccess
, DWORD dwFlags
,
1315 DWORD_PTR dwContext
)
1318 BOOL bSuccess
= FALSE
;
1319 ftp_file_t
*lpwh
= NULL
;
1320 appinfo_t
*hIC
= NULL
;
1324 /* Clear any error information */
1325 INTERNET_SetLastError(0);
1327 if (GENERIC_READ
== fdwAccess
)
1329 /* Set up socket to retrieve data */
1330 bSuccess
= FTP_SendRetrieve(lpwfs
, lpszFileName
, dwFlags
);
1332 else if (GENERIC_WRITE
== fdwAccess
)
1334 /* Set up socket to send data */
1335 bSuccess
= FTP_SendStore(lpwfs
, lpszFileName
, dwFlags
);
1338 /* Get data socket to server */
1339 if (bSuccess
&& FTP_GetDataSocket(lpwfs
, &nDataSocket
))
1341 lpwh
= alloc_object(&lpwfs
->hdr
, &FTPFILEVtbl
, sizeof(ftp_file_t
));
1342 lpwh
->hdr
.htype
= WH_HFILE
;
1343 lpwh
->hdr
.dwFlags
= dwFlags
;
1344 lpwh
->hdr
.dwContext
= dwContext
;
1345 lpwh
->nDataSocket
= nDataSocket
;
1346 lpwh
->cache_file
= NULL
;
1347 lpwh
->cache_file_handle
= INVALID_HANDLE_VALUE
;
1348 lpwh
->session_deleted
= FALSE
;
1350 WININET_AddRef( &lpwfs
->hdr
);
1351 lpwh
->lpFtpSession
= lpwfs
;
1352 list_add_head( &lpwfs
->hdr
.children
, &lpwh
->hdr
.entry
);
1354 /* Indicate that a download is currently in progress */
1355 lpwfs
->download_in_progress
= lpwh
;
1358 if (lpwfs
->lstnSocket
!= -1)
1360 closesocket(lpwfs
->lstnSocket
);
1361 lpwfs
->lstnSocket
= -1;
1364 if (bSuccess
&& fdwAccess
== GENERIC_READ
)
1366 WCHAR filename
[MAX_PATH
+ 1];
1370 memset(&uc
, 0, sizeof(uc
));
1371 uc
.dwStructSize
= sizeof(uc
);
1372 uc
.nScheme
= INTERNET_SCHEME_FTP
;
1373 uc
.lpszHostName
= lpwfs
->servername
;
1374 uc
.nPort
= lpwfs
->serverport
;
1375 uc
.lpszUserName
= lpwfs
->lpszUserName
;
1376 uc
.lpszUrlPath
= heap_strdupW(lpszFileName
);
1378 if (!InternetCreateUrlW(&uc
, 0, NULL
, &len
) && GetLastError() == ERROR_INSUFFICIENT_BUFFER
)
1380 WCHAR
*url
= heap_alloc(len
* sizeof(WCHAR
));
1382 if (url
&& InternetCreateUrlW(&uc
, 0, url
, &len
) && CreateUrlCacheEntryW(url
, 0, NULL
, filename
, 0))
1384 lpwh
->cache_file
= heap_strdupW(filename
);
1385 lpwh
->cache_file_handle
= CreateFileW(filename
, GENERIC_WRITE
, FILE_SHARE_READ
,
1386 NULL
, OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
1387 if (lpwh
->cache_file_handle
== INVALID_HANDLE_VALUE
)
1389 WARN("Could not create cache file: %lu\n", GetLastError());
1390 heap_free(lpwh
->cache_file
);
1391 lpwh
->cache_file
= NULL
;
1396 heap_free(uc
.lpszUrlPath
);
1399 hIC
= lpwfs
->lpAppInfo
;
1400 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1402 INTERNET_ASYNC_RESULT iar
;
1406 iar
.dwResult
= (DWORD_PTR
)lpwh
->hdr
.hInternet
;
1407 iar
.dwError
= ERROR_SUCCESS
;
1408 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_HANDLE_CREATED
,
1409 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1413 FTP_ReceiveRequestData(lpwh
, TRUE
);
1416 iar
.dwError
= INTERNET_GetLastError();
1417 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1418 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1425 return lpwh
->hdr
.hInternet
;
1429 /***********************************************************************
1430 * FtpOpenFileA (WININET.@)
1432 * Open a remote file for writing or reading
1435 * HINTERNET handle on success
1439 HINTERNET WINAPI
FtpOpenFileA(HINTERNET hFtpSession
,
1440 LPCSTR lpszFileName
, DWORD fdwAccess
, DWORD dwFlags
,
1441 DWORD_PTR dwContext
)
1443 LPWSTR lpwzFileName
;
1446 lpwzFileName
= heap_strdupAtoW(lpszFileName
);
1447 ret
= FtpOpenFileW(hFtpSession
, lpwzFileName
, fdwAccess
, dwFlags
, dwContext
);
1448 heap_free(lpwzFileName
);
1460 static void AsyncFtpOpenFileProc(task_header_t
*hdr
)
1462 open_file_task_t
*task
= (open_file_task_t
*)hdr
;
1463 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
1465 TRACE("%p\n", session
);
1467 FTP_FtpOpenFileW(session
, task
->file_name
, task
->access
, task
->flags
, task
->context
);
1468 heap_free(task
->file_name
);
1471 /***********************************************************************
1472 * FtpOpenFileW (WININET.@)
1474 * Open a remote file for writing or reading
1477 * HINTERNET handle on success
1481 HINTERNET WINAPI
FtpOpenFileW(HINTERNET hFtpSession
,
1482 LPCWSTR lpszFileName
, DWORD fdwAccess
, DWORD dwFlags
,
1483 DWORD_PTR dwContext
)
1485 ftp_session_t
*lpwfs
;
1486 appinfo_t
*hIC
= NULL
;
1489 TRACE("(%p,%s,0x%08lx,0x%08lx,0x%08Ix)\n", hFtpSession
,
1490 debugstr_w(lpszFileName
), fdwAccess
, dwFlags
, dwContext
);
1492 lpwfs
= (ftp_session_t
*) get_handle_object( hFtpSession
);
1495 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1499 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1501 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1505 if ((!lpszFileName
) ||
1506 ((fdwAccess
!= GENERIC_READ
) && (fdwAccess
!= GENERIC_WRITE
)) ||
1507 ((dwFlags
& FTP_CONDITION_MASK
) > FTP_TRANSFER_TYPE_BINARY
))
1509 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1513 if (lpwfs
->download_in_progress
!= NULL
)
1515 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
1519 hIC
= lpwfs
->lpAppInfo
;
1520 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1522 open_file_task_t
*task
;
1524 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpOpenFileProc
, sizeof(*task
));
1525 task
->file_name
= heap_strdupW(lpszFileName
);
1526 task
->access
= fdwAccess
;
1527 task
->flags
= dwFlags
;
1528 task
->context
= dwContext
;
1530 INTERNET_AsyncCall(&task
->hdr
);
1535 r
= FTP_FtpOpenFileW(lpwfs
, lpszFileName
, fdwAccess
, dwFlags
, dwContext
);
1539 WININET_Release( &lpwfs
->hdr
);
1545 /***********************************************************************
1546 * FtpGetFileA (WININET.@)
1548 * Retrieve file from the FTP server
1555 BOOL WINAPI
FtpGetFileA(HINTERNET hInternet
, LPCSTR lpszRemoteFile
, LPCSTR lpszNewFile
,
1556 BOOL fFailIfExists
, DWORD dwLocalFlagsAttribute
, DWORD dwInternetFlags
,
1557 DWORD_PTR dwContext
)
1559 LPWSTR lpwzRemoteFile
;
1563 lpwzRemoteFile
= heap_strdupAtoW(lpszRemoteFile
);
1564 lpwzNewFile
= heap_strdupAtoW(lpszNewFile
);
1565 ret
= FtpGetFileW(hInternet
, lpwzRemoteFile
, lpwzNewFile
, fFailIfExists
,
1566 dwLocalFlagsAttribute
, dwInternetFlags
, dwContext
);
1567 heap_free(lpwzRemoteFile
);
1568 heap_free(lpwzNewFile
);
1576 BOOL fail_if_exists
;
1582 static void AsyncFtpGetFileProc(task_header_t
*hdr
)
1584 get_file_task_t
*task
= (get_file_task_t
*)hdr
;
1585 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
1587 TRACE("%p\n", session
);
1589 FTP_FtpGetFileW(session
, task
->remote_file
, task
->new_file
, task
->fail_if_exists
,
1590 task
->local_attr
, task
->flags
, task
->context
);
1591 heap_free(task
->remote_file
);
1592 heap_free(task
->new_file
);
1596 /***********************************************************************
1597 * FtpGetFileW (WININET.@)
1599 * Retrieve file from the FTP server
1606 BOOL WINAPI
FtpGetFileW(HINTERNET hInternet
, LPCWSTR lpszRemoteFile
, LPCWSTR lpszNewFile
,
1607 BOOL fFailIfExists
, DWORD dwLocalFlagsAttribute
, DWORD dwInternetFlags
,
1608 DWORD_PTR dwContext
)
1610 ftp_session_t
*lpwfs
;
1611 appinfo_t
*hIC
= NULL
;
1614 if (!lpszRemoteFile
|| !lpszNewFile
)
1616 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1620 lpwfs
= (ftp_session_t
*) get_handle_object( hInternet
);
1623 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1627 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1629 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1633 if ((dwInternetFlags
& FTP_CONDITION_MASK
) > FTP_TRANSFER_TYPE_BINARY
)
1635 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1639 if (lpwfs
->download_in_progress
!= NULL
)
1641 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
1645 hIC
= lpwfs
->lpAppInfo
;
1646 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1648 get_file_task_t
*task
;
1650 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpGetFileProc
, sizeof(*task
));
1651 task
->remote_file
= heap_strdupW(lpszRemoteFile
);
1652 task
->new_file
= heap_strdupW(lpszNewFile
);
1653 task
->local_attr
= dwLocalFlagsAttribute
;
1654 task
->fail_if_exists
= fFailIfExists
;
1655 task
->flags
= dwInternetFlags
;
1656 task
->context
= dwContext
;
1658 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
1662 r
= FTP_FtpGetFileW(lpwfs
, lpszRemoteFile
, lpszNewFile
,
1663 fFailIfExists
, dwLocalFlagsAttribute
, dwInternetFlags
, dwContext
);
1667 WININET_Release( &lpwfs
->hdr
);
1673 /***********************************************************************
1674 * FTP_FtpGetFileW (Internal)
1676 * Retrieve file from the FTP server
1683 static BOOL
FTP_FtpGetFileW(ftp_session_t
*lpwfs
, LPCWSTR lpszRemoteFile
, LPCWSTR lpszNewFile
,
1684 BOOL fFailIfExists
, DWORD dwLocalFlagsAttribute
, DWORD dwInternetFlags
,
1685 DWORD_PTR dwContext
)
1687 BOOL bSuccess
= FALSE
;
1689 appinfo_t
*hIC
= NULL
;
1691 TRACE("lpszRemoteFile(%s) lpszNewFile(%s)\n", debugstr_w(lpszRemoteFile
), debugstr_w(lpszNewFile
));
1693 /* Clear any error information */
1694 INTERNET_SetLastError(0);
1696 /* Ensure we can write to lpszNewfile by opening it */
1697 hFile
= CreateFileW(lpszNewFile
, GENERIC_WRITE
, 0, 0, fFailIfExists
?
1698 CREATE_NEW
: CREATE_ALWAYS
, dwLocalFlagsAttribute
, 0);
1699 if (INVALID_HANDLE_VALUE
== hFile
)
1702 /* Set up socket to retrieve data */
1703 if (FTP_SendRetrieve(lpwfs
, lpszRemoteFile
, dwInternetFlags
))
1707 /* Get data socket to server */
1708 if (FTP_GetDataSocket(lpwfs
, &nDataSocket
))
1713 FTP_RetrieveFileData(lpwfs
, nDataSocket
, hFile
);
1714 closesocket(nDataSocket
);
1716 nResCode
= FTP_ReceiveResponse(lpwfs
, dwContext
);
1719 if (nResCode
== 226)
1722 FTP_SetResponseError(nResCode
);
1727 if (lpwfs
->lstnSocket
!= -1)
1729 closesocket(lpwfs
->lstnSocket
);
1730 lpwfs
->lstnSocket
= -1;
1735 hIC
= lpwfs
->lpAppInfo
;
1736 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1738 INTERNET_ASYNC_RESULT iar
;
1740 iar
.dwResult
= (DWORD
)bSuccess
;
1741 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1742 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1743 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1746 if (!bSuccess
) DeleteFileW(lpszNewFile
);
1750 /***********************************************************************
1751 * FtpGetFileSize (WININET.@)
1753 DWORD WINAPI
FtpGetFileSize( HINTERNET hFile
, LPDWORD lpdwFileSizeHigh
)
1755 FIXME("(%p, %p)\n", hFile
, lpdwFileSizeHigh
);
1757 if (lpdwFileSizeHigh
)
1758 *lpdwFileSizeHigh
= 0;
1763 /***********************************************************************
1764 * FtpDeleteFileA (WININET.@)
1766 * Delete a file on the ftp server
1773 BOOL WINAPI
FtpDeleteFileA(HINTERNET hFtpSession
, LPCSTR lpszFileName
)
1775 LPWSTR lpwzFileName
;
1778 lpwzFileName
= heap_strdupAtoW(lpszFileName
);
1779 ret
= FtpDeleteFileW(hFtpSession
, lpwzFileName
);
1780 heap_free(lpwzFileName
);
1787 } delete_file_task_t
;
1789 static void AsyncFtpDeleteFileProc(task_header_t
*hdr
)
1791 delete_file_task_t
*task
= (delete_file_task_t
*)hdr
;
1792 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
1794 TRACE("%p\n", session
);
1796 FTP_FtpDeleteFileW(session
, task
->file_name
);
1797 heap_free(task
->file_name
);
1800 /***********************************************************************
1801 * FtpDeleteFileW (WININET.@)
1803 * Delete a file on the ftp server
1810 BOOL WINAPI
FtpDeleteFileW(HINTERNET hFtpSession
, LPCWSTR lpszFileName
)
1812 ftp_session_t
*lpwfs
;
1813 appinfo_t
*hIC
= NULL
;
1816 lpwfs
= (ftp_session_t
*) get_handle_object( hFtpSession
);
1819 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1823 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1825 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1829 if (lpwfs
->download_in_progress
!= NULL
)
1831 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
1837 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1841 hIC
= lpwfs
->lpAppInfo
;
1842 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1844 delete_file_task_t
*task
;
1846 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpDeleteFileProc
, sizeof(*task
));
1847 task
->file_name
= heap_strdupW(lpszFileName
);
1849 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
1853 r
= FTP_FtpDeleteFileW(lpwfs
, lpszFileName
);
1857 WININET_Release( &lpwfs
->hdr
);
1862 /***********************************************************************
1863 * FTP_FtpDeleteFileW (Internal)
1865 * Delete a file on the ftp server
1872 BOOL
FTP_FtpDeleteFileW(ftp_session_t
*lpwfs
, LPCWSTR lpszFileName
)
1875 BOOL bSuccess
= FALSE
;
1876 appinfo_t
*hIC
= NULL
;
1878 TRACE("%p\n", lpwfs
);
1880 /* Clear any error information */
1881 INTERNET_SetLastError(0);
1883 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_DELE
, lpszFileName
, 0, 0, 0))
1886 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
1889 if (nResCode
== 250)
1892 FTP_SetResponseError(nResCode
);
1895 hIC
= lpwfs
->lpAppInfo
;
1896 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1898 INTERNET_ASYNC_RESULT iar
;
1900 iar
.dwResult
= (DWORD
)bSuccess
;
1901 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
1902 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
1903 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
1910 /***********************************************************************
1911 * FtpRemoveDirectoryA (WININET.@)
1913 * Remove a directory on the ftp server
1920 BOOL WINAPI
FtpRemoveDirectoryA(HINTERNET hFtpSession
, LPCSTR lpszDirectory
)
1922 LPWSTR lpwzDirectory
;
1925 lpwzDirectory
= heap_strdupAtoW(lpszDirectory
);
1926 ret
= FtpRemoveDirectoryW(hFtpSession
, lpwzDirectory
);
1927 heap_free(lpwzDirectory
);
1931 static void AsyncFtpRemoveDirectoryProc(task_header_t
*hdr
)
1933 directory_task_t
*task
= (directory_task_t
*)hdr
;
1934 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
1936 TRACE("%p\n", session
);
1938 FTP_FtpRemoveDirectoryW(session
, task
->directory
);
1939 heap_free(task
->directory
);
1942 /***********************************************************************
1943 * FtpRemoveDirectoryW (WININET.@)
1945 * Remove a directory on the ftp server
1952 BOOL WINAPI
FtpRemoveDirectoryW(HINTERNET hFtpSession
, LPCWSTR lpszDirectory
)
1954 ftp_session_t
*lpwfs
;
1955 appinfo_t
*hIC
= NULL
;
1958 lpwfs
= (ftp_session_t
*) get_handle_object( hFtpSession
);
1961 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1965 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
1967 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1971 if (lpwfs
->download_in_progress
!= NULL
)
1973 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
1979 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1983 hIC
= lpwfs
->lpAppInfo
;
1984 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1986 directory_task_t
*task
;
1988 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpRemoveDirectoryProc
, sizeof(*task
));
1989 task
->directory
= heap_strdupW(lpszDirectory
);
1991 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
1995 r
= FTP_FtpRemoveDirectoryW(lpwfs
, lpszDirectory
);
1999 WININET_Release( &lpwfs
->hdr
);
2004 /***********************************************************************
2005 * FTP_FtpRemoveDirectoryW (Internal)
2007 * Remove a directory on the ftp server
2014 BOOL
FTP_FtpRemoveDirectoryW(ftp_session_t
*lpwfs
, LPCWSTR lpszDirectory
)
2017 BOOL bSuccess
= FALSE
;
2018 appinfo_t
*hIC
= NULL
;
2022 /* Clear any error information */
2023 INTERNET_SetLastError(0);
2025 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RMD
, lpszDirectory
, 0, 0, 0))
2028 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2031 if (nResCode
== 250)
2034 FTP_SetResponseError(nResCode
);
2038 hIC
= lpwfs
->lpAppInfo
;
2039 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
2041 INTERNET_ASYNC_RESULT iar
;
2043 iar
.dwResult
= (DWORD
)bSuccess
;
2044 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
2045 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
2046 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
2053 /***********************************************************************
2054 * FtpRenameFileA (WININET.@)
2056 * Rename a file on the ftp server
2063 BOOL WINAPI
FtpRenameFileA(HINTERNET hFtpSession
, LPCSTR lpszSrc
, LPCSTR lpszDest
)
2069 lpwzSrc
= heap_strdupAtoW(lpszSrc
);
2070 lpwzDest
= heap_strdupAtoW(lpszDest
);
2071 ret
= FtpRenameFileW(hFtpSession
, lpwzSrc
, lpwzDest
);
2073 heap_free(lpwzDest
);
2081 } rename_file_task_t
;
2083 static void AsyncFtpRenameFileProc(task_header_t
*hdr
)
2085 rename_file_task_t
*task
= (rename_file_task_t
*)hdr
;
2086 ftp_session_t
*session
= (ftp_session_t
*)task
->hdr
.hdr
;
2088 TRACE("%p\n", session
);
2090 FTP_FtpRenameFileW(session
, task
->src_file
, task
->dst_file
);
2091 heap_free(task
->src_file
);
2092 heap_free(task
->dst_file
);
2095 /***********************************************************************
2096 * FtpRenameFileW (WININET.@)
2098 * Rename a file on the ftp server
2105 BOOL WINAPI
FtpRenameFileW(HINTERNET hFtpSession
, LPCWSTR lpszSrc
, LPCWSTR lpszDest
)
2107 ftp_session_t
*lpwfs
;
2108 appinfo_t
*hIC
= NULL
;
2111 lpwfs
= (ftp_session_t
*) get_handle_object( hFtpSession
);
2114 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
2118 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
2120 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2124 if (lpwfs
->download_in_progress
!= NULL
)
2126 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
2130 if (!lpszSrc
|| !lpszDest
)
2132 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2136 hIC
= lpwfs
->lpAppInfo
;
2137 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
2139 rename_file_task_t
*task
;
2141 task
= alloc_async_task(&lpwfs
->hdr
, AsyncFtpRenameFileProc
, sizeof(*task
));
2142 task
->src_file
= heap_strdupW(lpszSrc
);
2143 task
->dst_file
= heap_strdupW(lpszDest
);
2145 r
= res_to_le(INTERNET_AsyncCall(&task
->hdr
));
2149 r
= FTP_FtpRenameFileW(lpwfs
, lpszSrc
, lpszDest
);
2153 WININET_Release( &lpwfs
->hdr
);
2158 /***********************************************************************
2159 * FTP_FtpRenameFileW (Internal)
2161 * Rename a file on the ftp server
2168 BOOL
FTP_FtpRenameFileW(ftp_session_t
*lpwfs
, LPCWSTR lpszSrc
, LPCWSTR lpszDest
)
2171 BOOL bSuccess
= FALSE
;
2172 appinfo_t
*hIC
= NULL
;
2176 /* Clear any error information */
2177 INTERNET_SetLastError(0);
2179 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RNFR
, lpszSrc
, 0, 0, 0))
2182 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2183 if (nResCode
== 350)
2185 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RNTO
, lpszDest
, 0, 0, 0))
2188 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2191 if (nResCode
== 250)
2194 FTP_SetResponseError(nResCode
);
2197 hIC
= lpwfs
->lpAppInfo
;
2198 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
2200 INTERNET_ASYNC_RESULT iar
;
2202 iar
.dwResult
= (DWORD
)bSuccess
;
2203 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
2204 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
,
2205 &iar
, sizeof(INTERNET_ASYNC_RESULT
));
2211 /***********************************************************************
2212 * FtpCommandA (WININET.@)
2214 BOOL WINAPI
FtpCommandA( HINTERNET hConnect
, BOOL fExpectResponse
, DWORD dwFlags
,
2215 LPCSTR lpszCommand
, DWORD_PTR dwContext
, HINTERNET
* phFtpCommand
)
2220 TRACE("%p %d 0x%08lx %s 0x%08Ix %p\n", hConnect
, fExpectResponse
, dwFlags
,
2221 debugstr_a(lpszCommand
), dwContext
, phFtpCommand
);
2223 if (fExpectResponse
)
2225 FIXME("data connection not supported\n");
2229 if (!lpszCommand
|| !lpszCommand
[0])
2231 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2235 if (!(cmdW
= heap_strdupAtoW(lpszCommand
)))
2237 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2241 r
= FtpCommandW(hConnect
, fExpectResponse
, dwFlags
, cmdW
, dwContext
, phFtpCommand
);
2247 /***********************************************************************
2248 * FtpCommandW (WININET.@)
2250 BOOL WINAPI
FtpCommandW( HINTERNET hConnect
, BOOL fExpectResponse
, DWORD dwFlags
,
2251 LPCWSTR lpszCommand
, DWORD_PTR dwContext
, HINTERNET
* phFtpCommand
)
2254 ftp_session_t
*lpwfs
;
2256 DWORD len
, nBytesSent
= 0;
2257 INT nResCode
, nRC
= 0;
2259 TRACE("%p %d 0x%08lx %s 0x%08Ix %p\n", hConnect
, fExpectResponse
, dwFlags
,
2260 debugstr_w(lpszCommand
), dwContext
, phFtpCommand
);
2262 if (!lpszCommand
|| !lpszCommand
[0])
2264 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2268 if (fExpectResponse
)
2270 FIXME("data connection not supported\n");
2274 lpwfs
= (ftp_session_t
*) get_handle_object( hConnect
);
2277 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
2281 if (WH_HFTPSESSION
!= lpwfs
->hdr
.htype
)
2283 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2287 if (lpwfs
->download_in_progress
!= NULL
)
2289 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
2293 len
= WideCharToMultiByte(CP_ACP
, 0, lpszCommand
, -1, NULL
, 0, NULL
, NULL
) + strlen(szCRLF
);
2294 if ((cmd
= heap_alloc(len
)))
2295 WideCharToMultiByte(CP_ACP
, 0, lpszCommand
, -1, cmd
, len
, NULL
, NULL
);
2298 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2302 strcat(cmd
, szCRLF
);
2305 TRACE("Sending (%s) len(%ld)\n", debugstr_a(cmd
), len
);
2306 while ((nBytesSent
< len
) && (nRC
!= -1))
2308 nRC
= sock_send(lpwfs
->sndSocket
, cmd
+ nBytesSent
, len
- nBytesSent
, 0);
2312 TRACE("Sent %d bytes\n", nRC
);
2318 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2319 if (nResCode
> 0 && nResCode
< 400)
2322 FTP_SetResponseError(nResCode
);
2326 WININET_Release( &lpwfs
->hdr
);
2332 /***********************************************************************
2333 * FTPSESSION_Destroy (internal)
2335 * Deallocate session handle
2337 static void FTPSESSION_Destroy(object_header_t
*hdr
)
2339 ftp_session_t
*lpwfs
= (ftp_session_t
*) hdr
;
2343 WININET_Release(&lpwfs
->lpAppInfo
->hdr
);
2345 heap_free(lpwfs
->lpszPassword
);
2346 heap_free(lpwfs
->lpszUserName
);
2347 heap_free(lpwfs
->servername
);
2350 static void FTPSESSION_CloseConnection(object_header_t
*hdr
)
2352 ftp_session_t
*lpwfs
= (ftp_session_t
*) hdr
;
2356 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
,
2357 INTERNET_STATUS_CLOSING_CONNECTION
, 0, 0);
2359 if (lpwfs
->download_in_progress
!= NULL
)
2360 lpwfs
->download_in_progress
->session_deleted
= TRUE
;
2362 if (lpwfs
->sndSocket
!= -1)
2363 closesocket(lpwfs
->sndSocket
);
2365 if (lpwfs
->lstnSocket
!= -1)
2366 closesocket(lpwfs
->lstnSocket
);
2368 if (lpwfs
->pasvSocket
!= -1)
2369 closesocket(lpwfs
->pasvSocket
);
2371 INTERNET_SendCallback(&lpwfs
->hdr
, lpwfs
->hdr
.dwContext
,
2372 INTERNET_STATUS_CONNECTION_CLOSED
, 0, 0);
2375 static DWORD
FTPSESSION_QueryOption(object_header_t
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
2378 case INTERNET_OPTION_HANDLE_TYPE
:
2379 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
2381 if (*size
< sizeof(ULONG
))
2382 return ERROR_INSUFFICIENT_BUFFER
;
2384 *size
= sizeof(DWORD
);
2385 *(DWORD
*)buffer
= INTERNET_HANDLE_TYPE_CONNECT_FTP
;
2386 return ERROR_SUCCESS
;
2389 return INET_QueryOption(hdr
, option
, buffer
, size
, unicode
);
2392 static const object_vtbl_t FTPSESSIONVtbl
= {
2394 FTPSESSION_CloseConnection
,
2395 FTPSESSION_QueryOption
,
2404 /***********************************************************************
2405 * FTP_Connect (internal)
2407 * Connect to a ftp server
2410 * HINTERNET a session handle on success
2415 * Windows uses 'anonymous' as the username, when given a NULL username
2416 * and a NULL password. The password is first looked up in:
2418 * HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\EmailName
2420 * If this entry is not present it uses the current username as the password.
2424 HINTERNET
FTP_Connect(appinfo_t
*hIC
, LPCWSTR lpszServerName
,
2425 INTERNET_PORT nServerPort
, LPCWSTR lpszUserName
,
2426 LPCWSTR lpszPassword
, DWORD dwFlags
, DWORD_PTR dwContext
,
2427 DWORD dwInternalFlags
)
2429 struct sockaddr_in socketAddr
;
2431 socklen_t sock_namelen
;
2432 BOOL bSuccess
= FALSE
;
2433 ftp_session_t
*lpwfs
= NULL
;
2434 char szaddr
[INET6_ADDRSTRLEN
];
2436 TRACE("%p Server(%s) Port(%d) User(%s) Paswd(%s)\n",
2437 hIC
, debugstr_w(lpszServerName
),
2438 nServerPort
, debugstr_w(lpszUserName
), debugstr_w(lpszPassword
));
2440 assert( hIC
->hdr
.htype
== WH_HINIT
);
2442 if ((!lpszUserName
|| !*lpszUserName
) && lpszPassword
&& *lpszPassword
)
2444 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2448 lpwfs
= alloc_object(&hIC
->hdr
, &FTPSESSIONVtbl
, sizeof(ftp_session_t
));
2451 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2455 if (nServerPort
== INTERNET_INVALID_PORT_NUMBER
)
2456 lpwfs
->serverport
= INTERNET_DEFAULT_FTP_PORT
;
2458 lpwfs
->serverport
= nServerPort
;
2460 lpwfs
->hdr
.htype
= WH_HFTPSESSION
;
2461 lpwfs
->hdr
.dwFlags
= dwFlags
;
2462 lpwfs
->hdr
.dwContext
= dwContext
;
2463 lpwfs
->hdr
.dwInternalFlags
|= dwInternalFlags
;
2464 lpwfs
->download_in_progress
= NULL
;
2465 lpwfs
->sndSocket
= -1;
2466 lpwfs
->lstnSocket
= -1;
2467 lpwfs
->pasvSocket
= -1;
2469 WININET_AddRef( &hIC
->hdr
);
2470 lpwfs
->lpAppInfo
= hIC
;
2471 list_add_head( &hIC
->hdr
.children
, &lpwfs
->hdr
.entry
);
2473 if(hIC
->proxy
&& hIC
->accessType
== INTERNET_OPEN_TYPE_PROXY
) {
2474 if(wcschr(hIC
->proxy
, ' '))
2475 FIXME("Several proxies not implemented.\n");
2476 if(hIC
->proxyBypass
)
2477 FIXME("Proxy bypass is ignored.\n");
2479 if (!lpszUserName
|| !lpszUserName
[0]) {
2481 WCHAR szPassword
[MAX_PATH
];
2482 DWORD len
= sizeof(szPassword
);
2484 lpwfs
->lpszUserName
= heap_strdupW(L
"anonymous");
2486 RegOpenKeyW(HKEY_CURRENT_USER
, L
"Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings", &key
);
2487 if (RegQueryValueExW(key
, L
"EmailName", NULL
, NULL
, (LPBYTE
)szPassword
, &len
)) {
2488 /* Nothing in the registry, get the username and use that as the password */
2489 if (!GetUserNameW(szPassword
, &len
)) {
2490 /* Should never get here, but use an empty password as failsafe */
2491 lstrcpyW(szPassword
, L
"");
2496 TRACE("Password used for anonymous ftp : (%s)\n", debugstr_w(szPassword
));
2497 lpwfs
->lpszPassword
= heap_strdupW(szPassword
);
2500 lpwfs
->lpszUserName
= heap_strdupW(lpszUserName
);
2501 lpwfs
->lpszPassword
= heap_strdupW(lpszPassword
? lpszPassword
: L
"");
2503 lpwfs
->servername
= heap_strdupW(lpszServerName
);
2505 /* Don't send a handle created callback if this handle was created with InternetOpenUrl */
2506 if (!(lpwfs
->hdr
.dwInternalFlags
& INET_OPENURL
))
2508 INTERNET_ASYNC_RESULT iar
;
2510 iar
.dwResult
= (DWORD_PTR
)lpwfs
->hdr
.hInternet
;
2511 iar
.dwError
= ERROR_SUCCESS
;
2513 INTERNET_SendCallback(&hIC
->hdr
, dwContext
,
2514 INTERNET_STATUS_HANDLE_CREATED
, &iar
,
2515 sizeof(INTERNET_ASYNC_RESULT
));
2518 INTERNET_SendCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_RESOLVING_NAME
,
2519 (LPWSTR
) lpszServerName
, (lstrlenW(lpszServerName
)+1) * sizeof(WCHAR
));
2521 sock_namelen
= sizeof(socketAddr
);
2522 if (!GetAddress(lpszServerName
, lpwfs
->serverport
, (struct sockaddr
*)&socketAddr
, &sock_namelen
, szaddr
))
2524 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED
);
2528 if (socketAddr
.sin_family
!= AF_INET
)
2530 WARN("unsupported address family %d\n", socketAddr
.sin_family
);
2531 INTERNET_SetLastError(ERROR_INTERNET_CANNOT_CONNECT
);
2535 INTERNET_SendCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_NAME_RESOLVED
,
2536 szaddr
, strlen(szaddr
)+1);
2539 nsocket
= socket(AF_INET
,SOCK_STREAM
,0);
2542 INTERNET_SetLastError(ERROR_INTERNET_CANNOT_CONNECT
);
2546 INTERNET_SendCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_CONNECTING_TO_SERVER
,
2547 szaddr
, strlen(szaddr
)+1);
2549 if (connect(nsocket
, (struct sockaddr
*)&socketAddr
, sock_namelen
) < 0)
2551 ERR("Unable to connect (%d)\n", WSAGetLastError());
2552 INTERNET_SetLastError(ERROR_INTERNET_CANNOT_CONNECT
);
2553 closesocket(nsocket
);
2557 TRACE("Connected to server\n");
2558 lpwfs
->sndSocket
= nsocket
;
2559 INTERNET_SendCallback(&hIC
->hdr
, dwContext
, INTERNET_STATUS_CONNECTED_TO_SERVER
,
2560 szaddr
, strlen(szaddr
)+1);
2562 sock_namelen
= sizeof(lpwfs
->socketAddress
);
2563 getsockname(nsocket
, (struct sockaddr
*) &lpwfs
->socketAddress
, &sock_namelen
);
2565 if (FTP_ConnectToHost(lpwfs
))
2567 TRACE("Successfully logged into server\n");
2575 WININET_Release(&lpwfs
->hdr
);
2579 return lpwfs
->hdr
.hInternet
;
2583 /***********************************************************************
2584 * FTP_ConnectToHost (internal)
2586 * Connect to a ftp server
2593 static BOOL
FTP_ConnectToHost(ftp_session_t
*lpwfs
)
2596 BOOL bSuccess
= FALSE
;
2599 FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2601 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_USER
, lpwfs
->lpszUserName
, 0, 0, 0))
2604 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2607 /* Login successful... */
2608 if (nResCode
== 230)
2610 /* User name okay, need password... */
2611 else if (nResCode
== 331)
2612 bSuccess
= FTP_SendPassword(lpwfs
);
2613 /* Need account for login... */
2614 else if (nResCode
== 332)
2615 bSuccess
= FTP_SendAccount(lpwfs
);
2617 FTP_SetResponseError(nResCode
);
2620 TRACE("Returning %d\n", bSuccess
);
2625 /***********************************************************************
2626 * FTP_GetNextLine (internal)
2628 * Parse next line in directory string listing
2631 * Pointer to beginning of next line
2636 static LPSTR
FTP_GetNextLine(INT nSocket
, LPDWORD dwLen
)
2638 struct timeval tv
= {RESPONSE_TIMEOUT
,0};
2641 LPSTR lpszBuffer
= INTERNET_GetResponseBuffer();
2646 FD_SET(nSocket
, &set
);
2648 while (nRecv
< MAX_REPLY_LEN
)
2650 if (select(nSocket
+1, &set
, NULL
, NULL
, &tv
) > 0)
2652 if (sock_recv(nSocket
, &lpszBuffer
[nRecv
], 1, 0) <= 0)
2654 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
2658 if (lpszBuffer
[nRecv
] == '\n')
2660 lpszBuffer
[nRecv
] = '\0';
2662 TRACE(":%d %s\n", nRecv
, lpszBuffer
);
2665 if (lpszBuffer
[nRecv
] != '\r')
2670 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT
);
2678 /***********************************************************************
2679 * FTP_SendCommandA (internal)
2681 * Send command to server
2688 static BOOL
FTP_SendCommandA(INT nSocket
, FTP_COMMAND ftpCmd
, LPCSTR lpszParam
,
2689 INTERNET_STATUS_CALLBACK lpfnStatusCB
, object_header_t
*hdr
, DWORD_PTR dwContext
)
2693 DWORD nBytesSent
= 0;
2697 TRACE("%d: (%s) %d\n", ftpCmd
, debugstr_a(lpszParam
), nSocket
);
2701 lpfnStatusCB(hdr
->hInternet
, dwContext
, INTERNET_STATUS_SENDING_REQUEST
, NULL
, 0);
2704 dwParamLen
= lpszParam
?strlen(lpszParam
)+1:0;
2705 len
= dwParamLen
+ strlen(szFtpCommands
[ftpCmd
]) + strlen(szCRLF
);
2706 if (NULL
== (buf
= heap_alloc(len
+1)))
2708 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2711 sprintf(buf
, "%s%s%s%s", szFtpCommands
[ftpCmd
], dwParamLen
? " " : "",
2712 dwParamLen
? lpszParam
: "", szCRLF
);
2714 TRACE("Sending (%s) len(%ld)\n", debugstr_a(buf
), len
);
2715 while((nBytesSent
< len
) && (nRC
!= -1))
2717 nRC
= sock_send(nSocket
, buf
+nBytesSent
, len
- nBytesSent
, 0);
2724 lpfnStatusCB(hdr
->hInternet
, dwContext
, INTERNET_STATUS_REQUEST_SENT
,
2725 &nBytesSent
, sizeof(DWORD
));
2728 TRACE("Sent %ld bytes\n", nBytesSent
);
2732 /***********************************************************************
2733 * FTP_SendCommand (internal)
2735 * Send command to server
2742 static BOOL
FTP_SendCommand(INT nSocket
, FTP_COMMAND ftpCmd
, LPCWSTR lpszParam
,
2743 INTERNET_STATUS_CALLBACK lpfnStatusCB
, object_header_t
*hdr
, DWORD_PTR dwContext
)
2746 LPSTR lpszParamA
= heap_strdupWtoA(lpszParam
);
2747 ret
= FTP_SendCommandA(nSocket
, ftpCmd
, lpszParamA
, lpfnStatusCB
, hdr
, dwContext
);
2748 heap_free(lpszParamA
);
2752 /***********************************************************************
2753 * FTP_ReceiveResponse (internal)
2755 * Receive response from server
2758 * Reply code on success
2762 INT
FTP_ReceiveResponse(ftp_session_t
*lpwfs
, DWORD_PTR dwContext
)
2764 LPSTR lpszResponse
= INTERNET_GetResponseBuffer();
2767 char firstprefix
[5];
2768 BOOL multiline
= FALSE
;
2770 TRACE("socket(%d)\n", lpwfs
->sndSocket
);
2772 INTERNET_SendCallback(&lpwfs
->hdr
, dwContext
, INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
2776 if (!FTP_GetNextLine(lpwfs
->sndSocket
, &nRecv
))
2783 if(lpszResponse
[3] != '-')
2786 { /* Start of multiline response. Loop until we get "nnn " */
2788 memcpy(firstprefix
, lpszResponse
, 3);
2789 firstprefix
[3] = ' ';
2790 firstprefix
[4] = '\0';
2795 if(!memcmp(firstprefix
, lpszResponse
, 4))
2803 rc
= atoi(lpszResponse
);
2805 INTERNET_SendCallback(&lpwfs
->hdr
, dwContext
, INTERNET_STATUS_RESPONSE_RECEIVED
,
2806 &nRecv
, sizeof(DWORD
));
2810 TRACE("return %d\n", rc
);
2815 /***********************************************************************
2816 * FTP_SendPassword (internal)
2818 * Send password to ftp server
2825 static BOOL
FTP_SendPassword(ftp_session_t
*lpwfs
)
2828 BOOL bSuccess
= FALSE
;
2831 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PASS
, lpwfs
->lpszPassword
, 0, 0, 0))
2834 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2837 TRACE("Received reply code %d\n", nResCode
);
2838 /* Login successful... */
2839 if (nResCode
== 230)
2841 /* Command not implemented, superfluous at the server site... */
2842 /* Need account for login... */
2843 else if (nResCode
== 332)
2844 bSuccess
= FTP_SendAccount(lpwfs
);
2846 FTP_SetResponseError(nResCode
);
2850 TRACE("Returning %d\n", bSuccess
);
2855 /***********************************************************************
2856 * FTP_SendAccount (internal)
2865 static BOOL
FTP_SendAccount(ftp_session_t
*lpwfs
)
2868 BOOL bSuccess
= FALSE
;
2871 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_ACCT
, L
"noaccount", 0, 0, 0))
2874 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2878 FTP_SetResponseError(nResCode
);
2885 /***********************************************************************
2886 * FTP_SendStore (internal)
2888 * Send request to upload file to ftp server
2895 static BOOL
FTP_SendStore(ftp_session_t
*lpwfs
, LPCWSTR lpszRemoteFile
, DWORD dwType
)
2898 BOOL bSuccess
= FALSE
;
2901 if (!FTP_InitListenSocket(lpwfs
))
2904 if (!FTP_SendType(lpwfs
, dwType
))
2907 if (!FTP_SendPortOrPasv(lpwfs
))
2910 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_STOR
, lpszRemoteFile
, 0, 0, 0))
2912 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
2915 if (nResCode
== 150 || nResCode
== 125)
2918 FTP_SetResponseError(nResCode
);
2922 if (!bSuccess
&& lpwfs
->lstnSocket
!= -1)
2924 closesocket(lpwfs
->lstnSocket
);
2925 lpwfs
->lstnSocket
= -1;
2932 /***********************************************************************
2933 * FTP_InitListenSocket (internal)
2935 * Create a socket to listen for server response
2942 static BOOL
FTP_InitListenSocket(ftp_session_t
*lpwfs
)
2944 BOOL bSuccess
= FALSE
;
2945 socklen_t namelen
= sizeof(lpwfs
->lstnSocketAddress
);
2950 lpwfs
->lstnSocket
= socket(AF_INET
, SOCK_STREAM
, 0);
2951 if (lpwfs
->lstnSocket
== -1)
2953 TRACE("Unable to create listening socket\n");
2957 /* We obtain our ip addr from the name of the command channel socket */
2958 lpwfs
->lstnSocketAddress
= lpwfs
->socketAddress
;
2960 /* and get the system to assign us a port */
2961 lpwfs
->lstnSocketAddress
.sin_port
= htons(0);
2963 if (bind(lpwfs
->lstnSocket
,(struct sockaddr
*) &lpwfs
->lstnSocketAddress
, sizeof(lpwfs
->lstnSocketAddress
)) == -1)
2965 TRACE("Unable to bind socket\n");
2969 if (listen(lpwfs
->lstnSocket
, MAX_BACKLOG
) == -1)
2971 TRACE("listen failed\n");
2975 if (getsockname(lpwfs
->lstnSocket
, (struct sockaddr
*) &lpwfs
->lstnSocketAddress
, &namelen
) != -1)
2979 if (!bSuccess
&& lpwfs
->lstnSocket
!= -1)
2981 closesocket(lpwfs
->lstnSocket
);
2982 lpwfs
->lstnSocket
= -1;
2989 /***********************************************************************
2990 * FTP_SendType (internal)
2992 * Tell server type of data being transferred
2998 * W98SE doesn't cache the type that's currently set
2999 * (i.e. it sends it always),
3000 * so we probably don't want to do that either.
3002 static BOOL
FTP_SendType(ftp_session_t
*lpwfs
, DWORD dwType
)
3005 WCHAR type
[] = L
"I";
3006 BOOL bSuccess
= FALSE
;
3009 if (dwType
& INTERNET_FLAG_TRANSFER_ASCII
)
3012 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_TYPE
, type
, 0, 0, 0))
3015 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
)/100;
3021 FTP_SetResponseError(nResCode
);
3029 #if 0 /* FIXME: should probably be used for FtpGetFileSize */
3030 /***********************************************************************
3031 * FTP_GetFileSize (internal)
3033 * Retrieves from the server the size of the given file
3040 static BOOL
FTP_GetFileSize(ftp_session_t
*lpwfs
, LPCWSTR lpszRemoteFile
, DWORD
*dwSize
)
3043 BOOL bSuccess
= FALSE
;
3047 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_SIZE
, lpszRemoteFile
, 0, 0, 0))
3050 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
3053 if (nResCode
== 213) {
3054 /* Now parses the output to get the actual file size */
3056 LPSTR lpszResponseBuffer
= INTERNET_GetResponseBuffer();
3058 for (i
= 0; (lpszResponseBuffer
[i
] != ' ') && (lpszResponseBuffer
[i
] != '\0'); i
++) ;
3059 if (lpszResponseBuffer
[i
] == '\0') return FALSE
;
3060 *dwSize
= atol(&(lpszResponseBuffer
[i
+ 1]));
3064 FTP_SetResponseError(nResCode
);
3074 /***********************************************************************
3075 * FTP_SendPort (internal)
3077 * Tell server which port to use
3084 static BOOL
FTP_SendPort(ftp_session_t
*lpwfs
)
3087 WCHAR szIPAddress
[64];
3088 BOOL bSuccess
= FALSE
;
3091 swprintf(szIPAddress
, ARRAY_SIZE(szIPAddress
), L
"%d,%d,%d,%d,%d,%d",
3092 lpwfs
->lstnSocketAddress
.sin_addr
.S_un
.S_addr
&0x000000FF,
3093 (lpwfs
->lstnSocketAddress
.sin_addr
.S_un
.S_addr
&0x0000FF00)>>8,
3094 (lpwfs
->lstnSocketAddress
.sin_addr
.S_un
.S_addr
&0x00FF0000)>>16,
3095 (lpwfs
->lstnSocketAddress
.sin_addr
.S_un
.S_addr
&0xFF000000)>>24,
3096 lpwfs
->lstnSocketAddress
.sin_port
& 0xFF,
3097 (lpwfs
->lstnSocketAddress
.sin_port
& 0xFF00)>>8);
3099 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PORT
, szIPAddress
, 0, 0, 0))
3102 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
3105 if (nResCode
== 200)
3108 FTP_SetResponseError(nResCode
);
3116 /***********************************************************************
3117 * FTP_DoPassive (internal)
3119 * Tell server that we want to do passive transfers
3120 * and connect data socket
3127 static BOOL
FTP_DoPassive(ftp_session_t
*lpwfs
)
3130 BOOL bSuccess
= FALSE
;
3133 if (!FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_PASV
, NULL
, 0, 0, 0))
3136 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
3139 if (nResCode
== 227)
3141 LPSTR lpszResponseBuffer
= INTERNET_GetResponseBuffer();
3145 char *pAddr
, *pPort
;
3147 struct sockaddr_in dataSocketAddress
;
3149 p
= lpszResponseBuffer
+4; /* skip status code */
3150 while (*p
!= '\0' && (*p
< '0' || *p
> '9')) p
++;
3154 ERR("no address found in response, aborting\n");
3158 if (sscanf(p
, "%d,%d,%d,%d,%d,%d", &f
[0], &f
[1], &f
[2], &f
[3],
3161 ERR("unknown response address format '%s', aborting\n", p
);
3164 for (i
=0; i
< 6; i
++)
3167 dataSocketAddress
= lpwfs
->socketAddress
;
3168 pAddr
= (char *)&(dataSocketAddress
.sin_addr
.S_un
.S_addr
);
3169 pPort
= (char *)&(dataSocketAddress
.sin_port
);
3177 nsocket
= socket(AF_INET
,SOCK_STREAM
,0);
3181 if (connect(nsocket
, (struct sockaddr
*)&dataSocketAddress
, sizeof(dataSocketAddress
)))
3183 ERR("can't connect passive FTP data port.\n");
3184 closesocket(nsocket
);
3187 lpwfs
->pasvSocket
= nsocket
;
3191 FTP_SetResponseError(nResCode
);
3199 static BOOL
FTP_SendPortOrPasv(ftp_session_t
*lpwfs
)
3201 if (lpwfs
->hdr
.dwFlags
& INTERNET_FLAG_PASSIVE
)
3203 if (!FTP_DoPassive(lpwfs
))
3208 if (!FTP_SendPort(lpwfs
))
3215 /***********************************************************************
3216 * FTP_GetDataSocket (internal)
3218 * Either accepts an incoming data socket connection from the server
3219 * or just returns the already opened socket after a PASV command
3220 * in case of passive FTP.
3228 static BOOL
FTP_GetDataSocket(ftp_session_t
*lpwfs
, LPINT nDataSocket
)
3230 struct sockaddr_in saddr
;
3231 socklen_t addrlen
= sizeof(saddr
);
3234 if (lpwfs
->hdr
.dwFlags
& INTERNET_FLAG_PASSIVE
)
3236 *nDataSocket
= lpwfs
->pasvSocket
;
3237 lpwfs
->pasvSocket
= -1;
3241 *nDataSocket
= accept(lpwfs
->lstnSocket
, (struct sockaddr
*) &saddr
, &addrlen
);
3242 closesocket(lpwfs
->lstnSocket
);
3243 lpwfs
->lstnSocket
= -1;
3245 return *nDataSocket
!= -1;
3249 /***********************************************************************
3250 * FTP_SendData (internal)
3252 * Send data to the server
3259 static BOOL
FTP_SendData(ftp_session_t
*lpwfs
, INT nDataSocket
, HANDLE hFile
)
3261 BY_HANDLE_FILE_INFORMATION fi
;
3262 DWORD nBytesRead
= 0;
3263 DWORD nBytesSent
= 0;
3264 DWORD nTotalSent
= 0;
3265 DWORD nBytesToSend
, nLen
;
3267 time_t s_long_time
, e_long_time
;
3272 lpszBuffer
= heap_alloc_zero(sizeof(CHAR
)*DATA_PACKET_SIZE
);
3274 /* Get the size of the file. */
3275 GetFileInformationByHandle(hFile
, &fi
);
3280 nBytesToSend
= nBytesRead
- nBytesSent
;
3282 if (nBytesToSend
<= 0)
3284 /* Read data from file. */
3286 if (!ReadFile(hFile
, lpszBuffer
, DATA_PACKET_SIZE
, &nBytesRead
, 0))
3287 ERR("Failed reading from file\n");
3290 nBytesToSend
= nBytesRead
;
3295 nLen
= DATA_PACKET_SIZE
< nBytesToSend
?
3296 DATA_PACKET_SIZE
: nBytesToSend
;
3297 nRC
= sock_send(nDataSocket
, lpszBuffer
, nLen
, 0);
3305 /* Do some computation to display the status. */
3307 nSeconds
= e_long_time
- s_long_time
;
3308 if( nSeconds
/ 60 > 0 )
3310 TRACE( "%ld bytes of %ld bytes (%ld%%) in %ld min %ld sec estimated remaining time %ld sec\n",
3311 nTotalSent
, fi
.nFileSizeLow
, nTotalSent
*100/fi
.nFileSizeLow
, nSeconds
/ 60,
3312 nSeconds
% 60, (fi
.nFileSizeLow
- nTotalSent
) * nSeconds
/ nTotalSent
);
3316 TRACE( "%ld bytes of %ld bytes (%ld%%) in %ld sec estimated remaining time %ld sec\n",
3317 nTotalSent
, fi
.nFileSizeLow
, nTotalSent
*100/fi
.nFileSizeLow
, nSeconds
,
3318 (fi
.nFileSizeLow
- nTotalSent
) * nSeconds
/ nTotalSent
);
3320 } while (nRC
!= -1);
3322 TRACE("file transfer complete!\n");
3324 heap_free(lpszBuffer
);
3329 /***********************************************************************
3330 * FTP_SendRetrieve (internal)
3332 * Send request to retrieve a file
3335 * Number of bytes to be received on success
3339 static BOOL
FTP_SendRetrieve(ftp_session_t
*lpwfs
, LPCWSTR lpszRemoteFile
, DWORD dwType
)
3345 if (!(ret
= FTP_InitListenSocket(lpwfs
)))
3348 if (!(ret
= FTP_SendType(lpwfs
, dwType
)))
3351 if (!(ret
= FTP_SendPortOrPasv(lpwfs
)))
3354 if (!(ret
= FTP_SendCommand(lpwfs
->sndSocket
, FTP_CMD_RETR
, lpszRemoteFile
, 0, 0, 0)))
3357 nResCode
= FTP_ReceiveResponse(lpwfs
, lpwfs
->hdr
.dwContext
);
3358 if ((nResCode
!= 125) && (nResCode
!= 150)) {
3359 /* That means that we got an error getting the file. */
3360 FTP_SetResponseError(nResCode
);
3365 if (!ret
&& lpwfs
->lstnSocket
!= -1)
3367 closesocket(lpwfs
->lstnSocket
);
3368 lpwfs
->lstnSocket
= -1;
3375 /***********************************************************************
3376 * FTP_RetrieveData (internal)
3378 * Retrieve data from server
3385 static BOOL
FTP_RetrieveFileData(ftp_session_t
*lpwfs
, INT nDataSocket
, HANDLE hFile
)
3387 DWORD nBytesWritten
;
3393 lpszBuffer
= heap_alloc_zero(sizeof(CHAR
)*DATA_PACKET_SIZE
);
3394 if (NULL
== lpszBuffer
)
3396 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
3402 nRC
= sock_recv(nDataSocket
, lpszBuffer
, DATA_PACKET_SIZE
, 0);
3405 /* other side closed socket. */
3408 WriteFile(hFile
, lpszBuffer
, nRC
, &nBytesWritten
, NULL
);
3412 TRACE("Data transfer complete\n");
3415 heap_free(lpszBuffer
);
3419 /***********************************************************************
3420 * FTPFINDNEXT_Destroy (internal)
3422 * Deallocate session handle
3424 static void FTPFINDNEXT_Destroy(object_header_t
*hdr
)
3426 LPWININETFTPFINDNEXTW lpwfn
= (LPWININETFTPFINDNEXTW
) hdr
;
3431 WININET_Release(&lpwfn
->lpFtpSession
->hdr
);
3433 for (i
= 0; i
< lpwfn
->size
; i
++)
3435 heap_free(lpwfn
->lpafp
[i
].lpszName
);
3437 heap_free(lpwfn
->lpafp
);
3440 static DWORD
FTPFINDNEXT_FindNextFileProc(WININETFTPFINDNEXTW
*find
, LPVOID data
)
3442 WIN32_FIND_DATAW
*find_data
= data
;
3443 DWORD res
= ERROR_SUCCESS
;
3445 TRACE("index(%ld) size(%ld)\n", find
->index
, find
->size
);
3447 ZeroMemory(find_data
, sizeof(WIN32_FIND_DATAW
));
3449 if (find
->index
< find
->size
) {
3450 FTP_ConvertFileProp(&find
->lpafp
[find
->index
], find_data
);
3453 TRACE("Name: %s\nSize: %ld\n", debugstr_w(find_data
->cFileName
), find_data
->nFileSizeLow
);
3455 res
= ERROR_NO_MORE_FILES
;
3458 if (find
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
3460 INTERNET_ASYNC_RESULT iar
;
3462 iar
.dwResult
= (res
== ERROR_SUCCESS
);
3465 INTERNET_SendCallback(&find
->hdr
, find
->hdr
.dwContext
,
3466 INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
3467 sizeof(INTERNET_ASYNC_RESULT
));
3475 WIN32_FIND_DATAW
*find_data
;
3478 static void FTPFINDNEXT_AsyncFindNextFileProc(task_header_t
*hdr
)
3480 find_next_task_t
*task
= (find_next_task_t
*)hdr
;
3482 FTPFINDNEXT_FindNextFileProc((WININETFTPFINDNEXTW
*)task
->hdr
.hdr
, task
->find_data
);
3485 static DWORD
FTPFINDNEXT_QueryOption(object_header_t
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
3488 case INTERNET_OPTION_HANDLE_TYPE
:
3489 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
3491 if (*size
< sizeof(ULONG
))
3492 return ERROR_INSUFFICIENT_BUFFER
;
3494 *size
= sizeof(DWORD
);
3495 *(DWORD
*)buffer
= INTERNET_HANDLE_TYPE_FTP_FIND
;
3496 return ERROR_SUCCESS
;
3499 return INET_QueryOption(hdr
, option
, buffer
, size
, unicode
);
3502 static DWORD
FTPFINDNEXT_FindNextFileW(object_header_t
*hdr
, void *data
)
3504 WININETFTPFINDNEXTW
*find
= (WININETFTPFINDNEXTW
*)hdr
;
3506 if (find
->lpFtpSession
->lpAppInfo
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
3508 find_next_task_t
*task
;
3510 task
= alloc_async_task(&find
->hdr
, FTPFINDNEXT_AsyncFindNextFileProc
, sizeof(*task
));
3511 task
->find_data
= data
;
3513 INTERNET_AsyncCall(&task
->hdr
);
3514 return ERROR_SUCCESS
;
3517 return FTPFINDNEXT_FindNextFileProc(find
, data
);
3520 static const object_vtbl_t FTPFINDNEXTVtbl
= {
3521 FTPFINDNEXT_Destroy
,
3523 FTPFINDNEXT_QueryOption
,
3528 FTPFINDNEXT_FindNextFileW
3531 /***********************************************************************
3532 * FTP_ReceiveFileList (internal)
3534 * Read file list from server
3537 * Handle to file list on success
3541 static HINTERNET
FTP_ReceiveFileList(ftp_session_t
*lpwfs
, INT nSocket
, LPCWSTR lpszSearchFile
,
3542 LPWIN32_FIND_DATAW lpFindFileData
, DWORD_PTR dwContext
)
3545 LPFILEPROPERTIESW lpafp
= NULL
;
3546 LPWININETFTPFINDNEXTW lpwfn
= NULL
;
3548 TRACE("(%p,%d,%s,%p,%08Ix)\n", lpwfs
, nSocket
, debugstr_w(lpszSearchFile
), lpFindFileData
, dwContext
);
3550 if (FTP_ParseDirectory(lpwfs
, nSocket
, lpszSearchFile
, &lpafp
, &dwSize
))
3553 FTP_ConvertFileProp(lpafp
, lpFindFileData
);
3555 lpwfn
= alloc_object(&lpwfs
->hdr
, &FTPFINDNEXTVtbl
, sizeof(WININETFTPFINDNEXTW
));
3558 lpwfn
->hdr
.htype
= WH_HFTPFINDNEXT
;
3559 lpwfn
->hdr
.dwContext
= dwContext
;
3560 lpwfn
->index
= 1; /* Next index is 1 since we return index 0 */
3561 lpwfn
->size
= dwSize
;
3562 lpwfn
->lpafp
= lpafp
;
3564 WININET_AddRef( &lpwfs
->hdr
);
3565 lpwfn
->lpFtpSession
= lpwfs
;
3566 list_add_head( &lpwfs
->hdr
.children
, &lpwfn
->hdr
.entry
);
3570 TRACE("Matched %ld files\n", dwSize
);
3571 return lpwfn
? lpwfn
->hdr
.hInternet
: NULL
;
3575 /***********************************************************************
3576 * FTP_ConvertFileProp (internal)
3578 * Converts FILEPROPERTIESW struct to WIN32_FIND_DATAA
3585 static BOOL
FTP_ConvertFileProp(LPFILEPROPERTIESW lpafp
, LPWIN32_FIND_DATAW lpFindFileData
)
3587 BOOL bSuccess
= FALSE
;
3589 ZeroMemory(lpFindFileData
, sizeof(WIN32_FIND_DATAW
));
3593 SystemTimeToFileTime( &lpafp
->tmLastModified
, &lpFindFileData
->ftLastAccessTime
);
3594 lpFindFileData
->ftLastWriteTime
= lpFindFileData
->ftLastAccessTime
;
3595 lpFindFileData
->ftCreationTime
= lpFindFileData
->ftLastAccessTime
;
3597 /* Not all fields are filled in */
3598 lpFindFileData
->nFileSizeHigh
= 0; /* We do not handle files bigger than 0xFFFFFFFF bytes yet :-) */
3599 lpFindFileData
->nFileSizeLow
= lpafp
->nSize
;
3601 if (lpafp
->bIsDirectory
)
3602 lpFindFileData
->dwFileAttributes
|= FILE_ATTRIBUTE_DIRECTORY
;
3604 if (lpafp
->lpszName
)
3605 lstrcpynW(lpFindFileData
->cFileName
, lpafp
->lpszName
, MAX_PATH
);
3613 /***********************************************************************
3614 * FTP_ParseNextFile (internal)
3616 * Parse the next line in file listing
3622 static BOOL
FTP_ParseNextFile(INT nSocket
, LPCWSTR lpszSearchFile
, LPFILEPROPERTIESW lpfp
)
3624 static const char szSpace
[] = " \t";
3632 lpfp
->lpszName
= NULL
;
3634 if(!(pszLine
= FTP_GetNextLine(nSocket
, &nBufLen
)))
3637 pszToken
= strtok(pszLine
, szSpace
);
3639 * <Permissions> <NoLinks> <owner> <group> <size> <date> <time or year> <filename>
3642 * drwx--s--- 2 pcarrier ens 512 Sep 28 1995 pcarrier
3644 if(!isdigit(pszToken
[0]) && 10 == strlen(pszToken
)) {
3645 if(!FTP_ParsePermission(pszToken
, lpfp
))
3646 lpfp
->bIsDirectory
= FALSE
;
3647 for(i
=0; i
<=3; i
++) {
3648 if(!(pszToken
= strtok(NULL
, szSpace
)))
3651 if(!pszToken
) continue;
3652 if(lpfp
->bIsDirectory
) {
3653 TRACE("Is directory\n");
3657 TRACE("Size: %s\n", pszToken
);
3658 lpfp
->nSize
= atol(pszToken
);
3661 lpfp
->tmLastModified
.wSecond
= 0;
3662 lpfp
->tmLastModified
.wMinute
= 0;
3663 lpfp
->tmLastModified
.wHour
= 0;
3664 lpfp
->tmLastModified
.wDay
= 0;
3665 lpfp
->tmLastModified
.wMonth
= 0;
3666 lpfp
->tmLastModified
.wYear
= 0;
3668 /* Determine month */
3669 pszToken
= strtok(NULL
, szSpace
);
3670 if(!pszToken
) continue;
3671 if(strlen(pszToken
) >= 3) {
3673 if((pszTmp
= StrStrIA(szMonths
, pszToken
)))
3674 lpfp
->tmLastModified
.wMonth
= ((pszTmp
- szMonths
) / 3)+1;
3677 pszToken
= strtok(NULL
, szSpace
);
3678 if(!pszToken
) continue;
3679 lpfp
->tmLastModified
.wDay
= atoi(pszToken
);
3680 /* Determine time or year */
3681 pszToken
= strtok(NULL
, szSpace
);
3682 if(!pszToken
) continue;
3683 if((pszTmp
= strchr(pszToken
, ':'))) {
3684 SYSTEMTIME curr_time
;
3687 lpfp
->tmLastModified
.wMinute
= atoi(pszTmp
);
3688 lpfp
->tmLastModified
.wHour
= atoi(pszToken
);
3689 GetLocalTime( &curr_time
);
3690 lpfp
->tmLastModified
.wYear
= curr_time
.wYear
;
3693 lpfp
->tmLastModified
.wYear
= atoi(pszToken
);
3694 lpfp
->tmLastModified
.wHour
= 12;
3696 TRACE("Mod time: %02d:%02d:%02d %04d/%02d/%02d\n",
3697 lpfp
->tmLastModified
.wHour
, lpfp
->tmLastModified
.wMinute
, lpfp
->tmLastModified
.wSecond
,
3698 lpfp
->tmLastModified
.wYear
, lpfp
->tmLastModified
.wMonth
, lpfp
->tmLastModified
.wDay
);
3700 pszToken
= strtok(NULL
, szSpace
);
3701 if(!pszToken
) continue;
3702 lpfp
->lpszName
= heap_strdupAtoW(pszToken
);
3703 TRACE("File: %s\n", debugstr_w(lpfp
->lpszName
));
3705 /* NT way of parsing ... :
3707 07-13-03 08:55PM <DIR> sakpatch
3708 05-09-03 06:02PM 12656686 2003-04-21bgm_cmd_e.rgz
3710 else if(isdigit(pszToken
[0]) && 8 == strlen(pszToken
)) {
3711 int mon
, mday
, year
, hour
, min
;
3712 lpfp
->permissions
= 0xFFFF; /* No idea, put full permission :-) */
3714 sscanf(pszToken
, "%d-%d-%d", &mon
, &mday
, &year
);
3715 lpfp
->tmLastModified
.wDay
= mday
;
3716 lpfp
->tmLastModified
.wMonth
= mon
;
3717 lpfp
->tmLastModified
.wYear
= year
;
3719 /* Hacky and bad Y2K protection :-) */
3720 if (lpfp
->tmLastModified
.wYear
< 70) lpfp
->tmLastModified
.wYear
+= 2000;
3722 pszToken
= strtok(NULL
, szSpace
);
3723 if(!pszToken
) continue;
3724 sscanf(pszToken
, "%d:%d", &hour
, &min
);
3725 lpfp
->tmLastModified
.wHour
= hour
;
3726 lpfp
->tmLastModified
.wMinute
= min
;
3727 if((pszToken
[5] == 'P') && (pszToken
[6] == 'M')) {
3728 lpfp
->tmLastModified
.wHour
+= 12;
3730 lpfp
->tmLastModified
.wSecond
= 0;
3732 TRACE("Mod time: %02d:%02d:%02d %04d/%02d/%02d\n",
3733 lpfp
->tmLastModified
.wHour
, lpfp
->tmLastModified
.wMinute
, lpfp
->tmLastModified
.wSecond
,
3734 lpfp
->tmLastModified
.wYear
, lpfp
->tmLastModified
.wMonth
, lpfp
->tmLastModified
.wDay
);
3736 pszToken
= strtok(NULL
, szSpace
);
3737 if(!pszToken
) continue;
3738 if(!stricmp(pszToken
, "<DIR>")) {
3739 lpfp
->bIsDirectory
= TRUE
;
3741 TRACE("Is directory\n");
3744 lpfp
->bIsDirectory
= FALSE
;
3745 lpfp
->nSize
= atol(pszToken
);
3746 TRACE("Size: %ld\n", lpfp
->nSize
);
3749 pszToken
= strtok(NULL
, szSpace
);
3750 if(!pszToken
) continue;
3751 lpfp
->lpszName
= heap_strdupAtoW(pszToken
);
3752 TRACE("Name: %s\n", debugstr_w(lpfp
->lpszName
));
3754 /* EPLF format - http://cr.yp.to/ftp/list/eplf.html */
3755 else if(pszToken
[0] == '+') {
3756 FIXME("EPLF Format not implemented\n");
3759 if(lpfp
->lpszName
) {
3760 if((lpszSearchFile
== NULL
) ||
3761 (PathMatchSpecW(lpfp
->lpszName
, lpszSearchFile
))) {
3763 TRACE("Matched: %s\n", debugstr_w(lpfp
->lpszName
));
3766 heap_free(lpfp
->lpszName
);
3767 lpfp
->lpszName
= NULL
;
3774 /***********************************************************************
3775 * FTP_ParseDirectory (internal)
3777 * Parse string of directory information
3783 static BOOL
FTP_ParseDirectory(ftp_session_t
*lpwfs
, INT nSocket
, LPCWSTR lpszSearchFile
,
3784 LPFILEPROPERTIESW
*lpafp
, LPDWORD dwfp
)
3786 BOOL bSuccess
= TRUE
;
3787 INT sizeFilePropArray
= 500;/*20; */
3788 INT indexFilePropArray
= -1;
3792 /* Allocate initial file properties array */
3793 *lpafp
= heap_alloc_zero(sizeof(FILEPROPERTIESW
)*(sizeFilePropArray
));
3798 if (indexFilePropArray
+1 >= sizeFilePropArray
)
3800 LPFILEPROPERTIESW tmpafp
;
3802 sizeFilePropArray
*= 2;
3803 tmpafp
= heap_realloc_zero(*lpafp
, sizeof(FILEPROPERTIESW
)*sizeFilePropArray
);
3812 indexFilePropArray
++;
3813 } while (FTP_ParseNextFile(nSocket
, lpszSearchFile
, &(*lpafp
)[indexFilePropArray
]));
3815 if (bSuccess
&& indexFilePropArray
)
3817 if (indexFilePropArray
< sizeFilePropArray
- 1)
3819 LPFILEPROPERTIESW tmpafp
;
3821 tmpafp
= heap_realloc(*lpafp
, sizeof(FILEPROPERTIESW
)*indexFilePropArray
);
3825 *dwfp
= indexFilePropArray
;
3830 INTERNET_SetLastError(ERROR_NO_MORE_FILES
);
3838 /***********************************************************************
3839 * FTP_ParsePermission (internal)
3841 * Parse permission string of directory information
3848 static BOOL
FTP_ParsePermission(LPCSTR lpszPermission
, LPFILEPROPERTIESW lpfp
)
3850 BOOL bSuccess
= TRUE
;
3851 unsigned short nPermission
= 0;
3856 if ((*lpszPermission
!= 'd') && (*lpszPermission
!= '-') && (*lpszPermission
!= 'l'))
3862 lpfp
->bIsDirectory
= (*lpszPermission
== 'd');
3868 nPermission
|= (*(lpszPermission
+1) == 'r' ? 1 : 0) << 8;
3871 nPermission
|= (*(lpszPermission
+2) == 'w' ? 1 : 0) << 7;
3874 nPermission
|= (*(lpszPermission
+3) == 'x' ? 1 : 0) << 6;
3877 nPermission
|= (*(lpszPermission
+4) == 'r' ? 1 : 0) << 5;
3880 nPermission
|= (*(lpszPermission
+5) == 'w' ? 1 : 0) << 4;
3883 nPermission
|= (*(lpszPermission
+6) == 'x' ? 1 : 0) << 3;
3886 nPermission
|= (*(lpszPermission
+7) == 'r' ? 1 : 0) << 2;
3889 nPermission
|= (*(lpszPermission
+8) == 'w' ? 1 : 0) << 1;
3892 nPermission
|= (*(lpszPermission
+9) == 'x' ? 1 : 0);
3896 }while (nPos
<= nLast
);
3898 lpfp
->permissions
= nPermission
;
3903 /***********************************************************************
3904 * FTP_SetResponseError (internal)
3906 * Set the appropriate error code for a given response from the server
3911 static DWORD
FTP_SetResponseError(DWORD dwResponse
)
3917 case 425: /* Cannot open data connection. */
3918 dwCode
= ERROR_INTERNET_CANNOT_CONNECT
;
3921 case 426: /* Connection closed, transfer aborted. */
3922 dwCode
= ERROR_INTERNET_CONNECTION_ABORTED
;
3925 case 530: /* Not logged in. Login incorrect. */
3926 dwCode
= ERROR_INTERNET_LOGIN_FAILURE
;
3929 case 421: /* Service not available - Server may be shutting down. */
3930 case 450: /* File action not taken. File may be busy. */
3931 case 451: /* Action aborted. Server error. */
3932 case 452: /* Action not taken. Insufficient storage space on server. */
3933 case 500: /* Syntax error. Command unrecognized. */
3934 case 501: /* Syntax error. Error in parameters or arguments. */
3935 case 502: /* Command not implemented. */
3936 case 503: /* Bad sequence of commands. */
3937 case 504: /* Command not implemented for that parameter. */
3938 case 532: /* Need account for storing files */
3939 case 550: /* File action not taken. File not found or no access. */
3940 case 551: /* Requested action aborted. Page type unknown */
3941 case 552: /* Action aborted. Exceeded storage allocation */
3942 case 553: /* Action not taken. File name not allowed. */
3945 dwCode
= ERROR_INTERNET_EXTENDED_ERROR
;
3949 INTERNET_SetLastError(dwCode
);