|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* 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
- {
- /// <summary>
- /// 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.
- /// </summary>
- internal sealed class InternalPrivilegeEnabler : IDisposable
- {
- /// <summary>Initializes a new instance of the <see cref="PrivilegeEnabler"/> class and enabling the specified privilege for the currently running process.</summary>
- /// <param name="privilegeName">The name of the privilege.</param>
- [SuppressMessage("Microsoft.Security", "CA2122:DoNotIndirectlyExposeMethodsWithLinkDemands")]
- [SecurityCritical]
- public InternalPrivilegeEnabler(Privilege privilegeName)
- {
- if (privilegeName == null)
- throw new ArgumentNullException("privilegeName");
-
- _mPrivilege = privilegeName;
- AdjustPrivilege(true);
- }
-
- /// <summary>
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- /// In this case the privilege previously enabled will be disabled.
- /// </summary>
- public void Dispose()
- {
- try
- {
- if (_mPrivilege != null)
- AdjustPrivilege(false);
- }
- finally
- {
- _mPrivilege = null;
- }
- }
-
- /// <summary>Adjusts the privilege.</summary>
- /// <param name="enable"><see langword="true"/> the privilege will be enabled, otherwise disabled.</param>
- [SecurityCritical]
- private void AdjustPrivilege(bool enable)
- {
- using (WindowsIdentity currentIdentity = WindowsIdentity.GetCurrent(TokenAccessLevels.Query | TokenAccessLevels.AdjustPrivileges))
- {
- if (currentIdentity != null)
- {
- IntPtr hToken = currentIdentity.Token;
- TokenPrivileges newPrivilege = new TokenPrivileges();
- TokenPrivileges mOldPrivilege = new TokenPrivileges();
- newPrivilege.PrivilegeCount = 1;
- newPrivilege.Luid = Filesystem.NativeMethods.LongToLuid(_mPrivilege.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)
- _mPrivilege = null;
- }
- }
- }
-
- public Privilege EnabledPrivilege
- {
- get { return _mPrivilege; }
- }
-
- private Privilege _mPrivilege;
- }
- }
|