| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- //
- // System.Web.Hosting.ApplicationHost.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- //
- // 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;
- }
- static object create_dir = new object ();
- static void CreateDirectory (string directory)
- {
- #if NET_2_0
- lock (create_dir) {
- if (!Directory.Exists (directory))
- Directory.CreateDirectory (directory);
- }
- #else
- Directory.CreateDirectory (directory);
- #endif
- }
- //
- // 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 ();
- #if NET_2_0
- physicalDir = Path.GetFullPath (physicalDir);
- #endif
- // This might throw
- Uri u = new Uri (physicalDir);
- physicalDir = HttpUtility.UrlDecode (u.AbsolutePath);
- if (hostType == null)
- throw new NullReferenceException ();
- if (virtualDir == null)
- throw new NullReferenceException ();
- Evidence evidence = new Evidence (AppDomain.CurrentDomain.Evidence);
- //
- // Unique Domain ID
- //
- string domain_id = "ASPHOST_" + DateTime.Now.ToString().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 = Path.Combine (physicalDir, "bin");
- 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));
- return appdomain.CreateInstanceAndUnwrap (hostType.Module.Assembly.FullName, hostType.FullName);
- }
- }
- }
|