mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-11-23 19:30:59 +00:00
365e5723c1
--HG-- extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4050811
150 lines
5.1 KiB
C#
150 lines
5.1 KiB
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.ConstrainedExecution;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
using Microsoft.Win32.SafeHandles;
|
|
|
|
namespace Jellyfish.Library
|
|
{
|
|
[SecurityCritical]
|
|
public abstract class SafeAllocHandle : SafeHandleZeroOrMinusOneIsInvalid
|
|
{
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
|
|
protected SafeAllocHandle(bool ownsHandle) :
|
|
base(ownsHandle)
|
|
{
|
|
}
|
|
}
|
|
|
|
[SecurityCritical]
|
|
public sealed class SafeGlobalAllocHandle : SafeAllocHandle
|
|
{
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
|
|
public SafeGlobalAllocHandle() :
|
|
base(ownsHandle: true)
|
|
{
|
|
}
|
|
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
|
|
public SafeGlobalAllocHandle(IntPtr existingHandle, bool ownsHandle) :
|
|
base(ownsHandle)
|
|
{
|
|
SetHandle(existingHandle);
|
|
}
|
|
|
|
[SecurityCritical]
|
|
public static SafeGlobalAllocHandle Allocate(byte[] value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new ArgumentNullException("value");
|
|
}
|
|
|
|
var alloc = Allocate(value.Length);
|
|
Marshal.Copy(value, 0, alloc.DangerousGetHandle(), value.Length);
|
|
|
|
return alloc;
|
|
}
|
|
|
|
[SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
|
|
[SuppressMessage("Microsoft.Naming", "CA1726:UsePreferredTerms", MessageId = "flags")]
|
|
[SecurityCritical]
|
|
public static SafeGlobalAllocHandle Allocate(int size, uint flags = 0x0)
|
|
{
|
|
var alloc = NativeMethods.GlobalAlloc(flags, (IntPtr)size);
|
|
if (alloc.IsInvalid)
|
|
{
|
|
Marshal.ThrowExceptionForHR(Marshal.GetHRForLastWin32Error());
|
|
}
|
|
|
|
return alloc;
|
|
}
|
|
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
|
|
[SecurityCritical]
|
|
protected override bool ReleaseHandle()
|
|
{
|
|
return (NativeMethods.GlobalFree(handle) == IntPtr.Zero);
|
|
}
|
|
|
|
[SecurityCritical]
|
|
[SuppressUnmanagedCodeSecurity]
|
|
private static class NativeMethods
|
|
{
|
|
[SuppressMessage("Microsoft.Security", "CA2118:ReviewSuppressUnmanagedCodeSecurityUsage")]
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
public static extern SafeGlobalAllocHandle GlobalAlloc(uint dwFlags, IntPtr sizetBytes);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
|
|
public static extern IntPtr GlobalFree(IntPtr hMem);
|
|
}
|
|
}
|
|
|
|
[SecurityCritical]
|
|
public sealed class SafeLocalAllocHandle : SafeAllocHandle
|
|
{
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
|
|
public SafeLocalAllocHandle() :
|
|
base(ownsHandle: true)
|
|
{
|
|
}
|
|
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
|
|
public SafeLocalAllocHandle(IntPtr existingHandle, bool ownsHandle) :
|
|
base(ownsHandle)
|
|
{
|
|
SetHandle(existingHandle);
|
|
}
|
|
|
|
[SecurityCritical]
|
|
public static SafeLocalAllocHandle Allocate(byte[] value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new ArgumentNullException("value");
|
|
}
|
|
|
|
var alloc = Allocate(value.Length);
|
|
Marshal.Copy(value, 0, alloc.DangerousGetHandle(), value.Length);
|
|
|
|
return alloc;
|
|
}
|
|
|
|
[SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
|
|
[SuppressMessage("Microsoft.Naming", "CA1726:UsePreferredTerms", MessageId = "flags")]
|
|
[SecurityCritical]
|
|
public static SafeLocalAllocHandle Allocate(int size, uint flags = 0x0)
|
|
{
|
|
var alloc = NativeMethods.LocalAlloc(flags, (IntPtr)size);
|
|
if (alloc.IsInvalid)
|
|
{
|
|
Marshal.ThrowExceptionForHR(Marshal.GetHRForLastWin32Error());
|
|
}
|
|
|
|
return alloc;
|
|
}
|
|
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
|
|
[SecurityCritical]
|
|
protected override bool ReleaseHandle()
|
|
{
|
|
return (NativeMethods.LocalFree(handle) == IntPtr.Zero);
|
|
}
|
|
|
|
[SecurityCritical]
|
|
[SuppressUnmanagedCodeSecurity]
|
|
private static class NativeMethods
|
|
{
|
|
[SuppressMessage("Microsoft.Security", "CA2118:ReviewSuppressUnmanagedCodeSecurityUsage")]
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
public static extern SafeLocalAllocHandle LocalAlloc(uint dwFlags, IntPtr sizetBytes);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
|
|
public static extern IntPtr LocalFree(IntPtr hMem);
|
|
}
|
|
}
|
|
}
|