Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use the vm module as a safe way to run external code. It works pretty well, but there is one issue left:

var UNKNOWN_CODE = "while(true){}";

var vm = require("vm");

var obj = {};
var ctx = vm.createContext(obj);

var script = vm.createScript(UNKNOWN_CODE);

script.runInNewContext(ctx);

console.log("finished"); //never executed

Is there any way to cancel the execution (e.g. if it lasts for more than 5s)?

Thanks in advance!

share|improve this question

2 Answers

up vote 4 down vote accepted
+50

You need to run it in a separate process, for example:

master.js:

var cluster = require('cluster');

cluster.setupMaster({
  exec : "runner.js",
  args : process.argv.slice(2),
  silent : false
});
//This will be fired when the forked process becomes online
cluster.on( "online", function(worker) {
    var timer = 0;

    worker.on( "message", function(msg) {
        clearTimeout(timer); //The worker responded in under 5 seconds, clear the timeout
        console.log(msg);
        worker.destroy(); //Don't leave him hanging 

    });
    timer = setTimeout( function() {
        worker.destroy(); //Give it 5 seconds to run, then abort it
        console.log("worker timed out");
    }, 5000);

    worker.send( 'while(true){}' ); //Send the code to run for the worker
});
cluster.fork();

runner.js:

//The runner.js is ran in a separate process and just listens for the message which contains code to be executed
process.on('message', function( UNKNOWN_CODE ) {

    var vm = require("vm");

    var obj = {};
    var ctx = vm.createContext(obj);

    var script = vm.createScript(UNKNOWN_CODE);

    script.runInNewContext(ctx);

    process.send( "finished" ); //Send the finished message to the parent process
});

To run this example, place those files in the same folder and dir to it and run

node master.js

You should see "worker timed out" message after 5 seconds. If you change it to 'while(false){}' the worker will execute the code immediately and you should see "finished" instead.

Cluster docs

share|improve this answer
thank you for your answer. Unfortunately this won't work for me as I need to pass buffers to and from the context and afaik buffers can't be transfered using the limited Node IPC. Any other ideas? – muffel Jul 31 '12 at 9:53
1  
@muffel sorry, another process is a must here. There is no way for the process itself to execute the code AND execute some other code that would keep track of it. That's physically impossible because node.js process is single threaded. As for buffers, I don't know. Maybe converting them to arrays of numbers representing bytes? – Esailija Jul 31 '12 at 10:15

You might wanna check Threads a Gogo. Unfortunately, it hasn't been updated to 0.8.x yet.

However, as mentioned by @Esailija, there is no way to run external code safely unless it's in another process.

var Threads = require('threads_a_gogo');

var t = Threads.create();
t.eval("while(true) { console.log('.'); }");

setTimeout(function() {
  t.destroy();
  console.log('finished');
}, 1000);
share|improve this answer
Interesting, this uses real threads right? – Esailija Aug 3 '12 at 8:21
Yes, it's based on pthreads. It's still based on libev, though, but I've managed to compile it on node 0.8. – Laurent Perrin Aug 3 '12 at 8:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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