Added extension methods and reformatted.

pull/60/head
David Hall 2019-06-17 13:45:37 -06:00
parent badc08c7e5
commit 8250d509ee
1 changed files with 77 additions and 39 deletions

View File

@ -13,6 +13,7 @@ namespace Vanara.PInvoke
{
/// <summary>Closes the source handle. This occurs regardless of any error status returned.</summary>
DUPLICATE_CLOSE_SOURCE = 0x00000001,
/// <summary>Ignores the dwDesiredAccess parameter. The duplicate handle has the same access as the source handle.</summary>
DUPLICATE_SAME_ACCESS = 0x00000002,
}
@ -23,10 +24,13 @@ namespace Vanara.PInvoke
{
/// <summary>None.</summary>
NONE = 0,
/// <summary>
/// If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the object handle.
/// If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the
/// object handle.
/// </summary>
HANDLE_FLAG_INHERIT = 1,
/// <summary>If this flag is set, calling the CloseHandle function will not close the object handle.</summary>
HANDLE_FLAG_PROTECT_FROM_CLOSE = 2
}
@ -37,9 +41,9 @@ namespace Vanara.PInvoke
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero. To get extended error information, call <c>GetLastError</c>.</para>
/// <para>
/// If the application is running under a debugger, the function will throw an exception if it receives either a handle value that is not valid or a
/// pseudo-handle value. This can happen if you close a handle twice, or if you call <c>CloseHandle</c> on a handle returned by the <c>FindFirstFile</c>
/// function instead of calling the <c>FindClose</c> function.
/// If the application is running under a debugger, the function will throw an exception if it receives either a handle value that is
/// not valid or a pseudo-handle value. This can happen if you close a handle twice, or if you call <c>CloseHandle</c> on a handle
/// returned by the <c>FindFirstFile</c> function instead of calling the <c>FindClose</c> function.
/// </para>
/// </returns>
// BOOL WINAPI CloseHandle( _In_ HANDLE hObject); https://msdn.microsoft.com/en-us/library/windows/desktop/ms724211(v=vs.85).aspx
@ -52,21 +56,29 @@ namespace Vanara.PInvoke
/// <summary>Compares two object handles to determine if they refer to the same underlying kernel object.</summary>
/// <param name="hFirstObjectHandle">The first object handle to compare.</param>
/// <param name="hSecondObjectHandle">The second object handle to compare.</param>
/// <returns>A Boolean value that indicates if the two handles refer to the same underlying kernel object. TRUE if the same, otherwise FALSE.</returns>
/// <returns>
/// A Boolean value that indicates if the two handles refer to the same underlying kernel object. TRUE if the same, otherwise FALSE.
/// </returns>
// BOOL WINAPI CompareObjectHandles( _In_ HANDLE hFirstObjectHandle, _In_ HANDLE hSecondObjectHandle); https://msdn.microsoft.com/en-us/library/windows/desktop/mt438733(v=vs.85).aspx
[DllImport(Lib.KernelBase, SetLastError = false, ExactSpelling = true)]
[PInvokeData("Handleapi.h", MSDNShortId = "mt438733")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CompareObjectHandles(IntPtr hFirstObjectHandle, IntPtr hSecondObjectHandle);
/// <summary>Determines if two object handles refer to the same underlying kernel object.</summary>
/// <param name="h1">The first object handle to compare.</param>
/// <param name="h2">The second object handle to compare.</param>
/// <returns><see langword="true"/> if the two handles refer to the same underlying kernel object; <see langword="false"/> otherwise.</returns>
public static bool Equals(this IKernelHandle h1, IKernelHandle h2) => CompareObjectHandles(h1.DangerousGetHandle(), h2?.DangerousGetHandle() ?? IntPtr.Zero);
/// <summary>Duplicates an object handle.</summary>
/// <param name="hSourceHandle">
/// The handle to be duplicated. This is an open object handle that is valid in the context of the source process. For a list of objects whose handles
/// can be duplicated, see the following Remarks section.
/// The handle to be duplicated. This is an open object handle that is valid in the context of the source process. For a list of
/// objects whose handles can be duplicated, see the following Remarks section.
/// </param>
/// <param name="bInheritHandle">
/// A variable that indicates whether the handle is inheritable. If <c>TRUE</c>, the duplicate handle can be inherited by new processes created by the
/// target process. If <c>FALSE</c>, the new handle cannot be inherited.
/// A variable that indicates whether the handle is inheritable. If <c>TRUE</c>, the duplicate handle can be inherited by new
/// processes created by the target process. If <c>FALSE</c>, the new handle cannot be inherited.
/// </param>
/// <param name="dwOptions">
/// <para>Optional actions. This parameter can be zero, or any combination of the following values.</para>
@ -88,17 +100,19 @@ namespace Vanara.PInvoke
/// </para>
/// </param>
/// <param name="dwDesiredAccess">
/// <para>The access requested for the new handle. For the flags that can be specified for each object type, see the following Remarks section.</para>
/// <para>
/// This parameter is ignored if the dwOptions parameter specifies the DUPLICATE_SAME_ACCESS flag. Otherwise, the flags that can be specified depend on
/// the type of object whose handle is to be duplicated.
/// The access requested for the new handle. For the flags that can be specified for each object type, see the following Remarks section.
/// </para>
/// <para>
/// This parameter is ignored if the dwOptions parameter specifies the DUPLICATE_SAME_ACCESS flag. Otherwise, the flags that can be
/// specified depend on the type of object whose handle is to be duplicated.
/// </para>
/// </param>
/// <returns>
/// <para>The duplicate handle. This handle value is valid in the context of the target process.</para>
/// <para>
/// If hSourceHandle is a pseudo handle returned by <c>GetCurrentProcess</c> or <c>GetCurrentThread</c>, <c>DuplicateHandle</c> converts it to a real
/// handle to a process or thread, respectively.
/// If hSourceHandle is a pseudo handle returned by <c>GetCurrentProcess</c> or <c>GetCurrentThread</c>, <c>DuplicateHandle</c>
/// converts it to a real handle to a process or thread, respectively.
/// </para>
/// </returns>
public static IntPtr Duplicate(this IKernelHandle hSourceHandle, bool bInheritHandle = true, DUPLICATE_HANDLE_OPTIONS dwOptions = DUPLICATE_HANDLE_OPTIONS.DUPLICATE_SAME_ACCESS, uint dwDesiredAccess = 0) =>
@ -110,8 +124,8 @@ namespace Vanara.PInvoke
/// <para>The handle must have the PROCESS_DUP_HANDLE access right. For more information, see Process Security and Access Rights.</para>
/// </param>
/// <param name="hSourceHandle">
/// The handle to be duplicated. This is an open object handle that is valid in the context of the source process. For a list of objects whose handles
/// can be duplicated, see the following Remarks section.
/// The handle to be duplicated. This is an open object handle that is valid in the context of the source process. For a list of
/// objects whose handles can be duplicated, see the following Remarks section.
/// </param>
/// <param name="hTargetProcessHandle">
/// A handle to the process that is to receive the duplicated handle. The handle must have the PROCESS_DUP_HANDLE access right.
@ -119,25 +133,27 @@ namespace Vanara.PInvoke
/// <param name="lpTargetHandle">
/// <para>A pointer to a variable that receives the duplicate handle. This handle value is valid in the context of the target process.</para>
/// <para>
/// If hSourceHandle is a pseudo handle returned by <c>GetCurrentProcess</c> or <c>GetCurrentThread</c>, <c>DuplicateHandle</c> converts it to a real
/// handle to a process or thread, respectively.
/// If hSourceHandle is a pseudo handle returned by <c>GetCurrentProcess</c> or <c>GetCurrentThread</c>, <c>DuplicateHandle</c>
/// converts it to a real handle to a process or thread, respectively.
/// </para>
/// <para>
/// If lpTargetHandle is <c>NULL</c>, the function duplicates the handle, but does not return the duplicate handle value to the caller. This behavior
/// exists only for backward compatibility with previous versions of this function. You should not use this feature, as you will lose system resources
/// until the target process terminates.
/// If lpTargetHandle is <c>NULL</c>, the function duplicates the handle, but does not return the duplicate handle value to the
/// caller. This behavior exists only for backward compatibility with previous versions of this function. You should not use this
/// feature, as you will lose system resources until the target process terminates.
/// </para>
/// </param>
/// <param name="dwDesiredAccess">
/// <para>The access requested for the new handle. For the flags that can be specified for each object type, see the following Remarks section.</para>
/// <para>
/// This parameter is ignored if the dwOptions parameter specifies the DUPLICATE_SAME_ACCESS flag. Otherwise, the flags that can be specified depend on
/// the type of object whose handle is to be duplicated.
/// The access requested for the new handle. For the flags that can be specified for each object type, see the following Remarks section.
/// </para>
/// <para>
/// This parameter is ignored if the dwOptions parameter specifies the DUPLICATE_SAME_ACCESS flag. Otherwise, the flags that can be
/// specified depend on the type of object whose handle is to be duplicated.
/// </para>
/// </param>
/// <param name="bInheritHandle">
/// A variable that indicates whether the handle is inheritable. If <c>TRUE</c>, the duplicate handle can be inherited by new processes created by the
/// target process. If <c>FALSE</c>, the new handle cannot be inherited.
/// A variable that indicates whether the handle is inheritable. If <c>TRUE</c>, the duplicate handle can be inherited by new
/// processes created by the target process. If <c>FALSE</c>, the new handle cannot be inherited.
/// </param>
/// <param name="dwOptions">
/// <para>Optional actions. This parameter can be zero, or any combination of the following values.</para>
@ -162,24 +178,28 @@ namespace Vanara.PInvoke
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero. To get extended error information, call <c>GetLastError</c>.</para>
/// </returns>
// BOOL WINAPI DuplicateHandle( _In_ HANDLE hSourceProcessHandle, _In_ HANDLE hSourceHandle, _In_ HANDLE hTargetProcessHandle, _Out_ LPHANDLE
// lpTargetHandle, _In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ DWORD dwOptions); https://msdn.microsoft.com/en-us/library/windows/desktop/ms724251(v=vs.85).aspx
// BOOL WINAPI DuplicateHandle( _In_ HANDLE hSourceProcessHandle, _In_ HANDLE hSourceHandle, _In_ HANDLE hTargetProcessHandle, _Out_
// LPHANDLE lpTargetHandle, _In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ DWORD dwOptions); https://msdn.microsoft.com/en-us/library/windows/desktop/ms724251(v=vs.85).aspx
[DllImport(Lib.Kernel32, SetLastError = true, ExactSpelling = true)]
[PInvokeData("Winbase.h", MSDNShortId = "ms724251")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool DuplicateHandle([In] HPROCESS hSourceProcessHandle, [In] IntPtr hSourceHandle, [In] HPROCESS hTargetProcessHandle,
public static extern bool DuplicateHandle([In] HPROCESS hSourceProcessHandle, [In] IntPtr hSourceHandle, [In] HPROCESS hTargetProcessHandle,
out IntPtr lpTargetHandle, uint dwDesiredAccess, [MarshalAs(UnmanagedType.Bool)] bool bInheritHandle, DUPLICATE_HANDLE_OPTIONS dwOptions);
/// <summary>Retrieves certain properties of an object handle.</summary>
/// <param name="hObject">
/// <para>A handle to an object whose information is to be retrieved.</para>
/// <para>
/// You can specify a handle to one of the following types of objects: access token, console input buffer, console screen buffer, event, file, file
/// mapping, job, mailslot, mutex, pipe, printer, process, registry key, semaphore, serial communication device, socket, thread, or waitable timer.
/// You can specify a handle to one of the following types of objects: access token, console input buffer, console screen buffer,
/// event, file, file mapping, job, mailslot, mutex, pipe, printer, process, registry key, semaphore, serial communication device,
/// socket, thread, or waitable timer.
/// </para>
/// </param>
/// <param name="lpdwFlags">
/// <para>A pointer to a variable that receives a set of bit flags that specify properties of the object handle or 0. The following values are defined.</para>
/// <para>
/// A pointer to a variable that receives a set of bit flags that specify properties of the object handle or 0. The following values
/// are defined.
/// </para>
/// <para>
/// <list type="table">
/// <listheader>
@ -188,7 +208,10 @@ namespace Vanara.PInvoke
/// </listheader>
/// <item>
/// <term>HANDLE_FLAG_INHERIT0x00000001</term>
/// <term>If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the object handle.</term>
/// <term>
/// If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the
/// object handle.
/// </term>
/// </item>
/// <item>
/// <term>HANDLE_FLAG_PROTECT_FROM_CLOSE0x00000002</term>
@ -207,17 +230,27 @@ namespace Vanara.PInvoke
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetHandleInformation([In] IntPtr hObject, out HANDLE_FLAG lpdwFlags);
/// <summary>Retrieves certain properties of an object handle.</summary>
/// <param name="hObj">A handle to an object whose information is to be retrieved.</param>
/// <returns>A variable that receives a set of bit flags that specify properties of the object handle</returns>
public static HANDLE_FLAG GetInformation(this IKernelHandle hObj) => GetHandleInformation(hObj.DangerousGetHandle(), out var flag) ? flag : 0;
/// <summary>Sets certain properties of an object handle.</summary>
/// <param name="hObject">
/// <para>A handle to an object whose information is to be set.</para>
/// <para>
/// You can specify a handle to one of the following types of objects: access token, console input buffer, console screen buffer, event, file, file
/// mapping, job, mailslot, mutex, pipe, printer, process, registry key, semaphore, serial communication device, socket, thread, or waitable timer.
/// You can specify a handle to one of the following types of objects: access token, console input buffer, console screen buffer,
/// event, file, file mapping, job, mailslot, mutex, pipe, printer, process, registry key, semaphore, serial communication device,
/// socket, thread, or waitable timer.
/// </para>
/// </param>
/// <param name="dwMask">A mask that specifies the bit flags to be changed. Use the same constants shown in the description of dwFlags.</param>
/// <param name="dwMask">
/// A mask that specifies the bit flags to be changed. Use the same constants shown in the description of dwFlags.
/// </param>
/// <param name="dwFlags">
/// <para>Set of bit flags that specifies properties of the object handle. This parameter can be 0 or one or more of the following values.</para>
/// <para>
/// Set of bit flags that specifies properties of the object handle. This parameter can be 0 or one or more of the following values.
/// </para>
/// <para>
/// <list type="table">
/// <listheader>
@ -226,7 +259,10 @@ namespace Vanara.PInvoke
/// </listheader>
/// <item>
/// <term>HANDLE_FLAG_INHERIT0x00000001</term>
/// <term>If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the object handle.</term>
/// <term>
/// If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the
/// object handle.
/// </term>
/// </item>
/// <item>
/// <term>HANDLE_FLAG_PROTECT_FROM_CLOSE0x00000002</term>
@ -253,7 +289,9 @@ namespace Vanara.PInvoke
/// <summary>Initializes a new instance of the <see cref="SafeHANDLE"/> class and assigns an existing handle.</summary>
/// <param name="preexistingHandle">An <see cref="IntPtr"/> object that represents the pre-existing handle to use.</param>
/// <param name="ownsHandle"><see langword="true"/> to reliably release the handle during the finalization phase; otherwise, <see langword="false"/> (not recommended).</param>
/// <param name="ownsHandle">
/// <see langword="true"/> to reliably release the handle during the finalization phase; otherwise, <see langword="false"/> (not recommended).
/// </param>
protected SafeKernelHandle(IntPtr preexistingHandle, bool ownsHandle = true) : base(preexistingHandle, ownsHandle) { }
/// <inheritdoc/>