mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
710682a5ab
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1526 21ef857c-d57f-4fe0-8362-d861dc6d29cd
112 lines
3.8 KiB
C#
112 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)
|
|
{
|
|
NtStatus status;
|
|
ObjectAttributes oa = new ObjectAttributes(name, objectFlags, rootDirectory);
|
|
UnicodeString linkTargetString = new UnicodeString(linkTarget);
|
|
IntPtr handle;
|
|
|
|
try
|
|
{
|
|
if ((status = Win32.NtCreateSymbolicLinkObject(out handle, access,
|
|
ref oa, ref linkTargetString)) >= NtStatus.Error)
|
|
Win32.ThrowLastError(status);
|
|
}
|
|
finally
|
|
{
|
|
oa.Dispose();
|
|
linkTargetString.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)
|
|
{
|
|
NtStatus status;
|
|
ObjectAttributes oa = new ObjectAttributes(name, objectFlags, rootDirectory);
|
|
IntPtr handle;
|
|
|
|
try
|
|
{
|
|
if ((status = Win32.NtOpenSymbolicLinkObject(out handle, access, ref oa)) >= NtStatus.Error)
|
|
Win32.ThrowLastError(status);
|
|
}
|
|
finally
|
|
{
|
|
oa.Dispose();
|
|
}
|
|
|
|
this.Handle = handle;
|
|
}
|
|
|
|
public SymbolicLinkHandle(string name, SymbolicLinkAccess access)
|
|
: this(name, 0, null, access)
|
|
{ }
|
|
|
|
public string GetTarget()
|
|
{
|
|
NtStatus status;
|
|
int retLength;
|
|
UnicodeString str = new UnicodeString();
|
|
|
|
using (var buffer = new MemoryAlloc(0x200))
|
|
{
|
|
str.Length = 0;
|
|
str.MaximumLength = (ushort)buffer.Size;
|
|
str.Buffer = buffer;
|
|
|
|
if ((status = Win32.NtQuerySymbolicLinkObject(this, ref str, out retLength)) >= NtStatus.Error)
|
|
{
|
|
buffer.Resize(retLength);
|
|
str.MaximumLength = (ushort)retLength;
|
|
str.Buffer = buffer;
|
|
}
|
|
|
|
if ((status = Win32.NtQuerySymbolicLinkObject(this, ref str, out retLength)) >= NtStatus.Error)
|
|
Win32.ThrowLastError(status);
|
|
|
|
return str.Read();
|
|
}
|
|
}
|
|
}
|
|
}
|