Does WinRT under windows 8 metro allow you to dynamically load and execute code? For example, is it possible to download a dll into memory or to isolated storage and run code from it? Could code that JIT compiles a scripting language to native assembly language (e.g. third party browsers) be able to do the same in WinRT, or is it prohibited as an "unsafe" operation?

Is the answer to this question different for "managed" code running in WinRT? For example, in managed code, could you download an assembly from the internet and have it be discoverable in MEF or otherwise be able to load it at runtime? Can you use Reflection.Emit in some form? In C++, can you run assembly code generated at runtime by your application, or dynamically load a DLL at runtime (presumably some form of WinRT DLL)?

link|improve this question

For managed, at least, I don't see System.Reflection.Emit, but Expression<T>.Compile is there and seems to be working, so at least some form of runtime code generation is available. – Pavel Minaev Sep 19 '11 at 17:25
feedback

5 Answers

up vote 1 down vote accepted

You question is a bit unclear... so some general pointers:

link|improve this answer
The question is completely clear, it is about WinRT. You are responding to another question not asked. Nowhere does the poster refer to a .NET app running things other than WinRT. – cdiggins Oct 7 '11 at 16:41
feedback

In general, you cannot load and execute new code in a Metro style app. What you can access is what you ship with the app.

LoadLibrary and GetProcAddress are missing so C++ can't dynamically load code.
Likewise, C# cannot because there is no Assembly.Load.
JavaScript can, but only in the web container and not in the fuller trust portions of the code.

The reason for all this is that the store's security/malware protection would be moot if an app could just load and run arbitrary code.

link|improve this answer
3  
In addition, VirtualProtect is missing, so you can't write something that compiles code on the fly. – Larry Osterman Sep 20 '11 at 5:59
feedback

Does WinRT under windows 8 metro allow you to dynamically load and execute code?

No.

For example, is it possible to download a dll into memory or to isolated storage and run code from it?

No.

Could code that JIT compiles a scripting language to native assembly language (e.g. third party browsers) be able to do the same in WinRT, or is it prohibited as an "unsafe" operation?

It would be prohibited.

Is the answer to this question different for "managed" code running in WinRT?

No.

For example, in managed code, could you download an assembly from the internet and have it be discoverable in MEF or otherwise be able to load it at runtime?

No.

Can you use Reflection.Emit in some form?

No.

In C++, can you run assembly code generated at runtime by your application, or dynamically load a DLL at runtime (presumably some form of WinRT DLL)?

No.

Everything you described would allow the safety guarantees of WinRT to be circumvented.

link|improve this answer
It also excludes third party browsers, all manor of script engines (at least ones that use JIT to run scripts faster), any software that releases updates on a time-critical schedule (tax software, etc...). Software written in Ruby/Python/etc.. can't run as fast as they should, if at all, without JIT support. Most major PC games use some form of scripting engine internally, whether for the UI (World of Warcraft) or otherwise. The generated code can be validated at runtime for a small performance hit. I don't see a reason why this couldn't be a brokered API with an associated app capability – Jeremy Bell Oct 7 '11 at 18:25
And you didn't want to vote my answer up because you are mad at Microsoft? – cdiggins Oct 12 '11 at 17:56
I'm not "mad" at anyone. This is just a technical Q&A. I meant no offense. – Jeremy Bell Oct 13 '11 at 14:01
How would that allow the safety guarantees to be circumvented? It's not like this restriction limits what you can do: you can always dynamically run the code with an interpreter. The only difference is that that is much slower. – Jules Dec 12 '11 at 21:11
feedback

Actually, Metro style apps CAN dynamically load and execute code. There are some restrictions; Metro and Desktop apps work a bit differently in key ways.

The mechanisms vary a bit, depending on the caller (LoadPackagedLibrary() Assembly.Load(), etc). One key difference between Metro and Desktop - Metro apps can only dynamically load what's in your app's package graph (your package and s) and system code (that could be otherwise loaded statically).

See my post for some more details http://social.msdn.microsoft.com/Forums/en-US/wingameswithdirectx/thread/d1ebe727-2d10-430e-96af-46964dda8225

link|improve this answer
feedback

To make it more interesting, IE 10 does in fact do JIT on its js code, so the API is clearly there to allow it.

link|improve this answer
1  
Yes. I believe technically you can use any Win32 api directly from C++, but if your application uses any non-winrt or any win32 api not on the approved list, your app won't pass certification. So, IE is using APIs not available to third party developers. – Jeremy Bell Oct 10 '11 at 19:28
1  
Or rather since IE10 on Win8 is a hybrid Metro/Win32 app, it gets to do things that standard Metro-only apps can't. – rstat1 Mar 3 at 6:51
feedback

Your Answer

 
or
required, but never shown

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