[ADVAPI32][SECLOGON] Start the implementation of CreateProcessWithLogonW

This commit is contained in:
Eric Kohl 2022-02-21 16:38:29 +01:00
parent eb0830a1d6
commit f4982e547d
7 changed files with 151 additions and 18 deletions

View file

@ -17,6 +17,6 @@ add_library(seclogon MODULE
set_module_type(seclogon win32dll UNICODE)
target_link_libraries(seclogon wine ${PSEH_LIB})
add_importlibs(seclogon advapi32 rpcrt4 msvcrt kernel32 ntdll)
add_importlibs(seclogon userenv advapi32 rpcrt4 msvcrt kernel32 ntdll)
add_pch(seclogon precomp.h SOURCE)
add_cd_file(TARGET seclogon DESTINATION reactos/system32 FOR all)

View file

@ -20,6 +20,7 @@
#include <winreg.h>
#include <winsvc.h>
#include <svc.h>
#include <userenv.h>
#define NTOS_MODE_USER
#include <ndk/rtlfuncs.h>

View file

@ -59,6 +59,12 @@ SeclCreateProcessWithLogonW(
_In_ SECL_REQUEST *pRequest,
_Out_ SECL_RESPONSE *pResponse)
{
PROFILEINFOW ProfileInfo;
HANDLE hToken = NULL;
ULONG dwError = ERROR_SUCCESS;
BOOL rc;
TRACE("SeclCreateProcessWithLogonW(%p %p %p)\n", hBinding, pRequest, pResponse);
if (pRequest != NULL)
@ -69,12 +75,51 @@ SeclCreateProcessWithLogonW(
TRACE("ApplicationName: '%S'\n", pRequest->ApplicationName);
TRACE("CommandLine: '%S'\n", pRequest->CommandLine);
TRACE("CurrentDirectory: '%S'\n", pRequest->CurrentDirectory);
TRACE("LogonFlags: 0x%lx\n", pRequest->dwLogonFlags);
TRACE("CreationFlags: 0x%lx\n", pRequest->dwCreationFlags);
}
/* FIXME: Logon */
ZeroMemory(&ProfileInfo, sizeof(ProfileInfo));
/* Logon */
rc = LogonUser(pRequest->Username,
pRequest->Domain,
pRequest->Password,
LOGON32_LOGON_INTERACTIVE,
LOGON32_PROVIDER_DEFAULT,
&hToken);
if (rc == FALSE)
{
dwError = GetLastError();
WARN("LogonUser() failed with Error %lu\n", dwError);
goto done;
}
/* Load the user profile */
if (pRequest->dwLogonFlags & LOGON_WITH_PROFILE)
{
ProfileInfo.dwSize = sizeof(ProfileInfo);
ProfileInfo.lpUserName = pRequest->Username;
rc = LoadUserProfileW(hToken,
&ProfileInfo);
if (rc == FALSE)
{
dwError = GetLastError();
WARN("LoadUserProfile() failed with Error %lu\n", dwError);
goto done;
}
}
/* FIXME: Create Process */
done:
if (ProfileInfo.hProfile != NULL)
UnloadUserProfile(hToken, ProfileInfo.hProfile);
if (hToken != NULL)
CloseHandle(hToken);
if (pResponse != NULL)
pResponse->ulError = 4;
pResponse->ulError = dwError;
}

View file

@ -11,6 +11,7 @@ include_directories(
add_rpc_files(client
${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl/eventlogrpc.idl
${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl/lsa.idl
${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl/seclogon.idl
${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl/svcctl.idl
${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl/winreg.idl)
@ -49,6 +50,7 @@ list(APPEND PCH_SKIP_SOURCE
${CMAKE_CURRENT_BINARY_DIR}/advapi32_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/eventlogrpc_c.c
${CMAKE_CURRENT_BINARY_DIR}/lsa_c.c
${CMAKE_CURRENT_BINARY_DIR}/seclogon_c.c
${CMAKE_CURRENT_BINARY_DIR}/svcctl_c.c
${CMAKE_CURRENT_BINARY_DIR}/winreg_c.c)

View file

@ -36,6 +36,7 @@
#include <ntsecapi.h>
#include <services/services.h>
#include <seclogon_c.h>
#include <svcctl_c.h>
#include <winreg_c.h>
@ -70,6 +71,14 @@ RPC_STATUS EvtUnbindLocalHandle(void);
DWORD
ScmRpcStatusToWinError(RPC_STATUS Status);
/* sysfunc.h */
NTSTATUS
WINAPI
SystemFunction034(
_In_ RPC_BINDING_HANDLE BindingHandle,
INT b,
_Out_ LPBYTE SessionKey);
/* Interface to ntmarta.dll **************************************************/
typedef struct _NTMARTA

View file

@ -4,7 +4,7 @@
* Copyright 1999, 2000 Juergen Schmied <juergen.schmied@debitel.net>
* Copyright 2003 CodeWeavers Inc. (Ulrich Czekalla)
* Copyright 2006 Robert Reif
* Copyright 2006 Hervé Poussineau
* Copyright 2006 Hervé Poussineau
*
* PROJECT: ReactOS system libraries
* FILE: dll/win32/advapi32/wine/security.c
@ -3475,25 +3475,99 @@ ConvertSidToStringSidA(PSID Sid,
/*
* @unimplemented
*/
BOOL WINAPI
CreateProcessWithLogonW(LPCWSTR lpUsername,
LPCWSTR lpDomain,
LPCWSTR lpPassword,
DWORD dwLogonFlags,
LPCWSTR lpApplicationName,
LPWSTR lpCommandLine,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCWSTR lpCurrentDirectory,
LPSTARTUPINFOW lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation)
BOOL
WINAPI
CreateProcessWithLogonW(
_In_ LPCWSTR lpUsername,
_In_opt_ LPCWSTR lpDomain,
_In_ LPCWSTR lpPassword,
_In_ DWORD dwLogonFlags,
_In_opt_ LPCWSTR lpApplicationName,
_Inout_opt_ LPWSTR lpCommandLine,
_In_ DWORD dwCreationFlags,
_In_opt_ LPVOID lpEnvironment,
_In_opt_ LPCWSTR lpCurrentDirectory,
_In_ LPSTARTUPINFOW lpStartupInfo,
_Out_ LPPROCESS_INFORMATION lpProcessInformation)
{
FIXME("%s %s %s 0x%08x %s %s 0x%08x %p %s %p %p stub\n", debugstr_w(lpUsername), debugstr_w(lpDomain),
LPWSTR pszStringBinding = NULL;
handle_t hBinding = NULL;
SECL_REQUEST Request;
SECL_RESPONSE Response;
RPC_STATUS Status;
TRACE("CreateProcessWithLogonW(%s %s %s 0x%08x %s %s 0x%08x %p %s %p %p)\n", debugstr_w(lpUsername), debugstr_w(lpDomain),
debugstr_w(lpPassword), dwLogonFlags, debugstr_w(lpApplicationName),
debugstr_w(lpCommandLine), dwCreationFlags, lpEnvironment, debugstr_w(lpCurrentDirectory),
lpStartupInfo, lpProcessInformation);
return FALSE;
Status = RpcStringBindingComposeW(NULL,
L"ncacn_np",
NULL,
L"\\pipe\\seclogon",
NULL,
&pszStringBinding);
if (Status != RPC_S_OK)
{
WARN("RpcStringBindingCompose returned 0x%x\n", Status);
SetLastError(Status);
return FALSE;
}
/* Set the binding handle that will be used to bind to the server. */
Status = RpcBindingFromStringBindingW(pszStringBinding,
&hBinding);
if (Status != RPC_S_OK)
{
WARN("RpcBindingFromStringBinding returned 0x%x\n", Status);
}
Status = RpcStringFreeW(&pszStringBinding);
if (Status != RPC_S_OK)
{
WARN("RpcStringFree returned 0x%x\n", Status);
}
Request.Username = (LPWSTR)lpUsername;
Request.Domain = (LPWSTR)lpDomain;
Request.Password = (LPWSTR)lpPassword;
Request.ApplicationName = (LPWSTR)lpApplicationName;
Request.CommandLine = (LPWSTR)lpCommandLine;
Request.CurrentDirectory = (LPWSTR)lpCurrentDirectory;
Request.dwLogonFlags = dwLogonFlags;
Request.dwCreationFlags = dwCreationFlags;
Response.ulError = ERROR_SUCCESS;
RpcTryExcept
{
SeclCreateProcessWithLogonW(hBinding, &Request, &Response);
}
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
{
WARN("Exception: %lx\n", RpcExceptionCode());
}
RpcEndExcept;
if (hBinding)
{
Status = RpcBindingFree(&hBinding);
if (Status != RPC_S_OK)
{
WARN("RpcBindingFree returned 0x%x\n", Status);
}
hBinding = NULL;
}
TRACE("Response.ulError %lu\n", Response.ulError);
if (Response.ulError != ERROR_SUCCESS)
SetLastError(Response.ulError);
TRACE("CreateProcessWithLogonW() done\n");
return (Response.ulError == ERROR_SUCCESS);
}
BOOL WINAPI CreateProcessWithTokenW(HANDLE token, DWORD logon_flags, LPCWSTR application_name, LPWSTR command_line,

View file

@ -12,6 +12,8 @@ typedef struct _SECL_REQUEST
[string] WCHAR *ApplicationName;
[string] WCHAR *CommandLine;
[string] WCHAR *CurrentDirectory;
DWORD dwLogonFlags;
DWORD dwCreationFlags;
} SECL_REQUEST, *PSECL_REQUEST;
typedef struct _SECL_RESPONSE