524 lines
18 KiB
C
524 lines
18 KiB
C
/*
|
|
* Ntdll environment functions
|
|
*
|
|
* Copyright 1996, 1998 Alexandre Julliard
|
|
* Copyright 2003 Eric Pouech
|
|
*
|
|
* 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
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
#include "config.h"
|
|
|
|
#include <assert.h>
|
|
#include <stdarg.h>
|
|
|
|
#include "ntstatus.h"
|
|
#define WIN32_NO_STATUS
|
|
#include "windef.h"
|
|
#include "winternl.h"
|
|
#include "wine/unicode.h"
|
|
#include "wine/debug.h"
|
|
#include "ntdll_misc.h"
|
|
#include "winnt.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(environ);
|
|
|
|
/******************************************************************************
|
|
* NtQuerySystemEnvironmentValue [NTDLL.@]
|
|
*/
|
|
NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValue(PUNICODE_STRING VariableName,
|
|
PWCHAR Value,
|
|
ULONG ValueBufferLength,
|
|
PULONG RequiredLength)
|
|
{
|
|
FIXME("(%s, %p, %u, %p), stub\n", debugstr_us(VariableName), Value, ValueBufferLength, RequiredLength);
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* NtQuerySystemEnvironmentValueEx [NTDLL.@]
|
|
*/
|
|
NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValueEx(PUNICODE_STRING name, LPGUID vendor,
|
|
PVOID value, PULONG retlength, PULONG attrib)
|
|
{
|
|
FIXME("(%s, %s, %p, %p, %p), stub\n", debugstr_us(name), debugstr_guid(vendor), value, retlength, attrib);
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* RtlCreateEnvironment [NTDLL.@]
|
|
*/
|
|
NTSTATUS WINAPI RtlCreateEnvironment(BOOLEAN inherit, PWSTR* env)
|
|
{
|
|
NTSTATUS nts;
|
|
|
|
TRACE("(%u,%p)!\n", inherit, env);
|
|
|
|
if (inherit)
|
|
{
|
|
MEMORY_BASIC_INFORMATION mbi;
|
|
|
|
RtlAcquirePebLock();
|
|
|
|
nts = NtQueryVirtualMemory(NtCurrentProcess(),
|
|
NtCurrentTeb()->Peb->ProcessParameters->Environment,
|
|
0, &mbi, sizeof(mbi), NULL);
|
|
if (nts == STATUS_SUCCESS)
|
|
{
|
|
*env = NULL;
|
|
nts = NtAllocateVirtualMemory(NtCurrentProcess(), (void**)env, 0, &mbi.RegionSize,
|
|
MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
|
|
if (nts == STATUS_SUCCESS)
|
|
memcpy(*env, NtCurrentTeb()->Peb->ProcessParameters->Environment, mbi.RegionSize);
|
|
else *env = NULL;
|
|
}
|
|
RtlReleasePebLock();
|
|
}
|
|
else
|
|
{
|
|
SIZE_T size = 1;
|
|
PVOID addr = NULL;
|
|
nts = NtAllocateVirtualMemory(NtCurrentProcess(), &addr, 0, &size,
|
|
MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
|
|
if (nts == STATUS_SUCCESS) *env = addr;
|
|
}
|
|
|
|
return nts;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* RtlDestroyEnvironment [NTDLL.@]
|
|
*/
|
|
NTSTATUS WINAPI RtlDestroyEnvironment(PWSTR env)
|
|
{
|
|
SIZE_T size = 0;
|
|
|
|
TRACE("(%p)!\n", env);
|
|
|
|
return NtFreeVirtualMemory(NtCurrentProcess(), (void**)&env, &size, MEM_RELEASE);
|
|
}
|
|
|
|
static LPCWSTR ENV_FindVariable(PCWSTR var, PCWSTR name, unsigned namelen)
|
|
{
|
|
for (; *var; var += strlenW(var) + 1)
|
|
{
|
|
/* match var names, but avoid setting a var with a name including a '='
|
|
* (a starting '=' is valid though)
|
|
*/
|
|
if (strncmpiW(var, name, namelen) == 0 && var[namelen] == '=' &&
|
|
strchrW(var + 1, '=') == var + namelen)
|
|
{
|
|
return var + namelen + 1;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
/******************************************************************
|
|
* RtlQueryEnvironmentVariable_U [NTDLL.@]
|
|
*
|
|
* NOTES: when the buffer is too small, the string is not written, but if the
|
|
* terminating null char is the only char that cannot be written, then
|
|
* all chars (except the null) are written and success is returned
|
|
* (behavior of Win2k at least)
|
|
*/
|
|
NTSTATUS WINAPI RtlQueryEnvironmentVariable_U(PWSTR env,
|
|
PUNICODE_STRING name,
|
|
PUNICODE_STRING value)
|
|
{
|
|
NTSTATUS nts = STATUS_VARIABLE_NOT_FOUND;
|
|
PCWSTR var;
|
|
unsigned namelen;
|
|
|
|
TRACE("%p %s %p\n", env, debugstr_us(name), value);
|
|
|
|
value->Length = 0;
|
|
namelen = name->Length / sizeof(WCHAR);
|
|
if (!namelen) return nts;
|
|
|
|
if (!env)
|
|
{
|
|
RtlAcquirePebLock();
|
|
var = NtCurrentTeb()->Peb->ProcessParameters->Environment;
|
|
}
|
|
else var = env;
|
|
|
|
var = ENV_FindVariable(var, name->Buffer, namelen);
|
|
if (var != NULL)
|
|
{
|
|
value->Length = strlenW(var) * sizeof(WCHAR);
|
|
|
|
if (value->Length <= value->MaximumLength)
|
|
{
|
|
memmove(value->Buffer, var, min(value->Length + sizeof(WCHAR), value->MaximumLength));
|
|
nts = STATUS_SUCCESS;
|
|
}
|
|
else nts = STATUS_BUFFER_TOO_SMALL;
|
|
}
|
|
|
|
if (!env) RtlReleasePebLock();
|
|
|
|
return nts;
|
|
}
|
|
|
|
/******************************************************************
|
|
* RtlSetCurrentEnvironment [NTDLL.@]
|
|
*
|
|
*/
|
|
void WINAPI RtlSetCurrentEnvironment(PWSTR new_env, PWSTR* old_env)
|
|
{
|
|
TRACE("(%p %p)\n", new_env, old_env);
|
|
|
|
RtlAcquirePebLock();
|
|
|
|
if (old_env) *old_env = NtCurrentTeb()->Peb->ProcessParameters->Environment;
|
|
NtCurrentTeb()->Peb->ProcessParameters->Environment = new_env;
|
|
|
|
RtlReleasePebLock();
|
|
}
|
|
|
|
|
|
/******************************************************************************
|
|
* RtlSetEnvironmentVariable [NTDLL.@]
|
|
*/
|
|
NTSTATUS WINAPI RtlSetEnvironmentVariable(PWSTR* penv, PUNICODE_STRING name,
|
|
PUNICODE_STRING value)
|
|
{
|
|
INT len, old_size;
|
|
LPWSTR p, env;
|
|
NTSTATUS nts = STATUS_VARIABLE_NOT_FOUND;
|
|
MEMORY_BASIC_INFORMATION mbi;
|
|
|
|
TRACE("(%p, %s, %s)\n", penv, debugstr_us(name), debugstr_us(value));
|
|
|
|
if (!name || !name->Buffer || !name->Length)
|
|
return STATUS_INVALID_PARAMETER_1;
|
|
|
|
len = name->Length / sizeof(WCHAR);
|
|
|
|
/* variable names can't contain a '=' except as a first character */
|
|
for (p = name->Buffer + 1; p < name->Buffer + len; p++)
|
|
if (*p == '=') return STATUS_INVALID_PARAMETER;
|
|
|
|
if (!penv)
|
|
{
|
|
RtlAcquirePebLock();
|
|
env = NtCurrentTeb()->Peb->ProcessParameters->Environment;
|
|
} else env = *penv;
|
|
|
|
/* compute current size of environment */
|
|
for (p = env; *p; p += strlenW(p) + 1);
|
|
old_size = p + 1 - env;
|
|
|
|
/* Find a place to insert the string */
|
|
for (p = env; *p; p += strlenW(p) + 1)
|
|
{
|
|
if (!strncmpiW(name->Buffer, p, len) && (p[len] == '=')) break;
|
|
}
|
|
if (!value && !*p) goto done; /* Value to remove doesn't exist */
|
|
|
|
/* Realloc the buffer */
|
|
len = value ? len + value->Length / sizeof(WCHAR) + 2 : 0;
|
|
if (*p) len -= strlenW(p) + 1; /* The name already exists */
|
|
|
|
if (len < 0)
|
|
{
|
|
LPWSTR next = p + strlenW(p) + 1; /* We know there is a next one */
|
|
memmove(next + len, next, (old_size - (next - env)) * sizeof(WCHAR));
|
|
}
|
|
|
|
nts = NtQueryVirtualMemory(NtCurrentProcess(), env, 0,
|
|
&mbi, sizeof(mbi), NULL);
|
|
if (nts != STATUS_SUCCESS) goto done;
|
|
|
|
if ((old_size + len) * sizeof(WCHAR) > mbi.RegionSize)
|
|
{
|
|
LPWSTR new_env;
|
|
SIZE_T new_size = (old_size + len) * sizeof(WCHAR);
|
|
|
|
new_env = NULL;
|
|
nts = NtAllocateVirtualMemory(NtCurrentProcess(), (void**)&new_env, 0,
|
|
&new_size, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
|
|
if (nts != STATUS_SUCCESS) goto done;
|
|
|
|
memmove(new_env, env, (p - env) * sizeof(WCHAR));
|
|
assert(len > 0);
|
|
memmove(new_env + (p - env) + len, p, (old_size - (p - env)) * sizeof(WCHAR));
|
|
p = new_env + (p - env);
|
|
|
|
RtlDestroyEnvironment(env);
|
|
if (!penv) NtCurrentTeb()->Peb->ProcessParameters->Environment = new_env;
|
|
else *penv = new_env;
|
|
}
|
|
else
|
|
{
|
|
if (len > 0) memmove(p + len, p, (old_size - (p - env)) * sizeof(WCHAR));
|
|
}
|
|
|
|
/* Set the new string */
|
|
if (value)
|
|
{
|
|
memcpy( p, name->Buffer, name->Length );
|
|
p += name->Length / sizeof(WCHAR);
|
|
*p++ = '=';
|
|
memcpy( p, value->Buffer, value->Length );
|
|
p[value->Length / sizeof(WCHAR)] = 0;
|
|
}
|
|
done:
|
|
if (!penv) RtlReleasePebLock();
|
|
|
|
return nts;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* RtlExpandEnvironmentStrings (NTDLL.@)
|
|
*/
|
|
NTSTATUS WINAPI RtlExpandEnvironmentStrings( const WCHAR *renv, WCHAR *src, SIZE_T src_len,
|
|
WCHAR *dst, SIZE_T count, SIZE_T *plen )
|
|
{
|
|
SIZE_T len, total_size = 1; /* 1 for terminating '\0' */
|
|
LPCWSTR env, p, var;
|
|
|
|
if (!renv)
|
|
{
|
|
RtlAcquirePebLock();
|
|
env = NtCurrentTeb()->Peb->ProcessParameters->Environment;
|
|
}
|
|
else env = renv;
|
|
|
|
while (src_len)
|
|
{
|
|
if (*src != '%')
|
|
{
|
|
if ((p = memchrW( src, '%', src_len ))) len = p - src;
|
|
else len = src_len;
|
|
var = src;
|
|
src += len;
|
|
src_len -= len;
|
|
}
|
|
else /* we are at the start of a variable */
|
|
{
|
|
if ((p = memchrW( src + 1, '%', src_len - 1 )))
|
|
{
|
|
len = p - src - 1; /* Length of the variable name */
|
|
if ((var = ENV_FindVariable( env, src + 1, len )))
|
|
{
|
|
src += len + 2; /* Skip the variable name */
|
|
src_len -= len + 2;
|
|
len = strlenW(var);
|
|
}
|
|
else
|
|
{
|
|
var = src; /* Copy original name instead */
|
|
len += 2;
|
|
src += len;
|
|
src_len -= len;
|
|
}
|
|
}
|
|
else /* unfinished variable name, ignore it */
|
|
{
|
|
var = src;
|
|
len = src_len; /* Copy whole string */
|
|
src += len;
|
|
src_len = 0;
|
|
}
|
|
}
|
|
total_size += len;
|
|
if (dst)
|
|
{
|
|
if (count < len) len = count;
|
|
memcpy(dst, var, len * sizeof(WCHAR));
|
|
count -= len;
|
|
dst += len;
|
|
}
|
|
}
|
|
|
|
if (!renv) RtlReleasePebLock();
|
|
|
|
if (dst && count) *dst = '\0';
|
|
if (plen) *plen = total_size;
|
|
|
|
return (count) ? STATUS_SUCCESS : STATUS_BUFFER_TOO_SMALL;
|
|
}
|
|
|
|
/******************************************************************
|
|
* RtlExpandEnvironmentStrings_U (NTDLL.@)
|
|
*/
|
|
NTSTATUS WINAPI RtlExpandEnvironmentStrings_U( const WCHAR *env, const UNICODE_STRING *src,
|
|
UNICODE_STRING *dst, ULONG *plen )
|
|
{
|
|
SIZE_T len;
|
|
NTSTATUS ret;
|
|
|
|
ret = RtlExpandEnvironmentStrings( env, src->Buffer, src->Length / sizeof(WCHAR),
|
|
dst->Buffer, dst->MaximumLength / sizeof(WCHAR), &len );
|
|
if (plen) *plen = len * sizeof(WCHAR); /* FIXME: check for overflow? */
|
|
if (len > UNICODE_STRING_MAX_CHARS) ret = STATUS_BUFFER_TOO_SMALL;
|
|
if (!ret) dst->Length = (len - 1) * sizeof(WCHAR);
|
|
return ret;
|
|
}
|
|
|
|
static inline void normalize( void *base, WCHAR **ptr )
|
|
{
|
|
if (*ptr) *ptr = (WCHAR *)((char *)base + (UINT_PTR)*ptr);
|
|
}
|
|
|
|
/******************************************************************************
|
|
* RtlNormalizeProcessParams [NTDLL.@]
|
|
*/
|
|
PRTL_USER_PROCESS_PARAMETERS WINAPI RtlNormalizeProcessParams( RTL_USER_PROCESS_PARAMETERS *params )
|
|
{
|
|
if (params && !(params->Flags & PROCESS_PARAMS_FLAG_NORMALIZED))
|
|
{
|
|
normalize( params, ¶ms->CurrentDirectory.DosPath.Buffer );
|
|
normalize( params, ¶ms->DllPath.Buffer );
|
|
normalize( params, ¶ms->ImagePathName.Buffer );
|
|
normalize( params, ¶ms->CommandLine.Buffer );
|
|
normalize( params, ¶ms->WindowTitle.Buffer );
|
|
normalize( params, ¶ms->Desktop.Buffer );
|
|
normalize( params, ¶ms->ShellInfo.Buffer );
|
|
normalize( params, ¶ms->RuntimeInfo.Buffer );
|
|
params->Flags |= PROCESS_PARAMS_FLAG_NORMALIZED;
|
|
}
|
|
return params;
|
|
}
|
|
|
|
|
|
static inline void denormalize( const void *base, WCHAR **ptr )
|
|
{
|
|
if (*ptr) *ptr = (WCHAR *)(UINT_PTR)((char *)*ptr - (const char *)base);
|
|
}
|
|
|
|
/******************************************************************************
|
|
* RtlDeNormalizeProcessParams [NTDLL.@]
|
|
*/
|
|
PRTL_USER_PROCESS_PARAMETERS WINAPI RtlDeNormalizeProcessParams( RTL_USER_PROCESS_PARAMETERS *params )
|
|
{
|
|
if (params && (params->Flags & PROCESS_PARAMS_FLAG_NORMALIZED))
|
|
{
|
|
denormalize( params, ¶ms->CurrentDirectory.DosPath.Buffer );
|
|
denormalize( params, ¶ms->DllPath.Buffer );
|
|
denormalize( params, ¶ms->ImagePathName.Buffer );
|
|
denormalize( params, ¶ms->CommandLine.Buffer );
|
|
denormalize( params, ¶ms->WindowTitle.Buffer );
|
|
denormalize( params, ¶ms->Desktop.Buffer );
|
|
denormalize( params, ¶ms->ShellInfo.Buffer );
|
|
denormalize( params, ¶ms->RuntimeInfo.Buffer );
|
|
params->Flags &= ~PROCESS_PARAMS_FLAG_NORMALIZED;
|
|
}
|
|
return params;
|
|
}
|
|
|
|
|
|
/* append a unicode string to the process params data; helper for RtlCreateProcessParameters */
|
|
static void append_unicode_string( void **data, const UNICODE_STRING *src,
|
|
UNICODE_STRING *dst )
|
|
{
|
|
dst->Length = src->Length;
|
|
dst->MaximumLength = src->MaximumLength;
|
|
dst->Buffer = *data;
|
|
memcpy( dst->Buffer, src->Buffer, dst->MaximumLength );
|
|
*data = (char *)dst->Buffer + dst->MaximumLength;
|
|
}
|
|
|
|
|
|
/******************************************************************************
|
|
* RtlCreateProcessParameters [NTDLL.@]
|
|
*/
|
|
NTSTATUS WINAPI RtlCreateProcessParameters( RTL_USER_PROCESS_PARAMETERS **result,
|
|
const UNICODE_STRING *ImagePathName,
|
|
const UNICODE_STRING *DllPath,
|
|
const UNICODE_STRING *CurrentDirectoryName,
|
|
const UNICODE_STRING *CommandLine,
|
|
PWSTR Environment,
|
|
const UNICODE_STRING *WindowTitle,
|
|
const UNICODE_STRING *Desktop,
|
|
const UNICODE_STRING *ShellInfo,
|
|
const UNICODE_STRING *RuntimeInfo )
|
|
{
|
|
static WCHAR empty[] = {0};
|
|
static const UNICODE_STRING empty_str = { 0, sizeof(empty), empty };
|
|
static const UNICODE_STRING null_str = { 0, 0, NULL };
|
|
|
|
const RTL_USER_PROCESS_PARAMETERS *cur_params;
|
|
SIZE_T size, total_size;
|
|
void *ptr;
|
|
NTSTATUS status;
|
|
|
|
RtlAcquirePebLock();
|
|
cur_params = NtCurrentTeb()->Peb->ProcessParameters;
|
|
if (!DllPath) DllPath = &cur_params->DllPath;
|
|
if (!CurrentDirectoryName)
|
|
{
|
|
if (NtCurrentTeb()->Tib.SubSystemTib) /* FIXME: hack */
|
|
CurrentDirectoryName = &((WIN16_SUBSYSTEM_TIB *)NtCurrentTeb()->Tib.SubSystemTib)->curdir.DosPath;
|
|
else
|
|
CurrentDirectoryName = &cur_params->CurrentDirectory.DosPath;
|
|
}
|
|
if (!CommandLine) CommandLine = ImagePathName;
|
|
if (!Environment) Environment = cur_params->Environment;
|
|
if (!WindowTitle) WindowTitle = &empty_str;
|
|
if (!Desktop) Desktop = &empty_str;
|
|
if (!ShellInfo) ShellInfo = &empty_str;
|
|
if (!RuntimeInfo) RuntimeInfo = &null_str;
|
|
|
|
size = (sizeof(RTL_USER_PROCESS_PARAMETERS)
|
|
+ ImagePathName->MaximumLength
|
|
+ DllPath->MaximumLength
|
|
+ CurrentDirectoryName->MaximumLength
|
|
+ CommandLine->MaximumLength
|
|
+ WindowTitle->MaximumLength
|
|
+ Desktop->MaximumLength
|
|
+ ShellInfo->MaximumLength
|
|
+ RuntimeInfo->MaximumLength);
|
|
|
|
total_size = size;
|
|
ptr = NULL;
|
|
if ((status = NtAllocateVirtualMemory( NtCurrentProcess(), &ptr, 0, &total_size,
|
|
MEM_COMMIT, PAGE_READWRITE )) == STATUS_SUCCESS)
|
|
{
|
|
RTL_USER_PROCESS_PARAMETERS *params = ptr;
|
|
params->AllocationSize = total_size;
|
|
params->Size = size;
|
|
params->Flags = PROCESS_PARAMS_FLAG_NORMALIZED;
|
|
params->ConsoleFlags = cur_params->ConsoleFlags;
|
|
params->Environment = Environment;
|
|
/* all other fields are zero */
|
|
|
|
ptr = params + 1;
|
|
append_unicode_string( &ptr, CurrentDirectoryName, ¶ms->CurrentDirectory.DosPath );
|
|
append_unicode_string( &ptr, DllPath, ¶ms->DllPath );
|
|
append_unicode_string( &ptr, ImagePathName, ¶ms->ImagePathName );
|
|
append_unicode_string( &ptr, CommandLine, ¶ms->CommandLine );
|
|
append_unicode_string( &ptr, WindowTitle, ¶ms->WindowTitle );
|
|
append_unicode_string( &ptr, Desktop, ¶ms->Desktop );
|
|
append_unicode_string( &ptr, ShellInfo, ¶ms->ShellInfo );
|
|
append_unicode_string( &ptr, RuntimeInfo, ¶ms->RuntimeInfo );
|
|
*result = RtlDeNormalizeProcessParams( params );
|
|
}
|
|
RtlReleasePebLock();
|
|
return status;
|
|
}
|
|
|
|
|
|
/******************************************************************************
|
|
* RtlDestroyProcessParameters [NTDLL.@]
|
|
*/
|
|
void WINAPI RtlDestroyProcessParameters( RTL_USER_PROCESS_PARAMETERS *params )
|
|
{
|
|
void *ptr = params;
|
|
SIZE_T size = 0;
|
|
NtFreeVirtualMemory( NtCurrentProcess(), &ptr, &size, MEM_RELEASE );
|
|
}
|