1999-03-09 18:47:51 +01:00
|
|
|
/*
|
2000-10-01 03:44:50 +02:00
|
|
|
* Registry functions
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Juergen Schmied
|
|
|
|
* Copyright (C) 2000 Alexandre Julliard
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
* NOTES:
|
|
|
|
* HKEY_LOCAL_MACHINE \\REGISTRY\\MACHINE
|
|
|
|
* HKEY_USERS \\REGISTRY\\USER
|
|
|
|
* HKEY_CURRENT_CONFIG \\REGISTRY\\MACHINE\\SYSTEM\\CURRENTCONTROLSET\\HARDWARE PROFILES\\CURRENT
|
|
|
|
* HKEY_CLASSES \\REGISTRY\\MACHINE\\SOFTWARE\\CLASSES
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2002-09-13 19:45:07 +02:00
|
|
|
#include <stdio.h>
|
2001-01-26 21:43:40 +01:00
|
|
|
#include <string.h>
|
2002-09-13 19:45:07 +02:00
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#include "winerror.h"
|
2000-06-13 03:10:29 +02:00
|
|
|
#include "wine/unicode.h"
|
2002-09-13 19:45:07 +02:00
|
|
|
#include "wine/library.h"
|
2001-07-19 02:39:09 +02:00
|
|
|
#include "wine/server.h"
|
2002-09-13 00:07:02 +02:00
|
|
|
#include "winternl.h"
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#include "ntdll_misc.h"
|
2002-09-13 19:45:07 +02:00
|
|
|
#include "wine/debug.h"
|
1999-02-13 08:35:31 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(reg);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2000-10-01 03:44:50 +02:00
|
|
|
/* maximum length of a key/value name in bytes (without terminating null) */
|
|
|
|
#define MAX_NAME_LENGTH ((MAX_PATH-1) * sizeof(WCHAR))
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
|
|
|
|
1999-02-13 08:35:31 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtCreateKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwCreateKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtCreateKey( PHKEY retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
|
2000-08-26 23:17:42 +02:00
|
|
|
ULONG TitleIndex, const UNICODE_STRING *class, ULONG options,
|
|
|
|
PULONG dispos )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-08-26 23:17:42 +02:00
|
|
|
NTSTATUS ret;
|
|
|
|
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE( "(%p,%s,%s,%lx,%lx,%p)\n", attr->RootDirectory, debugstr_us(attr->ObjectName),
|
2000-08-26 23:17:42 +02:00
|
|
|
debugstr_us(class), options, access, retkey );
|
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
if (attr->ObjectName->Length > MAX_NAME_LENGTH) return STATUS_BUFFER_OVERFLOW;
|
2000-10-01 03:44:50 +02:00
|
|
|
if (!retkey) return STATUS_INVALID_PARAMETER;
|
2000-08-26 23:17:42 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( create_key )
|
2000-08-26 23:17:42 +02:00
|
|
|
{
|
2000-10-01 03:44:50 +02:00
|
|
|
req->parent = attr->RootDirectory;
|
|
|
|
req->access = access;
|
|
|
|
req->options = options;
|
|
|
|
req->modif = 0;
|
2001-11-30 19:46:42 +01:00
|
|
|
req->namelen = attr->ObjectName->Length;
|
|
|
|
wine_server_add_data( req, attr->ObjectName->Buffer, attr->ObjectName->Length );
|
|
|
|
if (class) wine_server_add_data( req, class->Buffer, class->Length );
|
|
|
|
if (!(ret = wine_server_call( req )))
|
2000-10-01 03:44:50 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
*retkey = reply->hkey;
|
|
|
|
if (dispos) *dispos = reply->created ? REG_CREATED_NEW_KEY : REG_OPENED_EXISTING_KEY;
|
2000-10-01 03:44:50 +02:00
|
|
|
}
|
2000-08-26 23:17:42 +02:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_END_REQ;
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE("<- %p\n", *retkey);
|
2000-08-26 23:17:42 +02:00
|
|
|
return ret;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
}
|
|
|
|
|
2000-08-26 23:17:42 +02:00
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
/******************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtOpenKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwOpenKey [NTDLL.@]
|
|
|
|
*
|
2002-10-25 21:14:29 +02:00
|
|
|
* OUT PHKEY retkey (returns 0 when failure)
|
2000-08-26 23:17:42 +02:00
|
|
|
* IN ACCESS_MASK access
|
2002-06-01 01:06:46 +02:00
|
|
|
* IN POBJECT_ATTRIBUTES attr
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtOpenKey( PHKEY retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr )
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
{
|
2000-08-26 23:17:42 +02:00
|
|
|
NTSTATUS ret;
|
2000-10-01 03:44:50 +02:00
|
|
|
DWORD len = attr->ObjectName->Length;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE( "(%p,%s,%lx,%p)\n", attr->RootDirectory,
|
2000-08-26 23:17:42 +02:00
|
|
|
debugstr_us(attr->ObjectName), access, retkey );
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2000-10-01 03:44:50 +02:00
|
|
|
if (len > MAX_NAME_LENGTH) return STATUS_BUFFER_OVERFLOW;
|
2000-08-26 23:17:42 +02:00
|
|
|
if (!retkey) return STATUS_INVALID_PARAMETER;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( open_key )
|
2000-10-01 03:44:50 +02:00
|
|
|
{
|
|
|
|
req->parent = attr->RootDirectory;
|
|
|
|
req->access = access;
|
2001-11-30 19:46:42 +01:00
|
|
|
wine_server_add_data( req, attr->ObjectName->Buffer, len );
|
|
|
|
ret = wine_server_call( req );
|
|
|
|
*retkey = reply->hkey;
|
2000-10-01 03:44:50 +02:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_END_REQ;
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE("<- %p\n", *retkey);
|
2000-08-26 23:17:42 +02:00
|
|
|
return ret;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
|
2000-08-26 23:17:42 +02:00
|
|
|
|
1999-02-13 08:35:31 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtDeleteKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwDeleteKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtDeleteKey( HKEY hkey )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-10-01 03:44:50 +02:00
|
|
|
NTSTATUS ret;
|
2000-08-26 23:17:42 +02:00
|
|
|
|
2002-11-21 04:45:01 +01:00
|
|
|
TRACE( "(%p)\n", hkey );
|
2000-10-01 03:44:50 +02:00
|
|
|
|
2001-02-27 03:09:16 +01:00
|
|
|
SERVER_START_REQ( delete_key )
|
2000-10-01 03:44:50 +02:00
|
|
|
{
|
|
|
|
req->hkey = hkey;
|
2001-11-30 19:46:42 +01:00
|
|
|
ret = wine_server_call( req );
|
2000-10-01 03:44:50 +02:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
|
2000-08-26 23:17:42 +02:00
|
|
|
|
1999-02-13 08:35:31 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtDeleteValueKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwDeleteValueKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtDeleteValueKey( HKEY hkey, const UNICODE_STRING *name )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-08-26 23:17:42 +02:00
|
|
|
NTSTATUS ret;
|
|
|
|
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE( "(%p,%s)\n", hkey, debugstr_us(name) );
|
2000-10-01 03:44:50 +02:00
|
|
|
if (name->Length > MAX_NAME_LENGTH) return STATUS_BUFFER_OVERFLOW;
|
2000-08-26 23:17:42 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( delete_key_value )
|
2000-10-01 03:44:50 +02:00
|
|
|
{
|
|
|
|
req->hkey = hkey;
|
2001-11-30 19:46:42 +01:00
|
|
|
wine_server_add_data( req, name->Buffer, name->Length );
|
|
|
|
ret = wine_server_call( req );
|
2000-10-01 03:44:50 +02:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_END_REQ;
|
2000-08-26 23:17:42 +02:00
|
|
|
return ret;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2000-08-26 23:17:42 +02:00
|
|
|
|
2000-10-02 05:46:58 +02:00
|
|
|
/******************************************************************************
|
2001-11-30 19:46:42 +01:00
|
|
|
* enumerate_key
|
2000-10-02 05:46:58 +02:00
|
|
|
*
|
2001-11-30 19:46:42 +01:00
|
|
|
* Implementation of NtQueryKey and NtEnumerateKey
|
2000-10-02 05:46:58 +02:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
static NTSTATUS enumerate_key( HKEY handle, int index, KEY_INFORMATION_CLASS info_class,
|
2001-11-30 19:46:42 +01:00
|
|
|
void *info, DWORD length, DWORD *result_len )
|
2000-10-02 05:46:58 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
{
|
|
|
|
NTSTATUS ret;
|
|
|
|
void *data_ptr;
|
|
|
|
size_t fixed_size;
|
2000-10-02 05:46:58 +02:00
|
|
|
|
|
|
|
switch(info_class)
|
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
case KeyBasicInformation: data_ptr = ((KEY_BASIC_INFORMATION *)info)->Name; break;
|
|
|
|
case KeyFullInformation: data_ptr = ((KEY_FULL_INFORMATION *)info)->Class; break;
|
|
|
|
case KeyNodeInformation: data_ptr = ((KEY_NODE_INFORMATION *)info)->Name; break;
|
2000-10-02 05:46:58 +02:00
|
|
|
default:
|
2001-11-30 19:46:42 +01:00
|
|
|
FIXME( "Information class %d not implemented\n", info_class );
|
2000-10-02 05:46:58 +02:00
|
|
|
return STATUS_INVALID_PARAMETER;
|
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
fixed_size = (char *)data_ptr - (char *)info;
|
2000-10-02 05:46:58 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( enum_key )
|
2000-10-02 05:46:58 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
req->hkey = handle;
|
|
|
|
req->index = index;
|
|
|
|
req->info_class = info_class;
|
|
|
|
if (length > fixed_size) wine_server_set_reply( req, data_ptr, length - fixed_size );
|
|
|
|
if (!(ret = wine_server_call( req )))
|
|
|
|
{
|
|
|
|
LARGE_INTEGER modif;
|
2000-10-02 05:46:58 +02:00
|
|
|
|
2002-09-13 00:28:01 +02:00
|
|
|
RtlSecondsSince1970ToTime( reply->modif, &modif );
|
2001-11-30 19:46:42 +01:00
|
|
|
|
|
|
|
switch(info_class)
|
|
|
|
{
|
|
|
|
case KeyBasicInformation:
|
|
|
|
{
|
|
|
|
KEY_BASIC_INFORMATION keyinfo;
|
|
|
|
fixed_size = (char *)keyinfo.Name - (char *)&keyinfo;
|
|
|
|
keyinfo.LastWriteTime = modif;
|
|
|
|
keyinfo.TitleIndex = 0;
|
|
|
|
keyinfo.NameLength = reply->namelen;
|
|
|
|
memcpy( info, &keyinfo, min( length, fixed_size ) );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KeyFullInformation:
|
|
|
|
{
|
|
|
|
KEY_FULL_INFORMATION keyinfo;
|
|
|
|
fixed_size = (char *)keyinfo.Class - (char *)&keyinfo;
|
|
|
|
keyinfo.LastWriteTime = modif;
|
|
|
|
keyinfo.TitleIndex = 0;
|
|
|
|
keyinfo.ClassLength = wine_server_reply_size(reply);
|
|
|
|
keyinfo.ClassOffset = keyinfo.ClassLength ? fixed_size : -1;
|
|
|
|
keyinfo.SubKeys = reply->subkeys;
|
|
|
|
keyinfo.MaxNameLen = reply->max_subkey;
|
|
|
|
keyinfo.MaxClassLen = reply->max_class;
|
|
|
|
keyinfo.Values = reply->values;
|
|
|
|
keyinfo.MaxValueNameLen = reply->max_value;
|
|
|
|
keyinfo.MaxValueDataLen = reply->max_data;
|
|
|
|
memcpy( info, &keyinfo, min( length, fixed_size ) );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KeyNodeInformation:
|
|
|
|
{
|
|
|
|
KEY_NODE_INFORMATION keyinfo;
|
|
|
|
fixed_size = (char *)keyinfo.Name - (char *)&keyinfo;
|
|
|
|
keyinfo.LastWriteTime = modif;
|
|
|
|
keyinfo.TitleIndex = 0;
|
|
|
|
keyinfo.ClassLength = max( 0, wine_server_reply_size(reply) - reply->namelen );
|
|
|
|
keyinfo.ClassOffset = keyinfo.ClassLength ? fixed_size + reply->namelen : -1;
|
|
|
|
keyinfo.NameLength = reply->namelen;
|
|
|
|
memcpy( info, &keyinfo, min( length, fixed_size ) );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*result_len = fixed_size + reply->total;
|
|
|
|
if (length < *result_len) ret = STATUS_BUFFER_OVERFLOW;
|
|
|
|
}
|
2000-10-02 05:46:58 +02:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
2000-10-02 05:46:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-02-13 08:35:31 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtEnumerateKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwEnumerateKey [NTDLL.@]
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*
|
|
|
|
* NOTES
|
2002-06-01 01:06:46 +02:00
|
|
|
* the name copied into the buffer is NOT 0-terminated
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtEnumerateKey( HKEY handle, ULONG index, KEY_INFORMATION_CLASS info_class,
|
2000-10-02 05:46:58 +02:00
|
|
|
void *info, DWORD length, DWORD *result_len )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-10-02 05:46:58 +02:00
|
|
|
/* -1 means query key, so avoid it here */
|
|
|
|
if (index == (ULONG)-1) return STATUS_NO_MORE_ENTRIES;
|
2001-11-30 19:46:42 +01:00
|
|
|
return enumerate_key( handle, index, info_class, info, length, result_len );
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
}
|
|
|
|
|
2000-10-02 05:46:58 +02:00
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtQueryKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwQueryKey [NTDLL.@]
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtQueryKey( HKEY handle, KEY_INFORMATION_CLASS info_class,
|
2000-10-02 05:46:58 +02:00
|
|
|
void *info, DWORD length, DWORD *result_len )
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
return enumerate_key( handle, -1, info_class, info, length, result_len );
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-15 21:57:00 +01:00
|
|
|
/* fill the key value info structure for a specific info class */
|
|
|
|
static void copy_key_value_info( KEY_VALUE_INFORMATION_CLASS info_class, void *info,
|
|
|
|
DWORD length, int type, int name_len, int data_len )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-12-15 21:57:00 +01:00
|
|
|
switch(info_class)
|
|
|
|
{
|
|
|
|
case KeyValueBasicInformation:
|
|
|
|
{
|
|
|
|
KEY_VALUE_BASIC_INFORMATION keyinfo;
|
|
|
|
keyinfo.TitleIndex = 0;
|
|
|
|
keyinfo.Type = type;
|
|
|
|
keyinfo.NameLength = name_len;
|
2001-11-24 04:41:37 +01:00
|
|
|
length = min( length, (char *)keyinfo.Name - (char *)&keyinfo );
|
2000-12-15 21:57:00 +01:00
|
|
|
memcpy( info, &keyinfo, length );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KeyValueFullInformation:
|
|
|
|
{
|
|
|
|
KEY_VALUE_FULL_INFORMATION keyinfo;
|
|
|
|
keyinfo.TitleIndex = 0;
|
|
|
|
keyinfo.Type = type;
|
2001-11-24 04:41:37 +01:00
|
|
|
keyinfo.DataOffset = (char *)keyinfo.Name - (char *)&keyinfo + name_len;
|
2000-12-15 21:57:00 +01:00
|
|
|
keyinfo.DataLength = data_len;
|
|
|
|
keyinfo.NameLength = name_len;
|
2001-11-24 04:41:37 +01:00
|
|
|
length = min( length, (char *)keyinfo.Name - (char *)&keyinfo );
|
2000-12-15 21:57:00 +01:00
|
|
|
memcpy( info, &keyinfo, length );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KeyValuePartialInformation:
|
|
|
|
{
|
|
|
|
KEY_VALUE_PARTIAL_INFORMATION keyinfo;
|
|
|
|
keyinfo.TitleIndex = 0;
|
|
|
|
keyinfo.Type = type;
|
|
|
|
keyinfo.DataLength = data_len;
|
2001-11-24 04:41:37 +01:00
|
|
|
length = min( length, (char *)keyinfo.Data - (char *)&keyinfo );
|
2000-12-15 21:57:00 +01:00
|
|
|
memcpy( info, &keyinfo, length );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtEnumerateValueKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwEnumerateValueKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtEnumerateValueKey( HKEY handle, ULONG index,
|
2000-12-15 21:57:00 +01:00
|
|
|
KEY_VALUE_INFORMATION_CLASS info_class,
|
|
|
|
void *info, DWORD length, DWORD *result_len )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-12-15 21:57:00 +01:00
|
|
|
NTSTATUS ret;
|
2001-11-30 19:46:42 +01:00
|
|
|
void *ptr;
|
|
|
|
size_t fixed_size;
|
1999-02-13 08:35:31 +01:00
|
|
|
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE( "(%p,%lu,%d,%p,%ld)\n", handle, index, info_class, info, length );
|
2000-12-15 21:57:00 +01:00
|
|
|
|
|
|
|
/* compute the length we want to retrieve */
|
|
|
|
switch(info_class)
|
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
case KeyValueBasicInformation: ptr = ((KEY_VALUE_BASIC_INFORMATION *)info)->Name; break;
|
|
|
|
case KeyValueFullInformation: ptr = ((KEY_VALUE_FULL_INFORMATION *)info)->Name; break;
|
|
|
|
case KeyValuePartialInformation: ptr = ((KEY_VALUE_PARTIAL_INFORMATION *)info)->Data; break;
|
2000-12-15 21:57:00 +01:00
|
|
|
default:
|
|
|
|
FIXME( "Information class %d not implemented\n", info_class );
|
|
|
|
return STATUS_INVALID_PARAMETER;
|
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
fixed_size = (char *)ptr - (char *)info;
|
2000-12-15 21:57:00 +01:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( enum_key_value )
|
2000-12-15 21:57:00 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
req->hkey = handle;
|
|
|
|
req->index = index;
|
|
|
|
req->info_class = info_class;
|
|
|
|
if (length > fixed_size) wine_server_set_reply( req, ptr, length - fixed_size );
|
|
|
|
if (!(ret = wine_server_call( req )))
|
2000-12-15 21:57:00 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
copy_key_value_info( info_class, info, length, reply->type, reply->namelen,
|
|
|
|
wine_server_reply_size(reply) - reply->namelen );
|
|
|
|
*result_len = fixed_size + reply->total;
|
|
|
|
if (length < *result_len) ret = STATUS_BUFFER_OVERFLOW;
|
2000-12-15 21:57:00 +01:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
2000-12-15 21:57:00 +01:00
|
|
|
return ret;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
|
2000-12-15 21:57:00 +01:00
|
|
|
|
1999-02-13 08:35:31 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtQueryValueKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwQueryValueKey [NTDLL.@]
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* the name in the KeyValueInformation is never set
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtQueryValueKey( HKEY handle, const UNICODE_STRING *name,
|
2000-10-01 03:44:50 +02:00
|
|
|
KEY_VALUE_INFORMATION_CLASS info_class,
|
|
|
|
void *info, DWORD length, DWORD *result_len )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-10-01 03:44:50 +02:00
|
|
|
NTSTATUS ret;
|
2001-11-24 04:41:37 +01:00
|
|
|
UCHAR *data_ptr;
|
2001-11-30 19:46:42 +01:00
|
|
|
int fixed_size = 0;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE( "(%p,%s,%d,%p,%ld)\n", handle, debugstr_us(name), info_class, info, length );
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2000-10-01 03:44:50 +02:00
|
|
|
if (name->Length > MAX_NAME_LENGTH) return STATUS_BUFFER_OVERFLOW;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2000-10-01 03:44:50 +02:00
|
|
|
/* compute the length we want to retrieve */
|
|
|
|
switch(info_class)
|
|
|
|
{
|
|
|
|
case KeyValueBasicInformation:
|
2001-11-24 04:41:37 +01:00
|
|
|
fixed_size = (char *)((KEY_VALUE_BASIC_INFORMATION *)info)->Name - (char *)info;
|
2000-10-01 03:44:50 +02:00
|
|
|
data_ptr = NULL;
|
|
|
|
break;
|
|
|
|
case KeyValueFullInformation:
|
2001-11-24 04:41:37 +01:00
|
|
|
data_ptr = (UCHAR *)((KEY_VALUE_FULL_INFORMATION *)info)->Name;
|
|
|
|
fixed_size = (char *)data_ptr - (char *)info;
|
2000-10-01 03:44:50 +02:00
|
|
|
break;
|
|
|
|
case KeyValuePartialInformation:
|
2001-11-24 04:41:37 +01:00
|
|
|
data_ptr = ((KEY_VALUE_PARTIAL_INFORMATION *)info)->Data;
|
|
|
|
fixed_size = (char *)data_ptr - (char *)info;
|
2000-10-01 03:44:50 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME( "Information class %d not implemented\n", info_class );
|
|
|
|
return STATUS_INVALID_PARAMETER;
|
|
|
|
}
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( get_key_value )
|
2000-10-01 03:44:50 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
req->hkey = handle;
|
|
|
|
wine_server_add_data( req, name->Buffer, name->Length );
|
|
|
|
if (length > fixed_size) wine_server_set_reply( req, data_ptr, length - fixed_size );
|
|
|
|
if (!(ret = wine_server_call( req )))
|
2000-10-01 03:44:50 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
copy_key_value_info( info_class, info, length, reply->type,
|
|
|
|
0, wine_server_reply_size(reply) );
|
|
|
|
*result_len = fixed_size + reply->total;
|
|
|
|
if (length < *result_len) ret = STATUS_BUFFER_OVERFLOW;
|
2000-10-01 03:44:50 +02:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
2000-10-01 03:44:50 +02:00
|
|
|
return ret;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
|
2000-12-15 21:57:00 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtFlushKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwFlushKey [NTDLL.@]
|
2000-12-15 21:57:00 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtFlushKey(HKEY KeyHandle)
|
2000-12-15 21:57:00 +01:00
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p) stub!\n",
|
2000-12-15 21:57:00 +01:00
|
|
|
KeyHandle);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtLoadKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwLoadKey [NTDLL.@]
|
2000-12-15 21:57:00 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtLoadKey( const OBJECT_ATTRIBUTES *attr, const OBJECT_ATTRIBUTES *file )
|
|
|
|
{
|
|
|
|
FIXME("stub!\n");
|
|
|
|
dump_ObjectAttributes(attr);
|
|
|
|
dump_ObjectAttributes(file);
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtNotifyChangeKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwNotifyChangeKey [NTDLL.@]
|
2000-12-15 21:57:00 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtNotifyChangeKey(
|
2002-10-25 21:14:29 +02:00
|
|
|
IN HKEY KeyHandle,
|
2000-12-15 21:57:00 +01:00
|
|
|
IN HANDLE Event,
|
|
|
|
IN PIO_APC_ROUTINE ApcRoutine OPTIONAL,
|
|
|
|
IN PVOID ApcContext OPTIONAL,
|
|
|
|
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
IN ULONG CompletionFilter,
|
|
|
|
IN BOOLEAN Asynchroneous,
|
|
|
|
OUT PVOID ChangeBuffer,
|
|
|
|
IN ULONG Length,
|
|
|
|
IN BOOLEAN WatchSubtree)
|
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p,%p,%p,%p,%p,0x%08lx, 0x%08x,%p,0x%08lx,0x%08x) stub!\n",
|
2000-12-15 21:57:00 +01:00
|
|
|
KeyHandle, Event, ApcRoutine, ApcContext, IoStatusBlock, CompletionFilter,
|
|
|
|
Asynchroneous, ChangeBuffer, Length, WatchSubtree);
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* NtQueryMultipleValueKey [NTDLL]
|
|
|
|
* ZwQueryMultipleValueKey
|
|
|
|
*/
|
|
|
|
|
|
|
|
NTSTATUS WINAPI NtQueryMultipleValueKey(
|
2002-10-25 21:14:29 +02:00
|
|
|
HKEY KeyHandle,
|
2000-12-15 21:57:00 +01:00
|
|
|
PVALENTW ListOfValuesToQuery,
|
|
|
|
ULONG NumberOfItems,
|
|
|
|
PVOID MultipleValueInformation,
|
|
|
|
ULONG Length,
|
|
|
|
PULONG ReturnLength)
|
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p,%p,0x%08lx,%p,0x%08lx,%p) stub!\n",
|
2000-12-15 21:57:00 +01:00
|
|
|
KeyHandle, ListOfValuesToQuery, NumberOfItems, MultipleValueInformation,
|
|
|
|
Length,ReturnLength);
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
1999-02-13 08:35:31 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtReplaceKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwReplaceKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtReplaceKey(
|
|
|
|
IN POBJECT_ATTRIBUTES ObjectAttributes,
|
2002-10-25 21:14:29 +02:00
|
|
|
IN HKEY Key,
|
1999-02-13 08:35:31 +01:00
|
|
|
IN POBJECT_ATTRIBUTES ReplacedObjectAttributes)
|
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p),stub!\n", Key);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
dump_ObjectAttributes(ObjectAttributes);
|
|
|
|
dump_ObjectAttributes(ReplacedObjectAttributes);
|
|
|
|
return STATUS_SUCCESS;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtRestoreKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwRestoreKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtRestoreKey(
|
2002-10-25 21:14:29 +02:00
|
|
|
HKEY KeyHandle,
|
1999-02-26 12:11:13 +01:00
|
|
|
HANDLE FileHandle,
|
1999-02-13 08:35:31 +01:00
|
|
|
ULONG RestoreFlags)
|
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p,%p,0x%08lx) stub\n",
|
1999-02-13 08:35:31 +01:00
|
|
|
KeyHandle, FileHandle, RestoreFlags);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
return STATUS_SUCCESS;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtSaveKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwSaveKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtSaveKey(
|
2002-10-25 21:14:29 +02:00
|
|
|
IN HKEY KeyHandle,
|
1999-02-26 12:11:13 +01:00
|
|
|
IN HANDLE FileHandle)
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p,%p) stub\n",
|
1999-02-13 08:35:31 +01:00
|
|
|
KeyHandle, FileHandle);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
return STATUS_SUCCESS;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtSetInformationKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwSetInformationKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtSetInformationKey(
|
2002-10-25 21:14:29 +02:00
|
|
|
IN HKEY KeyHandle,
|
1999-02-13 08:35:31 +01:00
|
|
|
IN const int KeyInformationClass,
|
|
|
|
IN PVOID KeyInformation,
|
|
|
|
IN ULONG KeyInformationLength)
|
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p,0x%08x,%p,0x%08lx) stub\n",
|
1999-02-13 08:35:31 +01:00
|
|
|
KeyHandle, KeyInformationClass, KeyInformation, KeyInformationLength);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
return STATUS_SUCCESS;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
2000-10-01 03:44:50 +02:00
|
|
|
|
|
|
|
|
1999-02-13 08:35:31 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtSetValueKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwSetValueKey [NTDLL.@]
|
2000-10-01 03:44:50 +02:00
|
|
|
*
|
|
|
|
* NOTES
|
2002-06-01 01:06:46 +02:00
|
|
|
* win95 does not care about count for REG_SZ and finds out the len by itself (js)
|
2000-10-01 03:44:50 +02:00
|
|
|
* NT does definitely care (aj)
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
2002-10-25 21:14:29 +02:00
|
|
|
NTSTATUS WINAPI NtSetValueKey( HKEY hkey, const UNICODE_STRING *name, ULONG TitleIndex,
|
2000-10-01 03:44:50 +02:00
|
|
|
ULONG type, const void *data, ULONG count )
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2000-10-01 03:44:50 +02:00
|
|
|
NTSTATUS ret;
|
|
|
|
|
2002-12-05 20:56:15 +01:00
|
|
|
TRACE( "(%p,%s,%ld,%p,%ld)\n", hkey, debugstr_us(name), type, data, count );
|
2000-10-01 03:44:50 +02:00
|
|
|
|
|
|
|
if (name->Length > MAX_NAME_LENGTH) return STATUS_BUFFER_OVERFLOW;
|
1999-02-13 08:35:31 +01:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( set_key_value )
|
2000-10-01 03:44:50 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
req->hkey = hkey;
|
|
|
|
req->type = type;
|
|
|
|
req->namelen = name->Length;
|
|
|
|
wine_server_add_data( req, name->Buffer, name->Length );
|
|
|
|
wine_server_add_data( req, data, count );
|
|
|
|
ret = wine_server_call( req );
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
2000-10-01 03:44:50 +02:00
|
|
|
return ret;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtUnloadKey [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwUnloadKey [NTDLL.@]
|
1999-02-13 08:35:31 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtUnloadKey(
|
2002-10-25 21:14:29 +02:00
|
|
|
IN HKEY KeyHandle)
|
1999-02-13 08:35:31 +01:00
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p) stub\n",
|
1999-02-13 08:35:31 +01:00
|
|
|
KeyHandle);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* RtlFormatCurrentUserKeyPath [NTDLL.@]
|
2002-09-13 19:45:07 +02:00
|
|
|
*
|
|
|
|
* NOTE: under NT the user name part of the path is an SID.
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*/
|
2002-09-13 19:45:07 +02:00
|
|
|
NTSTATUS WINAPI RtlFormatCurrentUserKeyPath( IN OUT PUNICODE_STRING KeyPath)
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
{
|
2002-09-13 19:45:07 +02:00
|
|
|
const char *user = wine_get_user_name();
|
|
|
|
char *buffer;
|
|
|
|
ANSI_STRING AnsiPath;
|
|
|
|
NTSTATUS ret;
|
|
|
|
|
|
|
|
if (!(buffer = RtlAllocateHeap( GetProcessHeap(), 0, strlen(user)+16 )))
|
|
|
|
return STATUS_NO_MEMORY;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2002-09-13 19:45:07 +02:00
|
|
|
strcpy( buffer, "\\Registry\\User\\" );
|
|
|
|
strcat( buffer, user );
|
|
|
|
RtlInitAnsiString( &AnsiPath, buffer );
|
|
|
|
ret = RtlAnsiStringToUnicodeString(KeyPath, &AnsiPath, TRUE);
|
|
|
|
RtlFreeAnsiString( &AnsiPath );
|
|
|
|
return ret;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* RtlOpenCurrentUser [NTDLL.@]
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*
|
2001-11-06 22:01:32 +01:00
|
|
|
* if we return just HKEY_CURRENT_USER the advapi tries to find a remote
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
* registry (odd handle) and fails
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlOpenCurrentUser(
|
2000-12-02 00:58:28 +01:00
|
|
|
IN ACCESS_MASK DesiredAccess, /* [in] */
|
2002-10-25 21:14:29 +02:00
|
|
|
OUT PHKEY KeyHandle) /* [out] handle of HKEY_CURRENT_USER */
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
{
|
|
|
|
OBJECT_ATTRIBUTES ObjectAttributes;
|
|
|
|
UNICODE_STRING ObjectName;
|
|
|
|
NTSTATUS ret;
|
|
|
|
|
|
|
|
TRACE("(0x%08lx, %p) stub\n",DesiredAccess, KeyHandle);
|
|
|
|
|
|
|
|
RtlFormatCurrentUserKeyPath(&ObjectName);
|
|
|
|
InitializeObjectAttributes(&ObjectAttributes,&ObjectName,OBJ_CASE_INSENSITIVE,0, NULL);
|
2002-09-13 23:42:28 +02:00
|
|
|
ret = NtCreateKey(KeyHandle, DesiredAccess, &ObjectAttributes, 0, NULL, 0, NULL);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
RtlFreeUnicodeString(&ObjectName);
|
|
|
|
return ret;
|
1999-02-13 08:35:31 +01:00
|
|
|
}
|