Is it possible to run Google NaCl outside of the browser as a process sandbox?

link|improve this question

77% accept rate
I recently asked the same question on the discussion group. The answer is yes, using sel_ldr, as Mark Seaborn replied. – Matt Cruikshank Jan 12 at 23:41
feedback

3 Answers

up vote 2 down vote accepted

It is currently possible to run native client outside of the browser, but this will be discontinued in a future version of native client. When running outside of the browser, your application is not running inside of the native client sandbox. https://groups.google.com/group/native-client-discuss/browse_thread/thread/7140a89d9030b3c9

Instructions for running of of the sample applications outside of the browser are in the Native Client Getting Started documentation found at http://nativeclient.googlecode.com/svn/trunk/src/native_client/documentation/getting_started.html#example-nacl

The same document contains instructions for building stand alone native client executables: http://nativeclient.googlecode.com/svn/trunk/src/native_client/documentation/getting_started.html#make

link|improve this answer
feedback

Yes. The standalone build of Native Client contains a program called "sel_ldr" which runs the NaCl sandbox outside of the web browser. A lot of NaCl's test suite tests NaCl by running programs under sel_ldr rather than under the browser.

link|improve this answer
feedback

To add to Mark's answer, take a look at the sel_universal target. There are obviously some interfaces that cannot be supported, e.g., Pepper interfaces, since such a stand-alone run doesn't involve a browser. Furthermore, the stable ABI that we support is that which is exposed by the "integrated runtime" or irt, and the irt code thunk assumes that the browser is present. a standalone use of NaCl via sel_ldr would probably have to use the syscall interface initially, until an alternate irt is written. (NB: we make no guarantees about the stability of the syscall interface.)

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.