mirror of
https://github.com/reactos/reactos.git
synced 2025-04-03 20:21:17 +00:00
[SERVICES] Use the local system account to run all services on a LiveCD
This fixes CORE-16589.
This commit is contained in:
parent
e2b536bcb1
commit
07d48d8808
3 changed files with 74 additions and 1 deletions
|
@ -370,7 +370,7 @@ ScmLogonService(
|
|||
DPRINT("ScmLogonService(%p %p)\n", pService, pImage);
|
||||
DPRINT("Service %S\n", pService->lpServiceName);
|
||||
|
||||
if (ScmIsLocalSystemAccount(pImage->pszAccountName))
|
||||
if (ScmIsLocalSystemAccount(pImage->pszAccountName) || ScmLiveSetup)
|
||||
return ERROR_SUCCESS;
|
||||
|
||||
/* Get the user and domain names */
|
||||
|
|
|
@ -27,6 +27,7 @@ int WINAPI RegisterServicesProcess(DWORD ServicesProcessId);
|
|||
|
||||
BOOL ScmInitialize = FALSE;
|
||||
BOOL ScmShutdown = FALSE;
|
||||
BOOL ScmLiveSetup = FALSE;
|
||||
static HANDLE hScmShutdownEvent = NULL;
|
||||
static HANDLE hScmSecurityServicesEvent = NULL;
|
||||
|
||||
|
@ -48,6 +49,70 @@ PrintString(LPCSTR fmt, ...)
|
|||
#endif
|
||||
}
|
||||
|
||||
DWORD
|
||||
CheckForLiveCD(VOID)
|
||||
{
|
||||
WCHAR CommandLine[MAX_PATH];
|
||||
HKEY hSetupKey;
|
||||
DWORD dwSetupType;
|
||||
DWORD dwType;
|
||||
DWORD dwSize;
|
||||
DWORD dwError;
|
||||
|
||||
DPRINT1("CheckSetup()\n");
|
||||
|
||||
/* Open the Setup key */
|
||||
dwError = RegOpenKeyExW(HKEY_LOCAL_MACHINE,
|
||||
L"SYSTEM\\Setup",
|
||||
0,
|
||||
KEY_QUERY_VALUE,
|
||||
&hSetupKey);
|
||||
if (dwError != ERROR_SUCCESS)
|
||||
return dwError;
|
||||
|
||||
/* Read the SetupType value */
|
||||
dwSize = sizeof(DWORD);
|
||||
dwError = RegQueryValueExW(hSetupKey,
|
||||
L"SetupType",
|
||||
NULL,
|
||||
&dwType,
|
||||
(LPBYTE)&dwSetupType,
|
||||
&dwSize);
|
||||
|
||||
if (dwError != ERROR_SUCCESS ||
|
||||
dwType != REG_DWORD ||
|
||||
dwSize != sizeof(DWORD) ||
|
||||
dwSetupType == 0)
|
||||
goto done;
|
||||
|
||||
/* Read the CmdLine value */
|
||||
dwSize = sizeof(CommandLine);
|
||||
dwError = RegQueryValueExW(hSetupKey,
|
||||
L"CmdLine",
|
||||
NULL,
|
||||
&dwType,
|
||||
(LPBYTE)CommandLine,
|
||||
&dwSize);
|
||||
|
||||
if (dwError != ERROR_SUCCESS ||
|
||||
(dwType != REG_SZ &&
|
||||
dwType != REG_EXPAND_SZ &&
|
||||
dwType != REG_MULTI_SZ))
|
||||
goto done;
|
||||
|
||||
/* Check for the '-mini' option */
|
||||
if (wcsstr(CommandLine, L" -mini") != NULL)
|
||||
{
|
||||
DPRINT1("Running on LiveCD!\n");
|
||||
ScmLiveSetup = TRUE;
|
||||
}
|
||||
|
||||
done:
|
||||
RegCloseKey(hSetupKey);
|
||||
|
||||
return dwError;
|
||||
}
|
||||
|
||||
|
||||
DWORD
|
||||
SetSecurityServicesEvent(VOID)
|
||||
|
@ -169,6 +234,13 @@ wWinMain(HINSTANCE hInstance,
|
|||
|
||||
DPRINT("SERVICES: Service Control Manager\n");
|
||||
|
||||
dwError = CheckForLiveCD();
|
||||
if (dwError != ERROR_SUCCESS)
|
||||
{
|
||||
DPRINT1("SERVICES: Failed to check for LiveCD (Error %lu)\n", dwError);
|
||||
goto done;
|
||||
}
|
||||
|
||||
/* Make us critical */
|
||||
RtlSetProcessIsCritical(TRUE, NULL, TRUE);
|
||||
|
||||
|
|
|
@ -101,6 +101,7 @@ extern LIST_ENTRY GroupListHead;
|
|||
extern LIST_ENTRY ImageListHead;
|
||||
extern BOOL ScmInitialize;
|
||||
extern BOOL ScmShutdown;
|
||||
extern BOOL ScmLiveSetup;
|
||||
extern PSECURITY_DESCRIPTOR pPipeSD;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue