目标:我需要以非常有限的权限在 AppDomain 中运行一些代码 - 除了我在其他地方定义的一些辅助方法之外,它应该无法访问任何花哨或不安全的东西。
我所做的:我正在创建一个具有所需基本权限的沙盒 AppDomain,并创建一个运行代码的代理对象:
static AppDomain CreateSandbox()
{
var e = new Evidence();
e.AddHostEvidence(new Zone(SecurityZone.Internet));
var ps = SecurityManager.GetStandardSandbox(e);
var security = new SecurityPermission(SecurityPermissionFlag.Execution);
ps.AddPermission(security);
var setup = new AppDomainSetup {
ApplicationBase = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)
};
return AppDomain.CreateDomain("Sandbox" + DateTime.Now, null, setup, ps);
}
public class Proxy : MarshalByRefObject
{
public Proxy() { }
public DoStuff()
{
// perform custom operation requiring permission
HelperAssembly.HelperMethods.Method1();
// do other stuff with low permission level
...
...
...
}
}
我已将辅助方法放在专用的强名称程序集中,并用 [SecuritySafeCritical] 标记它们及其容器类:
// HelperAssembly.dll
namespace HelperAssembly
{
[SecuritySafeCritical]
public class HelperMethods
{
[SecuritySafeCritical]
public static void Method1()
{
new SecurityPermission(SecurityPermissionFlag.UnmanagedCode)
.Assert();
try
{
// logic requiring unmanaged code
...
}
finally
{
CodeAccessSecurity.RevertAll();
}
}
}
}
然后,我在沙盒 AppDomain 中加载辅助程序集并运行 Proxy.DoStuff(),期望它执行辅助方法并继续执行:
var appDomain = CreateSandbox();
appDomain.Load(typeof(HelperAssembly.HelperMethods).Assembly.FullName);
var proxy = (Proxy)sandbox.CreateInstance(
typeof(Proxy).Assembly.FullName,
typeof(Proxy).FullName).Unwrap();
proxy.DoStuff();
但是,运行代码会导致辅助方法中的 Assert() 行出现异常:
未处理的异常:System.InvalidOperationException:无法在安全透明方法中执行 CAS 断言
这种行为的原因是什么,我怎样才能实现我想要做的事情?据我了解,不受信任的 AppDomain 中的代码是安全透明的,而辅助程序集中的代码是安全关键的,这意味着它应该能够使用 Assert() 请求权限。
我显然遗漏了一块拼图,因此由对代码访问安全性有更好理解的人来解释出了什么问题。任何帮助表示赞赏。