1999-03-09 18:47:51 +01:00
|
|
|
/*
|
|
|
|
* Object management functions
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* Copyright 1999, 2000 Juergen Schmied
|
|
|
|
*
|
|
|
|
* 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
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2000-12-22 03:04:15 +01:00
|
|
|
#include <unistd.h>
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-03-09 18:47:51 +01:00
|
|
|
|
|
|
|
#include "ntddk.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"
|
2001-07-19 02:39:09 +02:00
|
|
|
#include "wine/server.h"
|
1999-03-09 18:47:51 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1999-03-09 18:47:51 +01:00
|
|
|
/* move to somewhere */
|
|
|
|
typedef void * POBJDIR_INFORMATION;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic object functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtQueryObject [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwQueryObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtQueryObject(
|
|
|
|
IN HANDLE ObjectHandle,
|
|
|
|
IN OBJECT_INFORMATION_CLASS ObjectInformationClass,
|
|
|
|
OUT PVOID ObjectInformation,
|
|
|
|
IN ULONG Length,
|
|
|
|
OUT PULONG ResultLength)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08x,0x%08x,%p,0x%08lx,%p): stub\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
ObjectHandle, ObjectInformationClass, ObjectInformation, Length, ResultLength);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtQuerySecurityObject [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
|
|
|
*
|
|
|
|
* analogue to GetKernelObjectSecurity
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* only the lowest 4 bit of SecurityObjectInformationClass are used
|
2001-10-22 21:04:32 +02:00
|
|
|
* 0x7-0xf returns STATUS_ACCESS_DENIED (even running with system privileges)
|
- 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
|
|
|
*
|
|
|
|
* FIXME: we are constructing a fake sid
|
|
|
|
* (Administrators:Full, System:Full, Everyone:Read)
|
1999-03-09 18:47:51 +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
|
|
|
NTSTATUS WINAPI
|
|
|
|
NtQuerySecurityObject(
|
|
|
|
IN HANDLE Object,
|
|
|
|
IN SECURITY_INFORMATION RequestedInformation,
|
|
|
|
OUT PSECURITY_DESCRIPTOR pSecurityDesriptor,
|
|
|
|
IN ULONG Length,
|
|
|
|
OUT PULONG ResultLength)
|
1999-03-09 18:47:51 +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
|
|
|
static SID_IDENTIFIER_AUTHORITY localSidAuthority = {SECURITY_NT_AUTHORITY};
|
|
|
|
static SID_IDENTIFIER_AUTHORITY worldSidAuthority = {SECURITY_WORLD_SID_AUTHORITY};
|
|
|
|
BYTE Buffer[256];
|
|
|
|
PISECURITY_DESCRIPTOR_RELATIVE psd = (PISECURITY_DESCRIPTOR_RELATIVE)Buffer;
|
|
|
|
UINT BufferIndex = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
|
|
|
|
|
|
|
|
FIXME("(0x%08x,0x%08lx,%p,0x%08lx,%p) stub!\n",
|
|
|
|
Object, RequestedInformation, pSecurityDesriptor, Length, ResultLength);
|
|
|
|
|
|
|
|
RequestedInformation &= 0x0000000f;
|
|
|
|
|
|
|
|
if (RequestedInformation & SACL_SECURITY_INFORMATION) return STATUS_ACCESS_DENIED;
|
|
|
|
|
|
|
|
ZeroMemory(Buffer, 256);
|
|
|
|
RtlCreateSecurityDescriptor((PSECURITY_DESCRIPTOR)psd, SECURITY_DESCRIPTOR_REVISION);
|
|
|
|
psd->Control = SE_SELF_RELATIVE |
|
|
|
|
((RequestedInformation & DACL_SECURITY_INFORMATION) ? SE_DACL_PRESENT:0);
|
|
|
|
|
|
|
|
/* owner: administrator S-1-5-20-220*/
|
|
|
|
if (OWNER_SECURITY_INFORMATION & RequestedInformation)
|
|
|
|
{
|
|
|
|
PSID psid = (PSID)&(Buffer[BufferIndex]);
|
|
|
|
|
|
|
|
psd->Owner = BufferIndex;
|
|
|
|
BufferIndex += RtlLengthRequiredSid(2);
|
|
|
|
|
|
|
|
psid->Revision = SID_REVISION;
|
|
|
|
psid->SubAuthorityCount = 2;
|
|
|
|
psid->IdentifierAuthority = localSidAuthority;
|
|
|
|
psid->SubAuthority[0] = SECURITY_BUILTIN_DOMAIN_RID;
|
|
|
|
psid->SubAuthority[1] = DOMAIN_ALIAS_RID_ADMINS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* group: built in domain S-1-5-12 */
|
|
|
|
if (GROUP_SECURITY_INFORMATION & RequestedInformation)
|
|
|
|
{
|
|
|
|
PSID psid = (PSID) &(Buffer[BufferIndex]);
|
|
|
|
|
|
|
|
psd->Group = BufferIndex;
|
|
|
|
BufferIndex += RtlLengthRequiredSid(1);
|
|
|
|
|
|
|
|
psid->Revision = SID_REVISION;
|
|
|
|
psid->SubAuthorityCount = 1;
|
|
|
|
psid->IdentifierAuthority = localSidAuthority;
|
|
|
|
psid->SubAuthority[0] = SECURITY_LOCAL_SYSTEM_RID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* discretionary ACL */
|
|
|
|
if (DACL_SECURITY_INFORMATION & RequestedInformation)
|
|
|
|
{
|
|
|
|
/* acl header */
|
|
|
|
PACL pacl = (PACL)&(Buffer[BufferIndex]);
|
|
|
|
PACCESS_ALLOWED_ACE pace;
|
|
|
|
PSID psid;
|
|
|
|
|
|
|
|
psd->Dacl = BufferIndex;
|
|
|
|
|
|
|
|
pacl->AclRevision = MIN_ACL_REVISION;
|
|
|
|
pacl->AceCount = 3;
|
|
|
|
pacl->AclSize = BufferIndex; /* storing the start index temporary */
|
|
|
|
|
|
|
|
BufferIndex += sizeof(ACL);
|
|
|
|
|
|
|
|
/* ACE System - full access */
|
|
|
|
pace = (PACCESS_ALLOWED_ACE)&(Buffer[BufferIndex]);
|
|
|
|
BufferIndex += sizeof(ACCESS_ALLOWED_ACE)-sizeof(DWORD);
|
|
|
|
|
|
|
|
pace->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
|
|
|
|
pace->Header.AceFlags = CONTAINER_INHERIT_ACE;
|
|
|
|
pace->Header.AceSize = sizeof(ACCESS_ALLOWED_ACE)-sizeof(DWORD) + RtlLengthRequiredSid(1);
|
|
|
|
pace->Mask = DELETE | READ_CONTROL | WRITE_DAC | WRITE_OWNER | 0x3f;
|
|
|
|
pace->SidStart = BufferIndex;
|
|
|
|
|
|
|
|
/* SID S-1-5-12 (System) */
|
|
|
|
psid = (PSID)&(Buffer[BufferIndex]);
|
|
|
|
|
|
|
|
BufferIndex += RtlLengthRequiredSid(1);
|
|
|
|
|
|
|
|
psid->Revision = SID_REVISION;
|
|
|
|
psid->SubAuthorityCount = 1;
|
|
|
|
psid->IdentifierAuthority = localSidAuthority;
|
|
|
|
psid->SubAuthority[0] = SECURITY_LOCAL_SYSTEM_RID;
|
|
|
|
|
|
|
|
/* ACE Administrators - full access*/
|
|
|
|
pace = (PACCESS_ALLOWED_ACE) &(Buffer[BufferIndex]);
|
|
|
|
BufferIndex += sizeof(ACCESS_ALLOWED_ACE)-sizeof(DWORD);
|
|
|
|
|
|
|
|
pace->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
|
|
|
|
pace->Header.AceFlags = CONTAINER_INHERIT_ACE;
|
|
|
|
pace->Header.AceSize = sizeof(ACCESS_ALLOWED_ACE)-sizeof(DWORD) + RtlLengthRequiredSid(2);
|
|
|
|
pace->Mask = DELETE | READ_CONTROL | WRITE_DAC | WRITE_OWNER | 0x3f;
|
|
|
|
pace->SidStart = BufferIndex;
|
|
|
|
|
|
|
|
/* S-1-5-12 (Administrators) */
|
|
|
|
psid = (PSID)&(Buffer[BufferIndex]);
|
|
|
|
|
|
|
|
BufferIndex += RtlLengthRequiredSid(2);
|
|
|
|
|
|
|
|
psid->Revision = SID_REVISION;
|
|
|
|
psid->SubAuthorityCount = 2;
|
|
|
|
psid->IdentifierAuthority = localSidAuthority;
|
|
|
|
psid->SubAuthority[0] = SECURITY_BUILTIN_DOMAIN_RID;
|
|
|
|
psid->SubAuthority[1] = DOMAIN_ALIAS_RID_ADMINS;
|
|
|
|
|
|
|
|
/* ACE Everyone - read access */
|
|
|
|
pace = (PACCESS_ALLOWED_ACE)&(Buffer[BufferIndex]);
|
|
|
|
BufferIndex += sizeof(ACCESS_ALLOWED_ACE)-sizeof(DWORD);
|
|
|
|
|
|
|
|
pace->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
|
|
|
|
pace->Header.AceFlags = CONTAINER_INHERIT_ACE;
|
|
|
|
pace->Header.AceSize = sizeof(ACCESS_ALLOWED_ACE)-sizeof(DWORD) + RtlLengthRequiredSid(1);
|
|
|
|
pace->Mask = READ_CONTROL| 0x19;
|
|
|
|
pace->SidStart = BufferIndex;
|
|
|
|
|
|
|
|
/* SID S-1-1-0 (Everyone) */
|
|
|
|
psid = (PSID)&(Buffer[BufferIndex]);
|
|
|
|
|
|
|
|
BufferIndex += RtlLengthRequiredSid(1);
|
|
|
|
|
|
|
|
psid->Revision = SID_REVISION;
|
|
|
|
psid->SubAuthorityCount = 1;
|
|
|
|
psid->IdentifierAuthority = worldSidAuthority;
|
|
|
|
psid->SubAuthority[0] = 0;
|
|
|
|
|
|
|
|
/* calculate used bytes */
|
|
|
|
pacl->AclSize = BufferIndex - pacl->AclSize;
|
|
|
|
}
|
|
|
|
*ResultLength = BufferIndex;
|
|
|
|
TRACE("len=%lu\n", *ResultLength);
|
|
|
|
if (Length < *ResultLength) return STATUS_BUFFER_TOO_SMALL;
|
|
|
|
memcpy(pSecurityDesriptor, Buffer, *ResultLength);
|
|
|
|
|
|
|
|
return STATUS_SUCCESS;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtDuplicateObject [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwDuplicateObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtDuplicateObject(
|
|
|
|
IN HANDLE SourceProcessHandle,
|
|
|
|
IN PHANDLE SourceHandle,
|
|
|
|
IN HANDLE TargetProcessHandle,
|
|
|
|
OUT PHANDLE TargetHandle,
|
|
|
|
IN ACCESS_MASK DesiredAccess,
|
|
|
|
IN BOOLEAN InheritHandle,
|
|
|
|
ULONG Options)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08x,%p,0x%08x,%p,0x%08lx,0x%08x,0x%08lx) stub!\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
SourceProcessHandle,SourceHandle,TargetProcessHandle,TargetHandle,
|
|
|
|
DesiredAccess,InheritHandle,Options);
|
|
|
|
*TargetHandle = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtClose [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
* FUNCTION: Closes a handle reference to an object
|
|
|
|
* ARGUMENTS:
|
|
|
|
* Handle handle to close
|
|
|
|
*/
|
2000-07-29 23:56:59 +02:00
|
|
|
NTSTATUS WINAPI NtClose( HANDLE Handle )
|
1999-03-09 18:47:51 +01:00
|
|
|
{
|
2000-08-30 02:00:48 +02:00
|
|
|
NTSTATUS ret;
|
2001-02-27 03:09:16 +01:00
|
|
|
SERVER_START_REQ( close_handle )
|
2000-08-30 02:00:48 +02:00
|
|
|
{
|
|
|
|
req->handle = Handle;
|
2001-11-30 19:46:42 +01:00
|
|
|
ret = wine_server_call( req );
|
|
|
|
if (!ret && reply->fd != -1) close( reply->fd );
|
2000-08-30 02:00:48 +02:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtWaitForSingleObject [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwWaitForSingleObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtWaitForSingleObject(
|
|
|
|
IN PHANDLE Object,
|
|
|
|
IN BOOLEAN Alertable,
|
|
|
|
IN PLARGE_INTEGER Time)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(%p,0x%08x,%p),stub!\n",Object,Alertable,Time);
|
1999-03-09 18:47:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Directory functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtOpenDirectoryObject [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwOpenDirectoryObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
* FUNCTION: Opens a namespace directory object
|
|
|
|
* ARGUMENTS:
|
|
|
|
* DirectoryHandle Variable which receives the directory handle
|
|
|
|
* DesiredAccess Desired access to the directory
|
|
|
|
* ObjectAttributes Structure describing the directory
|
|
|
|
* RETURNS: Status
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtOpenDirectoryObject(
|
|
|
|
PHANDLE DirectoryHandle,
|
|
|
|
ACCESS_MASK DesiredAccess,
|
|
|
|
POBJECT_ATTRIBUTES ObjectAttributes)
|
|
|
|
{
|
- 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
|
|
|
FIXME("(%p,0x%08lx,%p): stub\n",
|
|
|
|
DirectoryHandle, DesiredAccess, ObjectAttributes);
|
|
|
|
dump_ObjectAttributes(ObjectAttributes);
|
|
|
|
return 0;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtCreateDirectoryObject [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwCreateDirectoryObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtCreateDirectoryObject(
|
|
|
|
PHANDLE DirectoryHandle,
|
|
|
|
ACCESS_MASK DesiredAccess,
|
|
|
|
POBJECT_ATTRIBUTES ObjectAttributes)
|
|
|
|
{
|
- 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
|
|
|
FIXME("(%p,0x%08lx,%p),stub!\n",
|
|
|
|
DirectoryHandle,DesiredAccess,ObjectAttributes);
|
|
|
|
dump_ObjectAttributes(ObjectAttributes);
|
1999-03-09 18:47:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtQueryDirectoryObject [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwQueryDirectoryObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
* FUNCTION: Reads information from a namespace directory
|
|
|
|
* ARGUMENTS:
|
|
|
|
* DirObjInformation Buffer to hold the data read
|
|
|
|
* BufferLength Size of the buffer in bytes
|
|
|
|
* GetNextIndex If TRUE then set ObjectIndex to the index of the next object
|
|
|
|
* If FALSE then set ObjectIndex to the number of objects in the directory
|
|
|
|
* IgnoreInputIndex If TRUE start reading at index 0
|
|
|
|
* If FALSE start reading at the index specified by object index
|
|
|
|
* ObjectIndex Zero based index into the directory, interpretation depends on IgnoreInputIndex and GetNextIndex
|
|
|
|
* DataWritten Caller supplied storage for the number of bytes written (or NULL)
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtQueryDirectoryObject(
|
|
|
|
IN HANDLE DirObjHandle,
|
|
|
|
OUT POBJDIR_INFORMATION DirObjInformation,
|
|
|
|
IN ULONG BufferLength,
|
|
|
|
IN BOOLEAN GetNextIndex,
|
|
|
|
IN BOOLEAN IgnoreInputIndex,
|
|
|
|
IN OUT PULONG ObjectIndex,
|
|
|
|
OUT PULONG DataWritten OPTIONAL)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08x,%p,0x%08lx,0x%08x,0x%08x,%p,%p) stub\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
DirObjHandle, DirObjInformation, BufferLength, GetNextIndex,
|
|
|
|
IgnoreInputIndex, ObjectIndex, DataWritten);
|
|
|
|
return 0xc0000000; /* We don't have any. Whatever. (Yet.) */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Link objects
|
|
|
|
*/
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtOpenSymbolicLinkObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtOpenSymbolicLinkObject(
|
|
|
|
OUT PHANDLE LinkHandle,
|
|
|
|
IN ACCESS_MASK DesiredAccess,
|
|
|
|
IN POBJECT_ATTRIBUTES ObjectAttributes)
|
|
|
|
{
|
- 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
|
|
|
FIXME("(%p,0x%08lx,%p) stub\n",
|
|
|
|
LinkHandle, DesiredAccess, ObjectAttributes);
|
|
|
|
dump_ObjectAttributes(ObjectAttributes);
|
1999-03-09 18:47:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtCreateSymbolicLinkObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtCreateSymbolicLinkObject(
|
|
|
|
OUT PHANDLE SymbolicLinkHandle,
|
|
|
|
IN ACCESS_MASK DesiredAccess,
|
|
|
|
IN POBJECT_ATTRIBUTES ObjectAttributes,
|
|
|
|
IN PUNICODE_STRING Name)
|
|
|
|
{
|
- 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
|
|
|
FIXME("(%p,0x%08lx,%p, %p) stub\n",
|
|
|
|
SymbolicLinkHandle, DesiredAccess, ObjectAttributes, debugstr_us(Name));
|
|
|
|
dump_ObjectAttributes(ObjectAttributes);
|
1999-03-09 18:47:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtQuerySymbolicLinkObject [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtQuerySymbolicLinkObject(
|
|
|
|
IN HANDLE LinkHandle,
|
|
|
|
IN OUT PUNICODE_STRING LinkTarget,
|
|
|
|
OUT PULONG ReturnedLength OPTIONAL)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08x,%p,%p) stub\n",
|
- 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
|
|
|
LinkHandle, debugstr_us(LinkTarget), ReturnedLength);
|
1999-03-09 18:47:51 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-04-13 17:56:40 +02:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtAllocateUuids [NTDLL.@]
|
2000-04-13 17:56:40 +02:00
|
|
|
*
|
|
|
|
* I have seen lpdwCount pointing to a pointer once...
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtAllocateUuids(LPDWORD lpdwCount, LPDWORD *p2, LPDWORD *p3)
|
|
|
|
{
|
2000-04-15 22:44:21 +02:00
|
|
|
FIXME("(%p[%ld],%p,%p), stub.\n", lpdwCount,
|
2000-04-13 17:56:40 +02:00
|
|
|
lpdwCount ? *lpdwCount : 0,
|
|
|
|
p2, p3);
|
|
|
|
return 0;
|
|
|
|
}
|