ZwOpenProcessTokenEx function (ntifs.h)

The ZwOpenProcessTokenEx routine opens the access token associated with a process.

Syntax

NTSYSAPI NTSTATUS ZwOpenProcessTokenEx(
  [in]  HANDLE      ProcessHandle,
  [in]  ACCESS_MASK DesiredAccess,
  [in]  ULONG       HandleAttributes,
  [out] PHANDLE     TokenHandle
);

Parameters

[in] ProcessHandle

Handle to the process whose access token is to be opened. The handle must have PROCESS_QUERY_INFORMATION access. Use the NtCurrentProcess macro, defined in Ntddk.h, to specify the current process.

[in] DesiredAccess

ACCESS_MASK structure specifying the requested types of access to the access token. These requested access types are compared with the token's discretionary access-control list (DACL) to determine which accesses are granted or denied.

[in] HandleAttributes

Attributes for the access token handle. Only OBJ_KERNEL_HANDLE is currently supported. If the caller is not running in the system process context, it must specify OBJ_KERNEL_HANDLE for this parameter.

[out] TokenHandle

Pointer to a caller-allocated variable that receives a handle to the newly opened access token.

Return value

ZwOpenProcessTokenEx returns STATUS_SUCCESS or an appropriate error status. Possible error status codes include the following:

Return code Description
STATUS_ACCESS_DENIED ProcessHandle did not have PROCESS_QUERY_INFORMATION access.
STATUS_INSUFFICIENT_RESOURCES A new token handle could not be allocated.
STATUS_INVALID_HANDLE ProcessHandle was not a valid handle.
STATUS_INVALID_PARAMETER The specified HandleAttributes did not include OBJ_KERNEL_HANDLE.
STATUS_OBJECT_TYPE_MISMATCH ProcessHandle was not a process handle.
STATUS_PRIVILEGE_NOT_HELD The caller does not have the privilege (SeSecurityPrivilege) necessary to create a token handle with the access specified in the DesiredAccess parameter.
STATUS_QUOTA_EXCEEDED The process's memory quota is not sufficient to allocate the token handle.
STATUS_UNSUCCESSFUL The token handle could not be created.

Remarks

ZwOpenProcessTokenEx opens the access token associated with a process and returns a handle for that token.

Any handle obtained by calling ZwOpenProcessTokenEx must eventually be released by calling ZwClose.

Driver routines that run in a process context other than that of the system process must set the OBJ_KERNEL_HANDLE attribute for the HandleAttributes parameter of ZwOpenProcessTokenEx. This restricts the use of the handle returned by ZwOpenProcessTokenEx to processes running in kernel mode. Otherwise, the handle can be accessed by the process in whose context the driver is running.

For more information about security and access control, see Windows security model for driver developers and the documentation on these topics in the Windows SDK.

Note

If the call to the ZwOpenProcessTokenEx function occurs in user mode, you should use the name "NtOpenProcessTokenEx" instead of "ZwOpenProcessTokenEx".

For calls from kernel-mode drivers, the NtXxx and ZwXxx versions of a Windows Native System Services routine can behave differently in the way that they handle and interpret input parameters. For more information about the relationship between the NtXxx and ZwXxx versions of a routine, see Using Nt and Zw Versions of the Native System Services Routines.

Requirements

Requirement Value
Minimum supported client Windows XP
Target Platform Universal
Header ntifs.h (include Ntifs.h)
Library NtosKrnl.lib
DLL NtosKrnl.exe
IRQL PASSIVE_LEVEL
DDI compliance rules HwStorPortProhibitedDDIs(storport), PowerIrpDDis(wdm)

See also

ACCESS_MASK

ACL

PsDereferencePrimaryToken

Using Nt and Zw Versions of the Native System Services Routines

ZwClose

ZwOpenThreadTokenEx