Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / IdentityModel / System / IdentityModel / Privilege.cs / 1 / Privilege.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.IdentityModel { using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security.AccessControl; using System.Security.Principal; using System.ServiceModel.Diagnostics; class Privilege { static Dictionaryluids = new Dictionary (); public const string SeAuditPrivilege = "SeAuditPrivilege"; public const string SeTcbPrivilege = "SeTcbPrivilege"; const uint SE_PRIVILEGE_DISABLED = 0x00000000; const uint SE_PRIVILEGE_ENABLED_BY_DEFAULT = 0x00000001; const uint SE_PRIVILEGE_ENABLED = 0x00000002; const uint SE_PRIVILEGE_USED_FOR_ACCESS = 0x80000000; const int ERROR_SUCCESS = 0x0; const int ERROR_NO_TOKEN = 0x3F0; const int ERROR_NOT_ALL_ASSIGNED = 0x514; string privilege; LUID luid; bool needToRevert = false; bool initialEnabled = false; bool isImpersonating = false; SafeCloseHandle threadToken = null; public Privilege(string privilege) { this.privilege = privilege; this.luid = LuidFromPrivilege(privilege); } public void Enable() { // Note: AdjustTokenPrivileges should not try to adjust if the token is // Primary token (process). Duplicate the process token (impersonation) and // then set token to current thread and unsetting (RevertToSelf) later. DiagnosticUtility.DebugAssert(this.threadToken == null, ""); this.threadToken = GetThreadToken(); EnableTokenPrivilege(this.threadToken); } // Have to run in CER [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] public int Revert() { if (!this.isImpersonating) { if (this.needToRevert && !this.initialEnabled) { TOKEN_PRIVILEGE newState; newState.PrivilegeCount = 1; newState.Privilege.Luid = this.luid; newState.Privilege.Attributes = SE_PRIVILEGE_DISABLED; TOKEN_PRIVILEGE previousState; uint previousSize = 0; if (!NativeMethods.AdjustTokenPrivileges( this.threadToken, false, ref newState, TOKEN_PRIVILEGE.Size, out previousState, out previousSize)) { return Marshal.GetLastWin32Error(); } } this.needToRevert = false; } else { if (!NativeMethods.RevertToSelf()) { return Marshal.GetLastWin32Error(); } this.isImpersonating = false; } if (this.threadToken != null) { this.threadToken.Close(); this.threadToken = null; } return ERROR_SUCCESS; } SafeCloseHandle GetThreadToken() { // // Open the thread token; if there is no thread token, get one from // the process token by impersonating self. // SafeCloseHandle threadToken; if (!NativeMethods.OpenThreadToken( NativeMethods.GetCurrentThread(), TokenAccessLevels.Query | TokenAccessLevels.AdjustPrivileges, true, out threadToken)) { int error = Marshal.GetLastWin32Error(); Utility.CloseInvalidOutSafeHandle(threadToken); if (error != ERROR_NO_TOKEN) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new Win32Exception(error)); } else { SafeCloseHandle processToken; if (!NativeMethods.OpenProcessToken( NativeMethods.GetCurrentProcess(), TokenAccessLevels.Duplicate, out processToken)) { error = Marshal.GetLastWin32Error(); Utility.CloseInvalidOutSafeHandle(processToken); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new Win32Exception(error)); } try { if (!NativeMethods.DuplicateTokenEx( processToken, TokenAccessLevels.Impersonate | TokenAccessLevels.Query | TokenAccessLevels.AdjustPrivileges, IntPtr.Zero, SECURITY_IMPERSONATION_LEVEL.Impersonation, TokenType.TokenImpersonation, out threadToken)) { error = Marshal.GetLastWin32Error(); Utility.CloseInvalidOutSafeHandle(threadToken); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new Win32Exception(error)); } SetThreadToken(threadToken); } finally { processToken.Close(); } } } return threadToken; } void EnableTokenPrivilege(SafeCloseHandle threadToken) { DiagnosticUtility.DebugAssert(!this.needToRevert, ""); TOKEN_PRIVILEGE newState; newState.PrivilegeCount = 1; newState.Privilege.Luid = this.luid; newState.Privilege.Attributes = SE_PRIVILEGE_ENABLED; TOKEN_PRIVILEGE previousState; uint previousSize = 0; bool success = false; int error = 0; // CER RuntimeHelpers.PrepareConstrainedRegions(); try { } finally { success = NativeMethods.AdjustTokenPrivileges( threadToken, false, ref newState, TOKEN_PRIVILEGE.Size, out previousState, out previousSize); error = Marshal.GetLastWin32Error(); if (success && error == ERROR_SUCCESS) { this.initialEnabled = (0 != (previousState.Privilege.Attributes & SE_PRIVILEGE_ENABLED)); this.needToRevert = true; } } if (error == ERROR_NOT_ALL_ASSIGNED) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new PrivilegeNotHeldException(this.privilege)); } else if (!success) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new Win32Exception(error)); } } void SetThreadToken(SafeCloseHandle threadToken) { DiagnosticUtility.DebugAssert(!this.isImpersonating, ""); int error = 0; // CER RuntimeHelpers.PrepareConstrainedRegions(); try { } finally { if (!NativeMethods.SetThreadToken(IntPtr.Zero, threadToken)) { error = Marshal.GetLastWin32Error(); } else { this.isImpersonating = true; } } if (!this.isImpersonating) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new Win32Exception(error)); } } static LUID LuidFromPrivilege(string privilege) { LUID luid; lock (luids) { if (luids.TryGetValue(privilege, out luid)) { return luid; } } if (!NativeMethods.LookupPrivilegeValueW(null, privilege, out luid)) { int error = Marshal.GetLastWin32Error(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new Win32Exception(error)); } lock (luids) { if (!luids.ContainsKey(privilege)) { luids[privilege] = luid; } } return luid; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AlternateView.cs
- TreeNodeBindingDepthConverter.cs
- Random.cs
- DisposableCollectionWrapper.cs
- Binding.cs
- EventLogTraceListener.cs
- FixedStringLookup.cs
- InitializerFacet.cs
- AttachedPropertyMethodSelector.cs
- Convert.cs
- CodeParameterDeclarationExpressionCollection.cs
- SmiEventSink.cs
- NegationPusher.cs
- URL.cs
- FormViewCommandEventArgs.cs
- TextLine.cs
- RuleRefElement.cs
- serverconfig.cs
- XmlSignatureManifest.cs
- DropShadowBitmapEffect.cs
- ContextStaticAttribute.cs
- ApplicationInfo.cs
- Int16Converter.cs
- XmlnsCache.cs
- ImageMetadata.cs
- DataGridViewRowPostPaintEventArgs.cs
- ClientConfigurationHost.cs
- AuthStoreRoleProvider.cs
- PathTooLongException.cs
- VisualSerializer.cs
- DesignerTransaction.cs
- Activity.cs
- HandleCollector.cs
- SQLCharsStorage.cs
- GridViewUpdatedEventArgs.cs
- XMLUtil.cs
- FileInfo.cs
- ThumbAutomationPeer.cs
- BoundPropertyEntry.cs
- ObjectStateManagerMetadata.cs
- ToolBarPanel.cs
- XsltArgumentList.cs
- OdbcConnection.cs
- SessionPageStatePersister.cs
- OperatorExpressions.cs
- CompiledQueryCacheEntry.cs
- Wildcard.cs
- ManualResetEvent.cs
- OdbcReferenceCollection.cs
- JsonDataContract.cs
- ValidatorCompatibilityHelper.cs
- BitmapScalingModeValidation.cs
- ToolStripMenuItem.cs
- EmptyCollection.cs
- OrElse.cs
- BindMarkupExtensionSerializer.cs
- NCryptNative.cs
- StrokeNodeData.cs
- XmlNodeChangedEventManager.cs
- PropertySourceInfo.cs
- PeerSecurityManager.cs
- ImageMap.cs
- OleDbConnection.cs
- RenderingEventArgs.cs
- AttachmentCollection.cs
- InlineObject.cs
- Timeline.cs
- ExpressionBinding.cs
- ComponentCollection.cs
- CharacterHit.cs
- TreeViewHitTestInfo.cs
- ParsedAttributeCollection.cs
- RefreshPropertiesAttribute.cs
- ComponentGuaranteesAttribute.cs
- PathSegmentCollection.cs
- TraceSection.cs
- StylusDownEventArgs.cs
- DetailsViewCommandEventArgs.cs
- DbMetaDataColumnNames.cs
- TemplatedAdorner.cs
- ObjectStateManager.cs
- StringConverter.cs
- TdsParserStateObject.cs
- XmlCompatibilityReader.cs
- WebPartZoneBase.cs
- ClientCultureInfo.cs
- ConsoleEntryPoint.cs
- ServicePointManagerElement.cs
- XamlFrame.cs
- RootBuilder.cs
- EncryptedPackage.cs
- CodeSnippetExpression.cs
- XmlUtil.cs
- LocalizedNameDescriptionPair.cs
- ManifestSignedXml.cs
- LineGeometry.cs
- TraceContextRecord.cs
- filewebresponse.cs
- DesignerActionPanel.cs
- SizeAnimation.cs