Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Security / WindowsAuthenticationModule.cs / 3 / WindowsAuthenticationModule.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* WindowsAuthenticationModule class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.Security {
using System.Web;
using System.Web.Configuration;
using System.Security.Principal;
using System.Security.Permissions;
using System.Globalization;
using System.Web.Management;
using System.Web.Util;
using System.Web.Hosting;
///
///
/// Allows ASP.NET applications to use Windows/IIS authentication.
///
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class WindowsAuthenticationModule : IHttpModule {
private WindowsAuthenticationEventHandler _eventHandler;
private static bool _fAuthChecked;
private static bool _fAuthRequired;
private static WindowsIdentity _anonymousIdentity;
private static WindowsPrincipal _anonymousPrincipal;
///
///
/// Initializes a new instance of the
/// class.
///
///
[SecurityPermission(SecurityAction.Demand, Unrestricted=true)]
public WindowsAuthenticationModule() {
}
///
/// This is a global.asax event that must be
/// named WindowsAuthenticate_OnAuthenticate event. It's used primarily to attach a
/// custom IPrincipal object to the context.
///
public event WindowsAuthenticationEventHandler Authenticate {
add {
_eventHandler += value;
}
remove {
_eventHandler -= value;
}
}
///
/// [To be supplied.]
///
public void Dispose() {
}
///
/// [To be supplied.]
///
public void Init(HttpApplication app) {
app.AuthenticateRequest += new EventHandler(this.OnEnter);
}
////////////////////////////////////////////////////////////
// OnAuthenticate: Custom Authentication modules can override
// this method to create a custom IPrincipal object from
// a WindowsIdentity
///
/// Calls the
/// WindowsAuthentication_OnAuthenticate handler if one exists.
///
void OnAuthenticate(WindowsAuthenticationEventArgs e) {
////////////////////////////////////////////////////////////
// If there are event handlers, invoke the handlers
if (_eventHandler != null)
_eventHandler(this, e);
if (e.Context.User == null)
{
if (e.User != null)
e.Context.User = e.User;
else if (e.Identity == _anonymousIdentity)
e.Context.SetPrincipalNoDemand(_anonymousPrincipal, false /*needToSetNativePrincipal*/);
else
e.Context.SetPrincipalNoDemand(new WindowsPrincipal(e.Identity), false /*needToSetNativePrincipal*/);
}
}
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
// Methods for internal implementation
///
///
///
void OnEnter(Object source, EventArgs eventArgs) {
if (!IsEnabled)
return;
HttpApplication app = (HttpApplication)source;
HttpContext context = app.Context;;
WindowsIdentity identity = null;
//////////////////////////////////////////////////////////////////
// Step 2: Create a Windows Identity from the credentials from IIS
if (HttpRuntime.UseIntegratedPipeline) {
// The native WindowsAuthenticationModule sets the user principal in IIS7WorkerRequest.SynchronizeVariables.
// The managed WindowsAuthenticationModule provides backward compatibility by rasing the OnAuthenticate event.
WindowsPrincipal user = context.User as WindowsPrincipal;
if (user != null) {
// identity will be null if this is not a WindowsIdentity
identity = user.Identity as WindowsIdentity;
// clear Context.User for backward compatibility (it will be set in OnAuthenticate)
context.SetPrincipalNoDemand(null, false /*needToSetNativePrincipal*/);
}
}
else {
String strLogonUser = context.WorkerRequest.GetServerVariable("LOGON_USER");
String strAuthType = context.WorkerRequest.GetServerVariable("AUTH_TYPE");
if (strLogonUser == null) {
strLogonUser = String.Empty;
}
if (strAuthType == null) {
strAuthType = String.Empty;
}
if (strLogonUser.Length == 0 && (strAuthType.Length == 0 ||
StringUtil.EqualsIgnoreCase(strAuthType, "basic")))
{
////////////////////////////////////////////////////////
// Step 2a: Use the anonymous identity
identity = _anonymousIdentity;
}
else
{
identity = new WindowsIdentity(
context.WorkerRequest.GetUserToken(),
strAuthType,
WindowsAccountType.Normal,
true);
}
}
///////////////////////////////////////////////////////////////////////////////////
// Step 3: Call OnAuthenticate to create IPrincipal for this request.
if (identity != null) {
OnAuthenticate( new WindowsAuthenticationEventArgs(identity, context) );
}
}
internal static IPrincipal AnonymousPrincipal { get { return _anonymousPrincipal; } }
internal static bool IsEnabled {
get {
if (!_fAuthChecked) {
AuthenticationSection settings = RuntimeConfig.GetAppConfig().Authentication;
settings.ValidateAuthenticationMode();
_fAuthRequired = (settings.Mode == AuthenticationMode.Windows);
if (_fAuthRequired) {
_anonymousIdentity = WindowsIdentity.GetAnonymous();
_anonymousPrincipal = new WindowsPrincipal(_anonymousIdentity);
}
_fAuthChecked = true;
}
return _fAuthRequired;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* WindowsAuthenticationModule class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.Security {
using System.Web;
using System.Web.Configuration;
using System.Security.Principal;
using System.Security.Permissions;
using System.Globalization;
using System.Web.Management;
using System.Web.Util;
using System.Web.Hosting;
///
///
/// Allows ASP.NET applications to use Windows/IIS authentication.
///
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class WindowsAuthenticationModule : IHttpModule {
private WindowsAuthenticationEventHandler _eventHandler;
private static bool _fAuthChecked;
private static bool _fAuthRequired;
private static WindowsIdentity _anonymousIdentity;
private static WindowsPrincipal _anonymousPrincipal;
///
///
/// Initializes a new instance of the
/// class.
///
///
[SecurityPermission(SecurityAction.Demand, Unrestricted=true)]
public WindowsAuthenticationModule() {
}
///
/// This is a global.asax event that must be
/// named WindowsAuthenticate_OnAuthenticate event. It's used primarily to attach a
/// custom IPrincipal object to the context.
///
public event WindowsAuthenticationEventHandler Authenticate {
add {
_eventHandler += value;
}
remove {
_eventHandler -= value;
}
}
///
/// [To be supplied.]
///
public void Dispose() {
}
///
/// [To be supplied.]
///
public void Init(HttpApplication app) {
app.AuthenticateRequest += new EventHandler(this.OnEnter);
}
////////////////////////////////////////////////////////////
// OnAuthenticate: Custom Authentication modules can override
// this method to create a custom IPrincipal object from
// a WindowsIdentity
///
/// Calls the
/// WindowsAuthentication_OnAuthenticate handler if one exists.
///
void OnAuthenticate(WindowsAuthenticationEventArgs e) {
////////////////////////////////////////////////////////////
// If there are event handlers, invoke the handlers
if (_eventHandler != null)
_eventHandler(this, e);
if (e.Context.User == null)
{
if (e.User != null)
e.Context.User = e.User;
else if (e.Identity == _anonymousIdentity)
e.Context.SetPrincipalNoDemand(_anonymousPrincipal, false /*needToSetNativePrincipal*/);
else
e.Context.SetPrincipalNoDemand(new WindowsPrincipal(e.Identity), false /*needToSetNativePrincipal*/);
}
}
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
// Methods for internal implementation
///
///
///
void OnEnter(Object source, EventArgs eventArgs) {
if (!IsEnabled)
return;
HttpApplication app = (HttpApplication)source;
HttpContext context = app.Context;;
WindowsIdentity identity = null;
//////////////////////////////////////////////////////////////////
// Step 2: Create a Windows Identity from the credentials from IIS
if (HttpRuntime.UseIntegratedPipeline) {
// The native WindowsAuthenticationModule sets the user principal in IIS7WorkerRequest.SynchronizeVariables.
// The managed WindowsAuthenticationModule provides backward compatibility by rasing the OnAuthenticate event.
WindowsPrincipal user = context.User as WindowsPrincipal;
if (user != null) {
// identity will be null if this is not a WindowsIdentity
identity = user.Identity as WindowsIdentity;
// clear Context.User for backward compatibility (it will be set in OnAuthenticate)
context.SetPrincipalNoDemand(null, false /*needToSetNativePrincipal*/);
}
}
else {
String strLogonUser = context.WorkerRequest.GetServerVariable("LOGON_USER");
String strAuthType = context.WorkerRequest.GetServerVariable("AUTH_TYPE");
if (strLogonUser == null) {
strLogonUser = String.Empty;
}
if (strAuthType == null) {
strAuthType = String.Empty;
}
if (strLogonUser.Length == 0 && (strAuthType.Length == 0 ||
StringUtil.EqualsIgnoreCase(strAuthType, "basic")))
{
////////////////////////////////////////////////////////
// Step 2a: Use the anonymous identity
identity = _anonymousIdentity;
}
else
{
identity = new WindowsIdentity(
context.WorkerRequest.GetUserToken(),
strAuthType,
WindowsAccountType.Normal,
true);
}
}
///////////////////////////////////////////////////////////////////////////////////
// Step 3: Call OnAuthenticate to create IPrincipal for this request.
if (identity != null) {
OnAuthenticate( new WindowsAuthenticationEventArgs(identity, context) );
}
}
internal static IPrincipal AnonymousPrincipal { get { return _anonymousPrincipal; } }
internal static bool IsEnabled {
get {
if (!_fAuthChecked) {
AuthenticationSection settings = RuntimeConfig.GetAppConfig().Authentication;
settings.ValidateAuthenticationMode();
_fAuthRequired = (settings.Mode == AuthenticationMode.Windows);
if (_fAuthRequired) {
_anonymousIdentity = WindowsIdentity.GetAnonymous();
_anonymousPrincipal = new WindowsPrincipal(_anonymousIdentity);
}
_fAuthChecked = true;
}
return _fAuthRequired;
}
}
}
}
// 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
- ResourceDictionary.cs
- CachedPathData.cs
- CompModSwitches.cs
- MultipleViewProviderWrapper.cs
- TreeNodeStyle.cs
- MergeExecutor.cs
- ResourcePart.cs
- AssemblyUtil.cs
- securitycriticaldataformultiplegetandset.cs
- DelegatingTypeDescriptionProvider.cs
- BinaryObjectReader.cs
- FlowDocumentPaginator.cs
- ZipIOExtraField.cs
- RuntimeHandles.cs
- DesignerSelectionListAdapter.cs
- Stack.cs
- TracedNativeMethods.cs
- DataBoundControl.cs
- String.cs
- UnionExpr.cs
- UnsupportedPolicyOptionsException.cs
- DeclarativeCatalogPart.cs
- ServiceModelExtensionElement.cs
- ThicknessAnimationUsingKeyFrames.cs
- LineSegment.cs
- RootBuilder.cs
- CommonProperties.cs
- PropertiesTab.cs
- FilterElement.cs
- MobileRedirect.cs
- ControlValuePropertyAttribute.cs
- StoragePropertyMapping.cs
- SizeKeyFrameCollection.cs
- WebPartConnectionsCancelVerb.cs
- InternalsVisibleToAttribute.cs
- TimeoutConverter.cs
- CompiledRegexRunnerFactory.cs
- XPathAncestorIterator.cs
- LazyTextWriterCreator.cs
- MemberHolder.cs
- Clock.cs
- UnionCodeGroup.cs
- StringAttributeCollection.cs
- RegexInterpreter.cs
- PrivilegedConfigurationManager.cs
- DataGridAutoFormat.cs
- TreeNodeCollection.cs
- PropertyInformation.cs
- ConvertEvent.cs
- PointAnimationUsingPath.cs
- BinaryReader.cs
- GPPOINTF.cs
- PropertyEntry.cs
- MembershipUser.cs
- MouseActionValueSerializer.cs
- PipelineModuleStepContainer.cs
- WebResponse.cs
- smtpconnection.cs
- AppDomainProtocolHandler.cs
- View.cs
- DefaultValueConverter.cs
- XhtmlTextWriter.cs
- XmlSchemaComplexType.cs
- BinaryConverter.cs
- FixedMaxHeap.cs
- UIElement3D.cs
- DataGridClipboardCellContent.cs
- BigInt.cs
- UriTemplateHelpers.cs
- Subtree.cs
- LogicalExpr.cs
- util.cs
- ExpressionHelper.cs
- EntityAdapter.cs
- TerminateDesigner.cs
- FrameSecurityDescriptor.cs
- ConstructorExpr.cs
- MyContact.cs
- ComponentChangedEvent.cs
- WebSysDescriptionAttribute.cs
- EntityAdapter.cs
- ListView.cs
- OracleParameter.cs
- DataContractSerializerSection.cs
- MemoryMappedFileSecurity.cs
- FlowNode.cs
- ChangeProcessor.cs
- DynamicObjectAccessor.cs
- InfoCardAsymmetricCrypto.cs
- BamlLocalizationDictionary.cs
- WindowProviderWrapper.cs
- DrawListViewItemEventArgs.cs
- ObjectDataSource.cs
- SplineQuaternionKeyFrame.cs
- UnsafeNativeMethods.cs
- WSSecurityOneDotZeroReceiveSecurityHeader.cs
- Pair.cs
- TextElementAutomationPeer.cs
- WebControl.cs
- SafeArrayTypeMismatchException.cs