mirror of https://github.com/raandree/NTFSSecurity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
8.6 KiB
141 lines
8.6 KiB
/* Copyright (C) 2008-2016 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
|
|
namespace Alphaleonis.Win32.Filesystem
|
|
{
|
|
partial class File
|
|
{
|
|
#region CreateSymbolicLink
|
|
|
|
/// <summary>[AlphaFS] Creates a symbolic link.</summary>
|
|
/// <remarks>See <see cref="Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
|
|
/// <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
|
|
/// <param name="targetFileName">The symbolic link to be created.</param>
|
|
/// <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
|
|
/// <param name="pathFormat">Indicates the format of the path parameter(s).</param>
|
|
/// <exception cref="PlatformNotSupportedException"/>
|
|
/// <exception>Several Exceptions possible.</exception>
|
|
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "symlink")]
|
|
[SecurityCritical]
|
|
public static void CreateSymbolicLink(string symlinkFileName, string targetFileName, SymbolicLinkTarget targetType, PathFormat pathFormat)
|
|
{
|
|
CreateSymbolicLinkCore(null, symlinkFileName, targetFileName, targetType, pathFormat);
|
|
}
|
|
|
|
/// <summary>[AlphaFS] Creates a symbolic link.</summary>
|
|
/// <remarks>See <see cref="Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
|
|
/// <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
|
|
/// <param name="targetFileName">The symbolic link to be created.</param>
|
|
/// <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
|
|
/// <exception cref="PlatformNotSupportedException"/>
|
|
/// <exception>Several Exceptions possible.</exception>
|
|
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "symlink")]
|
|
[SecurityCritical]
|
|
public static void CreateSymbolicLink(string symlinkFileName, string targetFileName, SymbolicLinkTarget targetType)
|
|
{
|
|
CreateSymbolicLinkCore(null, symlinkFileName, targetFileName, targetType, PathFormat.RelativePath);
|
|
}
|
|
|
|
/// <summary>[AlphaFS] Creates a symbolic link.</summary>
|
|
/// <remarks>See <see cref="Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
|
|
/// <param name="transaction">The transaction.</param>
|
|
/// <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
|
|
/// <param name="targetFileName">The symbolic link to be created.</param>
|
|
/// <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
|
|
/// <param name="pathFormat">Indicates the format of the path parameter(s).</param>
|
|
/// <exception cref="PlatformNotSupportedException"/>
|
|
/// <exception>Several Exceptions possible.</exception>
|
|
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "symlink")]
|
|
[SecurityCritical]
|
|
public static void CreateSymbolicLinkTransacted(KernelTransaction transaction, string symlinkFileName, string targetFileName, SymbolicLinkTarget targetType, PathFormat pathFormat)
|
|
{
|
|
CreateSymbolicLinkCore(transaction, symlinkFileName, targetFileName, targetType, pathFormat);
|
|
}
|
|
|
|
|
|
/// <summary>[AlphaFS] Creates a symbolic link.</summary>
|
|
/// <remarks>See <see cref="Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
|
|
/// <param name="transaction">The transaction.</param>
|
|
/// <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
|
|
/// <param name="targetFileName">The symbolic link to be created.</param>
|
|
/// <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
|
|
/// <exception cref="PlatformNotSupportedException"/>
|
|
/// <exception>Several Exceptions possible.</exception>
|
|
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "symlink")]
|
|
[SecurityCritical]
|
|
public static void CreateSymbolicLinkTransacted(KernelTransaction transaction, string symlinkFileName, string targetFileName, SymbolicLinkTarget targetType)
|
|
{
|
|
CreateSymbolicLinkCore(transaction, symlinkFileName, targetFileName, targetType, PathFormat.RelativePath);
|
|
}
|
|
|
|
#endregion // CreateSymbolicLink
|
|
|
|
#region Internal Methods
|
|
|
|
/// <summary>Creates a symbolic link.</summary>
|
|
/// <remarks>See <see cref="Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
|
|
/// <param name="transaction">The transaction.</param>
|
|
/// <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
|
|
/// <param name="targetFileName">The symbolic link to be created.</param>
|
|
/// <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
|
|
/// <param name="pathFormat">Indicates the format of the path parameter(s).</param>
|
|
/// <exception cref="PlatformNotSupportedException"/>
|
|
/// <exception>Several Exceptions possible.</exception>
|
|
[SecurityCritical]
|
|
internal static void CreateSymbolicLinkCore(KernelTransaction transaction, string symlinkFileName, string targetFileName, SymbolicLinkTarget targetType, PathFormat pathFormat)
|
|
{
|
|
if (!NativeMethods.IsAtLeastWindowsVista)
|
|
throw new PlatformNotSupportedException(Resources.Requires_Windows_Vista_Or_Higher);
|
|
|
|
const GetFullPathOptions options = GetFullPathOptions.RemoveTrailingDirectorySeparator | GetFullPathOptions.FullCheck;
|
|
|
|
string symlinkFileNameLp = Path.GetExtendedLengthPathCore(transaction, symlinkFileName, pathFormat, options);
|
|
string targetFileNameRp = Path.GetExtendedLengthPathCore(transaction, targetFileName, pathFormat, options);
|
|
|
|
// Don't use long path notation, as it will be empty upon creation.
|
|
targetFileNameRp = Path.GetRegularPathCore(targetFileNameRp, GetFullPathOptions.None, false);
|
|
|
|
|
|
if (!(transaction == null
|
|
|
|
// CreateSymbolicLink() / CreateSymbolicLinkTransacted()
|
|
// In the ANSI version of this function, the name is limited to MAX_PATH characters.
|
|
// To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path.
|
|
// 2014-02-14: MSDN does not confirm LongPath usage but a Unicode version of this function exists.
|
|
// 2015-07-17: This function does not support long paths.
|
|
|
|
? NativeMethods.CreateSymbolicLink(symlinkFileNameLp, targetFileNameRp, targetType)
|
|
: NativeMethods.CreateSymbolicLinkTransacted(symlinkFileNameLp, targetFileNameRp, targetType, transaction.SafeHandle)))
|
|
{
|
|
var lastError = Marshal.GetLastWin32Error();
|
|
if (lastError != 0)
|
|
NativeError.ThrowException(lastError, symlinkFileNameLp, targetFileNameRp);
|
|
}
|
|
}
|
|
|
|
#endregion // Internal Methods
|
|
}
|
|
}
|
|
|