Files
reactos/dll/win32/kernel32/client/console/init.c
Katayama Hirofumi MZ 40252ff735 [KERNEL32][CONSRV][SDK] Implement ConsoleIMERoutine (#8862)
Preparing for Console IME.
JIRA issue: CORE-18923
- Add IntRegQueryValue,
  IntPathQuoteSpacesW, and
  GetConsoleIMECommandLine helper
  functions.
- Add ConsoleIMERoutine function.
- Modify ConnectInfo.ImeRoutine in
  ConDllInitialize function.
- Modify kernel32.spec to add
  ConsoleIMERoutine.
- Add ConsoleIMERoutine prototype
  to <wincon_undoc.h>.
- Connect ImeRoutine in
  ConSrvConnect function.
Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
2026-04-21 17:52:19 +09:00

750 lines
23 KiB
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: dll/win32/kernel32/client/console/init.c
* PURPOSE: Console API Client Initialization
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
* Aleksey Bragin (aleksey@reactos.org)
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
*/
/* INCLUDES *******************************************************************/
#include <k32.h>
// For Control Panel Applet
#include <cpl.h>
#define NDEBUG
#include <debug.h>
/* GLOBALS ********************************************************************/
RTL_CRITICAL_SECTION ConsoleLock;
BOOLEAN ConsoleInitialized = FALSE;
extern HANDLE InputWaitHandle;
static volatile LONG g_bConsoleIMEStartingUp = FALSE; // We use interlock, so LONG
static const PWSTR DefaultConsoleTitle = L"ReactOS Console";
/* FUNCTIONS ******************************************************************/
DWORD
WINAPI
PropDialogHandler(IN LPVOID lpThreadParameter)
{
// NOTE: lpThreadParameter corresponds to the client shared section handle.
NTSTATUS Status = STATUS_SUCCESS;
HMODULE hConsoleApplet = NULL;
APPLET_PROC CPlApplet;
static BOOL AlreadyDisplayingProps = FALSE;
WCHAR szBuffer[MAX_PATH];
/*
* Do not launch more than once the console property dialog applet,
* or (albeit less probable), if we are not initialized.
*/
if (!ConsoleInitialized || AlreadyDisplayingProps)
{
/* Close the associated client shared section handle if needed */
if (lpThreadParameter)
CloseHandle((HANDLE)lpThreadParameter);
return STATUS_UNSUCCESSFUL;
}
AlreadyDisplayingProps = TRUE;
/* Load the control applet */
GetSystemDirectoryW(szBuffer, MAX_PATH);
wcscat(szBuffer, L"\\console.dll");
hConsoleApplet = LoadLibraryW(szBuffer);
if (hConsoleApplet == NULL)
{
DPRINT1("Failed to load console.dll\n");
Status = STATUS_UNSUCCESSFUL;
goto Quit;
}
/* Load its main function */
CPlApplet = (APPLET_PROC)GetProcAddress(hConsoleApplet, "CPlApplet");
if (CPlApplet == NULL)
{
DPRINT1("Error: console.dll misses CPlApplet export\n");
Status = STATUS_UNSUCCESSFUL;
goto Quit;
}
/* Initialize the applet */
if (CPlApplet(NULL, CPL_INIT, 0, 0) == FALSE)
{
DPRINT1("Error: failed to initialize console.dll\n");
Status = STATUS_UNSUCCESSFUL;
goto Quit;
}
/* Check the count */
if (CPlApplet(NULL, CPL_GETCOUNT, 0, 0) != 1)
{
DPRINT1("Error: console.dll returned unexpected CPL count\n");
Status = STATUS_UNSUCCESSFUL;
goto Quit;
}
/*
* Start the applet. For Windows compatibility purposes we need
* to pass the client shared section handle (lpThreadParameter)
* via the hWnd parameter of the CPlApplet function.
*/
CPlApplet((HWND)lpThreadParameter, CPL_DBLCLK, 0, 0);
/* We have finished */
CPlApplet(NULL, CPL_EXIT, 0, 0);
Quit:
if (hConsoleApplet) FreeLibrary(hConsoleApplet);
AlreadyDisplayingProps = FALSE;
return Status;
}
static INT
ParseShellInfo(LPCWSTR lpszShellInfo,
LPCWSTR lpszKeyword)
{
DPRINT("ParseShellInfo is UNIMPLEMENTED\n");
return 0;
}
/*
* NOTE:
* The "LPDWORD Length" parameters point on input to the maximum size of
* the buffers that can hold data (if != 0), and on output they hold the
* real size of the data. If "Length" are == 0 on input, then on output
* they receive the full size of the data.
* The "LPWSTR* lpTitle" parameter has a double meaning:
* - when "CaptureTitle" is TRUE, data is copied to the buffer pointed
* by the pointer (*lpTitle).
* - when "CaptureTitle" is FALSE, "*lpTitle" is set to the address of
* the source data.
*/
VOID
SetUpConsoleInfo(IN BOOLEAN CaptureTitle,
IN OUT LPDWORD pTitleLength,
IN OUT LPWSTR* lpTitle OPTIONAL,
IN OUT LPDWORD pDesktopLength,
IN OUT LPWSTR* lpDesktop OPTIONAL,
IN OUT PCONSOLE_START_INFO ConsoleStartInfo)
{
PRTL_USER_PROCESS_PARAMETERS Parameters = NtCurrentPeb()->ProcessParameters;
DWORD Length;
/* Initialize the fields */
ConsoleStartInfo->IconIndex = 0;
ConsoleStartInfo->hIcon = NULL;
ConsoleStartInfo->hIconSm = NULL;
ConsoleStartInfo->dwStartupFlags = Parameters->WindowFlags;
ConsoleStartInfo->nFont = 0;
ConsoleStartInfo->nInputBufferSize = 0;
ConsoleStartInfo->uCodePage = GetOEMCP();
if (lpTitle)
{
LPWSTR Title;
/* If we don't have any title, use the default one */
if (Parameters->WindowTitle.Buffer == NULL)
{
Title = DefaultConsoleTitle;
Length = lstrlenW(DefaultConsoleTitle) * sizeof(WCHAR); // sizeof(DefaultConsoleTitle);
}
else
{
Title = Parameters->WindowTitle.Buffer;
Length = Parameters->WindowTitle.Length;
}
/* Retrieve the needed buffer size */
Length += sizeof(WCHAR);
if (*pTitleLength > 0) Length = min(Length, *pTitleLength);
*pTitleLength = Length;
/* Capture the data if needed, or, return a pointer to it */
if (CaptureTitle)
{
/*
* Length is always >= sizeof(WCHAR). Copy everything but the
* possible trailing NULL character, and then NULL-terminate.
*/
Length -= sizeof(WCHAR);
RtlCopyMemory(*lpTitle, Title, Length);
(*lpTitle)[Length / sizeof(WCHAR)] = UNICODE_NULL;
}
else
{
*lpTitle = Title;
}
}
else
{
*pTitleLength = 0;
}
if (lpDesktop && Parameters->DesktopInfo.Buffer && *Parameters->DesktopInfo.Buffer)
{
/* Retrieve the needed buffer size */
Length = Parameters->DesktopInfo.Length + sizeof(WCHAR);
if (*pDesktopLength > 0) Length = min(Length, *pDesktopLength);
*pDesktopLength = Length;
/* Return a pointer to the data */
*lpDesktop = Parameters->DesktopInfo.Buffer;
}
else
{
*pDesktopLength = 0;
if (lpDesktop) *lpDesktop = NULL;
}
if (Parameters->WindowFlags & STARTF_USEFILLATTRIBUTE)
{
ConsoleStartInfo->wFillAttribute = (WORD)Parameters->FillAttribute;
}
if (Parameters->WindowFlags & STARTF_USECOUNTCHARS)
{
ConsoleStartInfo->dwScreenBufferSize.X = (SHORT)Parameters->CountCharsX;
ConsoleStartInfo->dwScreenBufferSize.Y = (SHORT)Parameters->CountCharsY;
}
if (Parameters->WindowFlags & STARTF_USESHOWWINDOW)
{
ConsoleStartInfo->wShowWindow = (WORD)Parameters->ShowWindowFlags;
}
if (Parameters->WindowFlags & STARTF_USEPOSITION)
{
ConsoleStartInfo->dwWindowOrigin.X = (SHORT)Parameters->StartingX;
ConsoleStartInfo->dwWindowOrigin.Y = (SHORT)Parameters->StartingY;
}
if (Parameters->WindowFlags & STARTF_USESIZE)
{
ConsoleStartInfo->dwWindowSize.X = (SHORT)Parameters->CountX;
ConsoleStartInfo->dwWindowSize.Y = (SHORT)Parameters->CountY;
}
/* Get shell information (ShellInfo.Buffer is NULL-terminated) */
if (Parameters->ShellInfo.Buffer != NULL)
{
ConsoleStartInfo->IconIndex = ParseShellInfo(Parameters->ShellInfo.Buffer, L"dde.");
if ((Parameters->WindowFlags & STARTF_USEHOTKEY) == 0)
ConsoleStartInfo->dwHotKey = ParseShellInfo(Parameters->ShellInfo.Buffer, L"hotkey.");
else
ConsoleStartInfo->dwHotKey = HandleToUlong(Parameters->StandardInput);
}
}
VOID
SetUpHandles(IN PCONSOLE_START_INFO ConsoleStartInfo)
{
PRTL_USER_PROCESS_PARAMETERS Parameters = NtCurrentPeb()->ProcessParameters;
if (ConsoleStartInfo->dwStartupFlags & STARTF_USEHOTKEY)
{
Parameters->WindowFlags &= ~STARTF_USEHOTKEY;
}
if (ConsoleStartInfo->dwStartupFlags & STARTF_SHELLPRIVATE)
{
Parameters->WindowFlags &= ~STARTF_SHELLPRIVATE;
}
/* We got the handles, let's set them */
Parameters->ConsoleHandle = ConsoleStartInfo->ConsoleHandle;
if ((ConsoleStartInfo->dwStartupFlags & STARTF_USESTDHANDLES) == 0)
{
Parameters->StandardInput = ConsoleStartInfo->InputHandle;
Parameters->StandardOutput = ConsoleStartInfo->OutputHandle;
Parameters->StandardError = ConsoleStartInfo->ErrorHandle;
}
}
static BOOLEAN
IsConsoleApp(VOID)
{
PIMAGE_NT_HEADERS ImageNtHeader = RtlImageNtHeader(NtCurrentPeb()->ImageBaseAddress);
return (ImageNtHeader && (ImageNtHeader->OptionalHeader.Subsystem ==
IMAGE_SUBSYSTEM_WINDOWS_CUI));
}
static BOOLEAN
ConnectConsole(IN PWSTR SessionDir,
IN PCONSRV_API_CONNECTINFO ConnectInfo,
OUT PBOOLEAN InServerProcess)
{
NTSTATUS Status;
ULONG ConnectInfoSize = sizeof(*ConnectInfo);
ASSERT(SessionDir);
/* Connect to the Console Server */
DPRINT("Connecting to the Console Server...\n");
Status = CsrClientConnectToServer(SessionDir,
CONSRV_SERVERDLL_INDEX,
ConnectInfo,
&ConnectInfoSize,
InServerProcess);
if (!NT_SUCCESS(Status))
{
DPRINT1("Failed to connect to the Console Server (Status %lx)\n", Status);
return FALSE;
}
/* Nothing to do for server-to-server */
if (*InServerProcess) return TRUE;
/* Nothing to do if this is not a console app */
if (!ConnectInfo->IsConsoleApp) return TRUE;
/* Wait for the connection to finish */
// Is ConnectInfo->ConsoleStartInfo.InitEvents aligned on handle boundary ????
Status = NtWaitForMultipleObjects(MAX_INIT_EVENTS,
ConnectInfo->ConsoleStartInfo.InitEvents,
WaitAny, FALSE, NULL);
if (!NT_SUCCESS(Status))
{
BaseSetLastNTError(Status);
return FALSE;
}
NtClose(ConnectInfo->ConsoleStartInfo.InitEvents[INIT_SUCCESS]);
NtClose(ConnectInfo->ConsoleStartInfo.InitEvents[INIT_FAILURE]);
if (Status != INIT_SUCCESS)
{
NtCurrentPeb()->ProcessParameters->ConsoleHandle = NULL;
return FALSE;
}
return TRUE;
}
/* Query registry value */
static NTSTATUS
IntRegQueryValue(
_In_ HANDLE hKey,
_In_ PCWSTR pszValueName,
_Out_ PVOID pvValue,
_In_ ULONG cbValue)
{
HANDLE hProcessHeap;
ULONG cbInfo, cbResult;
PKEY_VALUE_PARTIAL_INFORMATION pInfo;
UNICODE_STRING valueName;
NTSTATUS status;
hProcessHeap = GetProcessHeap();
cbInfo = FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data) + cbValue;
pInfo = HeapAlloc(hProcessHeap, 0, cbInfo);
if (!pInfo)
return STATUS_NO_MEMORY;
RtlInitUnicodeString(&valueName, pszValueName);
status = NtQueryValueKey(hKey, &valueName, KeyValuePartialInformation,
pInfo, cbInfo, &cbResult);
if (NT_SUCCESS(status))
{
const ULONG cbCopy = min(pInfo->DataLength, cbValue);
RtlCopyMemory(pvValue, pInfo->Data, cbCopy);
/* SECURITY: Avoid buffer overrun */
if (pInfo->Type == REG_SZ && cbValue >= sizeof(UNICODE_NULL))
((PWCHAR)pvValue)[cbValue / sizeof(WCHAR) - 1] = UNICODE_NULL;
}
HeapFree(hProcessHeap, 0, pInfo);
return status;
}
/* Quote a path string if necessary */
static NTSTATUS
IntPathQuoteSpacesW(
_Inout_updates_z_(cchPathMax) PWSTR pszPath,
_In_ UINT cchPathMax)
{
size_t cchLen;
if (!wcschr(pszPath, L' '))
return STATUS_SUCCESS;
cchLen = wcslen(pszPath) + 1;
if (cchLen + 2 > cchPathMax) /* for 2 quotes */
return STATUS_BUFFER_TOO_SMALL;
RtlMoveMemory(pszPath + 1, pszPath, cchLen * sizeof(WCHAR));
pszPath[0] = L'"';
pszPath[cchLen] = L'"';
pszPath[cchLen + 1] = UNICODE_NULL;
return STATUS_SUCCESS;
}
/* Reject bad relative paths */
static inline BOOL IntIsSafeRelativePath(_Inout_z_ PWSTR pszPath)
{
/* Replace '/' with '\\' to detect the bad paths easily */
INT ich;
for (ich = 0; pszPath[ich]; ++ich)
{
if (pszPath[ich] == L'/')
pszPath[ich] = L'\\';
}
/* Avoid path traversal */
return (memcmp(pszPath, L"..\\", 3 * sizeof(WCHAR)) && !wcsstr(pszPath, L"\\..\\"));
}
/* Build the conime.exe command line */
static VOID
GetConsoleIMECommandLine(
_Out_ PWSTR pszBuffer,
_In_ UINT cchBuffer)
{
UINT cchSysDir;
HANDLE hKey;
UNICODE_STRING keyName;
OBJECT_ATTRIBUTES attr;
NTSTATUS status;
WCHAR szValue[MAX_PATH];
static const PCWSTR ConsoleKey =
L"\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Console";
cchSysDir = GetSystemDirectoryW(pszBuffer, cchBuffer);
if (cchSysDir > 0 && cchSysDir < cchBuffer - 1)
{
RtlStringCchCatW(pszBuffer, cchBuffer, L"\\");
cchSysDir = (UINT)wcslen(pszBuffer);
}
else
{
*pszBuffer = UNICODE_NULL;
cchSysDir = 0;
}
/* Open registry key */
RtlInitUnicodeString(&keyName, ConsoleKey);
InitializeObjectAttributes(&attr, &keyName, OBJ_CASE_INSENSITIVE, NULL, NULL);
status = NtOpenKey(&hKey, KEY_QUERY_VALUE, &attr);
if (NT_SUCCESS(status))
{
/* Query "ConsoleIME" value */
status = IntRegQueryValue(hKey, L"ConsoleIME", szValue, sizeof(szValue));
NtClose(hKey);
if (NT_SUCCESS(status))
{
/* Malicious relative paths should be rejected (ReactOS-only) */
if (szValue[0] && IntIsSafeRelativePath(szValue))
{
/* Append value to pszBuffer */
status = RtlStringCchCatW(pszBuffer, cchBuffer, szValue);
if (NT_SUCCESS(status))
{
/* Quote the path if necessary (ReactOS-only). Avoid path traversal */
status = IntPathQuoteSpacesW(pszBuffer, cchBuffer);
if (NT_SUCCESS(status))
{
DPRINT("ConsoleIME: '%S'\n", pszBuffer);
return; /* Success */
}
}
/* It failed. Let's try the default path */
pszBuffer[cchSysDir] = UNICODE_NULL;
}
}
}
else
{
DPRINT1("Opening registry failed: 0x%08X\n", status);
}
RtlStringCchCatW(pszBuffer, cchBuffer, L"conime.exe");
/* Quote the path if necessary (ReactOS-only). Avoid path traversal */
status = IntPathQuoteSpacesW(pszBuffer, cchBuffer);
if (!NT_SUCCESS(status))
RtlStringCchCopyW(pszBuffer, cchBuffer, L"conime.exe"); /* Use filename only */
}
/**
* @brief
* This function is called from winsrv.dll, in the context of the console application,
* to support Console IME on East Asian console.
*/
DWORD
WINAPI
ConsoleIMERoutine(_In_ PVOID unused)
{
HANDLE hStartUpEvent;
DWORD dwError;
WCHAR szCommandLine[2 * MAX_PATH];
STARTUPINFOW si;
PROCESS_INFORMATION pi;
DWORD dwCreationFlags;
UNREFERENCED_PARAMETER(unused);
if (InterlockedCompareExchange(&g_bConsoleIMEStartingUp, TRUE, FALSE) != FALSE)
return STATUS_UNSUCCESSFUL; /* NOTE: There's confusion between error codes and NTSTATUS */
hStartUpEvent = CreateEventW(NULL, FALSE, FALSE, L"ConsoleIME_StartUp_Event");
dwError = GetLastError();
if (dwError == ERROR_ALREADY_EXISTS)
{
CloseHandle(hStartUpEvent);
hStartUpEvent = NULL;
}
if (!hStartUpEvent)
{
InterlockedExchange(&g_bConsoleIMEStartingUp, FALSE);
return ERROR_SUCCESS;
}
RtlZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
si.lpDesktop = NtCurrentPeb()->ProcessParameters->DesktopInfo.Buffer;
si.dwFlags = STARTF_FORCEONFEEDBACK;
/* Let's create a conime.exe process */
GetConsoleIMECommandLine(szCommandLine, _countof(szCommandLine));
dwCreationFlags = CREATE_DEFAULT_ERROR_MODE | CREATE_BREAKAWAY_FROM_JOB |
CREATE_NEW_PROCESS_GROUP | NORMAL_PRIORITY_CLASS;
if (CreateProcessW(NULL, szCommandLine, NULL, NULL, FALSE, dwCreationFlags,
NULL, NULL, &si, &pi))
{
/* Wait 10 seconds for conime.exe to start up */
const DWORD dwWait = WaitForSingleObject(hStartUpEvent, 10 * 1000);
if (dwWait == WAIT_TIMEOUT)
TerminateProcess(pi.hProcess, 0);
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
dwError = ERROR_SUCCESS;
}
else
{
dwError = GetLastError();
DPRINT1("'%S' startup failed: 0x%08X\n", szCommandLine, dwError);
}
CloseHandle(hStartUpEvent);
InterlockedExchange(&g_bConsoleIMEStartingUp, FALSE);
return dwError;
}
BOOLEAN
WINAPI
ConDllInitialize(IN ULONG Reason,
IN PWSTR SessionDir)
{
NTSTATUS Status;
PRTL_USER_PROCESS_PARAMETERS Parameters = NtCurrentPeb()->ProcessParameters;
BOOLEAN InServerProcess = FALSE;
CONSRV_API_CONNECTINFO ConnectInfo;
if (Reason != DLL_PROCESS_ATTACH)
{
if ((Reason == DLL_THREAD_ATTACH) && IsConsoleApp())
{
/* Sync the new thread's LangId with the console's one */
SetTEBLangID();
}
else if (Reason == DLL_PROCESS_DETACH)
{
/* Free our resources */
if (ConsoleInitialized != FALSE)
{
ConsoleInitialized = FALSE;
RtlDeleteCriticalSection(&ConsoleLock);
}
}
return TRUE;
}
DPRINT("ConDllInitialize for: %wZ\n"
"Our current console handles are: 0x%p, 0x%p, 0x%p 0x%p\n",
&Parameters->ImagePathName,
Parameters->ConsoleHandle,
Parameters->StandardInput,
Parameters->StandardOutput,
Parameters->StandardError);
/* Initialize our global console DLL lock */
Status = RtlInitializeCriticalSection(&ConsoleLock);
if (!NT_SUCCESS(Status)) return FALSE;
ConsoleInitialized = TRUE;
/* Show by default the console window when applicable */
ConnectInfo.IsWindowVisible = TRUE;
/* If this is a console app, a console will be created/opened */
ConnectInfo.IsConsoleApp = IsConsoleApp();
/* Do nothing if this is not a console app... */
if (!ConnectInfo.IsConsoleApp)
{
DPRINT("Image is not a console application\n");
}
/*
* Handle the special flags given to us by BasePushProcessParameters.
*/
if (Parameters->ConsoleHandle == HANDLE_DETACHED_PROCESS)
{
/* No console to create */
DPRINT("No console to create\n");
/*
* The new process does not inherit its parent's console and cannot
* attach to the console of its parent. The new process can call the
* AllocConsole function at a later time to create a console.
*/
Parameters->ConsoleHandle = NULL; // Do not inherit the parent's console.
ConnectInfo.IsConsoleApp = FALSE; // Do not create any console.
}
else if (Parameters->ConsoleHandle == HANDLE_CREATE_NEW_CONSOLE)
{
/* We'll get the real one soon */
DPRINT("Creating a new separate console\n");
/*
* The new process has a new console, instead of inheriting
* its parent's console.
*/
Parameters->ConsoleHandle = NULL; // Do not inherit the parent's console.
}
else if (Parameters->ConsoleHandle == HANDLE_CREATE_NO_WINDOW)
{
/* We'll get the real one soon */
DPRINT("Creating a new invisible console\n");
/*
* The process is a console application that is being run
* without a console window. Therefore, the console handle
* for the application is not set.
*/
Parameters->ConsoleHandle = NULL; // Do not inherit the parent's console.
ConnectInfo.IsWindowVisible = FALSE; // A console is created but is not shown to the user.
}
else
{
DPRINT("Using existing console: 0x%p\n", Parameters->ConsoleHandle);
}
/* Do nothing if this is not a console app... */
if (!ConnectInfo.IsConsoleApp)
{
/* Do not inherit the parent's console if we are not a console app */
Parameters->ConsoleHandle = NULL;
}
/* Now use the proper console handle */
ConnectInfo.ConsoleStartInfo.ConsoleHandle = Parameters->ConsoleHandle;
/* Initialize the console dispatchers */
ConnectInfo.CtrlRoutine = ConsoleControlDispatcher;
ConnectInfo.PropRoutine = PropDialogHandler;
ConnectInfo.ImeRoutine = ConsoleIMERoutine;
/* Set up the console properties */
if (ConnectInfo.IsConsoleApp && Parameters->ConsoleHandle == NULL)
{
/*
* We can set up the console properties only if we create a new one
* (we do not inherit it from our parent).
*/
LPWSTR ConsoleTitle = ConnectInfo.ConsoleTitle;
ConnectInfo.TitleLength = sizeof(ConnectInfo.ConsoleTitle);
ConnectInfo.DesktopLength = 0; // SetUpConsoleInfo will give us the real length.
SetUpConsoleInfo(TRUE,
&ConnectInfo.TitleLength,
&ConsoleTitle,
&ConnectInfo.DesktopLength,
&ConnectInfo.Desktop,
&ConnectInfo.ConsoleStartInfo);
DPRINT("ConsoleTitle = '%S' - Desktop = '%S'\n",
ConsoleTitle, ConnectInfo.Desktop);
}
else
{
ConnectInfo.TitleLength = 0;
ConnectInfo.DesktopLength = 0;
}
/* Initialize the Input EXE name */
if (ConnectInfo.IsConsoleApp)
{
LPWSTR CurDir = ConnectInfo.CurDir;
LPWSTR AppName = ConnectInfo.AppName;
InitExeName();
ConnectInfo.CurDirLength = sizeof(ConnectInfo.CurDir);
ConnectInfo.AppNameLength = sizeof(ConnectInfo.AppName);
SetUpAppName(TRUE,
&ConnectInfo.CurDirLength,
&CurDir,
&ConnectInfo.AppNameLength,
&AppName);
DPRINT("CurDir = '%S' - AppName = '%S'\n",
CurDir, AppName);
}
else
{
ConnectInfo.CurDirLength = 0;
ConnectInfo.AppNameLength = 0;
}
/*
* Initialize Console Ctrl Handling, that needs to be supported by
* all applications, especially because it is used at shutdown.
*/
InitializeCtrlHandling();
/* Connect to the Console Server */
if (!ConnectConsole(SessionDir,
&ConnectInfo,
&InServerProcess))
{
// DPRINT1("Failed to connect to the Console Server (Status %lx)\n", Status);
return FALSE;
}
/* If we are not doing server-to-server init and if this is a console app... */
if (!InServerProcess && ConnectInfo.IsConsoleApp)
{
/* ... set the handles that we got */
if (Parameters->ConsoleHandle == NULL)
SetUpHandles(&ConnectInfo.ConsoleStartInfo);
InputWaitHandle = ConnectInfo.ConsoleStartInfo.InputWaitHandle;
/* Sync the current thread's LangId with the console's one */
SetTEBLangID();
}
DPRINT("Console setup: 0x%p, 0x%p, 0x%p, 0x%p\n",
Parameters->ConsoleHandle,
Parameters->StandardInput,
Parameters->StandardOutput,
Parameters->StandardError);
return TRUE;
}
/* EOF */