/* 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; using System.Security.Principal; namespace Alphaleonis.Win32.Security { /// /// This object is used to enable a specific privilege for the currently running process during its lifetime. /// It should be disposed as soon as the elevated privilege is no longer needed. /// For more information see the documentation on AdjustTokenPrivileges on MSDN. /// internal sealed class InternalPrivilegeEnabler : IDisposable { /// Initializes a new instance of the class and enabling the specified privilege for the currently running process. /// The name of the privilege. [SuppressMessage("Microsoft.Security", "CA2122:DoNotIndirectlyExposeMethodsWithLinkDemands")] [SecurityCritical] public InternalPrivilegeEnabler(Privilege privilegeName) { if (privilegeName == null) throw new ArgumentNullException("privilegeName"); EnabledPrivilege = privilegeName; AdjustPrivilege(true); } /// /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. /// In this case the privilege previously enabled will be disabled. /// public void Dispose() { try { if (EnabledPrivilege != null) AdjustPrivilege(false); } finally { EnabledPrivilege = null; } } /// Adjusts the privilege. /// the privilege will be enabled, otherwise disabled. [SecurityCritical] private void AdjustPrivilege(bool enable) { using (WindowsIdentity currentIdentity = WindowsIdentity.GetCurrent(TokenAccessLevels.Query | TokenAccessLevels.AdjustPrivileges)) { IntPtr hToken = currentIdentity.Token; TokenPrivileges newPrivilege = new TokenPrivileges(); TokenPrivileges mOldPrivilege = new TokenPrivileges(); newPrivilege.PrivilegeCount = 1; newPrivilege.Luid = Filesystem.NativeMethods.LongToLuid(EnabledPrivilege.LookupLuid()); newPrivilege.Attributes = (uint)(enable ? 2 : 0); // 2 = SePrivilegeEnabled; uint length; if (!NativeMethods.AdjustTokenPrivileges(hToken, false, ref newPrivilege, (uint) Marshal.SizeOf(mOldPrivilege), out mOldPrivilege, out length)) NativeError.ThrowException(Marshal.GetLastWin32Error()); // If no privilege was changed, we don't want to reset it. if (mOldPrivilege.PrivilegeCount == 0) EnabledPrivilege = null; } } public Privilege EnabledPrivilege { get; private set; } } }