I'm going to give an example of using System.Data.SQLite.DLL which is a mixed assembly with unmanaged code: If I execute this :

  var assembly= Assembly.LoadFrom("System.Data.SQLite.DLL")

No exceptions are thrown, but if I do this :

  var rawAssembly = File.ReadAllBytes("System.Data.SQLite.DLL");
  var assembly = Assembly.Load(rawAssembly);

The CLR throws a FileLoadException with "Unverifiable code failed policy check. (Exception from HRESULT: 0x80131402)". Let's say I'm trying to load this assembly on a child AppDomain, how can I customize the AppDomain's security to allow me pass the policy check?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

We are the victim of a crummy exception message. Loading assemblies with Assembly.Load(byte[]) that contain unmanaged code in not supported. This is the subject of this feedback item.

link|improve this answer
Could you give an example on how to create an appropriate evidence object? – Thiado de Arruda May 31 '10 at 17:51
Have you tried using the AppDomain.Current.Evidence? – Hans Passant May 31 '10 at 18:05
I haven't, but isn't that just a copy of the current domain's security settings(the one that threw the exception in the first place) ? – Thiado de Arruda May 31 '10 at 18:08
I meant the primary AppDomain's evidence. How did you initialize the AppDomain? Note the CreateDomain(string, Evidence) overload. – Hans Passant May 31 '10 at 19:11
I created the secondary domain with 'AppDomain.CreateDomain("ChildDomain,null,setup)"' (the only option I change in the setup is the application base dir) As I said, it doesnt matter if I load the raw assembly from the primary or child domain, it will always throw that exception, thats why I'm asking how to change the security settings to allow me to load mixed assemblies from byte arrays(if you showed a code snippet that made my code work that would be great); – Thiado de Arruda May 31 '10 at 20:22
show 3 more comments
feedback

The problem is that the CLR does not perform the normal DLL loading steps - like mapping the dlls separate sections into different pages, adjusting fixups, etc. When an assembly is loaded from raw bytes, those raw bytes are mapped into memory as is, and only managed meta-data is read. No amount of evidence or security settings will change this behavior.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.