Files
mirror-processhacker/1.x/trunk/ProcessHacker.Native/Objects/SymbolicLinkHandle.cs
T
dmex e43aec1c5e PH1.x: Code Cleanup/Fixes
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4778 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2011-10-29 08:32:37 +00:00

120 lines
3.8 KiB
C#

/*
* Process Hacker -
* symbolic link handle
*
* Copyright (C) 2009 wj32
*
* This file is part of Process Hacker.
*
* Process Hacker is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Process Hacker 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using ProcessHacker.Native.Api;
using ProcessHacker.Native.Security;
namespace ProcessHacker.Native.Objects
{
public sealed class SymbolicLinkHandle : NativeHandle<SymbolicLinkAccess>
{
public static SymbolicLinkHandle Create(SymbolicLinkAccess access, string name, string linkTarget)
{
return Create(access, name, 0, null, linkTarget);
}
public static SymbolicLinkHandle Create(SymbolicLinkAccess access, string name, ObjectFlags objectFlags, DirectoryHandle rootDirectory, string linkTarget)
{
ObjectAttributes oa = new ObjectAttributes(name, objectFlags, rootDirectory);
IntPtr handle;
try
{
UnicodeString linkTargetString = new UnicodeString(linkTarget);
try
{
Win32.NtCreateSymbolicLinkObject(
out handle,
access,
ref oa,
ref linkTargetString
).ThrowIf();
}
finally
{
linkTargetString.Dispose();
}
}
finally
{
oa.Dispose();
}
return new SymbolicLinkHandle(handle, true);
}
private SymbolicLinkHandle(IntPtr handle, bool owned)
: base(handle, owned)
{ }
public SymbolicLinkHandle(string name, ObjectFlags objectFlags, DirectoryHandle rootDirectory, SymbolicLinkAccess access)
{
ObjectAttributes oa = new ObjectAttributes(name, objectFlags, rootDirectory);
IntPtr handle;
try
{
Win32.NtOpenSymbolicLinkObject(out handle, access, ref oa).ThrowIf();
}
finally
{
oa.Dispose();
}
this.Handle = handle;
}
public SymbolicLinkHandle(string name, SymbolicLinkAccess access)
: this(name, 0, null, access)
{ }
public string Target
{
get
{
int retLength;
UnicodeString str = new UnicodeString();
using (MemoryAlloc buffer = new MemoryAlloc(0x200))
{
str.Length = 0;
str.MaximumLength = (ushort)buffer.Size;
str.Buffer = buffer;
if (Win32.NtQuerySymbolicLinkObject(this, ref str, out retLength).IsError())
{
buffer.ResizeNew(retLength);
str.MaximumLength = (ushort)retLength;
str.Buffer = buffer;
}
Win32.NtQuerySymbolicLinkObject(this, ref str, out retLength).ThrowIf();
return str.Text;
}
}
}
}
}