繁体   English   中英

在沙箱Appdomain中加载程序集-SecurityException

[英]Loading Assembly in sandbox Appdomain - SecurityException

我想从运行时创建的程序集中调用方法。 它是部分受信任的代码,因此我想为其创建一个沙箱应用程序域。

我用Roslyn创建Assembly,结果是一个byte[] 我可以加载它并在默认的Appdomain调用它,它工作正常。 问题是沙箱(我想)。

我使用了本教程

创建沙箱Appdomain

private AppDomain createAppdomain(string location)
{
     AppDomain currentAppdomain = AppDomain.CurrentDomain;

     // Create the permission set to be granted to the untrusted application
     Evidence ev = new Evidence();
     ev.AddHostEvidence(new Zone(SecurityZone.Internet));
     PermissionSet internetPS = SecurityManager.GetStandardSandbox(ev);
     var platform = Assembly.GetExecutingAssembly();
     internetPS.AddPermission(new FileIOPermission(FileIOPermissionAccess.Read | FileIOPermissionAccess.PathDiscovery, Path.GetDirectoryName(platform.Location)));

     // Sign the assembly that contains the hosting class (named Sandboxer in this example) that calls the untrusted code
     // .NET Framework assemblies such as mscorlib and System.dll do not have to be added to the full-trust list
     // because they are loaded as fully trusted from the global assembly cache.
     StrongName[] fullTrustAssembly = new StrongName[1];
     fullTrustAssembly[0] = typeof(Sandboxer).Assembly.Evidence.GetHostEvidence<StrongName>();

     // Initialize the AppDomainSetup parameter of the CreateDomain method
     //  The ApplicationBase property is an important setting,
     // and should be different from the ApplicationBase property for the AppDomain of the hosting application.
     // If the ApplicationBase settings are the same,
     // the partial-trust application can get the hosting application to load (as fully trusted) an exception it defines, thus exploiting it.
     AppDomainSetup adSetup = new AppDomainSetup();
     adSetup.ApplicationBase = Path.GetFullPath(location);


     // Call the CreateDomain(String, Evidence, AppDomainSetup, PermissionSet, StrongName[]) method overload to create the application domain
     // http://msdn.microsoft.com/en-us/library/ms130766(v=vs.110).aspx
     AppDomain newDomain = AppDomain.CreateDomain("Sandbox", null, adSetup, internetPS, fullTrustAssembly);

     return newDomain;
}

创建沙箱(Sandboxer类型为MarshalByRefObject ):

string physicalPath = HttpContext.Current.Request.PhysicalApplicationPath + @"App_Data\";
 AppDomain Sandbox = createAppdomain(physicalPath);

// http://msdn.microsoft.com/en-us/library/dd413384(v=vs.110).aspx
ObjectHandle handle = Activator.CreateInstanceFrom(
     Sandbox,
     typeof(Sandboxer).Assembly.ManifestModule.FullyQualifiedName,
     typeof(Sandboxer).FullName,
     true,
     BindingFlags.Public | BindingFlags.Instance | BindingFlags.CreateInstance,
     null,
    // byte[] rawAssembly
     new object[] { rawAssembly },
     null,
     null);
Sandboxer newDomainInstance = (Sandboxer)handle.Unwrap();   

string s = newDomainInstance.callMethod();

加载Assembly ,调用方法:

private string callMethod()
{   
     // No Exception thrown yet, but some problems with the Evidence:
     // Evidence    'asm.Evidence' threw an exception of type 'System.Security.SecurityException'   System.Security.Policy.Evidence {System.Security.SecurityException}
     //"Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."
     Assembly asm = Assembly.Load(rawAssembly);

     Type MyClass = asm.GetType(myClassName);

     // In this line I get the Exception:
     // System.Security.SecurityException
     // "Request failed."
     object obj = Activator.CreateInstance(MyClass);

     MethodInfo mi = MyClass.GetMethod(myMethodName);
     mi.Invoke(obj, null);

     // some code

     return s;
}

堆栈跟踪:

"at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck)
at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark)\
at System.RuntimeType.CreateInstanceDefaultCtor(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark)\r\n   at System.Activator.CreateInstance(Type type, Boolean nonPublic)
at System.Activator.CreateInstance(Type type) ..."

我错过了什么? (对不起我的英语不好。)

编辑:试图将此行添加到类中以授予完全权限:

[PermissionSet(SecurityAction.Assert, Unrestricted = true)]

在此object obj = Activator.CreateInstance(MyClass); 工作正常。 我需要沙箱,所以这不是解决方案。

我碰到了同样的问题,撞了一个小时。 因为在另一个示例中,我具有相同的代码,所以运行良好! 因此,我开始删除内容,直到发现唯一的区别是程序集的加载方式: Assembly.LoadFrom工作。 Assembly.Load(byte[])总是给我一个安全异常。

异常表明我的沙盒DLL是问题的根源,但没有帮助。 因为事实证明在MSDN文档中只有一句话:

使用此方法加载的程序集的信任级别与调用程序集的信任级别相同。 要从具有应用程序域信任级别的字节数组中加载程序集,请使用Load(Byte [],Byte [],SecurityContextSource)方法重载

哎呀! 我想在权限非常受限的应用程序域中以“完全信任”的方式加载程序集,而不在完全信任的列表中,这会使CLR不满意。 从已加载的程序集中执行第一行->砰! (这就是为什么我断言异常令人困惑的原因:它提到“错误的” DLL作为异常源)

所以我用Load(Byte[], null, SecurityContextSource.CurrentAppDomain)替换了Load(byte[]) Load(Byte[], null, SecurityContextSource.CurrentAppDomain) ,现在它对LoadFrom来说就像

您的问题是在使用不受信任的堆栈调用完全受信任的状态时已加载的Sandboxer程序集。 因此,您在激活过程中的某个地方遇到了安全异常(不是100%确定为什么基于您的代码)。 该解决方案与您发现的完全相同,可以将断言添加到函数中。 这将允许该函数以完全信任的方式执行(断言将阻止堆栈遍历),但已加载的程序集是部分受信任的,因此仍将被沙箱化。

如果这样做,则需要确保沙盒代码无法与该方法进行交互,因此可能会滥用该方法。 您可以通过将功能标记为SecurityCritical来做到这一点,以便只有完全受信任的代码才能与该功能进行交互。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM