2020-07-29 10:10:42 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-17 15:11:34 +02:00
|
|
|
#include "wintun.h"
|
2020-07-29 10:10:42 +02:00
|
|
|
|
|
|
|
#define MAX_REG_PATH \
|
|
|
|
256 /* Maximum registry path length \
|
|
|
|
https://support.microsoft.com/en-us/help/256986/windows-registry-information-for-advanced-users */
|
|
|
|
|
2020-10-15 12:52:01 +02:00
|
|
|
/**
|
|
|
|
* Opens the specified registry key. It waits for the registry key to become available.
|
|
|
|
*
|
|
|
|
* @param Key Handle of the parent registry key. Must be opened with notify access.
|
|
|
|
*
|
|
|
|
* @param Path Subpath of the registry key to open.
|
|
|
|
*
|
|
|
|
* @param Access A mask that specifies the desired access rights to the key to be opened.
|
|
|
|
*
|
|
|
|
* @param Timeout Timeout to wait for the value in milliseconds.
|
|
|
|
*
|
|
|
|
* @param KeyOut Pointer to a variable to receive the key handle.
|
|
|
|
*
|
|
|
|
* @return ERROR_SUCCESS on success; WAIT_TIMEOUT on timeout; Win32 error code otherwise.
|
|
|
|
*/
|
2020-07-29 10:10:42 +02:00
|
|
|
WINTUN_STATUS
|
|
|
|
RegistryOpenKeyWait(
|
|
|
|
_In_ HKEY Key,
|
|
|
|
_In_z_count_c_(MAX_REG_PATH) const WCHAR *Path,
|
|
|
|
_In_ DWORD Access,
|
|
|
|
_In_ DWORD Timeout,
|
|
|
|
_Out_ HKEY *KeyOut);
|
|
|
|
|
2020-10-15 12:52:01 +02:00
|
|
|
/**
|
|
|
|
* Validates and/or sanitizes string value read from registry.
|
|
|
|
*
|
|
|
|
* @param Buf On input, it contains a pointer to pointer where the data is stored. The data must be allocated
|
2020-10-24 22:12:47 +02:00
|
|
|
* using HeapAlloc(ModuleHeap, 0). On output, it contains a pointer to pointer where the sanitized
|
|
|
|
* data is stored. It must be released with HeapFree(ModuleHeap, 0, *Buf) after use.
|
2020-10-15 12:52:01 +02:00
|
|
|
*
|
|
|
|
* @param Len Length of data string in wide characters.
|
|
|
|
*
|
|
|
|
* @param ValueType Type of data. Must be either REG_SZ or REG_EXPAND_SZ. REG_MULTI_SZ is treated like REG_SZ; only
|
|
|
|
* the first string of a multi-string is to be used.
|
|
|
|
*
|
|
|
|
* @return ERROR_SUCCESS on success; Win32 error code otherwise.
|
|
|
|
*/
|
2020-07-29 10:10:42 +02:00
|
|
|
WINTUN_STATUS
|
|
|
|
RegistryGetString(_Inout_ WCHAR **Buf, _In_ DWORD Len, _In_ DWORD ValueType);
|
|
|
|
|
2020-10-15 12:52:01 +02:00
|
|
|
/**
|
|
|
|
* Validates and/or sanitizes multi-string value read from registry.
|
|
|
|
*
|
|
|
|
* @param Buf On input, it contains a pointer to pointer where the data is stored. The data must be allocated
|
2020-10-24 22:12:47 +02:00
|
|
|
* using HeapAlloc(ModuleHeap, 0). On output, it contains a pointer to pointer where the sanitized
|
|
|
|
* data is stored. It must be released with HeapFree(ModuleHeap, 0, *Buf) after use.
|
2020-10-15 12:52:01 +02:00
|
|
|
*
|
|
|
|
* @param Len Length of data string in wide characters.
|
|
|
|
*
|
|
|
|
* @param ValueType Type of data. Must be one of REG_MULTI_SZ, REG_SZ or REG_EXPAND_SZ.
|
|
|
|
*
|
|
|
|
* @return ERROR_SUCCESS on success; Win32 error code otherwise.
|
|
|
|
*/
|
2020-07-29 10:10:42 +02:00
|
|
|
WINTUN_STATUS
|
|
|
|
RegistryGetMultiString(_Inout_ WCHAR **Buf, _In_ DWORD Len, _In_ DWORD ValueType);
|
|
|
|
|
2020-10-15 12:52:01 +02:00
|
|
|
/**
|
|
|
|
* Reads string value from registry key.
|
|
|
|
*
|
|
|
|
* @param Key Handle of the registry key to read from. Must be opened with read access.
|
|
|
|
*
|
|
|
|
* @param Name Name of the value to read.
|
|
|
|
*
|
|
|
|
* @param Value Pointer to string to retrieve registry value. If the value type is REG_EXPAND_SZ the value is
|
|
|
|
* expanded using ExpandEnvironmentStrings(). If the value type is REG_MULTI_SZ, only the first
|
|
|
|
* string from the multi-string is returned. The string must be released with
|
2020-10-24 22:12:47 +02:00
|
|
|
* HeapFree(ModuleHeap, 0, Value) after use.
|
2020-10-15 12:52:01 +02:00
|
|
|
*
|
2020-10-23 22:04:40 +02:00
|
|
|
* @Log Set to TRUE to log all failures; FALSE to skip logging the innermost errors. Skipping innermost
|
|
|
|
* errors reduces log clutter when we are using RegistryQueryString() from
|
|
|
|
* RegistryQueryStringWait() and some errors are expected to occur.
|
|
|
|
*
|
2020-10-15 12:52:01 +02:00
|
|
|
* @return ERROR_SUCCESS on success; ERROR_INVALID_DATATYPE when the registry value is not a string; Win32 error code
|
|
|
|
* otherwise.
|
|
|
|
*/
|
2020-07-29 10:10:42 +02:00
|
|
|
WINTUN_STATUS
|
2020-10-23 22:04:40 +02:00
|
|
|
RegistryQueryString(_In_ HKEY Key, _In_opt_z_ const WCHAR *Name, _Out_ WCHAR **Value, _In_ BOOL Log);
|
2020-07-29 10:10:42 +02:00
|
|
|
|
2020-10-15 12:52:01 +02:00
|
|
|
/**
|
|
|
|
* Reads string value from registry key. It waits for the registry value to become available.
|
|
|
|
*
|
|
|
|
* @param Key Handle of the registry key to read from. Must be opened with read and notify access.
|
|
|
|
*
|
|
|
|
* @param Name Name of the value to read.
|
|
|
|
*
|
|
|
|
* @param Timeout Timeout to wait for the value in milliseconds.
|
|
|
|
*
|
|
|
|
* @param Value Pointer to string to retrieve registry value. If the value type is REG_EXPAND_SZ the value is
|
|
|
|
* expanded using ExpandEnvironmentStrings(). If the value type is REG_MULTI_SZ, only the first
|
|
|
|
* string from the multi-string is returned. The string must be released with
|
2020-10-24 22:12:47 +02:00
|
|
|
* HeapFree(ModuleHeap, 0, Value) after use.
|
2020-10-15 12:52:01 +02:00
|
|
|
*
|
|
|
|
* @return ERROR_SUCCESS on success; WAIT_TIMEOUT on timeout; ERROR_INVALID_DATATYPE when the registry value is not a
|
|
|
|
* string; Win32 error code otherwise.
|
|
|
|
*/
|
2020-07-29 10:10:42 +02:00
|
|
|
WINTUN_STATUS
|
|
|
|
RegistryQueryStringWait(_In_ HKEY Key, _In_opt_z_ const WCHAR *Name, _In_ DWORD Timeout, _Out_ WCHAR **Value);
|
|
|
|
|
2020-10-15 12:52:01 +02:00
|
|
|
/**
|
|
|
|
* Reads a 32-bit DWORD value from registry key.
|
|
|
|
*
|
|
|
|
* @param Key Handle of the registry key to read from. Must be opened with read access.
|
|
|
|
*
|
|
|
|
* @param Name Name of the value to read.
|
|
|
|
*
|
|
|
|
* @param Value Pointer to DWORD to retrieve registry value.
|
|
|
|
*
|
|
|
|
* @return ERROR_SUCCESS on success; ERROR_INVALID_DATATYPE when registry value exist but not REG_DWORD type;
|
|
|
|
* ERROR_INVALID_DATA when registry value size is not 4 bytes; Win32 error code otherwise.
|
|
|
|
*/
|
2020-07-29 10:10:42 +02:00
|
|
|
WINTUN_STATUS
|
|
|
|
RegistryQueryDWORD(_In_ HKEY Key, _In_opt_z_ const WCHAR *Name, _Out_ DWORD *Value);
|
|
|
|
|
2020-10-15 12:52:01 +02:00
|
|
|
/**
|
|
|
|
* Reads a 32-bit DWORD value from registry key. It waits for the registry value to become available.
|
|
|
|
*
|
|
|
|
* @param Key Handle of the registry key to read from. Must be opened with read access.
|
|
|
|
*
|
|
|
|
* @param Name Name of the value to read.
|
|
|
|
*
|
|
|
|
* @param Timeout Timeout to wait for the value in milliseconds.
|
|
|
|
*
|
|
|
|
* @param Value Pointer to DWORD to retrieve registry value.
|
|
|
|
*
|
|
|
|
* @return ERROR_SUCCESS on success; WAIT_TIMEOUT on timeout; ERROR_INVALID_DATATYPE when registry value exist but not
|
|
|
|
* REG_DWORD type; ERROR_INVALID_DATA when registry value size is not 4 bytes; Win32 error code otherwise.
|
|
|
|
*/
|
2020-07-29 10:10:42 +02:00
|
|
|
WINTUN_STATUS
|
|
|
|
RegistryQueryDWORDWait(_In_ HKEY Key, _In_opt_z_ const WCHAR *Name, _In_ DWORD Timeout, _Out_ DWORD *Value);
|