// // System.Web.Hosting.ApplicationHost.cs // // Author: // Miguel de Icaza (miguel@novell.com) // // // Copyright (C) 2005 Novell, Inc (http://www.novell.com) // // 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.IO; using System.Security.Permissions; using System.Security.Policy; namespace System.Web.Hosting { // CAS - no InheritanceDemand here as the class is sealed [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] public sealed class ApplicationHost { static string [] types = { "Web.config", "Web.Config", "web.config" }; private ApplicationHost () { } static string FindWebConfig (string basedir) { string r = null; foreach (string s in types){ r = Path.Combine (basedir, s); if (File.Exists (r)) return r; } // default: return the last one return r; } #if NET_2_0 static object create_dir = new object (); #endif static void CreateDirectory (string directory) { #if NET_2_0 lock (create_dir) { if (!Directory.Exists (directory)) Directory.CreateDirectory (directory); } #else Directory.CreateDirectory (directory); #endif } static string GetBinPath (string physicalDir) { string ret = Path.Combine (physicalDir, "Bin"); if (Directory.Exists (ret)) return ret; ret = Path.Combine (physicalDir, "bin"); return ret; } // // For further details see `Hosting the ASP.NET runtime' // // http://www.west-wind.com/presentations/aspnetruntime/aspnetruntime.asp // [SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)] public static object CreateApplicationHost (Type hostType, string virtualDir, string physicalDir) { if (physicalDir == null) throw new NullReferenceException (); // Make sure physicalDir has file system semantics // and not uri semantics ( '\' and not '/' ). physicalDir = Path.GetFullPath (physicalDir); if (hostType == null) throw new ArgumentException ("hostType can't be null"); if (virtualDir == null) throw new ArgumentNullException ("virtualDir"); Evidence evidence = new Evidence (AppDomain.CurrentDomain.Evidence); // // Unique Domain ID // string domain_id = (virtualDir + physicalDir).GetHashCode ().ToString ("x"); // // Setup // AppDomainSetup setup = new AppDomainSetup (); setup.ApplicationBase = physicalDir; setup.CachePath = null; setup.ApplicationName = domain_id; setup.ConfigurationFile = FindWebConfig (physicalDir); setup.DisallowCodeDownload = true; string bin_path = GetBinPath (physicalDir); setup.PrivateBinPath = bin_path; setup.PrivateBinPathProbe = "*"; setup.ShadowCopyFiles = "true"; setup.ShadowCopyDirectories = bin_path; string dynamic_dir = null; string user = Environment.UserName; for (int i = 0; ; i++){ string d = Path.Combine (Path.GetTempPath (), String.Format ("{0}-temp-aspnet-{1:x}", user, i)); try { CreateDirectory (d); string stamp = Path.Combine (d, "stamp"); CreateDirectory (stamp); dynamic_dir = d; Directory.Delete (stamp); break; } catch (UnauthorizedAccessException){ continue; } } setup.DynamicBase = dynamic_dir; CreateDirectory (setup.DynamicBase); // // Create app domain // AppDomain appdomain; appdomain = AppDomain.CreateDomain (domain_id, evidence, setup); // // Populate with the AppDomain data keys expected, Mono only uses a // few, but third party apps might use others: // appdomain.SetData (".appDomain", "*"); int l = physicalDir.Length; if (physicalDir [l - 1] != Path.DirectorySeparatorChar) physicalDir += Path.DirectorySeparatorChar; appdomain.SetData (".appPath", physicalDir); appdomain.SetData (".appVPath", virtualDir); appdomain.SetData (".domainId", domain_id); appdomain.SetData (".hostingVirtualPath", virtualDir); appdomain.SetData (".hostingInstallDir", Path.GetDirectoryName (typeof (Object).Assembly.CodeBase)); #if NET_2_0 appdomain.SetData ("DataDirectory", Path.Combine (physicalDir, "App_Data")); #endif return appdomain.CreateInstanceAndUnwrap (hostType.Module.Assembly.FullName, hostType.FullName); } } }