FileAuthorizationModule.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Security / FileAuthorizationModule.cs / 4 / FileAuthorizationModule.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 * FileAclAuthorizationModule class 
 *
 * Copyright (c) 1999 Microsoft Corporation 
 */

namespace System.Web.Security {
    using System.Runtime.Serialization; 
    using System.IO;
    using System.Web; 
    using System.Web.Caching; 
    using System.Web.Util;
    using System.Web.Configuration; 
    using System.Collections;
    using System.Collections.Specialized;
    using System.Security.Principal;
    using System.Globalization; 
    using System.Security.Permissions;
    using System.Runtime.InteropServices; 
    using System.Web.Management; 
    using System.Web.Hosting;
    using System.Collections.Generic; 



    ///  
    ///    
    ///       Verifies that the remote user has NT permissions to access the 
    ///       file requested. 
    ///    
    ///  
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class FileAuthorizationModule : IHttpModule {

 
        /// 
        ///     
        ///       Initializes a new instance of the  
        ///       class.
        ///      
        /// 
        [SecurityPermission(SecurityAction.Demand, UnmanagedCode=true)]
        public FileAuthorizationModule() {
        } 

        private static bool s_EnabledDetermined; 
        private static bool s_Enabled; 

        [SecurityPermission(SecurityAction.Demand, UnmanagedCode = true)] 
        public static bool CheckFileAccessForUser(String virtualPath, IntPtr token, string verb) {
            if (virtualPath == null)
                throw new ArgumentNullException("virtualPath");
            if (token == IntPtr.Zero) 
                throw new ArgumentNullException("token");
            if (verb == null) 
                throw new ArgumentNullException("verb"); 
            VirtualPath vPath = VirtualPath.Create(virtualPath);
 
            if (!vPath.IsWithinAppRoot)
                throw new ArgumentException(SR.GetString(SR.Virtual_path_outside_application_not_supported), "virtualPath");

            if (!s_EnabledDetermined) { 
                if (HttpRuntime.UseIntegratedPipeline) {
                    s_Enabled = true; // always enabled in Integrated Mode 
                } 
                else {
                    HttpModulesSection modulesSection = RuntimeConfig.GetConfig().HttpModules; 
                    int len = modulesSection.Modules.Count;
                    for (int iter = 0; iter < len; iter++) {
                        HttpModuleAction module = modulesSection.Modules[iter];
                        if (Type.GetType(module.Type, false) == typeof(FileAuthorizationModule)) { 
                            s_Enabled = true;
                            break; 
                        } 
                    }
                } 
                s_EnabledDetermined = true;
            }
            if (!s_Enabled)
                return true; 
            ////////////////////////////////////////////////////////////
            // Step 3: Check the cache for the file-security-descriptor 
            //        for the requested file 
            bool freeDescriptor;
            FileSecurityDescriptorWrapper oSecDesc = GetFileSecurityDescriptorWrapper(vPath.MapPath(), out freeDescriptor); 

            ////////////////////////////////////////////////////////////
            // Step 4: Check if access is allowed
            int iAccess = 3; 
            if (verb == "GET" || verb == "POST" || verb == "HEAD" || verb == "OPTIONS")
                iAccess = 1; 
            bool fAllowed = oSecDesc.IsAccessAllowed(token, iAccess); 

            //////////////////////////////////////////////////////////// 
            // Step 5: Free the security descriptor if adding to cache failed
            if (freeDescriptor)
                oSecDesc.FreeSecurityDescriptor();
            return fAllowed; 
        }
 
 

        ///  
        ///    [To be supplied.]
        /// 
        public void Init(HttpApplication app) {
            app.AuthorizeRequest += new EventHandler(this.OnEnter); 
        }
 
 
        /// 
        ///    [To be supplied.] 
        /// 
        public void Dispose() {
        }
 
        void OnEnter(Object source, EventArgs eventArgs) {
            if (HttpRuntime.IsOnUNCShareInternal) 
                return; // don't check on UNC shares -- the user token is bogus anyway 
            HttpApplication app;
            HttpContext context; 

            app = (HttpApplication)source;
            context = app.Context;
 
            if (!IsUserAllowedToFile(context, null)) {
                context.Response.StatusCode = 401; 
                WriteErrorMessage(context); 
                app.CompleteRequest();
            } 
        }

        internal static bool IsWindowsIdentity(HttpContext context) {
            return context.User != null && 
                 context.User.Identity != null &&
                 context.User.Identity is WindowsIdentity; 
        } 

        internal static bool IsUserAllowedToFile(HttpContext context, string fileName) { 
            ////////////////////////////////////////////////////////////
            // Step 1: Check if this is WindowsLogin
            // It's not a windows authenticated user: allow access
            if (!IsWindowsIdentity(context)) { 
                return true;
            } 
 
            if (fileName == null) {
                fileName = context.Request.PhysicalPathInternal; 
            }

            int iAccess = 3;
            if (context.Request.HttpVerb    == HttpVerb.HEAD    || 
                context.Request.HttpVerb    == HttpVerb.GET     ||
                context.Request.HttpVerb    == HttpVerb.POST    || 
                context.Request.HttpMethod  == "OPTIONS"        ) 
            {
                iAccess = 1; 
            }

            ////////////////////////////////////////////////////////////
            // Step 3: Check the cache for the file-security-descriptor 
            //        for the requested file
            bool freeDescriptor; 
            FileSecurityDescriptorWrapper oSecDesc = GetFileSecurityDescriptorWrapper(fileName, out freeDescriptor); 

            //////////////////////////////////////////////////////////// 
            // Step 4: Check if access is allowed
            bool fAllowed;

            if (oSecDesc._AnonymousAccessChecked && (context.User == null || !context.User.Identity.IsAuthenticated)) 
                fAllowed = oSecDesc._AnonymousAccess;
            else 
                fAllowed = oSecDesc.IsAccessAllowed(context.WorkerRequest.GetUserToken(), iAccess); 

            if (!oSecDesc._AnonymousAccessChecked && (context.User == null || !context.User.Identity.IsAuthenticated)) { 
                oSecDesc._AnonymousAccess = fAllowed;
                oSecDesc._AnonymousAccessChecked = true;
            }
 
            ////////////////////////////////////////////////////////////
            // Step 5: Free the security descriptor if adding to cache failed 
            if (freeDescriptor) 
                oSecDesc.FreeSecurityDescriptor();
 
            if (fAllowed) {
                WebBaseEvent.RaiseSystemEvent(null, WebEventCodes.AuditFileAuthorizationSuccess);
            }
            else { 
                if (context.User != null && context.User.Identity.IsAuthenticated)
                    WebBaseEvent.RaiseSystemEvent(null, WebEventCodes.AuditFileAuthorizationFailure); 
            } 

            return fAllowed; 
        }
        internal static FileSecurityDescriptorWrapper GetFileSecurityDescriptorWrapper(string fileName, out bool freeDescriptor) {

            freeDescriptor = false; 

            string                          oCacheKey   = CacheInternal.PrefixFileSecurity + fileName; 
            FileSecurityDescriptorWrapper   oSecDesc    = HttpRuntime.CacheInternal.Get(oCacheKey) as FileSecurityDescriptorWrapper; 

            // If it's not present in the cache, then create it and add to the cache 
            if (oSecDesc == null) {
                oSecDesc = new FileSecurityDescriptorWrapper(fileName);
                if (oSecDesc.IsSecurityDescriptorValid()) {
                    // Add it to the cache: ignore failures, since a different thread may have added it or the file doesn't exist 
                    try {
                        CacheDependency dependency = new CacheDependency(0, fileName); 
                        HttpRuntime.CacheInternal.UtcInsert(oCacheKey, oSecDesc, dependency, Cache.NoAbsoluteExpiration, Cache.NoSlidingExpiration, 
                                                            CacheItemPriority.Default, new CacheItemRemovedCallback(oSecDesc.OnCacheItemRemoved));
                    } catch { 
                        freeDescriptor = true;
                    }
                }
            } 
            return oSecDesc;
        } 
 

        private void WriteErrorMessage(HttpContext context) { 
            if (!context.IsCustomErrorEnabled) {
                context.Response.Write((new FileAccessFailedErrorFormatter(context.Request.PhysicalPathInternal)).GetErrorMessage(context, false));
            } else {
                context.Response.Write((new FileAccessFailedErrorFormatter(null)).GetErrorMessage(context, true)); 
            }
            // In Integrated pipeline, ask for handler headers to be generated.  This would be unnecessary 
            // if we just threw an access denied exception, and used the standard error mechanism 
            context.Response.GenerateResponseHeadersForHandler();
        } 


        static internal bool RequestRequiresAuthorization(HttpContext context) {
 
            Object                        sec;
            FileSecurityDescriptorWrapper oSecDesc; 
            string                        oCacheKey; 

            if (!IsWindowsIdentity(context)) { 
                return false;
            }

            oCacheKey = CacheInternal.PrefixFileSecurity + context.Request.PhysicalPathInternal; 

            sec = HttpRuntime.CacheInternal.Get(oCacheKey); 
 
            // If it's not present in the cache, then return true
            if (sec == null || !(sec is FileSecurityDescriptorWrapper)) 
                return true;

            oSecDesc = (FileSecurityDescriptorWrapper) sec;
            if (oSecDesc._AnonymousAccessChecked && oSecDesc._AnonymousAccess) 
                return false;
 
            return true; 
        }
        internal static bool IsUserAllowedToPath(HttpContext context, VirtualPath virtualPath) 
        {
            return IsUserAllowedToFile(context, virtualPath.MapPath());
        }
    } 

