mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
373 lines
11 KiB
C
373 lines
11 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: dll/win32/kernel32/client/console/history.c
|
|
* PURPOSE: Win32 Console Client history functions
|
|
* PROGRAMMERS: Jeffrey Morlan
|
|
*/
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
#include <k32.h>
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
|
|
/* PRIVATE FUNCTIONS **********************************************************/
|
|
|
|
#if 0
|
|
/* Get the size needed to copy a string to a capture buffer, including alignment */
|
|
static ULONG
|
|
IntStringSize(LPCVOID String,
|
|
BOOL Unicode)
|
|
{
|
|
ULONG Size = (Unicode ? wcslen(String) : strlen(String)) * sizeof(WCHAR);
|
|
return (Size + 3) & ~3;
|
|
}
|
|
#endif
|
|
|
|
static VOID
|
|
IntExpungeConsoleCommandHistory(LPCVOID lpExeName, BOOLEAN bUnicode)
|
|
{
|
|
CONSOLE_API_MESSAGE ApiMessage;
|
|
PCONSOLE_EXPUNGECOMMANDHISTORY ExpungeCommandHistoryRequest = &ApiMessage.Data.ExpungeCommandHistoryRequest;
|
|
PCSR_CAPTURE_BUFFER CaptureBuffer;
|
|
|
|
USHORT NumChars = (USHORT)(lpExeName ? (bUnicode ? wcslen(lpExeName) : strlen(lpExeName)) : 0);
|
|
|
|
if (lpExeName == NULL || NumChars == 0)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return;
|
|
}
|
|
|
|
ExpungeCommandHistoryRequest->ConsoleHandle = NtCurrentPeb()->ProcessParameters->ConsoleHandle;
|
|
ExpungeCommandHistoryRequest->ExeLength = NumChars * (bUnicode ? sizeof(WCHAR) : sizeof(CHAR));
|
|
ExpungeCommandHistoryRequest->Unicode =
|
|
ExpungeCommandHistoryRequest->Unicode2 = bUnicode;
|
|
|
|
// CaptureBuffer = CsrAllocateCaptureBuffer(1, IntStringSize(lpExeName, bUnicode));
|
|
CaptureBuffer = CsrAllocateCaptureBuffer(1, ExpungeCommandHistoryRequest->ExeLength);
|
|
if (!CaptureBuffer)
|
|
{
|
|
DPRINT1("CsrAllocateCaptureBuffer failed!\n");
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
return;
|
|
}
|
|
|
|
CsrCaptureMessageBuffer(CaptureBuffer,
|
|
(PVOID)lpExeName,
|
|
ExpungeCommandHistoryRequest->ExeLength,
|
|
(PVOID)&ExpungeCommandHistoryRequest->ExeName);
|
|
|
|
CsrClientCallServer((PCSR_API_MESSAGE)&ApiMessage,
|
|
CaptureBuffer,
|
|
CSR_CREATE_API_NUMBER(CONSRV_SERVERDLL_INDEX, ConsolepExpungeCommandHistory),
|
|
sizeof(*ExpungeCommandHistoryRequest));
|
|
|
|
CsrFreeCaptureBuffer(CaptureBuffer);
|
|
|
|
if (!NT_SUCCESS(ApiMessage.Status))
|
|
BaseSetLastNTError(ApiMessage.Status);
|
|
}
|
|
|
|
|
|
static DWORD
|
|
IntGetConsoleCommandHistory(LPVOID lpHistory, DWORD cbHistory, LPCVOID lpExeName, BOOLEAN bUnicode)
|
|
{
|
|
CONSOLE_API_MESSAGE ApiMessage;
|
|
PCONSOLE_GETCOMMANDHISTORY GetCommandHistoryRequest = &ApiMessage.Data.GetCommandHistoryRequest;
|
|
PCSR_CAPTURE_BUFFER CaptureBuffer;
|
|
|
|
USHORT NumChars = (USHORT)(lpExeName ? (bUnicode ? wcslen(lpExeName) : strlen(lpExeName)) : 0);
|
|
|
|
if (lpExeName == NULL || NumChars == 0)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return 0;
|
|
}
|
|
|
|
GetCommandHistoryRequest->ConsoleHandle = NtCurrentPeb()->ProcessParameters->ConsoleHandle;
|
|
GetCommandHistoryRequest->HistoryLength = cbHistory;
|
|
GetCommandHistoryRequest->ExeLength = NumChars * (bUnicode ? sizeof(WCHAR) : sizeof(CHAR));
|
|
GetCommandHistoryRequest->Unicode =
|
|
GetCommandHistoryRequest->Unicode2 = bUnicode;
|
|
|
|
// CaptureBuffer = CsrAllocateCaptureBuffer(2, IntStringSize(lpExeName, bUnicode) +
|
|
// HistoryLength);
|
|
CaptureBuffer = CsrAllocateCaptureBuffer(2, GetCommandHistoryRequest->ExeLength +
|
|
GetCommandHistoryRequest->HistoryLength);
|
|
if (!CaptureBuffer)
|
|
{
|
|
DPRINT1("CsrAllocateCaptureBuffer failed!\n");
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
return 0;
|
|
}
|
|
|
|
CsrCaptureMessageBuffer(CaptureBuffer,
|
|
(PVOID)lpExeName,
|
|
GetCommandHistoryRequest->ExeLength,
|
|
(PVOID)&GetCommandHistoryRequest->ExeName);
|
|
|
|
CsrAllocateMessagePointer(CaptureBuffer, GetCommandHistoryRequest->HistoryLength,
|
|
(PVOID*)&GetCommandHistoryRequest->History);
|
|
|
|
CsrClientCallServer((PCSR_API_MESSAGE)&ApiMessage,
|
|
CaptureBuffer,
|
|
CSR_CREATE_API_NUMBER(CONSRV_SERVERDLL_INDEX, ConsolepGetCommandHistory),
|
|
sizeof(*GetCommandHistoryRequest));
|
|
if (!NT_SUCCESS(ApiMessage.Status))
|
|
{
|
|
CsrFreeCaptureBuffer(CaptureBuffer);
|
|
BaseSetLastNTError(ApiMessage.Status);
|
|
return 0;
|
|
}
|
|
|
|
RtlCopyMemory(lpHistory,
|
|
GetCommandHistoryRequest->History,
|
|
GetCommandHistoryRequest->HistoryLength);
|
|
|
|
CsrFreeCaptureBuffer(CaptureBuffer);
|
|
|
|
return GetCommandHistoryRequest->HistoryLength;
|
|
}
|
|
|
|
|
|
static DWORD
|
|
IntGetConsoleCommandHistoryLength(LPCVOID lpExeName, BOOL bUnicode)
|
|
{
|
|
CONSOLE_API_MESSAGE ApiMessage;
|
|
PCONSOLE_GETCOMMANDHISTORYLENGTH GetCommandHistoryLengthRequest = &ApiMessage.Data.GetCommandHistoryLengthRequest;
|
|
PCSR_CAPTURE_BUFFER CaptureBuffer;
|
|
|
|
USHORT NumChars = (USHORT)(lpExeName ? (bUnicode ? wcslen(lpExeName) : strlen(lpExeName)) : 0);
|
|
|
|
if (lpExeName == NULL || NumChars == 0)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return 0;
|
|
}
|
|
|
|
GetCommandHistoryLengthRequest->ConsoleHandle = NtCurrentPeb()->ProcessParameters->ConsoleHandle;
|
|
GetCommandHistoryLengthRequest->ExeLength = NumChars * (bUnicode ? sizeof(WCHAR) : sizeof(CHAR));
|
|
GetCommandHistoryLengthRequest->Unicode =
|
|
GetCommandHistoryLengthRequest->Unicode2 = bUnicode;
|
|
|
|
// CaptureBuffer = CsrAllocateCaptureBuffer(1, IntStringSize(lpExeName, bUnicode));
|
|
CaptureBuffer = CsrAllocateCaptureBuffer(1, GetCommandHistoryLengthRequest->ExeLength);
|
|
if (!CaptureBuffer)
|
|
{
|
|
DPRINT1("CsrAllocateCaptureBuffer failed!\n");
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
return 0;
|
|
}
|
|
|
|
CsrCaptureMessageBuffer(CaptureBuffer,
|
|
(PVOID)lpExeName,
|
|
GetCommandHistoryLengthRequest->ExeLength,
|
|
(PVOID)&GetCommandHistoryLengthRequest->ExeName);
|
|
|
|
CsrClientCallServer((PCSR_API_MESSAGE)&ApiMessage,
|
|
CaptureBuffer,
|
|
CSR_CREATE_API_NUMBER(CONSRV_SERVERDLL_INDEX, ConsolepGetCommandHistoryLength),
|
|
sizeof(*GetCommandHistoryLengthRequest));
|
|
|
|
CsrFreeCaptureBuffer(CaptureBuffer);
|
|
|
|
if (!NT_SUCCESS(ApiMessage.Status))
|
|
{
|
|
BaseSetLastNTError(ApiMessage.Status);
|
|
return 0;
|
|
}
|
|
|
|
return GetCommandHistoryLengthRequest->HistoryLength;
|
|
}
|
|
|
|
|
|
static BOOL
|
|
IntSetConsoleNumberOfCommands(DWORD dwNumCommands,
|
|
LPCVOID lpExeName,
|
|
BOOLEAN bUnicode)
|
|
{
|
|
CONSOLE_API_MESSAGE ApiMessage;
|
|
PCONSOLE_SETHISTORYNUMBERCOMMANDS SetHistoryNumberCommandsRequest = &ApiMessage.Data.SetHistoryNumberCommandsRequest;
|
|
PCSR_CAPTURE_BUFFER CaptureBuffer;
|
|
|
|
USHORT NumChars = (USHORT)(lpExeName ? (bUnicode ? wcslen(lpExeName) : strlen(lpExeName)) : 0);
|
|
|
|
if (lpExeName == NULL || NumChars == 0)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return FALSE;
|
|
}
|
|
|
|
SetHistoryNumberCommandsRequest->ConsoleHandle = NtCurrentPeb()->ProcessParameters->ConsoleHandle;
|
|
SetHistoryNumberCommandsRequest->NumCommands = dwNumCommands;
|
|
SetHistoryNumberCommandsRequest->ExeLength = NumChars * (bUnicode ? sizeof(WCHAR) : sizeof(CHAR));
|
|
SetHistoryNumberCommandsRequest->Unicode =
|
|
SetHistoryNumberCommandsRequest->Unicode2 = bUnicode;
|
|
|
|
// CaptureBuffer = CsrAllocateCaptureBuffer(1, IntStringSize(lpExeName, bUnicode));
|
|
CaptureBuffer = CsrAllocateCaptureBuffer(1, SetHistoryNumberCommandsRequest->ExeLength);
|
|
if (!CaptureBuffer)
|
|
{
|
|
DPRINT1("CsrAllocateCaptureBuffer failed!\n");
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
return FALSE;
|
|
}
|
|
|
|
CsrCaptureMessageBuffer(CaptureBuffer,
|
|
(PVOID)lpExeName,
|
|
SetHistoryNumberCommandsRequest->ExeLength,
|
|
(PVOID)&SetHistoryNumberCommandsRequest->ExeName);
|
|
|
|
CsrClientCallServer((PCSR_API_MESSAGE)&ApiMessage,
|
|
CaptureBuffer,
|
|
CSR_CREATE_API_NUMBER(CONSRV_SERVERDLL_INDEX, ConsolepSetNumberOfCommands),
|
|
sizeof(*SetHistoryNumberCommandsRequest));
|
|
|
|
CsrFreeCaptureBuffer(CaptureBuffer);
|
|
|
|
if (!NT_SUCCESS(ApiMessage.Status))
|
|
{
|
|
BaseSetLastNTError(ApiMessage.Status);
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
VOID
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
ExpungeConsoleCommandHistoryW(IN LPCWSTR lpExeName)
|
|
{
|
|
IntExpungeConsoleCommandHistory(lpExeName, TRUE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
VOID
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
ExpungeConsoleCommandHistoryA(IN LPCSTR lpExeName)
|
|
{
|
|
IntExpungeConsoleCommandHistory(lpExeName, FALSE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
DWORD
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
GetConsoleCommandHistoryW(OUT LPWSTR lpHistory,
|
|
IN DWORD cbHistory,
|
|
IN LPCWSTR lpExeName)
|
|
{
|
|
return IntGetConsoleCommandHistory(lpHistory, cbHistory, lpExeName, TRUE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
DWORD
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
GetConsoleCommandHistoryA(OUT LPSTR lpHistory,
|
|
IN DWORD cbHistory,
|
|
IN LPCSTR lpExeName)
|
|
{
|
|
return IntGetConsoleCommandHistory(lpHistory, cbHistory, lpExeName, FALSE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
DWORD
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
GetConsoleCommandHistoryLengthW(IN LPCWSTR lpExeName)
|
|
{
|
|
return IntGetConsoleCommandHistoryLength(lpExeName, TRUE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
DWORD
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
GetConsoleCommandHistoryLengthA(IN LPCSTR lpExeName)
|
|
{
|
|
return IntGetConsoleCommandHistoryLength(lpExeName, FALSE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
BOOL
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
SetConsoleNumberOfCommandsW(IN DWORD dwNumCommands,
|
|
IN LPCWSTR lpExeName)
|
|
{
|
|
return IntSetConsoleNumberOfCommands(dwNumCommands, lpExeName, TRUE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented (Undocumented)
|
|
*/
|
|
BOOL
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
SetConsoleNumberOfCommandsA(IN DWORD dwNumCommands,
|
|
IN LPCSTR lpExeName)
|
|
{
|
|
return IntSetConsoleNumberOfCommands(dwNumCommands, lpExeName, FALSE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOL
|
|
WINAPI
|
|
DECLSPEC_HOTPATCH
|
|
SetConsoleCommandHistoryMode(IN DWORD dwMode)
|
|
{
|
|
CONSOLE_API_MESSAGE ApiMessage;
|
|
PCONSOLE_SETHISTORYMODE SetHistoryModeRequest = &ApiMessage.Data.SetHistoryModeRequest;
|
|
|
|
SetHistoryModeRequest->ConsoleHandle = NtCurrentPeb()->ProcessParameters->ConsoleHandle;
|
|
SetHistoryModeRequest->Mode = dwMode;
|
|
|
|
CsrClientCallServer((PCSR_API_MESSAGE)&ApiMessage,
|
|
NULL,
|
|
CSR_CREATE_API_NUMBER(CONSRV_SERVERDLL_INDEX, ConsolepSetCommandHistoryMode),
|
|
sizeof(*SetHistoryModeRequest));
|
|
if (!NT_SUCCESS(ApiMessage.Status))
|
|
{
|
|
BaseSetLastNTError(ApiMessage.Status);
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/* EOF */
|