Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Security / SecurityContext.cs / 1 / SecurityContext.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // /*============================================================ ** ** Class: SecurityContext ** ** ** Purpose: Capture security context for a thread ** ** ===========================================================*/ namespace System.Security { using Microsoft.Win32; using Microsoft.Win32.SafeHandles; using System.Threading; using System.Runtime.Remoting; using System.Security.Principal; using System.Collections; using System.Runtime.Serialization; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; using System.Runtime.Versioning; internal enum SecurityContextDisableFlow { Nothing = 0, WI = 0x1, All = 0x3FFF } internal enum WindowsImpersonationFlowMode { IMP_FASTFLOW = 0, IMP_NOFLOW = 1, IMP_ALWAYSFLOW = 2, IMP_DEFAULT = IMP_FASTFLOW } internal struct SecurityContextSwitcher: IDisposable { internal SecurityContext prevSC; // prev SC that we restore on an Undo internal SecurityContext currSC; //current SC - SetSecurityContext that created the switcher set this on the Thread internal ExecutionContext currEC; // current ExecutionContext on Thread internal CompressedStackSwitcher cssw; #if !FEATURE_PAL internal WindowsImpersonationContext wic; #endif public override bool Equals(Object obj) { if (obj == null || !(obj is SecurityContextSwitcher)) return false; SecurityContextSwitcher sw = (SecurityContextSwitcher)obj; #if !FEATURE_PAL return (this.prevSC == sw.prevSC && this.currSC == sw.currSC && this.currEC == sw.currEC && this.cssw == sw.cssw && this.wic == sw.wic); #else return (this.prevSC == sw.prevSC && this.currSC == sw.currSC && this.currEC == sw.currEC && this.cssw == sw.cssw); #endif } public override int GetHashCode() { return ToString().GetHashCode(); } public static bool operator ==(SecurityContextSwitcher c1, SecurityContextSwitcher c2) { return c1.Equals(c2); } public static bool operator !=(SecurityContextSwitcher c1, SecurityContextSwitcher c2) { return !c1.Equals(c2); } ///void IDisposable.Dispose() { Undo(); } [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] internal bool UndoNoThrow() { try { Undo(); } catch { return false; } return true; } [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] public void Undo() { if (currEC == null) { return; // mutiple Undo()s called on this switcher object } if (currEC != Thread.CurrentThread.GetExecutionContextNoCreate()) System.Environment.FailFast(Environment.GetResourceString("InvalidOperation_SwitcherCtxMismatch")); BCLDebug.Assert(currEC != null, " ExecutionContext can't be null"); BCLDebug.Assert(currSC != null, " SecurityContext can't be null"); if ( currSC != currEC.SecurityContext) { System.Environment.FailFast(Environment.GetResourceString("InvalidOperation_SwitcherCtxMismatch")); } // restore the saved security context currEC.SecurityContext = prevSC; currEC = null; // this will prevent the switcher object being used again bool bNoException = true; #if !FEATURE_PAL try { if (wic != null) bNoException &= wic.UndoNoThrow(); } catch { // Failfast since we can't continue safely... bNoException &= cssw.UndoNoThrow(); System.Environment.FailFast(Environment.GetResourceString("ExecutionContext_UndoFailed")); } #endif bNoException &= cssw.UndoNoThrow(); if (!bNoException) { // Failfast since we can't continue safely... System.Environment.FailFast(Environment.GetResourceString("ExecutionContext_UndoFailed")); } } } public sealed class SecurityContext { // Note that only one of the following variables will be true. The way we set up the flow mode in the g_pConfig guarantees this. static bool _LegacyImpersonationPolicy = (GetImpersonationFlowMode() == WindowsImpersonationFlowMode.IMP_NOFLOW); static bool _alwaysFlowImpersonationPolicy = (GetImpersonationFlowMode() == WindowsImpersonationFlowMode.IMP_ALWAYSFLOW); /*========================================================================= ** Data accessed from managed code that needs to be defined in ** SecurityContextObject to maintain alignment between the two classes. ** DON'T CHANGE THESE UNLESS YOU MODIFY SecurityContextObject in vm\object.h =========================================================================*/ private ExecutionContext _executionContext; #if !FEATURE_PAL private WindowsIdentity _windowsIdentity; #endif private CompressedStack _compressedStack; static private SecurityContext _fullTrustSC; internal bool isNewCapture = false; internal SecurityContextDisableFlow _disableFlow = SecurityContextDisableFlow.Nothing; [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] internal SecurityContext() { } static internal SecurityContext FullTrustSecurityContext { get { if (_fullTrustSC == null) _fullTrustSC = CreateFullTrustSecurityContext(); return _fullTrustSC; } } // link the security context to an ExecutionContext internal ExecutionContext ExecutionContext { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] set { _executionContext = value; } } #if !FEATURE_PAL internal WindowsIdentity WindowsIdentity { get { return _windowsIdentity; } set { _windowsIdentity = value; } } #endif // !FEATURE_PAL internal CompressedStack CompressedStack { get { return _compressedStack; } [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] set { _compressedStack = value; } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.Infrastructure)] public static AsyncFlowControl SuppressFlow() { return SuppressFlow(SecurityContextDisableFlow.All); } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.Infrastructure)] public static AsyncFlowControl SuppressFlowWindowsIdentity() { return SuppressFlow(SecurityContextDisableFlow.WI); } internal static AsyncFlowControl SuppressFlow(SecurityContextDisableFlow flags) { if (IsFlowSuppressed(flags)) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_CannotSupressFlowMultipleTimes")); } if (Thread.CurrentThread.ExecutionContext.SecurityContext == null) Thread.CurrentThread.ExecutionContext.SecurityContext = new SecurityContext(); AsyncFlowControl afc = new AsyncFlowControl(); afc.Setup(flags); return afc; } public static void RestoreFlow() { SecurityContext sc = GetCurrentSecurityContextNoCreate(); if (sc == null || sc._disableFlow == SecurityContextDisableFlow.Nothing) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_CannotRestoreUnsupressedFlow")); } sc._disableFlow = SecurityContextDisableFlow.Nothing; } public static bool IsFlowSuppressed() { return SecurityContext.IsFlowSuppressed(SecurityContextDisableFlow.All); } public static bool IsWindowsIdentityFlowSuppressed() { return (_LegacyImpersonationPolicy|| SecurityContext.IsFlowSuppressed(SecurityContextDisableFlow.WI)); } internal static bool IsFlowSuppressed(SecurityContextDisableFlow flags) { SecurityContext sc = GetCurrentSecurityContextNoCreate(); return (sc == null) ? false : ((sc._disableFlow & flags) == flags); } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.Infrastructure), DynamicSecurityMethodAttribute()] public static void Run(SecurityContext securityContext, ContextCallback callback, Object state) { if (securityContext == null ) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_NullContext")); } if (!securityContext.isNewCapture) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_NotNewCaptureContext")); } securityContext.isNewCapture = false; ExecutionContext ec = Thread.CurrentThread.GetExecutionContextNoCreate(); if ( SecurityContext.CurrentlyInDefaultFTSecurityContext(ec) && securityContext.IsDefaultFTSecurityContext()) { callback(state); } else { RunInternal(securityContext, callback, state); } } internal static void RunInternal(SecurityContext securityContext, ContextCallback callBack, Object state) { if (cleanupCode == null) { tryCode = new RuntimeHelpers.TryCode(runTryCode); cleanupCode = new RuntimeHelpers.CleanupCode(runFinallyCode); } SecurityContextRunData runData = new SecurityContextRunData(securityContext, callBack, state); RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(tryCode, cleanupCode, runData); } internal class SecurityContextRunData { internal SecurityContext sc; internal ContextCallback callBack; internal Object state; internal SecurityContextSwitcher scsw; internal SecurityContextRunData(SecurityContext securityContext, ContextCallback cb, Object state) { this.sc = securityContext; this.callBack = cb; this.state = state; this.scsw = new SecurityContextSwitcher(); } } [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] static internal void runTryCode(Object userData) { SecurityContextRunData rData = (SecurityContextRunData) userData; rData.scsw = SetSecurityContext(rData.sc, Thread.CurrentThread.ExecutionContext.SecurityContext); rData.callBack(rData.state); } [PrePrepareMethod] static internal void runFinallyCode(Object userData, bool exceptionThrown) { SecurityContextRunData rData = (SecurityContextRunData) userData; rData.scsw.Undo(); } static internal RuntimeHelpers.TryCode tryCode; static internal RuntimeHelpers.CleanupCode cleanupCode; // Internal API that gets called from public SetSecurityContext and from SetExecutionContext [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] [DynamicSecurityMethodAttribute()] internal static SecurityContextSwitcher SetSecurityContext(SecurityContext sc, SecurityContext prevSecurityContext) { StackCrawlMark stackMark = StackCrawlMark.LookForMyCaller; return SetSecurityContext(sc, prevSecurityContext, ref stackMark); } internal static SecurityContextSwitcher SetSecurityContext(SecurityContext sc, SecurityContext prevSecurityContext, ref StackCrawlMark stackMark) { // Save the flow state at capture and reset it in the SC. SecurityContextDisableFlow _capturedFlowState = sc._disableFlow; sc._disableFlow = SecurityContextDisableFlow.Nothing; //Set up the switcher object SecurityContextSwitcher scsw = new SecurityContextSwitcher(); scsw.currSC = sc; // save the current Execution Context ExecutionContext currEC = Thread.CurrentThread.ExecutionContext; scsw.currEC = currEC; // save the prev security context scsw.prevSC = prevSecurityContext; // update the current security context to the new security context currEC.SecurityContext = sc; if (sc != null) { RuntimeHelpers.PrepareConstrainedRegions(); try { #if !FEATURE_PAL scsw.wic = null; if (!_LegacyImpersonationPolicy) { if (sc.WindowsIdentity != null) { scsw.wic = sc.WindowsIdentity.Impersonate(ref stackMark); } else if ( ((_capturedFlowState & SecurityContextDisableFlow.WI) == 0) && prevSecurityContext != null && prevSecurityContext.WindowsIdentity != null) { // revert impersonation if there was no WI flow supression at capture and we're currently impersonating scsw.wic = WindowsIdentity.SafeImpersonate(SafeTokenHandle.InvalidHandle,null, ref stackMark); } } #endif scsw.cssw = CompressedStack.SetCompressedStack(sc.CompressedStack, (prevSecurityContext!=null?prevSecurityContext.CompressedStack:null)); } catch { scsw.UndoNoThrow(); throw; } } return scsw; } /// public SecurityContext CreateCopy() { if (!isNewCapture) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_NotNewCaptureContext")); } SecurityContext sc = new SecurityContext(); sc.isNewCapture = true; sc._disableFlow = _disableFlow; #if !FEATURE_PAL sc._windowsIdentity = WindowsIdentity; #endif //!FEATURE_PAL if (_compressedStack != null) sc._compressedStack = _compressedStack.CreateCopy(); return sc; } public static SecurityContext Capture( ) { // check to see if Flow is suppressed or Security is off if (IsFlowSuppressed() || !SecurityManager._IsSecurityOn()) return null; StackCrawlMark stackMark= StackCrawlMark.LookForMyCaller; SecurityContext sc = SecurityContext.Capture(Thread.CurrentThread.GetExecutionContextNoCreate(), ref stackMark); if (sc == null) sc = CreateFullTrustSecurityContext(); return sc; } // create a clone from a non-existing SecurityContext static internal SecurityContext Capture(ExecutionContext currThreadEC, ref StackCrawlMark stackMark) { // check to see if Flow is suppressed or Security is off if (IsFlowSuppressed() || !SecurityManager._IsSecurityOn()) return null; // If we're in FT right now, return null if (CurrentlyInDefaultFTSecurityContext(currThreadEC)) return null; SecurityContext sc = new SecurityContext(); sc.isNewCapture = true; #if !FEATURE_PAL // Force create WindowsIdentity if (!IsWindowsIdentityFlowSuppressed()) { sc._windowsIdentity = GetCurrentWI(currThreadEC); } else { sc._disableFlow = SecurityContextDisableFlow.WI; } #endif // !FEATURE_PAL // Force create CompressedStack sc.CompressedStack = CompressedStack.GetCompressedStack(ref stackMark); return sc; } static internal SecurityContext CreateFullTrustSecurityContext() { SecurityContext sc = new SecurityContext(); sc.isNewCapture = true; #if !FEATURE_PAL if (IsWindowsIdentityFlowSuppressed()) { sc._disableFlow = SecurityContextDisableFlow.WI; } #endif // !FEATURE_PAL // Force create CompressedStack sc.CompressedStack = new CompressedStack(null); return sc; } // Check to see if we have a security context and return if we do static internal SecurityContext GetCurrentSecurityContextNoCreate() { ExecutionContext ec = Thread.CurrentThread.GetExecutionContextNoCreate(); return (ec == null) ? null : ec.SecurityContext; } #if !FEATURE_PAL // Check to see if we have a WI on the thread and return if we do static internal WindowsIdentity GetCurrentWI(ExecutionContext threadEC) { if (_alwaysFlowImpersonationPolicy) { // Examine the threadtoken at the cost of a kernel call if the user has set the IMP_ALWAYSFLOW mode return WindowsIdentity.GetCurrentInternal(TokenAccessLevels.MaximumAllowed, true); } SecurityContext sc = (threadEC == null) ? null : threadEC.SecurityContext; return (sc == null) ? null : sc.WindowsIdentity; } internal bool IsDefaultFTSecurityContext() { return (WindowsIdentity == null && (CompressedStack == null || CompressedStack.CompressedStackHandle == null)); } static internal bool CurrentlyInDefaultFTSecurityContext(ExecutionContext threadEC) { return (IsDefaultThreadSecurityInfo() && GetCurrentWI(threadEC) == null); } #else internal bool IsDefaultFTSecurityContext() { return (CompressedStack == null || CompressedStack.CompressedStackHandle == null); } static internal bool CurrentlyInDefaultFTSecurityContext(ExecutionContext threadEC) { return (IsDefaultThreadSecurityInfo()); } #endif [MethodImplAttribute(MethodImplOptions.InternalCall), ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] internal extern static WindowsImpersonationFlowMode GetImpersonationFlowMode(); [MethodImplAttribute(MethodImplOptions.InternalCall), ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] internal extern static bool IsDefaultThreadSecurityInfo(); } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GetPageNumberCompletedEventArgs.cs
- BitSet.cs
- SHA1CryptoServiceProvider.cs
- SingleSelectRootGridEntry.cs
- VBIdentifierNameEditor.cs
- PointLightBase.cs
- Completion.cs
- TableStyle.cs
- mansign.cs
- WSFederationHttpBindingElement.cs
- PhysicalOps.cs
- ErrorWrapper.cs
- DataGridViewComboBoxColumnDesigner.cs
- PointUtil.cs
- AffineTransform3D.cs
- MessageSecurityOverHttpElement.cs
- ParentUndoUnit.cs
- OdbcParameter.cs
- AdCreatedEventArgs.cs
- WebRequest.cs
- XmlBinaryReader.cs
- PolyQuadraticBezierSegment.cs
- SingleSelectRootGridEntry.cs
- WebPartConnectionsDisconnectVerb.cs
- RectangleHotSpot.cs
- HttpListener.cs
- RtfControls.cs
- Transform3DGroup.cs
- CipherData.cs
- UnsupportedPolicyOptionsException.cs
- TableRowCollection.cs
- MimeFormImporter.cs
- VerificationAttribute.cs
- DesignerForm.cs
- BooleanFunctions.cs
- ColorAnimationUsingKeyFrames.cs
- IgnoreFileBuildProvider.cs
- Crc32.cs
- ItemContainerPattern.cs
- Brush.cs
- StartUpEventArgs.cs
- UriTemplateLiteralPathSegment.cs
- Rules.cs
- EntityDataSourceSelectedEventArgs.cs
- HttpWriter.cs
- XmlFormatMapping.cs
- InputMethod.cs
- DBSqlParser.cs
- ComponentFactoryHelpers.cs
- SecurityException.cs
- Vars.cs
- embossbitmapeffect.cs
- BaseTemplatedMobileComponentEditor.cs
- wmiutil.cs
- MembershipPasswordException.cs
- MobileControlsSectionHandler.cs
- CodeSpit.cs
- ScrollEventArgs.cs
- NavigationWindowAutomationPeer.cs
- CqlParserHelpers.cs
- ExtendedProtectionPolicy.cs
- XamlVector3DCollectionSerializer.cs
- userdatakeys.cs
- DesignTimeVisibleAttribute.cs
- PropertyChangeTracker.cs
- DataGridViewRowCancelEventArgs.cs
- PermissionAttributes.cs
- ParallelTimeline.cs
- _SafeNetHandles.cs
- ComponentRenameEvent.cs
- DescendentsWalkerBase.cs
- SignatureGenerator.cs
- IpcManager.cs
- AttachmentCollection.cs
- ElapsedEventArgs.cs
- StatusBarPanel.cs
- LineProperties.cs
- KeyNotFoundException.cs
- WindowsFormsSynchronizationContext.cs
- BaseDataBoundControl.cs
- DataGridAutomationPeer.cs
- Filter.cs
- GenericsNotImplementedException.cs
- IgnoreSectionHandler.cs
- OciLobLocator.cs
- StringUtil.cs
- VirtualizingStackPanel.cs
- StorageEntityContainerMapping.cs
- WinEventWrap.cs
- UmAlQuraCalendar.cs
- MatrixValueSerializer.cs
- MetadataUtil.cs
- FixedPage.cs
- SecurityResources.cs
- StrongNameIdentityPermission.cs
- GenericIdentity.cs
- NullableConverter.cs
- TextBoxDesigner.cs
- LazyTextWriterCreator.cs
- CommandManager.cs