    ///////////////////////////////////////////////////////////////////////////// 
    ///////////////////////////////////////////////////////////////////////////// 
    /////////////////////////////////////////////////////////////////////////////
    internal class FileSecurityDescriptorWrapper : IDisposable { 
        ~FileSecurityDescriptorWrapper() {
            FreeSecurityDescriptor();
        }
 
        /////////////////////////////////////////////////////////////////////////////
        ///////////////////////////////////////////////////////////////////////////// 
        internal FileSecurityDescriptorWrapper(String strFile) { 
            if (strFile.EndsWith(@"\", StringComparison.Ordinal))
                _FileName = strFile.Substring(0, strFile.Length - 1); 
            else
                _FileName = strFile;
            _securityDescriptor = UnsafeNativeMethods.GetFileSecurityDescriptor(_FileName);
        } 

        ///////////////////////////////////////////////////////////////////////////// 
        ///////////////////////////////////////////////////////////////////////////// 
        internal bool IsAccessAllowed(IntPtr iToken, int iAccess) {
            if (iToken == IntPtr.Zero) 
                return true;

            if (_SecurityDescriptorBeingFreed)
                return IsAccessAllowedUsingNewSecurityDescriptor(iToken, iAccess); 

            _Lock.AcquireReaderLock(); 
            try { 
                try {
                    if (!_SecurityDescriptorBeingFreed) { 
                        if (_securityDescriptor == IntPtr.Zero)
                            return true;
                        if (_securityDescriptor == UnsafeNativeMethods.INVALID_HANDLE_VALUE)
                            return false; 
                        else
                            return (UnsafeNativeMethods.IsAccessToFileAllowed(_securityDescriptor, iToken, iAccess) != 0); 
                    } 
                } finally {
                    _Lock.ReleaseReaderLock(); 
                }
            } catch {
                throw;
            } 

            return IsAccessAllowedUsingNewSecurityDescriptor(iToken, iAccess); 
        } 

        ///////////////////////////////////////////////////////////////////////////// 
        /////////////////////////////////////////////////////////////////////////////
        private bool IsAccessAllowedUsingNewSecurityDescriptor(IntPtr iToken, int iAccess) {
            if (iToken == IntPtr.Zero)
                return true; 

            IntPtr secDes = UnsafeNativeMethods.GetFileSecurityDescriptor(_FileName); 
            if (secDes == IntPtr.Zero) 
                return true;
            if (secDes == UnsafeNativeMethods.INVALID_HANDLE_VALUE) 
                return false;

            try {
                try { 
                    return (UnsafeNativeMethods.IsAccessToFileAllowed(secDes, iToken, iAccess) != 0);
                } finally { 
                    UnsafeNativeMethods.FreeFileSecurityDescriptor(secDes); 
                }
            } catch { 
                throw;
            }
        }
 
        /////////////////////////////////////////////////////////////////////////////
        ///////////////////////////////////////////////////////////////////////////// 
        internal void OnCacheItemRemoved(String key, Object value, CacheItemRemovedReason reason) { 
            FreeSecurityDescriptor();
        } 

        /////////////////////////////////////////////////////////////////////////////
        /////////////////////////////////////////////////////////////////////////////
        internal void FreeSecurityDescriptor() { 
            if (!IsSecurityDescriptorValid())
                return; 
            _SecurityDescriptorBeingFreed = true; 

            _Lock.AcquireWriterLock(); 
            try {
                try {
                    if (!IsSecurityDescriptorValid())
                        return; 
                    // VSWHIDBEY 493667: double free in webengine!FreeFileSecurityDescriptor()
                    IntPtr temp = _securityDescriptor; 
                    _securityDescriptor = UnsafeNativeMethods.INVALID_HANDLE_VALUE; 
                    UnsafeNativeMethods.FreeFileSecurityDescriptor(temp);
                } finally { 
                    _Lock.ReleaseWriterLock();
                }
            } catch {
                throw; 
            }
        } 
 
        /////////////////////////////////////////////////////////////////////////////
        ///////////////////////////////////////////////////////////////////////////// 
        internal bool IsSecurityDescriptorValid() {
            return
                _securityDescriptor != UnsafeNativeMethods.INVALID_HANDLE_VALUE &&
                _securityDescriptor != IntPtr.Zero; 
        }
 
 
        void IDisposable.Dispose()
        { 
            FreeSecurityDescriptor();
            GC.SuppressFinalize(this);
        }
        private  IntPtr               _securityDescriptor; 
        internal bool                 _AnonymousAccessChecked  = false;
        internal bool                 _AnonymousAccess         = false; 
        private  bool                 _SecurityDescriptorBeingFreed        = false; 
        private  string               _FileName                = null;
        private  ReadWriteSpinLock    _Lock                    = new ReadWriteSpinLock(); 
    }

    /////////////////////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////// 
    /////////////////////////////////////////////////////////////////////////////
    internal class FileAccessFailedErrorFormatter : ErrorFormatter { 
        private String _strFile; 

        internal FileAccessFailedErrorFormatter(string strFile) { 
            _strFile = strFile;
            if (_strFile == null)
                _strFile = String.Empty;
        } 

        protected override string ErrorTitle { 
            get { return SR.GetString(SR.Assess_Denied_Title);} 
            //get { return "Access Denied Error";}
        } 

        protected override string Description {
            get {
                return SR.GetString(SR.Assess_Denied_Description3); 
                //return "An error occurred while accessing the resources required to serve this request.   This typically happens if you do not have permissions to view the file you are trying to access.";
            } 
        } 

        protected override string MiscSectionTitle { 
            get { return SR.GetString(SR.Assess_Denied_Section_Title3); }
            //get { return "Error message 401.3";}
        }
 
        protected override string MiscSectionContent {
            get { 
                string miscContent; 
                if (_strFile.Length > 0)
                    miscContent = SR.GetString(SR.Assess_Denied_Misc_Content3, HttpRuntime.GetSafePath(_strFile)); 
                //return "Access is denied due to NT ACLs on the requested file. Ask the web server's administrator to give you access to "+ _strFile + ".";
                else
                    miscContent = SR.GetString(SR.Assess_Denied_Misc_Content3_2);
 
                AdaptiveMiscContent.Add(miscContent);
                return miscContent; 
            } 
        }
 
        protected override string ColoredSquareTitle {
            get { return null;}
        }
 
        protected override string ColoredSquareContent {
            get { return null;} 
        } 

        protected override bool ShowSourceFileInfo { 
            get { return false;}
        }
    }
} 


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK