2000-04-11 22:07:00 +02:00
|
|
|
/*
|
|
|
|
* WININET - Ftp implementation
|
|
|
|
*
|
|
|
|
* Copyright 1999 Corel Corporation
|
2004-02-09 23:07:42 +01:00
|
|
|
* Copyright 2004 Mike McCormack for CodeWeavers
|
2004-05-25 06:02:05 +02:00
|
|
|
* Copyright 2004 Kevin Koltzau
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Ulrich Czekalla
|
|
|
|
* Noureddine Jemmali
|
2000-12-29 06:19:57 +01:00
|
|
|
*
|
|
|
|
* Copyright 2000 Andreas Mohr
|
2002-10-28 19:48:24 +01:00
|
|
|
* Copyright 2002 Jaco Greeff
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2000-04-11 22:07:00 +02:00
|
|
|
*/
|
|
|
|
|
2000-04-15 22:44:21 +02:00
|
|
|
#include "config.h"
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "wine/port.h"
|
2000-04-15 22:44:21 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
#include <errno.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2000-04-11 22:07:00 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2000-04-29 19:14:24 +02:00
|
|
|
#include <sys/types.h>
|
2000-04-15 22:44:21 +02:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
# include <sys/socket.h>
|
|
|
|
#endif
|
2002-08-17 02:43:16 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2001-02-15 22:24:07 +01:00
|
|
|
#include <time.h>
|
2004-07-19 23:49:39 +02:00
|
|
|
#include <assert.h>
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2000-06-11 22:04:44 +02:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
2000-04-11 22:07:00 +02:00
|
|
|
#include "wininet.h"
|
2002-10-28 19:48:24 +01:00
|
|
|
#include "winnls.h"
|
2000-04-11 22:07:00 +02:00
|
|
|
#include "winerror.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winreg.h"
|
2003-07-22 00:04:14 +02:00
|
|
|
#include "winternl.h"
|
2004-05-25 06:02:05 +02:00
|
|
|
#include "shlwapi.h"
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2000-04-11 22:07:00 +02:00
|
|
|
#include "internet.h"
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wininet);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
#define DATA_PACKET_SIZE 0x2000
|
|
|
|
#define szCRLF "\r\n"
|
|
|
|
#define MAX_BACKLOG 5
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
/* FTP commands with arguments. */
|
2002-06-01 01:06:46 +02:00
|
|
|
FTP_CMD_ACCT,
|
|
|
|
FTP_CMD_CWD,
|
|
|
|
FTP_CMD_DELE,
|
|
|
|
FTP_CMD_MKD,
|
|
|
|
FTP_CMD_PASS,
|
|
|
|
FTP_CMD_PORT,
|
|
|
|
FTP_CMD_RETR,
|
|
|
|
FTP_CMD_RMD,
|
|
|
|
FTP_CMD_RNFR,
|
|
|
|
FTP_CMD_RNTO,
|
|
|
|
FTP_CMD_STOR,
|
|
|
|
FTP_CMD_TYPE,
|
|
|
|
FTP_CMD_USER,
|
2003-07-21 21:59:03 +02:00
|
|
|
FTP_CMD_SIZE,
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* FTP commands without arguments. */
|
|
|
|
FTP_CMD_ABOR,
|
|
|
|
FTP_CMD_LIST,
|
|
|
|
FTP_CMD_NLST,
|
2000-12-29 06:19:57 +01:00
|
|
|
FTP_CMD_PASV,
|
2002-06-01 01:06:46 +02:00
|
|
|
FTP_CMD_PWD,
|
2000-04-11 22:07:00 +02:00
|
|
|
FTP_CMD_QUIT,
|
2002-06-01 01:06:46 +02:00
|
|
|
} FTP_COMMAND;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
static const CHAR *szFtpCommands[] = {
|
|
|
|
"ACCT",
|
|
|
|
"CWD",
|
|
|
|
"DELE",
|
|
|
|
"MKD",
|
|
|
|
"PASS",
|
|
|
|
"PORT",
|
|
|
|
"RETR",
|
|
|
|
"RMD",
|
|
|
|
"RNFR",
|
|
|
|
"RNTO",
|
|
|
|
"STOR",
|
|
|
|
"TYPE",
|
|
|
|
"USER",
|
2003-07-21 21:59:03 +02:00
|
|
|
"SIZE",
|
2000-04-11 22:07:00 +02:00
|
|
|
"ABOR",
|
|
|
|
"LIST",
|
|
|
|
"NLST",
|
2000-12-29 06:19:57 +01:00
|
|
|
"PASV",
|
2000-04-11 22:07:00 +02:00
|
|
|
"PWD",
|
|
|
|
"QUIT",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const CHAR szMonths[] = "JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC";
|
2004-05-25 06:02:05 +02:00
|
|
|
static const WCHAR szNoAccount[] = {'n','o','a','c','c','o','u','n','t','\0'};
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
static void FTP_CloseFileTransferHandle(LPWININETHANDLEHEADER hdr);
|
|
|
|
static void FTP_CloseSessionHandle(LPWININETHANDLEHEADER hdr);
|
|
|
|
static void FTP_CloseFindNextHandle(LPWININETHANDLEHEADER hdr);
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendCommand(INT nSocket, FTP_COMMAND ftpCmd, LPCWSTR lpszParam,
|
2004-07-19 23:49:39 +02:00
|
|
|
INTERNET_STATUS_CALLBACK lpfnStatusCB, LPWININETHANDLEHEADER hdr, DWORD dwContext);
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendStore(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DWORD dwType);
|
|
|
|
static BOOL FTP_GetDataSocket(LPWININETFTPSESSIONW lpwfs, LPINT nDataSocket);
|
|
|
|
static BOOL FTP_SendData(LPWININETFTPSESSIONW lpwfs, INT nDataSocket, HANDLE hFile);
|
|
|
|
static INT FTP_ReceiveResponse(LPWININETFTPSESSIONW lpwfs, DWORD dwContext);
|
|
|
|
static DWORD FTP_SendRetrieve(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DWORD dwType);
|
|
|
|
static BOOL FTP_RetrieveFileData(LPWININETFTPSESSIONW lpwfs, INT nDataSocket, DWORD nBytes, HANDLE hFile);
|
|
|
|
static BOOL FTP_InitListenSocket(LPWININETFTPSESSIONW lpwfs);
|
|
|
|
static BOOL FTP_ConnectToHost(LPWININETFTPSESSIONW lpwfs);
|
|
|
|
static BOOL FTP_SendPassword(LPWININETFTPSESSIONW lpwfs);
|
|
|
|
static BOOL FTP_SendAccount(LPWININETFTPSESSIONW lpwfs);
|
|
|
|
static BOOL FTP_SendType(LPWININETFTPSESSIONW lpwfs, DWORD dwType);
|
|
|
|
static BOOL FTP_GetFileSize(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DWORD *dwSize);
|
|
|
|
static BOOL FTP_SendPort(LPWININETFTPSESSIONW lpwfs);
|
|
|
|
static BOOL FTP_DoPassive(LPWININETFTPSESSIONW lpwfs);
|
|
|
|
static BOOL FTP_SendPortOrPasv(LPWININETFTPSESSIONW lpwfs);
|
|
|
|
static BOOL FTP_ParsePermission(LPCSTR lpszPermission, LPFILEPROPERTIESW lpfp);
|
|
|
|
static BOOL FTP_ParseNextFile(INT nSocket, LPCWSTR lpszSearchFile, LPFILEPROPERTIESW fileprop);
|
|
|
|
static BOOL FTP_ParseDirectory(LPWININETFTPSESSIONW lpwfs, INT nSocket, LPCWSTR lpszSearchFile,
|
2004-05-25 06:02:05 +02:00
|
|
|
LPFILEPROPERTIESW *lpafp, LPDWORD dwfp);
|
2005-12-03 18:03:08 +01:00
|
|
|
static HINTERNET FTP_ReceiveFileList(LPWININETFTPSESSIONW lpwfs, INT nSocket, LPCWSTR lpszSearchFile,
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWIN32_FIND_DATAW lpFindFileData, DWORD dwContext);
|
2005-12-03 18:03:08 +01:00
|
|
|
static DWORD FTP_SetResponseError(DWORD dwResponse);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FtpPutFileA (WININET.@)
|
|
|
|
*
|
|
|
|
* Uploads a file to the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpPutFileA(HINTERNET hConnect, LPCSTR lpszLocalFile,
|
|
|
|
LPCSTR lpszNewRemoteFile, DWORD dwFlags, DWORD dwContext)
|
2004-03-30 06:36:09 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzLocalFile;
|
|
|
|
LPWSTR lpwzNewRemoteFile;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
lpwzLocalFile = lpszLocalFile?WININET_strdup_AtoW(lpszLocalFile):NULL;
|
|
|
|
lpwzNewRemoteFile = lpszNewRemoteFile?WININET_strdup_AtoW(lpszNewRemoteFile):NULL;
|
|
|
|
ret = FtpPutFileW(hConnect, lpwzLocalFile, lpwzNewRemoteFile,
|
|
|
|
dwFlags, dwContext);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzLocalFile);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzNewRemoteFile);
|
2004-03-30 06:36:09 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FtpPutFileW (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Uploads a file to the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-05-25 06:02:05 +02:00
|
|
|
BOOL WINAPI FtpPutFileW(HINTERNET hConnect, LPCWSTR lpszLocalFile,
|
|
|
|
LPCWSTR lpszNewRemoteFile, DWORD dwFlags, DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hConnect );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPPUTFILEW *req = &workRequest.u.FtpPutFileW;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPPUTFILEW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req->lpszLocalFile = WININET_strdupW(lpszLocalFile);
|
|
|
|
req->lpszNewRemoteFile = WININET_strdupW(lpszNewRemoteFile);
|
2003-09-25 22:25:22 +02:00
|
|
|
req->dwFlags = dwFlags;
|
|
|
|
req->dwContext = dwContext;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpPutFileW(lpwfs, lpszLocalFile,
|
2004-05-25 06:02:05 +02:00
|
|
|
lpszNewRemoteFile, dwFlags, dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpPutFileW (Internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Uploads a file to the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL WINAPI FTP_FtpPutFileW(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszLocalFile,
|
2004-05-25 06:02:05 +02:00
|
|
|
LPCWSTR lpszNewRemoteFile, DWORD dwFlags, DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2003-01-15 00:43:41 +01:00
|
|
|
HANDLE hFile = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
BOOL bSuccess = FALSE;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-11-07 21:28:34 +01:00
|
|
|
INT nResCode;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
TRACE(" lpszLocalFile(%s) lpszNewRemoteFile(%s)\n", debugstr_w(lpszLocalFile), debugstr_w(lpszNewRemoteFile));
|
|
|
|
|
|
|
|
if (!lpszLocalFile || !lpszNewRemoteFile)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2004-02-07 02:03:41 +01:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
assert( WH_HFTPSESSION == lpwfs->hdr.htype);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Open file to be uploaded */
|
2002-06-01 01:06:46 +02:00
|
|
|
if (INVALID_HANDLE_VALUE ==
|
2004-05-25 06:02:05 +02:00
|
|
|
(hFile = CreateFileW(lpszLocalFile, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0)))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_FILE_NOT_FOUND);
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_SENDING_REQUEST, NULL, 0);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (FTP_SendStore(lpwfs, lpszNewRemoteFile, dwFlags))
|
|
|
|
{
|
|
|
|
INT nDataSocket;
|
|
|
|
|
2000-12-29 06:19:57 +01:00
|
|
|
/* Get data socket to server */
|
2002-06-01 01:06:46 +02:00
|
|
|
if (FTP_GetDataSocket(lpwfs, &nDataSocket))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
FTP_SendData(lpwfs, nDataSocket, hFile);
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(nDataSocket);
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, dwContext);
|
2000-11-07 21:28:34 +01:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 226)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2001-08-24 21:13:36 +02:00
|
|
|
if (lpwfs->lstnSocket != -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2000-12-29 06:19:57 +01:00
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hFile)
|
|
|
|
CloseHandle(hFile);
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpSetCurrentDirectoryA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Change the working directory on the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 22:44:21 +02:00
|
|
|
BOOL WINAPI FtpSetCurrentDirectoryA(HINTERNET hConnect, LPCSTR lpszDirectory)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzDirectory;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
lpwzDirectory = lpszDirectory?WININET_strdup_AtoW(lpszDirectory):NULL;
|
|
|
|
ret = FtpSetCurrentDirectoryW(hConnect, lpwzDirectory);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzDirectory);
|
2004-05-25 06:02:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpSetCurrentDirectoryW (WININET.@)
|
|
|
|
*
|
|
|
|
* Change the working directory on the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpSetCurrentDirectoryW(HINTERNET hConnect, LPCWSTR lpszDirectory)
|
|
|
|
{
|
2006-05-11 17:47:52 +02:00
|
|
|
LPWININETFTPSESSIONW lpwfs = NULL;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-05-11 17:47:52 +02:00
|
|
|
if (!lpszDirectory)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hConnect );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPSETCURRENTDIRECTORYW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPSETCURRENTDIRECTORYW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpSetCurrentDirectoryW;
|
|
|
|
req->lpszDirectory = WININET_strdupW(lpszDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpSetCurrentDirectoryW(lpwfs, lpszDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-28 19:48:24 +01:00
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpSetCurrentDirectoryW (Internal)
|
2002-10-28 19:48:24 +01:00
|
|
|
*
|
|
|
|
* Change the working directory on the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL WINAPI FTP_FtpSetCurrentDirectoryW(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszDirectory)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
DWORD bSuccess = FALSE;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_CWD, lpszDirectory,
|
2004-09-20 21:10:31 +02:00
|
|
|
lpwfs->hdr.lpfnStatusCB, &lpwfs->hdr, lpwfs->hdr.dwContext))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 250)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : ERROR_INTERNET_EXTENDED_ERROR;
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpCreateDirectoryA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Create new directory on the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 22:44:21 +02:00
|
|
|
BOOL WINAPI FtpCreateDirectoryA(HINTERNET hConnect, LPCSTR lpszDirectory)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzDirectory;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
lpwzDirectory = lpszDirectory?WININET_strdup_AtoW(lpszDirectory):NULL;
|
|
|
|
ret = FtpCreateDirectoryW(hConnect, lpwzDirectory);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzDirectory);
|
2004-05-25 06:02:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpCreateDirectoryW (WININET.@)
|
|
|
|
*
|
|
|
|
* Create new directory on the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpCreateDirectoryW(HINTERNET hConnect, LPCWSTR lpszDirectory)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hConnect );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPCREATEDIRECTORYW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPCREATEDIRECTORYW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpCreateDirectoryW;
|
|
|
|
req->lpszDirectory = WININET_strdupW(lpszDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpCreateDirectoryW(lpwfs, lpszDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-28 19:48:24 +01:00
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpCreateDirectoryW (Internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Create new directory on the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL WINAPI FTP_FtpCreateDirectoryW(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszDirectory)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
TRACE("lpszDirectory(%s)\n", debugstr_w(lpszDirectory));
|
2004-02-07 02:03:41 +01:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_MKD, lpszDirectory, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 257)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpFindFirstFileA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Search the specified directory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2001-09-11 02:32:32 +02:00
|
|
|
HINTERNET WINAPI FtpFindFirstFileA(HINTERNET hConnect,
|
2000-04-11 22:07:00 +02:00
|
|
|
LPCSTR lpszSearchFile, LPWIN32_FIND_DATAA lpFindFileData, DWORD dwFlags, DWORD dwContext)
|
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzSearchFile;
|
|
|
|
WIN32_FIND_DATAW wfd;
|
|
|
|
LPWIN32_FIND_DATAW lpFindFileDataW;
|
|
|
|
HINTERNET ret;
|
|
|
|
|
|
|
|
lpwzSearchFile = lpszSearchFile?WININET_strdup_AtoW(lpszSearchFile):NULL;
|
|
|
|
lpFindFileDataW = lpFindFileData?&wfd:NULL;
|
|
|
|
ret = FtpFindFirstFileW(hConnect, lpwzSearchFile, lpFindFileDataW, dwFlags, dwContext);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzSearchFile);
|
2004-05-25 06:02:05 +02:00
|
|
|
|
|
|
|
if(lpFindFileData) {
|
|
|
|
WININET_find_data_WtoA(lpFindFileDataW, lpFindFileData);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpFindFirstFileW (WININET.@)
|
|
|
|
*
|
|
|
|
* Search the specified directory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HINTERNET WINAPI FtpFindFirstFileW(HINTERNET hConnect,
|
|
|
|
LPCWSTR lpszSearchFile, LPWIN32_FIND_DATAW lpFindFileData, DWORD dwFlags, DWORD dwContext)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
HINTERNET r = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hConnect );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPFINDFIRSTFILEW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPFINDFIRSTFILEW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpFindFirstFileW;
|
2004-06-01 21:42:43 +02:00
|
|
|
req->lpszSearchFile = (lpszSearchFile == NULL) ? NULL : WININET_strdupW(lpszSearchFile);
|
2003-09-25 22:25:22 +02:00
|
|
|
req->lpFindFileData = lpFindFileData;
|
|
|
|
req->dwFlags = dwFlags;
|
|
|
|
req->dwContext= dwContext;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
INTERNET_AsyncCall(&workRequest);
|
2004-07-19 23:49:39 +02:00
|
|
|
r = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpFindFirstFileW(lpwfs, lpszSearchFile, lpFindFileData,
|
2004-05-25 06:02:05 +02:00
|
|
|
dwFlags, dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-28 19:48:24 +01:00
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpFindFirstFileW (Internal)
|
2002-10-28 19:48:24 +01:00
|
|
|
*
|
|
|
|
* Search the specified directory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
HINTERNET WINAPI FTP_FtpFindFirstFileW(LPWININETFTPSESSIONW lpwfs,
|
2002-10-28 19:48:24 +01:00
|
|
|
LPCWSTR lpszSearchFile, LPWIN32_FIND_DATAW lpFindFileData, DWORD dwFlags, DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-02-07 02:03:41 +01:00
|
|
|
HINTERNET hFindNext = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
assert(WH_HFTPSESSION == lpwfs->hdr.htype);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
if (!FTP_InitListenSocket(lpwfs))
|
|
|
|
goto lend;
|
|
|
|
|
|
|
|
if (!FTP_SendType(lpwfs, INTERNET_FLAG_TRANSFER_ASCII))
|
|
|
|
goto lend;
|
|
|
|
|
2000-12-29 06:19:57 +01:00
|
|
|
if (!FTP_SendPortOrPasv(lpwfs))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lend;
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-05-25 06:02:05 +02:00
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_LIST, NULL,
|
2004-09-20 21:10:31 +02:00
|
|
|
lpwfs->hdr.lpfnStatusCB, &lpwfs->hdr, lpwfs->hdr.dwContext))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 125 || nResCode == 150)
|
|
|
|
{
|
|
|
|
INT nDataSocket;
|
|
|
|
|
2000-12-29 06:19:57 +01:00
|
|
|
/* Get data socket to server */
|
|
|
|
if (FTP_GetDataSocket(lpwfs, &nDataSocket))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
hFindNext = FTP_ReceiveFileList(lpwfs, nDataSocket, lpszSearchFile, lpFindFileData, dwContext);
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(nDataSocket);
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode != 226 && nResCode != 250)
|
|
|
|
INTERNET_SetLastError(ERROR_NO_MORE_FILES);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2001-08-24 21:13:36 +02:00
|
|
|
if (lpwfs->lstnSocket != -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
|
|
|
|
|
|
|
if (hFindNext)
|
|
|
|
{
|
|
|
|
iar.dwResult = (DWORD)hFindNext;
|
|
|
|
iar.dwError = ERROR_SUCCESS;
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_HANDLE_CREATED,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
iar.dwResult = (DWORD)hFindNext;
|
|
|
|
iar.dwError = hFindNext ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
2004-02-07 02:03:41 +01:00
|
|
|
return hFindNext;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpGetCurrentDirectoryA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Retrieves the current directory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL WINAPI FtpGetCurrentDirectoryA(HINTERNET hFtpSession, LPSTR lpszCurrentDirectory,
|
2002-10-28 19:48:24 +01:00
|
|
|
LPDWORD lpdwCurrentDirectory)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2006-06-07 21:35:16 +02:00
|
|
|
WCHAR *dir = NULL;
|
2004-05-25 06:02:05 +02:00
|
|
|
DWORD len;
|
|
|
|
BOOL ret;
|
|
|
|
|
2006-06-07 21:35:16 +02:00
|
|
|
if(lpdwCurrentDirectory) {
|
|
|
|
len = *lpdwCurrentDirectory;
|
|
|
|
if(lpszCurrentDirectory)
|
|
|
|
{
|
|
|
|
dir = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
if (NULL == dir)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-05-25 06:02:05 +02:00
|
|
|
ret = FtpGetCurrentDirectoryW(hFtpSession, lpszCurrentDirectory?dir:NULL, lpdwCurrentDirectory?&len:NULL);
|
|
|
|
if(lpdwCurrentDirectory) {
|
|
|
|
*lpdwCurrentDirectory = len;
|
2006-06-07 21:35:16 +02:00
|
|
|
if(lpszCurrentDirectory) {
|
2004-05-25 06:02:05 +02:00
|
|
|
WideCharToMultiByte(CP_ACP, 0, dir, len, lpszCurrentDirectory, *lpdwCurrentDirectory, NULL, NULL);
|
2006-06-07 21:35:16 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, dir);
|
|
|
|
}
|
2004-05-25 06:02:05 +02:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpGetCurrentDirectoryW (WININET.@)
|
|
|
|
*
|
|
|
|
* Retrieves the current directory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpGetCurrentDirectoryW(HINTERNET hFtpSession, LPWSTR lpszCurrentDirectory,
|
|
|
|
LPDWORD lpdwCurrentDirectory)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("len(%d)\n", *lpdwCurrentDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hFtpSession );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPGETCURRENTDIRECTORYW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPGETCURRENTDIRECTORYW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpGetCurrentDirectoryW;
|
2003-09-25 22:25:22 +02:00
|
|
|
req->lpszDirectory = lpszCurrentDirectory;
|
|
|
|
req->lpdwDirectory = lpdwCurrentDirectory;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpGetCurrentDirectoryW(lpwfs, lpszCurrentDirectory,
|
2004-05-25 06:02:05 +02:00
|
|
|
lpdwCurrentDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_FtpGetCurrentDirectoryA (Internal)
|
|
|
|
*
|
|
|
|
* Retrieves the current directory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL WINAPI FTP_FtpGetCurrentDirectoryW(LPWININETFTPSESSIONW lpwfs, LPWSTR lpszCurrentDirectory,
|
2000-04-11 22:07:00 +02:00
|
|
|
LPDWORD lpdwCurrentDirectory)
|
|
|
|
{
|
|
|
|
INT nResCode;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
DWORD bSuccess = FALSE;
|
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("len(%d)\n", *lpdwCurrentDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
ZeroMemory(lpszCurrentDirectory, *lpdwCurrentDirectory);
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_PWD, NULL,
|
2004-09-20 21:10:31 +02:00
|
|
|
lpwfs->hdr.lpfnStatusCB, &lpwfs->hdr, lpwfs->hdr.dwContext))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 257) /* Extract directory name */
|
|
|
|
{
|
2004-08-09 20:54:23 +02:00
|
|
|
DWORD firstpos, lastpos, len;
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpszResponseBuffer = WININET_strdup_AtoW(INTERNET_GetResponseBuffer());
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
for (firstpos = 0, lastpos = 0; lpszResponseBuffer[lastpos]; lastpos++)
|
|
|
|
{
|
|
|
|
if ('"' == lpszResponseBuffer[lastpos])
|
|
|
|
{
|
|
|
|
if (!firstpos)
|
|
|
|
firstpos = lastpos;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len = lastpos - firstpos - 1;
|
2005-04-21 19:18:50 +02:00
|
|
|
lstrcpynW(lpszCurrentDirectory, &lpszResponseBuffer[firstpos+1], *lpdwCurrentDirectory);
|
2004-05-25 06:02:05 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpszResponseBuffer);
|
2000-04-11 22:07:00 +02:00
|
|
|
*lpdwCurrentDirectory = len;
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : ERROR_INTERNET_EXTENDED_ERROR;
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
return (DWORD) bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpOpenFileA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Open a remote file for writing or reading
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET handle on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2001-09-11 02:32:32 +02:00
|
|
|
HINTERNET WINAPI FtpOpenFileA(HINTERNET hFtpSession,
|
2002-10-28 19:48:24 +01:00
|
|
|
LPCSTR lpszFileName, DWORD fdwAccess, DWORD dwFlags,
|
|
|
|
DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzFileName;
|
|
|
|
HINTERNET ret;
|
|
|
|
|
|
|
|
lpwzFileName = lpszFileName?WININET_strdup_AtoW(lpszFileName):NULL;
|
|
|
|
ret = FtpOpenFileW(hFtpSession, lpwzFileName, fdwAccess, dwFlags, dwContext);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzFileName);
|
2004-05-25 06:02:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpOpenFileW (WININET.@)
|
|
|
|
*
|
|
|
|
* Open a remote file for writing or reading
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET handle on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HINTERNET WINAPI FtpOpenFileW(HINTERNET hFtpSession,
|
|
|
|
LPCWSTR lpszFileName, DWORD fdwAccess, DWORD dwFlags,
|
|
|
|
DWORD dwContext)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
HINTERNET r = NULL;
|
2004-05-25 06:02:05 +02:00
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("(%p,%s,0x%08x,0x%08x,0x%08x)\n", hFtpSession,
|
2004-05-25 06:02:05 +02:00
|
|
|
debugstr_w(lpszFileName), fdwAccess, dwFlags, dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hFtpSession );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2003-07-22 00:04:14 +02:00
|
|
|
if (lpwfs->download_in_progress != NULL) {
|
|
|
|
INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2003-07-22 00:04:14 +02:00
|
|
|
}
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPOPENFILEW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPOPENFILEW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpOpenFileW;
|
|
|
|
req->lpszFilename = WININET_strdupW(lpszFileName);
|
2003-09-25 22:25:22 +02:00
|
|
|
req->dwAccess = fdwAccess;
|
|
|
|
req->dwFlags = dwFlags;
|
|
|
|
req->dwContext = dwContext;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
INTERNET_AsyncCall(&workRequest);
|
2004-07-19 23:49:39 +02:00
|
|
|
r = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpOpenFileW(lpwfs, lpszFileName, fdwAccess, dwFlags, dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-28 19:48:24 +01:00
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpOpenFileW (Internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Open a remote file for writing or reading
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET handle on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
HINTERNET FTP_FtpOpenFileW(LPWININETFTPSESSIONW lpwfs,
|
2004-05-25 06:02:05 +02:00
|
|
|
LPCWSTR lpszFileName, DWORD fdwAccess, DWORD dwFlags,
|
2000-04-11 22:07:00 +02:00
|
|
|
DWORD dwContext)
|
|
|
|
{
|
|
|
|
INT nDataSocket;
|
|
|
|
BOOL bSuccess = FALSE;
|
2006-10-29 18:55:15 +01:00
|
|
|
LPWININETFTPFILE lpwh = NULL;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-02-07 02:03:41 +01:00
|
|
|
HINTERNET handle = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
assert (WH_HFTPSESSION == lpwfs->hdr.htype);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
if (GENERIC_READ == fdwAccess)
|
|
|
|
{
|
|
|
|
/* Set up socket to retrieve data */
|
|
|
|
bSuccess = FTP_SendRetrieve(lpwfs, lpszFileName, dwFlags);
|
|
|
|
}
|
|
|
|
else if (GENERIC_WRITE == fdwAccess)
|
|
|
|
{
|
|
|
|
/* Set up socket to send data */
|
|
|
|
bSuccess = FTP_SendStore(lpwfs, lpszFileName, dwFlags);
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/* Get data socket to server */
|
|
|
|
if (bSuccess && FTP_GetDataSocket(lpwfs, &nDataSocket))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2006-10-29 18:55:15 +01:00
|
|
|
lpwh = HeapAlloc(GetProcessHeap(), 0, sizeof(WININETFTPFILE));
|
2004-02-07 02:03:41 +01:00
|
|
|
lpwh->hdr.htype = WH_HFILE;
|
|
|
|
lpwh->hdr.dwFlags = dwFlags;
|
|
|
|
lpwh->hdr.dwContext = dwContext;
|
2004-07-19 23:49:39 +02:00
|
|
|
lpwh->hdr.dwRefCount = 1;
|
|
|
|
lpwh->hdr.destroy = FTP_CloseFileTransferHandle;
|
2004-09-20 21:10:31 +02:00
|
|
|
lpwh->hdr.lpfnStatusCB = lpwfs->hdr.lpfnStatusCB;
|
2004-02-07 02:03:41 +01:00
|
|
|
lpwh->nDataSocket = nDataSocket;
|
|
|
|
lpwh->session_deleted = FALSE;
|
2006-10-29 18:55:15 +01:00
|
|
|
|
|
|
|
WININET_AddRef( &lpwfs->hdr );
|
|
|
|
lpwh->lpFtpSession = lpwfs;
|
2003-07-22 00:04:14 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
handle = WININET_AllocHandle( &lpwh->hdr );
|
|
|
|
if( !handle )
|
|
|
|
goto lend;
|
|
|
|
|
2003-07-22 00:04:14 +02:00
|
|
|
/* Indicate that a download is currently in progress */
|
2004-02-07 02:03:41 +01:00
|
|
|
lpwfs->download_in_progress = lpwh;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
if (lpwfs->lstnSocket != -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2000-12-29 06:19:57 +01:00
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2004-02-07 02:03:41 +01:00
|
|
|
if (lpwh)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-02-09 21:55:58 +01:00
|
|
|
iar.dwResult = (DWORD)handle;
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwError = ERROR_SUCCESS;
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_HANDLE_CREATED,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
lend:
|
|
|
|
if( lpwh )
|
|
|
|
WININET_Release( &lpwh->hdr );
|
|
|
|
|
2004-02-07 02:03:41 +01:00
|
|
|
return handle;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpGetFileA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Retrieve file from the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 22:44:21 +02:00
|
|
|
BOOL WINAPI FtpGetFileA(HINTERNET hInternet, LPCSTR lpszRemoteFile, LPCSTR lpszNewFile,
|
2002-10-28 19:48:24 +01:00
|
|
|
BOOL fFailIfExists, DWORD dwLocalFlagsAttribute, DWORD dwInternetFlags,
|
|
|
|
DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzRemoteFile;
|
|
|
|
LPWSTR lpwzNewFile;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
lpwzRemoteFile = lpszRemoteFile?WININET_strdup_AtoW(lpszRemoteFile):NULL;
|
|
|
|
lpwzNewFile = lpszNewFile?WININET_strdup_AtoW(lpszNewFile):NULL;
|
|
|
|
ret = FtpGetFileW(hInternet, lpwzRemoteFile, lpwzNewFile, fFailIfExists,
|
|
|
|
dwLocalFlagsAttribute, dwInternetFlags, dwContext);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzRemoteFile);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzNewFile);
|
2004-05-25 06:02:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpGetFileW (WININET.@)
|
|
|
|
*
|
|
|
|
* Retrieve file from the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpGetFileW(HINTERNET hInternet, LPCWSTR lpszRemoteFile, LPCWSTR lpszNewFile,
|
|
|
|
BOOL fFailIfExists, DWORD dwLocalFlagsAttribute, DWORD dwInternetFlags,
|
|
|
|
DWORD dwContext)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hInternet );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2003-07-22 00:04:14 +02:00
|
|
|
if (lpwfs->download_in_progress != NULL) {
|
|
|
|
INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2003-07-22 00:04:14 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPGETFILEW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPGETFILEW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpGetFileW;
|
|
|
|
req->lpszRemoteFile = WININET_strdupW(lpszRemoteFile);
|
|
|
|
req->lpszNewFile = WININET_strdupW(lpszNewFile);
|
2003-09-25 22:25:22 +02:00
|
|
|
req->dwLocalFlagsAttribute = dwLocalFlagsAttribute;
|
|
|
|
req->fFailIfExists = fFailIfExists;
|
|
|
|
req->dwFlags = dwInternetFlags;
|
|
|
|
req->dwContext = dwContext;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpGetFileW(lpwfs, lpszRemoteFile, lpszNewFile,
|
2000-04-11 22:07:00 +02:00
|
|
|
fFailIfExists, dwLocalFlagsAttribute, dwInternetFlags, dwContext);
|
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-28 19:48:24 +01:00
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpGetFileW (Internal)
|
2002-10-28 19:48:24 +01:00
|
|
|
*
|
|
|
|
* Retrieve file from the FTP server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL WINAPI FTP_FtpGetFileW(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, LPCWSTR lpszNewFile,
|
2000-04-11 22:07:00 +02:00
|
|
|
BOOL fFailIfExists, DWORD dwLocalFlagsAttribute, DWORD dwInternetFlags,
|
|
|
|
DWORD dwContext)
|
|
|
|
{
|
|
|
|
DWORD nBytes;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
HANDLE hFile;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
TRACE("lpszRemoteFile(%s) lpszNewFile(%s)\n", debugstr_w(lpszRemoteFile), debugstr_w(lpszNewFile));
|
2004-02-07 02:03:41 +01:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
assert (WH_HFTPSESSION == lpwfs->hdr.htype);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
/* Ensure we can write to lpszNewfile by opening it */
|
2004-05-25 06:02:05 +02:00
|
|
|
hFile = CreateFileW(lpszNewFile, GENERIC_WRITE, 0, 0, fFailIfExists ?
|
2000-04-11 22:07:00 +02:00
|
|
|
CREATE_NEW : CREATE_ALWAYS, dwLocalFlagsAttribute, 0);
|
|
|
|
if (INVALID_HANDLE_VALUE == hFile)
|
|
|
|
goto lend;
|
|
|
|
|
|
|
|
/* Set up socket to retrieve data */
|
|
|
|
nBytes = FTP_SendRetrieve(lpwfs, lpszRemoteFile, dwInternetFlags);
|
|
|
|
|
|
|
|
if (nBytes > 0)
|
|
|
|
{
|
|
|
|
INT nDataSocket;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/* Get data socket to server */
|
|
|
|
if (FTP_GetDataSocket(lpwfs, &nDataSocket))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
|
|
|
|
/* Receive data */
|
|
|
|
FTP_RetrieveFileData(lpwfs, nDataSocket, nBytes, hFile);
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 226)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(nDataSocket);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2001-08-24 21:13:36 +02:00
|
|
|
if (lpwfs->lstnSocket != -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2000-12-29 06:19:57 +01:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hFile)
|
|
|
|
CloseHandle(hFile);
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
2005-04-20 17:18:42 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FtpGetFileSize (WININET.@)
|
|
|
|
*/
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 19:50:53 +01:00
|
|
|
DWORD WINAPI FtpGetFileSize( HINTERNET hFile, LPDWORD lpdwFileSizeHigh )
|
|
|
|
{
|
|
|
|
FIXME("(%p, %p)\n", hFile, lpdwFileSizeHigh);
|
|
|
|
|
|
|
|
if (lpdwFileSizeHigh)
|
|
|
|
*lpdwFileSizeHigh = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpDeleteFileA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Delete a file on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 22:44:21 +02:00
|
|
|
BOOL WINAPI FtpDeleteFileA(HINTERNET hFtpSession, LPCSTR lpszFileName)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzFileName;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
lpwzFileName = lpszFileName?WININET_strdup_AtoW(lpszFileName):NULL;
|
|
|
|
ret = FtpDeleteFileW(hFtpSession, lpwzFileName);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzFileName);
|
2004-05-25 06:02:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpDeleteFileW (WININET.@)
|
|
|
|
*
|
|
|
|
* Delete a file on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpDeleteFileW(HINTERNET hFtpSession, LPCWSTR lpszFileName)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hFtpSession );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPDELETEFILEW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPDELETEFILEW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpDeleteFileW;
|
|
|
|
req->lpszFilename = WININET_strdupW(lpszFileName);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-19 22:33:17 +02:00
|
|
|
r = FTP_FtpDeleteFileW(lpwfs, lpszFileName);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpDeleteFileW (Internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Delete a file on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL FTP_FtpDeleteFileW(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszFileName)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
TRACE("%p\n", lpwfs);
|
2004-02-07 02:03:41 +01:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
assert (WH_HFTPSESSION == lpwfs->hdr.htype);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_DELE, lpszFileName, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 250)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
lend:
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpRemoveDirectoryA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Remove a directory on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 22:44:21 +02:00
|
|
|
BOOL WINAPI FtpRemoveDirectoryA(HINTERNET hFtpSession, LPCSTR lpszDirectory)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzDirectory;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
lpwzDirectory = lpszDirectory?WININET_strdup_AtoW(lpszDirectory):NULL;
|
|
|
|
ret = FtpRemoveDirectoryW(hFtpSession, lpwzDirectory);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzDirectory);
|
2004-05-25 06:02:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpRemoveDirectoryW (WININET.@)
|
|
|
|
*
|
|
|
|
* Remove a directory on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpRemoveDirectoryW(HINTERNET hFtpSession, LPCWSTR lpszDirectory)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hFtpSession );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPREMOVEDIRECTORYW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPREMOVEDIRECTORYW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpRemoveDirectoryW;
|
|
|
|
req->lpszDirectory = WININET_strdupW(lpszDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
r = FTP_FtpRemoveDirectoryW(lpwfs, lpszDirectory);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_FtpRemoveDirectoryW (Internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Remove a directory on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL FTP_FtpRemoveDirectoryW(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszDirectory)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
2004-02-07 02:03:41 +01:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
assert (WH_HFTPSESSION == lpwfs->hdr.htype);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_RMD, lpszDirectory, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 250)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* FtpRenameFileA (WININET.@)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Rename a file on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 22:44:21 +02:00
|
|
|
BOOL WINAPI FtpRenameFileA(HINTERNET hFtpSession, LPCSTR lpszSrc, LPCSTR lpszDest)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWSTR lpwzSrc;
|
|
|
|
LPWSTR lpwzDest;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
lpwzSrc = lpszSrc?WININET_strdup_AtoW(lpszSrc):NULL;
|
|
|
|
lpwzDest = lpszDest?WININET_strdup_AtoW(lpszDest):NULL;
|
|
|
|
ret = FtpRenameFileW(hFtpSession, lpwzSrc, lpwzDest);
|
2004-12-21 15:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzSrc);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwzDest);
|
2004-05-25 06:02:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FtpRenameFileW (WININET.@)
|
|
|
|
*
|
|
|
|
* Rename a file on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FtpRenameFileW(HINTERNET hFtpSession, LPCWSTR lpszSrc, LPCWSTR lpszDest)
|
|
|
|
{
|
|
|
|
LPWININETFTPSESSIONW lpwfs;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL r = FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs = (LPWININETFTPSESSIONW) WININET_GetObject( hFtpSession );
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 23:49:39 +02:00
|
|
|
goto lend;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2004-05-25 06:02:05 +02:00
|
|
|
struct WORKREQ_FTPRENAMEFILEW *req;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
workRequest.asyncall = FTPRENAMEFILEW;
|
2004-07-19 23:49:39 +02:00
|
|
|
workRequest.hdr = WININET_AddRef( &lpwfs->hdr );
|
2004-05-25 06:02:05 +02:00
|
|
|
req = &workRequest.u.FtpRenameFileW;
|
|
|
|
req->lpszSrcFile = WININET_strdupW(lpszSrc);
|
|
|
|
req->lpszDestFile = WININET_strdupW(lpszDest);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
r = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-19 12:06:07 +02:00
|
|
|
r = FTP_FtpRenameFileW(lpwfs, lpszSrc, lpszDest);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2004-07-19 23:49:39 +02:00
|
|
|
|
|
|
|
lend:
|
|
|
|
if( lpwfs )
|
|
|
|
WININET_Release( &lpwfs->hdr );
|
|
|
|
|
|
|
|
return r;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-07-04 20:06:58 +02:00
|
|
|
* FTP_FtpRenameFileW (Internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Rename a file on the ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
BOOL FTP_FtpRenameFileW( LPWININETFTPSESSIONW lpwfs,
|
|
|
|
LPCWSTR lpszSrc, LPCWSTR lpszDest)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
2004-03-25 06:29:47 +01:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
2004-02-07 02:03:41 +01:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
assert (WH_HFTPSESSION == lpwfs->hdr.htype);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_RNFR, lpszSrc, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode == 350)
|
|
|
|
{
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_RNTO, lpszDest, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nResCode == 250)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
|
|
|
|
lend:
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, lpwfs->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
2005-04-20 17:18:42 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FtpCommandA (WININET.@)
|
|
|
|
*/
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 19:50:53 +01:00
|
|
|
BOOL WINAPI FtpCommandA( HINTERNET hConnect, BOOL fExpectResponse, DWORD dwFlags,
|
|
|
|
LPCSTR lpszCommand, DWORD_PTR dwContext, HINTERNET* phFtpCommand )
|
|
|
|
{
|
2006-10-05 13:18:56 +02:00
|
|
|
FIXME("%p %d 0x%08x %s 0x%08lx %p\n", hConnect, fExpectResponse, dwFlags,
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 19:50:53 +01:00
|
|
|
debugstr_a(lpszCommand), dwContext, phFtpCommand);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-04-20 17:18:42 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FtpCommandW (WININET.@)
|
|
|
|
*/
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 19:50:53 +01:00
|
|
|
BOOL WINAPI FtpCommandW( HINTERNET hConnect, BOOL fExpectResponse, DWORD dwFlags,
|
|
|
|
LPCWSTR lpszCommand, DWORD_PTR dwContext, HINTERNET* phFtpCommand )
|
|
|
|
{
|
2006-10-05 13:18:56 +02:00
|
|
|
FIXME("%p %d 0x%08x %s 0x%08lx %p\n", hConnect, fExpectResponse, dwFlags,
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 19:50:53 +01:00
|
|
|
debugstr_w(lpszCommand), dwContext, phFtpCommand);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_Connect (internal)
|
|
|
|
*
|
|
|
|
* Connect to a ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET a session handle on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
2006-07-07 13:30:33 +02:00
|
|
|
* NOTES:
|
|
|
|
*
|
|
|
|
* Windows uses 'anonymous' as the username, when given a NULL username
|
|
|
|
* and a NULL password. The password is first looked up in:
|
|
|
|
*
|
|
|
|
* HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\EmailName
|
|
|
|
*
|
|
|
|
* If this entry is not present it uses the current username as the password.
|
|
|
|
*
|
2000-04-11 22:07:00 +02:00
|
|
|
*/
|
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
HINTERNET FTP_Connect(LPWININETAPPINFOW hIC, LPCWSTR lpszServerName,
|
2004-03-30 06:36:09 +02:00
|
|
|
INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
|
2004-05-13 07:17:25 +02:00
|
|
|
LPCWSTR lpszPassword, DWORD dwFlags, DWORD dwContext,
|
|
|
|
DWORD dwInternalFlags)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2006-07-07 13:30:33 +02:00
|
|
|
static const WCHAR szKey[] = {'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s',0};
|
|
|
|
static const WCHAR szValue[] = {'E','m','a','i','l','N','a','m','e',0};
|
2004-05-25 06:02:05 +02:00
|
|
|
static const WCHAR szDefaultUsername[] = {'a','n','o','n','y','m','o','u','s','\0'};
|
2006-07-03 23:09:03 +02:00
|
|
|
static const WCHAR szEmpty[] = {'\0'};
|
2000-04-11 22:07:00 +02:00
|
|
|
struct sockaddr_in socketAddr;
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 19:50:53 +01:00
|
|
|
INT nsocket = -1;
|
|
|
|
UINT sock_namelen;
|
2000-04-11 22:07:00 +02:00
|
|
|
BOOL bSuccess = FALSE;
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWININETFTPSESSIONW lpwfs = NULL;
|
2004-02-07 02:03:41 +01:00
|
|
|
HINTERNET handle = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
TRACE("%p Server(%s) Port(%d) User(%s) Paswd(%s)\n",
|
|
|
|
hIC, debugstr_w(lpszServerName),
|
2004-03-30 06:36:09 +02:00
|
|
|
nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-09-06 22:24:38 +02:00
|
|
|
assert( hIC->hdr.htype == WH_HINIT );
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (NULL == lpszUserName && NULL != lpszPassword)
|
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
goto lerror;
|
|
|
|
}
|
|
|
|
|
|
|
|
lpwfs = HeapAlloc(GetProcessHeap(), 0, sizeof(WININETFTPSESSIONW));
|
|
|
|
if (NULL == lpwfs)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
goto lerror;
|
|
|
|
}
|
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nServerPort == INTERNET_INVALID_PORT_NUMBER)
|
|
|
|
nServerPort = INTERNET_DEFAULT_FTP_PORT;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs->hdr.htype = WH_HFTPSESSION;
|
|
|
|
lpwfs->hdr.dwFlags = dwFlags;
|
|
|
|
lpwfs->hdr.dwContext = dwContext;
|
|
|
|
lpwfs->hdr.dwInternalFlags = dwInternalFlags;
|
2004-07-19 23:49:39 +02:00
|
|
|
lpwfs->hdr.dwRefCount = 1;
|
|
|
|
lpwfs->hdr.destroy = FTP_CloseSessionHandle;
|
2004-09-20 21:10:31 +02:00
|
|
|
lpwfs->hdr.lpfnStatusCB = hIC->hdr.lpfnStatusCB;
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs->download_in_progress = NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
|
2006-10-29 18:52:02 +01:00
|
|
|
WININET_AddRef( &hIC->hdr );
|
|
|
|
lpwfs->lpAppInfo = hIC;
|
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
handle = WININET_AllocHandle( &lpwfs->hdr );
|
|
|
|
if( !handle )
|
|
|
|
{
|
|
|
|
ERR("Failed to alloc handle\n");
|
|
|
|
INTERNET_SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
goto lerror;
|
|
|
|
}
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
if(hIC->lpszProxy && hIC->dwAccessType == INTERNET_OPEN_TYPE_PROXY) {
|
|
|
|
if(strchrW(hIC->lpszProxy, ' '))
|
|
|
|
FIXME("Several proxies not implemented.\n");
|
|
|
|
if(hIC->lpszProxyBypass)
|
|
|
|
FIXME("Proxy bypass is ignored.\n");
|
|
|
|
}
|
|
|
|
if ( !lpszUserName) {
|
2006-07-07 13:30:33 +02:00
|
|
|
HKEY key;
|
|
|
|
WCHAR szPassword[MAX_PATH];
|
|
|
|
DWORD len = sizeof(szPassword);
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs->lpszUserName = WININET_strdupW(szDefaultUsername);
|
2006-07-07 13:30:33 +02:00
|
|
|
|
|
|
|
RegOpenKeyW(HKEY_CURRENT_USER, szKey, &key);
|
|
|
|
if (RegQueryValueExW(key, szValue, NULL, NULL, (LPBYTE)szPassword, &len)) {
|
|
|
|
/* Nothing in the registry, get the username and use that as the password */
|
|
|
|
if (!GetUserNameW(szPassword, &len)) {
|
|
|
|
/* Should never get here, but use an empty password as failsafe */
|
|
|
|
strcpyW(szPassword, szEmpty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegCloseKey(key);
|
|
|
|
|
|
|
|
TRACE("Password used for anonymous ftp : (%s)\n", debugstr_w(szPassword));
|
|
|
|
lpwfs->lpszPassword = WININET_strdupW(szPassword);
|
2004-05-25 06:02:05 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
lpwfs->lpszUserName = WININET_strdupW(lpszUserName);
|
2006-07-03 23:09:03 +02:00
|
|
|
|
|
|
|
if (lpszPassword)
|
|
|
|
lpwfs->lpszPassword = WININET_strdupW(lpszPassword);
|
|
|
|
else
|
|
|
|
lpwfs->lpszPassword = WININET_strdupW(szEmpty);
|
2004-05-25 06:02:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't send a handle created callback if this handle was created with InternetOpenUrl */
|
2004-09-20 21:10:31 +02:00
|
|
|
if (!(lpwfs->hdr.dwInternalFlags & INET_OPENURL))
|
2004-05-25 06:02:05 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
|
|
|
|
|
|
|
iar.dwResult = (DWORD)handle;
|
|
|
|
iar.dwError = ERROR_SUCCESS;
|
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&hIC->hdr, dwContext,
|
2004-05-25 06:02:05 +02:00
|
|
|
INTERNET_STATUS_HANDLE_CREATED, &iar,
|
|
|
|
sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&hIC->hdr, dwContext, INTERNET_STATUS_RESOLVING_NAME,
|
2004-05-25 06:02:05 +02:00
|
|
|
(LPWSTR) lpszServerName, strlenW(lpszServerName));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2005-11-15 19:16:55 +01:00
|
|
|
if (!GetAddress(lpszServerName, nServerPort, &socketAddr))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED);
|
|
|
|
goto lerror;
|
|
|
|
}
|
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&hIC->hdr, dwContext, INTERNET_STATUS_NAME_RESOLVED,
|
2004-05-25 06:02:05 +02:00
|
|
|
(LPWSTR) lpszServerName, strlenW(lpszServerName));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
nsocket = socket(AF_INET,SOCK_STREAM,0);
|
|
|
|
if (nsocket == -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_CANNOT_CONNECT);
|
|
|
|
goto lerror;
|
|
|
|
}
|
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&hIC->hdr, dwContext, INTERNET_STATUS_CONNECTING_TO_SERVER,
|
2004-05-25 06:02:05 +02:00
|
|
|
&socketAddr, sizeof(struct sockaddr_in));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (connect(nsocket, (struct sockaddr *)&socketAddr, sizeof(socketAddr)) < 0)
|
|
|
|
{
|
2000-08-26 22:31:48 +02:00
|
|
|
ERR("Unable to connect (%s)\n", strerror(errno));
|
2000-04-11 22:07:00 +02:00
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_CANNOT_CONNECT);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
TRACE("Connected to server\n");
|
2004-05-25 06:02:05 +02:00
|
|
|
lpwfs->sndSocket = nsocket;
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&hIC->hdr, dwContext, INTERNET_STATUS_CONNECTED_TO_SERVER,
|
2004-05-25 06:02:05 +02:00
|
|
|
&socketAddr, sizeof(struct sockaddr_in));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2000-11-07 21:28:34 +01:00
|
|
|
sock_namelen = sizeof(lpwfs->socketAddress);
|
2000-11-25 04:09:30 +01:00
|
|
|
getsockname(nsocket, (struct sockaddr *) &lpwfs->socketAddress, &sock_namelen);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (FTP_ConnectToHost(lpwfs))
|
|
|
|
{
|
|
|
|
TRACE("Successfully logged into server\n");
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lerror:
|
2001-08-24 21:13:36 +02:00
|
|
|
if (!bSuccess && nsocket == -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(nsocket);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (!bSuccess && lpwfs)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwfs);
|
2004-02-07 02:03:41 +01:00
|
|
|
WININET_FreeHandle( handle );
|
2006-07-04 20:06:58 +02:00
|
|
|
handle = NULL;
|
2000-04-11 22:07:00 +02:00
|
|
|
lpwfs = NULL;
|
|
|
|
}
|
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
iar.dwResult = (DWORD)lpwfs;
|
|
|
|
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&hIC->hdr, dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
|
2000-04-11 22:07:00 +02:00
|
|
|
&iar, sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
2004-02-07 02:03:41 +01:00
|
|
|
return handle;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-12-29 06:19:57 +01:00
|
|
|
* FTP_ConnectToHost (internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Connect to a ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_ConnectToHost(LPWININETFTPSESSIONW lpwfs)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
|
|
|
TRACE("\n");
|
2004-05-25 06:02:05 +02:00
|
|
|
FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_USER, lpwfs->lpszUserName, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
/* Login successful... */
|
|
|
|
if (nResCode == 230)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
/* User name okay, need password... */
|
|
|
|
else if (nResCode == 331)
|
|
|
|
bSuccess = FTP_SendPassword(lpwfs);
|
|
|
|
/* Need account for login... */
|
|
|
|
else if (nResCode == 332)
|
|
|
|
bSuccess = FTP_SendAccount(lpwfs);
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Returning %d\n", bSuccess);
|
|
|
|
lend:
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2004-05-25 06:02:05 +02:00
|
|
|
* FTP_SendCommandA (internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Send command to server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-06-13 21:05:42 +02:00
|
|
|
static BOOL FTP_SendCommandA(INT nSocket, FTP_COMMAND ftpCmd, LPCSTR lpszParam,
|
2004-07-19 23:49:39 +02:00
|
|
|
INTERNET_STATUS_CALLBACK lpfnStatusCB, LPWININETHANDLEHEADER hdr, DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
DWORD len;
|
|
|
|
CHAR *buf;
|
|
|
|
DWORD nBytesSent = 0;
|
2004-08-09 20:54:23 +02:00
|
|
|
int nRC = 0;
|
2004-05-25 06:02:05 +02:00
|
|
|
DWORD dwParamLen;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("%d: (%s) %d\n", ftpCmd, lpszParam, nSocket);
|
|
|
|
|
|
|
|
if (lpfnStatusCB)
|
2004-07-19 23:49:39 +02:00
|
|
|
{
|
2006-10-30 22:13:52 +01:00
|
|
|
lpfnStatusCB(hdr->hInternet, dwContext, INTERNET_STATUS_SENDING_REQUEST, NULL, 0);
|
2004-07-19 23:49:39 +02:00
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
dwParamLen = lpszParam?strlen(lpszParam)+1:0;
|
|
|
|
len = dwParamLen + strlen(szFtpCommands[ftpCmd]) + strlen(szCRLF);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == (buf = HeapAlloc(GetProcessHeap(), 0, len+1)))
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2004-05-25 06:02:05 +02:00
|
|
|
sprintf(buf, "%s%s%s%s", szFtpCommands[ftpCmd], dwParamLen ? " " : "",
|
|
|
|
dwParamLen ? lpszParam : "", szCRLF);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("Sending (%s) len(%d)\n", buf, len);
|
2001-08-24 21:13:36 +02:00
|
|
|
while((nBytesSent < len) && (nRC != -1))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
nRC = send(nSocket, buf+nBytesSent, len - nBytesSent, 0);
|
|
|
|
nBytesSent += nRC;
|
|
|
|
}
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, (LPVOID)buf);
|
|
|
|
|
|
|
|
if (lpfnStatusCB)
|
2004-07-19 23:49:39 +02:00
|
|
|
{
|
2006-10-30 22:13:52 +01:00
|
|
|
lpfnStatusCB(hdr->hInternet, dwContext, INTERNET_STATUS_REQUEST_SENT,
|
|
|
|
&nBytesSent, sizeof(DWORD));
|
2004-07-19 23:49:39 +02:00
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("Sent %d bytes\n", nBytesSent);
|
2001-08-24 21:13:36 +02:00
|
|
|
return (nRC != -1);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendCommand (internal)
|
|
|
|
*
|
|
|
|
* Send command to server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendCommand(INT nSocket, FTP_COMMAND ftpCmd, LPCWSTR lpszParam,
|
2004-07-19 23:49:39 +02:00
|
|
|
INTERNET_STATUS_CALLBACK lpfnStatusCB, LPWININETHANDLEHEADER hdr, DWORD dwContext)
|
2004-05-25 06:02:05 +02:00
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
LPSTR lpszParamA = lpszParam?WININET_strdup_WtoA(lpszParam):NULL;
|
2004-07-19 23:49:39 +02:00
|
|
|
ret = FTP_SendCommandA(nSocket, ftpCmd, lpszParamA, lpfnStatusCB, hdr, dwContext);
|
2004-05-25 06:02:05 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpszParamA);
|
|
|
|
return ret;
|
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_ReceiveResponse (internal)
|
|
|
|
*
|
|
|
|
* Receive response from server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Reply code on success
|
|
|
|
* 0 on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-05-25 06:02:05 +02:00
|
|
|
INT FTP_ReceiveResponse(LPWININETFTPSESSIONW lpwfs, DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPSTR lpszResponse = INTERNET_GetResponseBuffer();
|
2000-04-11 22:07:00 +02:00
|
|
|
DWORD nRecv;
|
|
|
|
INT rc = 0;
|
2000-11-07 21:28:34 +01:00
|
|
|
char firstprefix[5];
|
|
|
|
BOOL multiline = FALSE;
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2000-11-07 21:28:34 +01:00
|
|
|
|
2005-11-10 13:14:56 +01:00
|
|
|
TRACE("socket(%d)\n", lpwfs->sndSocket);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-10-29 18:52:47 +01:00
|
|
|
hIC = lpwfs->lpAppInfo;
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, dwContext, INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
if (!INTERNET_GetNextLine(lpwfs->sndSocket, &nRecv))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lerror;
|
|
|
|
|
2000-11-07 21:28:34 +01:00
|
|
|
if (nRecv >= 3)
|
|
|
|
{
|
|
|
|
if(!multiline)
|
|
|
|
{
|
|
|
|
if(lpszResponse[3] != '-')
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
{ /* Start of multiline repsonse. Loop until we get "nnn " */
|
|
|
|
multiline = TRUE;
|
|
|
|
memcpy(firstprefix, lpszResponse, 3);
|
|
|
|
firstprefix[3] = ' ';
|
|
|
|
firstprefix[4] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!memcmp(firstprefix, lpszResponse, 4))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nRecv >= 3)
|
|
|
|
{
|
|
|
|
rc = atoi(lpszResponse);
|
|
|
|
|
2004-09-20 21:10:31 +02:00
|
|
|
SendAsyncCallback(&lpwfs->hdr, dwContext, INTERNET_STATUS_RESPONSE_RECEIVED,
|
2000-04-11 22:07:00 +02:00
|
|
|
&nRecv, sizeof(DWORD));
|
|
|
|
}
|
|
|
|
|
|
|
|
lerror:
|
|
|
|
TRACE("return %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendPassword (internal)
|
|
|
|
*
|
|
|
|
* Send password to ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendPassword(LPWININETFTPSESSIONW lpwfs)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_PASS, lpwfs->lpszPassword, 0, 0, 0))
|
|
|
|
goto lend;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
TRACE("Received reply code %d\n", nResCode);
|
|
|
|
/* Login successful... */
|
|
|
|
if (nResCode == 230)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
/* Command not implemented, superfluous at the server site... */
|
|
|
|
/* Need account for login... */
|
|
|
|
else if (nResCode == 332)
|
|
|
|
bSuccess = FTP_SendAccount(lpwfs);
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
|
|
|
TRACE("Returning %d\n", bSuccess);
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendAccount (internal)
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendAccount(LPWININETFTPSESSIONW lpwfs)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
|
|
|
TRACE("\n");
|
2004-05-25 06:02:05 +02:00
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_ACCT, szNoAccount, 0, 0, 0))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
|
|
|
|
lend:
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendStore (internal)
|
|
|
|
*
|
|
|
|
* Send request to upload file to ftp server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendStore(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DWORD dwType)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
if (!FTP_InitListenSocket(lpwfs))
|
|
|
|
goto lend;
|
|
|
|
|
|
|
|
if (!FTP_SendType(lpwfs, dwType))
|
|
|
|
goto lend;
|
|
|
|
|
2000-12-29 06:19:57 +01:00
|
|
|
if (!FTP_SendPortOrPasv(lpwfs))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lend;
|
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_STOR, lpszRemoteFile, 0, 0, 0))
|
|
|
|
goto lend;
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
2006-06-07 21:43:50 +02:00
|
|
|
if (nResCode == 150 || nResCode == 125)
|
2000-04-11 22:07:00 +02:00
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2001-08-24 21:13:36 +02:00
|
|
|
if (!bSuccess && lpwfs->lstnSocket != -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2001-08-24 21:13:36 +02:00
|
|
|
lpwfs->lstnSocket = -1;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_InitListenSocket (internal)
|
|
|
|
*
|
|
|
|
* Create a socket to listen for server response
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_InitListenSocket(LPWININETFTPSESSIONW lpwfs)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
BOOL bSuccess = FALSE;
|
2000-04-15 22:44:21 +02:00
|
|
|
size_t namelen = sizeof(struct sockaddr_in);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
lpwfs->lstnSocket = socket(PF_INET, SOCK_STREAM, 0);
|
2001-08-24 21:13:36 +02:00
|
|
|
if (lpwfs->lstnSocket == -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
TRACE("Unable to create listening socket\n");
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
2000-11-07 21:28:34 +01:00
|
|
|
/* We obtain our ip addr from the name of the command channel socket */
|
|
|
|
lpwfs->lstnSocketAddress = lpwfs->socketAddress;
|
|
|
|
|
|
|
|
/* and get the system to assign us a port */
|
2000-04-11 22:07:00 +02:00
|
|
|
lpwfs->lstnSocketAddress.sin_port = htons((u_short) 0);
|
2000-11-07 21:28:34 +01:00
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
if (bind(lpwfs->lstnSocket,(struct sockaddr *) &lpwfs->lstnSocketAddress, sizeof(struct sockaddr_in)) == -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
TRACE("Unable to bind socket\n");
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
if (listen(lpwfs->lstnSocket, MAX_BACKLOG) == -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
TRACE("listen failed\n");
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
if (getsockname(lpwfs->lstnSocket, (struct sockaddr *) &lpwfs->lstnSocketAddress, &namelen) != -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
bSuccess = TRUE;
|
|
|
|
|
|
|
|
lend:
|
2001-08-24 21:13:36 +02:00
|
|
|
if (!bSuccess && lpwfs->lstnSocket == -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2001-08-24 21:13:36 +02:00
|
|
|
lpwfs->lstnSocket = -1;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendType (internal)
|
|
|
|
*
|
2001-10-22 21:04:32 +02:00
|
|
|
* Tell server type of data being transferred
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
2000-12-29 06:19:57 +01:00
|
|
|
* W98SE doesn't cache the type that's currently set
|
|
|
|
* (i.e. it sends it always),
|
|
|
|
* so we probably don't want to do that either.
|
2000-04-11 22:07:00 +02:00
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendType(LPWININETFTPSESSIONW lpwfs, DWORD dwType)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
2004-05-25 06:02:05 +02:00
|
|
|
WCHAR type[] = { 'I','\0' };
|
2000-04-11 22:07:00 +02:00
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
if (dwType & INTERNET_FLAG_TRANSFER_ASCII)
|
2004-05-25 06:02:05 +02:00
|
|
|
type[0] = 'A';
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_TYPE, type, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext)/100;
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 2)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
2003-07-21 21:59:03 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FTP_GetFileSize (internal)
|
|
|
|
*
|
|
|
|
* Retrieves from the server the size of the given file
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_GetFileSize(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DWORD *dwSize)
|
2003-07-21 21:59:03 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_SIZE, lpszRemoteFile, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2003-07-21 21:59:03 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 213) {
|
|
|
|
/* Now parses the output to get the actual file size */
|
|
|
|
int i;
|
|
|
|
LPSTR lpszResponseBuffer = INTERNET_GetResponseBuffer();
|
|
|
|
|
|
|
|
for (i = 0; (lpszResponseBuffer[i] != ' ') && (lpszResponseBuffer[i] != '\0'); i++) ;
|
|
|
|
if (lpszResponseBuffer[i] == '\0') return FALSE;
|
|
|
|
*dwSize = atol(&(lpszResponseBuffer[i + 1]));
|
|
|
|
|
|
|
|
bSuccess = TRUE;
|
|
|
|
} else {
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendPort (internal)
|
|
|
|
*
|
|
|
|
* Tell server which port to use
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendPort(LPWININETFTPSESSIONW lpwfs)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
static const WCHAR szIPFormat[] = {'%','d',',','%','d',',','%','d',',','%','d',',','%','d',',','%','d','\0'};
|
2000-04-11 22:07:00 +02:00
|
|
|
INT nResCode;
|
2004-05-25 06:02:05 +02:00
|
|
|
WCHAR szIPAddress[64];
|
2000-04-11 22:07:00 +02:00
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
TRACE("\n");
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
sprintfW(szIPAddress, szIPFormat,
|
2000-11-07 21:28:34 +01:00
|
|
|
lpwfs->lstnSocketAddress.sin_addr.s_addr&0x000000FF,
|
|
|
|
(lpwfs->lstnSocketAddress.sin_addr.s_addr&0x0000FF00)>>8,
|
|
|
|
(lpwfs->lstnSocketAddress.sin_addr.s_addr&0x00FF0000)>>16,
|
|
|
|
(lpwfs->lstnSocketAddress.sin_addr.s_addr&0xFF000000)>>24,
|
2000-04-11 22:07:00 +02:00
|
|
|
lpwfs->lstnSocketAddress.sin_port & 0xFF,
|
|
|
|
(lpwfs->lstnSocketAddress.sin_port & 0xFF00)>>8);
|
|
|
|
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_PORT, szIPAddress, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 200)
|
|
|
|
bSuccess = TRUE;
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-12-29 06:19:57 +01:00
|
|
|
* FTP_DoPassive (internal)
|
|
|
|
*
|
|
|
|
* Tell server that we want to do passive transfers
|
|
|
|
* and connect data socket
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
2000-12-29 06:19:57 +01:00
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_DoPassive(LPWININETFTPSESSIONW lpwfs)
|
2000-12-29 06:19:57 +01:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_PASV, NULL, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2000-12-29 06:19:57 +01:00
|
|
|
if (nResCode)
|
|
|
|
{
|
|
|
|
if (nResCode == 227)
|
|
|
|
{
|
|
|
|
LPSTR lpszResponseBuffer = INTERNET_GetResponseBuffer();
|
|
|
|
LPSTR p;
|
|
|
|
int f[6];
|
|
|
|
int i;
|
|
|
|
char *pAddr, *pPort;
|
2001-08-24 21:13:36 +02:00
|
|
|
INT nsocket = -1;
|
2000-12-29 06:19:57 +01:00
|
|
|
struct sockaddr_in dataSocketAddress;
|
|
|
|
|
|
|
|
p = lpszResponseBuffer+4; /* skip status code */
|
|
|
|
|
|
|
|
/* do a very strict check; we can improve that later. */
|
|
|
|
|
|
|
|
if (strncmp(p, "Entering Passive Mode", 21))
|
|
|
|
{
|
|
|
|
ERR("unknown response '%.*s', aborting\n", 21, p);
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
p += 21; /* skip string */
|
|
|
|
if ((*p++ != ' ') || (*p++ != '('))
|
|
|
|
{
|
|
|
|
ERR("unknown response format, aborting\n");
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sscanf(p, "%d,%d,%d,%d,%d,%d", &f[0], &f[1], &f[2], &f[3],
|
|
|
|
&f[4], &f[5]) != 6)
|
|
|
|
{
|
|
|
|
ERR("unknown response address format '%s', aborting\n", p);
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
for (i=0; i < 6; i++)
|
|
|
|
f[i] = f[i] & 0xff;
|
|
|
|
|
|
|
|
dataSocketAddress = lpwfs->socketAddress;
|
|
|
|
pAddr = (char *)&(dataSocketAddress.sin_addr.s_addr);
|
|
|
|
pPort = (char *)&(dataSocketAddress.sin_port);
|
|
|
|
pAddr[0] = f[0];
|
|
|
|
pAddr[1] = f[1];
|
|
|
|
pAddr[2] = f[2];
|
|
|
|
pAddr[3] = f[3];
|
|
|
|
pPort[0] = f[4];
|
|
|
|
pPort[1] = f[5];
|
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
nsocket = socket(AF_INET,SOCK_STREAM,0);
|
|
|
|
if (nsocket == -1)
|
2000-12-29 06:19:57 +01:00
|
|
|
goto lend;
|
|
|
|
|
|
|
|
if (connect(nsocket, (struct sockaddr *)&dataSocketAddress, sizeof(dataSocketAddress)))
|
|
|
|
{
|
|
|
|
ERR("can't connect passive FTP data port.\n");
|
2006-09-06 10:46:10 +02:00
|
|
|
closesocket(nsocket);
|
2000-12-29 06:19:57 +01:00
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
lpwfs->pasvSocket = nsocket;
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
FTP_SetResponseError(nResCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendPortOrPasv(LPWININETFTPSESSIONW lpwfs)
|
2000-12-29 06:19:57 +01:00
|
|
|
{
|
|
|
|
if (lpwfs->hdr.dwFlags & INTERNET_FLAG_PASSIVE)
|
|
|
|
{
|
|
|
|
if (!FTP_DoPassive(lpwfs))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!FTP_SendPort(lpwfs))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_GetDataSocket (internal)
|
|
|
|
*
|
|
|
|
* Either accepts an incoming data socket connection from the server
|
|
|
|
* or just returns the already opened socket after a PASV command
|
|
|
|
* in case of passive FTP.
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_GetDataSocket(LPWININETFTPSESSIONW lpwfs, LPINT nDataSocket)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
struct sockaddr_in saddr;
|
2000-04-15 22:44:21 +02:00
|
|
|
size_t addrlen = sizeof(struct sockaddr);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
2000-12-29 06:19:57 +01:00
|
|
|
if (lpwfs->hdr.dwFlags & INTERNET_FLAG_PASSIVE)
|
|
|
|
{
|
|
|
|
*nDataSocket = lpwfs->pasvSocket;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*nDataSocket = accept(lpwfs->lstnSocket, (struct sockaddr *) &saddr, &addrlen);
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2001-08-24 21:13:36 +02:00
|
|
|
lpwfs->lstnSocket = -1;
|
2000-12-29 06:19:57 +01:00
|
|
|
}
|
2001-08-24 21:13:36 +02:00
|
|
|
return *nDataSocket != -1;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendData (internal)
|
|
|
|
*
|
|
|
|
* Send data to the server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_SendData(LPWININETFTPSESSIONW lpwfs, INT nDataSocket, HANDLE hFile)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
BY_HANDLE_FILE_INFORMATION fi;
|
|
|
|
DWORD nBytesRead = 0;
|
|
|
|
DWORD nBytesSent = 0;
|
|
|
|
DWORD nTotalSent = 0;
|
2004-08-09 20:54:23 +02:00
|
|
|
DWORD nBytesToSend, nLen;
|
|
|
|
int nRC = 1;
|
2000-04-11 22:07:00 +02:00
|
|
|
time_t s_long_time, e_long_time;
|
|
|
|
LONG nSeconds;
|
|
|
|
CHAR *lpszBuffer;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
lpszBuffer = HeapAlloc(GetProcessHeap(), 0, sizeof(CHAR)*DATA_PACKET_SIZE);
|
|
|
|
memset(lpszBuffer, 0, sizeof(CHAR)*DATA_PACKET_SIZE);
|
|
|
|
|
|
|
|
/* Get the size of the file. */
|
|
|
|
GetFileInformationByHandle(hFile, &fi);
|
|
|
|
time(&s_long_time);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
nBytesToSend = nBytesRead - nBytesSent;
|
|
|
|
|
|
|
|
if (nBytesToSend <= 0)
|
|
|
|
{
|
|
|
|
/* Read data from file. */
|
|
|
|
nBytesSent = 0;
|
|
|
|
if (!ReadFile(hFile, lpszBuffer, DATA_PACKET_SIZE, &nBytesRead, 0))
|
|
|
|
ERR("Failed reading from file\n");
|
|
|
|
|
|
|
|
if (nBytesRead > 0)
|
|
|
|
nBytesToSend = nBytesRead;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
nLen = DATA_PACKET_SIZE < nBytesToSend ?
|
2000-04-11 22:07:00 +02:00
|
|
|
DATA_PACKET_SIZE : nBytesToSend;
|
|
|
|
nRC = send(nDataSocket, lpszBuffer, nLen, 0);
|
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
if (nRC != -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
nBytesSent += nRC;
|
|
|
|
nTotalSent += nRC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do some computation to display the status. */
|
|
|
|
time(&e_long_time);
|
|
|
|
nSeconds = e_long_time - s_long_time;
|
|
|
|
if( nSeconds / 60 > 0 )
|
|
|
|
{
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE( "%d bytes of %d bytes (%d%%) in %d min %d sec estimated remaining time %d sec\n",
|
2002-06-01 01:06:46 +02:00
|
|
|
nTotalSent, fi.nFileSizeLow, nTotalSent*100/fi.nFileSizeLow, nSeconds / 60,
|
2000-04-11 22:07:00 +02:00
|
|
|
nSeconds % 60, (fi.nFileSizeLow - nTotalSent) * nSeconds / nTotalSent );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE( "%d bytes of %d bytes (%d%%) in %d sec estimated remaining time %d sec\n",
|
2000-04-11 22:07:00 +02:00
|
|
|
nTotalSent, fi.nFileSizeLow, nTotalSent*100/fi.nFileSizeLow, nSeconds,
|
|
|
|
(fi.nFileSizeLow - nTotalSent) * nSeconds / nTotalSent);
|
|
|
|
}
|
2001-08-24 21:13:36 +02:00
|
|
|
} while (nRC != -1);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("file transfer complete!\n");
|
|
|
|
|
2004-12-23 18:06:43 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpszBuffer);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
return nTotalSent;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SendRetrieve (internal)
|
|
|
|
*
|
|
|
|
* Send request to retrieve a file
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Number of bytes to be received on success
|
|
|
|
* 0 on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static DWORD FTP_SendRetrieve(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DWORD dwType)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
INT nResCode;
|
|
|
|
DWORD nResult = 0;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
if (!FTP_InitListenSocket(lpwfs))
|
|
|
|
goto lend;
|
|
|
|
|
|
|
|
if (!FTP_SendType(lpwfs, dwType))
|
|
|
|
goto lend;
|
|
|
|
|
2000-12-29 06:19:57 +01:00
|
|
|
if (!FTP_SendPortOrPasv(lpwfs))
|
2000-04-11 22:07:00 +02:00
|
|
|
goto lend;
|
|
|
|
|
2003-07-21 21:59:03 +02:00
|
|
|
if (!FTP_GetFileSize(lpwfs, lpszRemoteFile, &nResult))
|
|
|
|
goto lend;
|
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("Waiting to receive %d bytes\n", nResult);
|
2003-07-21 21:59:03 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
if (!FTP_SendCommand(lpwfs->sndSocket, FTP_CMD_RETR, lpszRemoteFile, 0, 0, 0))
|
|
|
|
goto lend;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2003-07-21 21:59:03 +02:00
|
|
|
if ((nResCode != 125) && (nResCode != 150)) {
|
|
|
|
/* That means that we got an error getting the file. */
|
|
|
|
nResult = 0;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2001-08-24 21:13:36 +02:00
|
|
|
if (0 == nResult && lpwfs->lstnSocket != -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2001-08-24 21:13:36 +02:00
|
|
|
lpwfs->lstnSocket = -1;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_RetrieveData (internal)
|
|
|
|
*
|
|
|
|
* Retrieve data from server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_RetrieveFileData(LPWININETFTPSESSIONW lpwfs, INT nDataSocket, DWORD nBytes, HANDLE hFile)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
DWORD nBytesWritten;
|
|
|
|
DWORD nBytesReceived = 0;
|
|
|
|
INT nRC = 0;
|
|
|
|
CHAR *lpszBuffer;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
if (INVALID_HANDLE_VALUE == hFile)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
lpszBuffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(CHAR)*DATA_PACKET_SIZE);
|
|
|
|
if (NULL == lpszBuffer)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
while (nBytesReceived < nBytes && nRC != -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
nRC = recv(nDataSocket, lpszBuffer, DATA_PACKET_SIZE, 0);
|
2001-08-24 21:13:36 +02:00
|
|
|
if (nRC != -1)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
/* other side closed socket. */
|
|
|
|
if (nRC == 0)
|
|
|
|
goto recv_end;
|
2002-06-01 01:06:46 +02:00
|
|
|
WriteFile(hFile, lpszBuffer, nRC, &nBytesWritten, NULL);
|
2000-04-11 22:07:00 +02:00
|
|
|
nBytesReceived += nRC;
|
|
|
|
}
|
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("%d bytes of %d (%d%%)\r", nBytesReceived, nBytes,
|
2000-04-11 22:07:00 +02:00
|
|
|
nBytesReceived * 100 / nBytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Data transfer complete\n");
|
2004-12-23 18:06:43 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpszBuffer);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
recv_end:
|
2001-08-24 21:13:36 +02:00
|
|
|
return (nRC != -1);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_CloseSessionHandle (internal)
|
|
|
|
*
|
|
|
|
* Deallocate session handle
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
static void FTP_CloseSessionHandle(LPWININETHANDLEHEADER hdr)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-07-19 23:49:39 +02:00
|
|
|
LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) hdr;
|
|
|
|
|
2003-07-21 21:59:03 +02:00
|
|
|
TRACE("\n");
|
2003-07-22 00:04:14 +02:00
|
|
|
|
2006-10-29 18:52:02 +01:00
|
|
|
WININET_Release(&lpwfs->lpAppInfo->hdr);
|
|
|
|
|
2003-07-22 00:04:14 +02:00
|
|
|
if (lpwfs->download_in_progress != NULL)
|
|
|
|
lpwfs->download_in_progress->session_deleted = TRUE;
|
2003-07-21 21:59:03 +02:00
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
if (lpwfs->sndSocket != -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->sndSocket);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2001-08-24 21:13:36 +02:00
|
|
|
if (lpwfs->lstnSocket != -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwfs->lstnSocket);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-12-23 18:06:43 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwfs->lpszPassword);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwfs->lpszUserName);
|
2000-04-11 22:07:00 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwfs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-29 18:53:41 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* FTP_FindNextFileW (Internal)
|
|
|
|
*
|
|
|
|
* Continues a file search from a previous call to FindFirstFile
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FTP_FindNextFileW(LPWININETFTPFINDNEXTW lpwh, LPVOID lpvFindData)
|
|
|
|
{
|
|
|
|
BOOL bSuccess = TRUE;
|
|
|
|
LPWIN32_FIND_DATAW lpFindFileData;
|
|
|
|
|
|
|
|
TRACE("index(%d) size(%d)\n", lpwh->index, lpwh->size);
|
|
|
|
|
|
|
|
assert (lpwh->hdr.htype == WH_HFTPFINDNEXT);
|
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
|
|
|
lpFindFileData = (LPWIN32_FIND_DATAW) lpvFindData;
|
|
|
|
ZeroMemory(lpFindFileData, sizeof(WIN32_FIND_DATAA));
|
|
|
|
|
|
|
|
if (lpwh->index >= lpwh->size)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_NO_MORE_FILES);
|
|
|
|
bSuccess = FALSE;
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
|
|
|
FTP_ConvertFileProp(&lpwh->lpafp[lpwh->index], lpFindFileData);
|
|
|
|
lpwh->index++;
|
|
|
|
|
|
|
|
TRACE("\nName: %s\nSize: %d\n", debugstr_w(lpFindFileData->cFileName), lpFindFileData->nFileSizeLow);
|
|
|
|
|
|
|
|
lend:
|
|
|
|
|
|
|
|
if (lpwh->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
|
|
|
|
|
|
|
iar.dwResult = (DWORD)bSuccess;
|
|
|
|
iar.dwError = iar.dwError = bSuccess ? ERROR_SUCCESS :
|
|
|
|
INTERNET_GetLastError();
|
|
|
|
|
|
|
|
INTERNET_SendCallback(&lpwh->hdr, lpwh->hdr.dwContext,
|
|
|
|
INTERNET_STATUS_REQUEST_COMPLETE, &iar,
|
|
|
|
sizeof(INTERNET_ASYNC_RESULT));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
/***********************************************************************
|
2003-07-21 21:59:03 +02:00
|
|
|
* FTP_CloseFindNextHandle (internal)
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* Deallocate session handle
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
static void FTP_CloseFindNextHandle(LPWININETHANDLEHEADER hdr)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2006-10-29 18:53:41 +01:00
|
|
|
LPWININETFTPFINDNEXTW lpwfn = (LPWININETFTPFINDNEXTW) hdr;
|
2004-08-09 20:54:23 +02:00
|
|
|
DWORD i;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2006-10-29 18:54:29 +01:00
|
|
|
WININET_Release(&lpwfn->lpFtpSession->hdr);
|
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
for (i = 0; i < lpwfn->size; i++)
|
|
|
|
{
|
2005-01-03 15:56:42 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwfn->lpafp[i].lpszName);
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwfn->lpafp);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwfn);
|
|
|
|
}
|
|
|
|
|
2003-07-21 21:59:03 +02:00
|
|
|
/***********************************************************************
|
2003-07-22 00:04:14 +02:00
|
|
|
* FTP_CloseFileTransferHandle (internal)
|
2003-07-21 21:59:03 +02:00
|
|
|
*
|
|
|
|
* Closes the file transfer handle. This also 'cleans' the data queue of
|
|
|
|
* the 'transfer conplete' message (this is a bit of a hack though :-/ )
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 23:49:39 +02:00
|
|
|
static void FTP_CloseFileTransferHandle(LPWININETHANDLEHEADER hdr)
|
2003-07-21 21:59:03 +02:00
|
|
|
{
|
2006-10-29 18:55:15 +01:00
|
|
|
LPWININETFTPFILE lpwh = (LPWININETFTPFILE) hdr;
|
|
|
|
LPWININETFTPSESSIONW lpwfs = lpwh->lpFtpSession;
|
2003-07-22 00:04:14 +02:00
|
|
|
INT nResCode;
|
|
|
|
|
2003-07-21 21:59:03 +02:00
|
|
|
TRACE("\n");
|
2003-07-22 00:04:14 +02:00
|
|
|
|
2006-10-29 18:55:15 +01:00
|
|
|
WININET_Release(&lpwh->lpFtpSession->hdr);
|
|
|
|
|
2003-07-22 00:04:14 +02:00
|
|
|
if (!lpwh->session_deleted)
|
|
|
|
lpwfs->download_in_progress = NULL;
|
|
|
|
|
|
|
|
/* This just serves to flush the control socket of any spurrious lines written
|
|
|
|
to it (like '226 Transfer complete.').
|
|
|
|
|
|
|
|
Wonder what to do if the server sends us an error code though...
|
|
|
|
*/
|
2004-05-25 06:02:05 +02:00
|
|
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
2003-07-21 21:59:03 +02:00
|
|
|
|
|
|
|
if (lpwh->nDataSocket != -1)
|
2004-09-03 20:57:19 +02:00
|
|
|
closesocket(lpwh->nDataSocket);
|
2003-07-21 21:59:03 +02:00
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwh);
|
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_ReceiveFileList (internal)
|
|
|
|
*
|
|
|
|
* Read file list from server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Handle to file list on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static HINTERNET FTP_ReceiveFileList(LPWININETFTPSESSIONW lpwfs, INT nSocket, LPCWSTR lpszSearchFile,
|
2004-05-25 06:02:05 +02:00
|
|
|
LPWIN32_FIND_DATAW lpFindFileData, DWORD dwContext)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
DWORD dwSize = 0;
|
2004-05-25 06:02:05 +02:00
|
|
|
LPFILEPROPERTIESW lpafp = NULL;
|
2006-10-29 18:53:41 +01:00
|
|
|
LPWININETFTPFINDNEXTW lpwfn = NULL;
|
2004-02-07 02:03:41 +01:00
|
|
|
HINTERNET handle = 0;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("(%p,%d,%s,%p,%d)\n", lpwfs, nSocket, debugstr_w(lpszSearchFile), lpFindFileData, dwContext);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
if (FTP_ParseDirectory(lpwfs, nSocket, lpszSearchFile, &lpafp, &dwSize))
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
if(lpFindFileData)
|
|
|
|
FTP_ConvertFileProp(lpafp, lpFindFileData);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2006-10-29 18:53:41 +01:00
|
|
|
lpwfn = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETFTPFINDNEXTW));
|
2004-02-07 02:03:41 +01:00
|
|
|
if (lpwfn)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2006-10-29 18:53:41 +01:00
|
|
|
lpwfn->hdr.htype = WH_HFTPFINDNEXT;
|
2004-07-19 23:49:39 +02:00
|
|
|
lpwfn->hdr.dwContext = dwContext;
|
|
|
|
lpwfn->hdr.dwRefCount = 1;
|
|
|
|
lpwfn->hdr.destroy = FTP_CloseFindNextHandle;
|
2004-09-20 21:10:31 +02:00
|
|
|
lpwfn->hdr.lpfnStatusCB = lpwfs->hdr.lpfnStatusCB;
|
2004-07-19 23:49:39 +02:00
|
|
|
lpwfn->index = 1; /* Next index is 1 since we return index 0 */
|
|
|
|
lpwfn->size = dwSize;
|
|
|
|
lpwfn->lpafp = lpafp;
|
|
|
|
|
2006-10-29 18:54:29 +01:00
|
|
|
WININET_AddRef( &lpwfs->hdr );
|
|
|
|
lpwfn->lpFtpSession = lpwfs;
|
|
|
|
|
2004-02-07 02:03:41 +01:00
|
|
|
handle = WININET_AllocHandle( &lpwfn->hdr );
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-07-19 23:49:39 +02:00
|
|
|
if( lpwfn )
|
|
|
|
WININET_Release( &lpwfn->hdr );
|
|
|
|
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("Matched %d files\n", dwSize);
|
2004-02-07 02:03:41 +01:00
|
|
|
return handle;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_ConvertFileProp (internal)
|
|
|
|
*
|
2004-05-25 06:02:05 +02:00
|
|
|
* Converts FILEPROPERTIESW struct to WIN32_FIND_DATAA
|
2000-04-11 22:07:00 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-05-25 06:02:05 +02:00
|
|
|
BOOL FTP_ConvertFileProp(LPFILEPROPERTIESW lpafp, LPWIN32_FIND_DATAW lpFindFileData)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
ZeroMemory(lpFindFileData, sizeof(WIN32_FIND_DATAW));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (lpafp)
|
|
|
|
{
|
2003-07-22 00:04:14 +02:00
|
|
|
/* Convert 'Unix' time to Windows time */
|
|
|
|
RtlSecondsSince1970ToTime(mktime(&lpafp->tmLastModified),
|
|
|
|
(LARGE_INTEGER *) &(lpFindFileData->ftLastAccessTime));
|
2004-09-06 22:24:38 +02:00
|
|
|
lpFindFileData->ftLastWriteTime = lpFindFileData->ftLastAccessTime;
|
|
|
|
lpFindFileData->ftCreationTime = lpFindFileData->ftLastAccessTime;
|
2003-07-22 00:04:14 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
/* Not all fields are filled in */
|
2003-07-22 00:04:14 +02:00
|
|
|
lpFindFileData->nFileSizeHigh = 0; /* We do not handle files bigger than 0xFFFFFFFF bytes yet :-) */
|
|
|
|
lpFindFileData->nFileSizeLow = lpafp->nSize;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (lpafp->bIsDirectory)
|
|
|
|
lpFindFileData->dwFileAttributes |= FILE_ATTRIBUTE_DIRECTORY;
|
|
|
|
|
|
|
|
if (lpafp->lpszName)
|
2005-03-28 16:17:51 +02:00
|
|
|
lstrcpynW(lpFindFileData->cFileName, lpafp->lpszName, MAX_PATH);
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FTP_ParseNextFile (internal)
|
|
|
|
*
|
|
|
|
* Parse the next line in file listing
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_ParseNextFile(INT nSocket, LPCWSTR lpszSearchFile, LPFILEPROPERTIESW lpfp)
|
2004-05-25 06:02:05 +02:00
|
|
|
{
|
|
|
|
static const char szSpace[] = " \t";
|
|
|
|
DWORD nBufLen;
|
|
|
|
char *pszLine;
|
|
|
|
char *pszToken;
|
|
|
|
char *pszTmp;
|
|
|
|
BOOL found = FALSE;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
lpfp->lpszName = NULL;
|
|
|
|
do {
|
|
|
|
if(!(pszLine = INTERNET_GetNextLine(nSocket, &nBufLen)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
pszToken = strtok(pszLine, szSpace);
|
|
|
|
/* ls format
|
|
|
|
* <Permissions> <NoLinks> <owner> <group> <size> <date> <time or year> <filename>
|
|
|
|
*
|
|
|
|
* For instance:
|
|
|
|
* drwx--s--- 2 pcarrier ens 512 Sep 28 1995 pcarrier
|
|
|
|
*/
|
|
|
|
if(!isdigit(pszToken[0]) && 10 == strlen(pszToken)) {
|
|
|
|
if(!FTP_ParsePermission(pszToken, lpfp))
|
|
|
|
lpfp->bIsDirectory = FALSE;
|
|
|
|
for(i=0; i<=3; i++) {
|
|
|
|
if(!(pszToken = strtok(NULL, szSpace)))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(!pszToken) continue;
|
|
|
|
if(lpfp->bIsDirectory) {
|
|
|
|
TRACE("Is directory\n");
|
|
|
|
lpfp->nSize = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
TRACE("Size: %s\n", pszToken);
|
|
|
|
lpfp->nSize = atol(pszToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
lpfp->tmLastModified.tm_sec = 0;
|
|
|
|
lpfp->tmLastModified.tm_min = 0;
|
|
|
|
lpfp->tmLastModified.tm_hour = 0;
|
|
|
|
lpfp->tmLastModified.tm_mday = 0;
|
|
|
|
lpfp->tmLastModified.tm_mon = 0;
|
|
|
|
lpfp->tmLastModified.tm_year = 0;
|
|
|
|
|
|
|
|
/* Determine month */
|
|
|
|
pszToken = strtok(NULL, szSpace);
|
|
|
|
if(!pszToken) continue;
|
|
|
|
if(strlen(pszToken) >= 3) {
|
|
|
|
pszToken[3] = 0;
|
|
|
|
if((pszTmp = StrStrIA(szMonths, pszToken)))
|
|
|
|
lpfp->tmLastModified.tm_mon = ((pszTmp - szMonths) / 3)+1;
|
|
|
|
}
|
|
|
|
/* Determine day */
|
|
|
|
pszToken = strtok(NULL, szSpace);
|
|
|
|
if(!pszToken) continue;
|
|
|
|
lpfp->tmLastModified.tm_mday = atoi(pszToken);
|
|
|
|
/* Determine time or year */
|
|
|
|
pszToken = strtok(NULL, szSpace);
|
|
|
|
if(!pszToken) continue;
|
|
|
|
if((pszTmp = strchr(pszToken, ':'))) {
|
|
|
|
struct tm* apTM;
|
|
|
|
time_t aTime;
|
|
|
|
*pszTmp = 0;
|
|
|
|
pszTmp++;
|
|
|
|
lpfp->tmLastModified.tm_min = atoi(pszTmp);
|
|
|
|
lpfp->tmLastModified.tm_hour = atoi(pszToken);
|
|
|
|
time(&aTime);
|
|
|
|
apTM = localtime(&aTime);
|
|
|
|
lpfp->tmLastModified.tm_year = apTM->tm_year;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lpfp->tmLastModified.tm_year = atoi(pszToken) - 1900;
|
|
|
|
lpfp->tmLastModified.tm_hour = 12;
|
|
|
|
}
|
|
|
|
TRACE("Mod time: %02d:%02d:%02d %02d/%02d/%02d\n",
|
|
|
|
lpfp->tmLastModified.tm_hour, lpfp->tmLastModified.tm_min, lpfp->tmLastModified.tm_sec,
|
|
|
|
(lpfp->tmLastModified.tm_year >= 100) ? lpfp->tmLastModified.tm_year - 100 : lpfp->tmLastModified.tm_year,
|
|
|
|
lpfp->tmLastModified.tm_mon, lpfp->tmLastModified.tm_mday);
|
|
|
|
|
|
|
|
pszToken = strtok(NULL, szSpace);
|
|
|
|
if(!pszToken) continue;
|
|
|
|
lpfp->lpszName = WININET_strdup_AtoW(pszToken);
|
|
|
|
TRACE("File: %s\n", debugstr_w(lpfp->lpszName));
|
|
|
|
}
|
|
|
|
/* NT way of parsing ... :
|
|
|
|
|
|
|
|
07-13-03 08:55PM <DIR> sakpatch
|
|
|
|
05-09-03 06:02PM 12656686 2003-04-21bgm_cmd_e.rgz
|
|
|
|
*/
|
|
|
|
else if(isdigit(pszToken[0]) && 8 == strlen(pszToken)) {
|
|
|
|
lpfp->permissions = 0xFFFF; /* No idea, put full permission :-) */
|
|
|
|
|
|
|
|
sscanf(pszToken, "%d-%d-%d",
|
|
|
|
&lpfp->tmLastModified.tm_mon,
|
|
|
|
&lpfp->tmLastModified.tm_mday,
|
|
|
|
&lpfp->tmLastModified.tm_year);
|
|
|
|
|
|
|
|
/* Hacky and bad Y2K protection :-) */
|
|
|
|
if (lpfp->tmLastModified.tm_year < 70)
|
|
|
|
lpfp->tmLastModified.tm_year += 100;
|
|
|
|
|
|
|
|
pszToken = strtok(NULL, szSpace);
|
|
|
|
if(!pszToken) continue;
|
|
|
|
sscanf(pszToken, "%d:%d",
|
|
|
|
&lpfp->tmLastModified.tm_hour,
|
|
|
|
&lpfp->tmLastModified.tm_min);
|
|
|
|
if((pszToken[5] == 'P') && (pszToken[6] == 'M')) {
|
|
|
|
lpfp->tmLastModified.tm_hour += 12;
|
|
|
|
}
|
|
|
|
lpfp->tmLastModified.tm_sec = 0;
|
|
|
|
|
|
|
|
TRACE("Mod time: %02d:%02d:%02d %02d/%02d/%02d\n",
|
|
|
|
lpfp->tmLastModified.tm_hour, lpfp->tmLastModified.tm_min, lpfp->tmLastModified.tm_sec,
|
|
|
|
(lpfp->tmLastModified.tm_year >= 100) ? lpfp->tmLastModified.tm_year - 100 : lpfp->tmLastModified.tm_year,
|
|
|
|
lpfp->tmLastModified.tm_mon, lpfp->tmLastModified.tm_mday);
|
|
|
|
|
|
|
|
pszToken = strtok(NULL, szSpace);
|
|
|
|
if(!pszToken) continue;
|
|
|
|
if(!strcasecmp(pszToken, "<DIR>")) {
|
|
|
|
lpfp->bIsDirectory = TRUE;
|
|
|
|
lpfp->nSize = 0;
|
|
|
|
TRACE("Is directory\n");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lpfp->bIsDirectory = FALSE;
|
|
|
|
lpfp->nSize = atol(pszToken);
|
2006-10-05 13:18:56 +02:00
|
|
|
TRACE("Size: %d\n", lpfp->nSize);
|
2004-05-25 06:02:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pszToken = strtok(NULL, szSpace);
|
|
|
|
if(!pszToken) continue;
|
|
|
|
lpfp->lpszName = WININET_strdup_AtoW(pszToken);
|
|
|
|
TRACE("Name: %s\n", debugstr_w(lpfp->lpszName));
|
|
|
|
}
|
|
|
|
/* EPLF format - http://cr.yp.to/ftp/list/eplf.html */
|
|
|
|
else if(pszToken[0] == '+') {
|
|
|
|
FIXME("EPLF Format not implemented\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lpfp->lpszName) {
|
2004-06-01 21:42:43 +02:00
|
|
|
if((lpszSearchFile == NULL) ||
|
|
|
|
(PathMatchSpecW(lpfp->lpszName, lpszSearchFile))) {
|
2004-05-25 06:02:05 +02:00
|
|
|
found = TRUE;
|
|
|
|
TRACE("Matched: %s\n", debugstr_w(lpfp->lpszName));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpfp->lpszName);
|
|
|
|
lpfp->lpszName = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while(!found);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_ParseDirectory (internal)
|
|
|
|
*
|
|
|
|
* Parse string of directory information
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_ParseDirectory(LPWININETFTPSESSIONW lpwfs, INT nSocket, LPCWSTR lpszSearchFile,
|
2004-05-25 06:02:05 +02:00
|
|
|
LPFILEPROPERTIESW *lpafp, LPDWORD dwfp)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
BOOL bSuccess = TRUE;
|
2004-05-25 06:02:05 +02:00
|
|
|
INT sizeFilePropArray = 500;/*20; */
|
|
|
|
INT indexFilePropArray = -1;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
/* Allocate intial file properties array */
|
2004-05-25 06:02:05 +02:00
|
|
|
*lpafp = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(FILEPROPERTIESW)*(sizeFilePropArray));
|
|
|
|
if (!*lpafp)
|
|
|
|
return FALSE;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2004-05-25 06:02:05 +02:00
|
|
|
do {
|
|
|
|
if (indexFilePropArray+1 >= sizeFilePropArray)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPFILEPROPERTIESW tmpafp;
|
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
sizeFilePropArray *= 2;
|
2002-06-01 01:06:46 +02:00
|
|
|
tmpafp = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, *lpafp,
|
2004-05-25 06:02:05 +02:00
|
|
|
sizeof(FILEPROPERTIESW)*sizeFilePropArray);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == tmpafp)
|
|
|
|
{
|
|
|
|
bSuccess = FALSE;
|
2004-05-25 06:02:05 +02:00
|
|
|
break;
|
2000-04-11 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*lpafp = tmpafp;
|
|
|
|
}
|
2004-05-25 06:02:05 +02:00
|
|
|
indexFilePropArray++;
|
|
|
|
} while (FTP_ParseNextFile(nSocket, lpszSearchFile, &(*lpafp)[indexFilePropArray]));
|
2000-04-11 22:07:00 +02:00
|
|
|
|
|
|
|
if (bSuccess && indexFilePropArray)
|
|
|
|
{
|
|
|
|
if (indexFilePropArray < sizeFilePropArray - 1)
|
|
|
|
{
|
2004-05-25 06:02:05 +02:00
|
|
|
LPFILEPROPERTIESW tmpafp;
|
2000-04-11 22:07:00 +02:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
tmpafp = HeapReAlloc(GetProcessHeap(), 0, *lpafp,
|
2004-05-25 06:02:05 +02:00
|
|
|
sizeof(FILEPROPERTIESW)*indexFilePropArray);
|
2000-04-11 22:07:00 +02:00
|
|
|
if (NULL == tmpafp)
|
|
|
|
*lpafp = tmpafp;
|
|
|
|
}
|
|
|
|
*dwfp = indexFilePropArray;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, *lpafp);
|
|
|
|
INTERNET_SetLastError(ERROR_NO_MORE_FILES);
|
|
|
|
bSuccess = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_ParsePermission (internal)
|
|
|
|
*
|
|
|
|
* Parse permission string of directory information
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static BOOL FTP_ParsePermission(LPCSTR lpszPermission, LPFILEPROPERTIESW lpfp)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
BOOL bSuccess = TRUE;
|
|
|
|
unsigned short nPermission = 0;
|
|
|
|
INT nPos = 1;
|
|
|
|
INT nLast = 9;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
if ((*lpszPermission != 'd') && (*lpszPermission != '-') && (*lpszPermission != 'l'))
|
|
|
|
{
|
|
|
|
bSuccess = FALSE;
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
lpfp->bIsDirectory = (*lpszPermission == 'd');
|
|
|
|
do
|
|
|
|
{
|
|
|
|
switch (nPos)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
nPermission |= (*(lpszPermission+1) == 'r' ? 1 : 0) << 8;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
nPermission |= (*(lpszPermission+2) == 'w' ? 1 : 0) << 7;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
nPermission |= (*(lpszPermission+3) == 'x' ? 1 : 0) << 6;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
nPermission |= (*(lpszPermission+4) == 'r' ? 1 : 0) << 5;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
nPermission |= (*(lpszPermission+5) == 'w' ? 1 : 0) << 4;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
nPermission |= (*(lpszPermission+6) == 'x' ? 1 : 0) << 3;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
nPermission |= (*(lpszPermission+7) == 'r' ? 1 : 0) << 2;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
nPermission |= (*(lpszPermission+8) == 'w' ? 1 : 0) << 1;
|
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
nPermission |= (*(lpszPermission+9) == 'x' ? 1 : 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nPos++;
|
|
|
|
}while (nPos <= nLast);
|
|
|
|
|
|
|
|
lpfp->permissions = nPermission;
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FTP_SetResponseError (internal)
|
|
|
|
*
|
|
|
|
* Set the appropriate error code for a given response from the server
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
*
|
|
|
|
*/
|
2005-12-03 18:03:08 +01:00
|
|
|
static DWORD FTP_SetResponseError(DWORD dwResponse)
|
2000-04-11 22:07:00 +02:00
|
|
|
{
|
|
|
|
DWORD dwCode = 0;
|
|
|
|
|
|
|
|
switch(dwResponse)
|
|
|
|
{
|
|
|
|
case 421: /* Service not available - Server may be shutting down. */
|
|
|
|
dwCode = ERROR_INTERNET_TIMEOUT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 425: /* Cannot open data connection. */
|
|
|
|
dwCode = ERROR_INTERNET_CANNOT_CONNECT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 426: /* Connection closed, transer aborted. */
|
|
|
|
dwCode = ERROR_INTERNET_CONNECTION_ABORTED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 500: /* Syntax error. Command unrecognized. */
|
|
|
|
case 501: /* Syntax error. Error in parameters or arguments. */
|
|
|
|
dwCode = ERROR_INTERNET_INCORRECT_FORMAT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 530: /* Not logged in. Login incorrect. */
|
|
|
|
dwCode = ERROR_INTERNET_LOGIN_FAILURE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 550: /* File action not taken. File not found or no access. */
|
|
|
|
dwCode = ERROR_INTERNET_ITEM_NOT_FOUND;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 450: /* File action not taken. File may be busy. */
|
|
|
|
case 451: /* Action aborted. Server error. */
|
|
|
|
case 452: /* Action not taken. Insufficient storage space on server. */
|
|
|
|
case 502: /* Command not implemented. */
|
|
|
|
case 503: /* Bad sequence of command. */
|
|
|
|
case 504: /* Command not implemented for that parameter. */
|
|
|
|
case 532: /* Need account for storing files */
|
|
|
|
case 551: /* Requested action aborted. Page type unknown */
|
|
|
|
case 552: /* Action aborted. Exceeded storage allocation */
|
|
|
|
case 553: /* Action not taken. File name not allowed. */
|
|
|
|
|
|
|
|
default:
|
|
|
|
dwCode = ERROR_INTERNET_INTERNAL_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-04-11 22:07:00 +02:00
|
|
|
INTERNET_SetLastError(dwCode);
|
|
|
|
return dwCode;
|
|
|
|
}
|