forked from patriksimek/vm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsandbox.js
471 lines (382 loc) · 12.3 KB
/
sandbox.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
const {Script} = host.require('vm');
const fs = host.require('fs');
const pa = host.require('path');
const console = host.console;
const BUILTIN_MODULES = host.process.binding('natives');
const JSON_PARSE = JSON.parse;
/**
* @param {Object} host Hosts's internal objects.
*/
return ((vm, host) => {
'use strict';
const global = this;
const TIMERS = new host.WeakMap(); // Contains map of timers created inside sandbox
const BUILTINS = {};
const CACHE = {};
const EXTENSIONS = {
[".json"](module, filename) {
try {
var code = fs.readFileSync(filename, "utf8");
} catch (e) {
throw Contextify.value(e);
}
module.exports = JSON_PARSE(code);
},
[".node"](module, filename) {
if (vm.options.require.context === 'sandbox') throw new VMError('Native modules can be required only with context set to \'host\'.');
try {
module.exports = Contextify.readonly(host.require(filename));
} catch (e) {
throw Contextify.value(e);
}
}
};
for (var i = 0; i < vm.options.sourceExtensions.length; i++) {
var ext = vm.options.sourceExtensions[i];
EXTENSIONS["." + ext] = (module, filename, dirname) => {
if (vm.options.require.context !== 'sandbox') {
try {
module.exports = Contextify.readonly(host.require(filename));
} catch (e) {
throw Contextify.value(e);
}
} else {
try {
// Load module
var contents = fs.readFileSync(filename, "utf8")
if (typeof vm.options.compiler === "function") {
contents = vm.options.compiler(contents, filename)
}
var code = `(function (exports, require, module, __filename, __dirname) { 'use strict'; ${contents} \n});`;
// Precompile script
const script = new Script(code, {
filename: filename || "vm.js",
displayErrors: false
});
var closure = script.runInContext(global, {
filename: filename || "vm.js",
displayErrors: false
});
} catch (ex) {
throw Contextify.value(ex);
}
// run script
closure(module.exports, module.require, module, filename, dirname);
}
}
}
/**
* Resolve filename.
*/
const _resolveFilename = function(path) {
path = pa.resolve(path);
const exists = fs.existsSync(path);
const isdir = exists ? fs.statSync(path).isDirectory() : false;
// direct file match
if (exists && !isdir) return path;
// load as file
for (var i = 0; i < vm.options.sourceExtensions.length; i++) {
var ext = vm.options.sourceExtensions[i];
if (fs.existsSync(`${path}.${ext}`)) return `${path}.${ext}`;
}
if (fs.existsSync(`${path}.node`)) return `${path}.node`;
if (fs.existsSync(`${path}.json`)) return `${path}.json`;
// load as directory
if (fs.existsSync(`${path}/package.json`)) {
try {
var pkg = JSON.parse(fs.readFileSync(`${path}/package.json`, "utf8"));
if (pkg.main == null) pkg.main = "index.js";
} catch (ex) {
throw new VMError(`Module '${modulename}' has invalid package.json`, "EMODULEINVALID");
}
return _resolveFilename(`${path}/${pkg.main}`);
}
for (var i = 0; i < vm.options.sourceExtensions.length; i++) {
var ext = vm.options.sourceExtensions[i];
if (fs.existsSync(`${path}/index.${ext}`)) return `${path}/index.${ext}`;
}
if (fs.existsSync(`${path}/index.node`)) return `${path}/index.node`;
return null;
};
/**
* Builtin require.
*/
const _requireBuiltin = function(modulename) {
if (modulename === 'buffer') return ({Buffer});
if (BUILTINS[modulename]) return BUILTINS[modulename].exports; // Only compiled builtins are stored here
if (modulename === 'util') {
return Contextify.readonly(host.require(modulename), {
// Allows VM context to use util.inherits
inherits: function(ctor, superCtor) {
ctor.super_ = superCtor;
Object.setPrototypeOf(ctor.prototype, superCtor.prototype);
}
});
}
if (modulename === 'events') {
try {
const script = new Script(`(function (exports, require, module, process) { 'use strict'; ${BUILTIN_MODULES[modulename]} \n});`, {
filename: `${modulename}.vm.js`
});
// setup module scope
const module = BUILTINS[modulename] = {
exports: {},
require: _requireBuiltin
};
// run script
script.runInContext(global)(module.exports, module.require, module, host.process);
return module.exports;
} catch (e) {
throw Contextify.value(e);
}
}
return Contextify.readonly(host.require(modulename));
};
/**
* Prepare require.
*/
const _prepareRequire = function(current_dirname) {
const _require = function(modulename) {
if (vm.options.nesting && modulename === 'vm2') return {VM: Contextify.readonly(host.VM), NodeVM: Contextify.readonly(host.NodeVM)};
if (!vm.options.require) throw new VMError(`Access denied to require '${modulename}'`, "EDENIED");
if (modulename == null) throw new VMError("Module '' not found.", "ENOTFOUND");
if (typeof modulename !== 'string') throw new VMError(`Invalid module name '${modulename}'`, "EINVALIDNAME");
// Mock?
if (vm.options.require.mock && vm.options.require.mock[modulename]) {
return Contextify.readonly(vm.options.require.mock[modulename]);
}
// Builtin?
if (BUILTIN_MODULES[modulename]) {
if (host.Array.isArray(vm.options.require.builtin)) {
if (vm.options.require.builtin.indexOf('*') >= 0) {
if (vm.options.require.builtin.indexOf(`-${modulename}`) >= 0) {
throw new VMError(`Access denied to require '${modulename}'`, "EDENIED");
}
} else if (vm.options.require.builtin.indexOf(modulename) === -1) {
throw new VMError(`Access denied to require '${modulename}'`, "EDENIED");
}
} else if (vm.options.require.builtin) {
if (!vm.options.require.builtin[modulename]) {
throw new VMError(`Access denied to require '${modulename}'`, "EDENIED");
}
} else {
throw new VMError(`Access denied to require '${modulename}'`, "EDENIED");
}
return _requireBuiltin(modulename);
}
// External?
if (!vm.options.require.external) throw new VMError(`Access denied to require '${modulename}'`, "EDENIED");
if (/^(\.|\.\/|\.\.\/)/.exec(modulename)) {
// Module is relative file, e.g. ./script.js or ../script.js
if (!current_dirname) throw new VMError("You must specify script path to load relative modules.", "ENOPATH");
var filename = _resolveFilename(`${current_dirname}/${modulename}`);
} else if (/^(\/|\\|[a-zA-Z]:\\)/.exec(modulename)) {
// Module is absolute file, e.g. /script.js or //server/script.js or C:\script.js
var filename = _resolveFilename(modulename);
} else {
// Check node_modules in path
if (!current_dirname) throw new VMError("You must specify script path to load relative modules.", "ENOPATH");
if(Array.isArray(vm.options.require.external)) {
const isWhitelisted = vm.options.require.external.indexOf(modulename) !== -1
if (!isWhitelisted) throw new VMError(`The module '${modulename}' is not whitelisted in VM.`, "EDENIED");
}
const paths = current_dirname.split(pa.sep);
while (paths.length) {
let path = paths.join(pa.sep);
//console.log modulename, "#{path}#{pa.sep}node_modules#{pa.sep}#{modulename}"
var filename = _resolveFilename(`${path}${pa.sep}node_modules${pa.sep}${modulename}`);
if (filename) break;
paths.pop();
}
}
if (!filename) throw new VMError(`Cannot find module '${modulename}'`, "ENOTFOUND");
// return cache whenever possible
if (CACHE[filename]) return CACHE[filename].exports;
const dirname = pa.dirname(filename);
const extname = pa.extname(filename);
if (vm.options.require.root) {
const requiredPath = pa.resolve(vm.options.require.root);
if (dirname.indexOf(requiredPath) !== 0) {
throw new VMError(`Module '${modulename}' is not allowed to be required. The path is outside the border!`, "EDENIED");
}
}
const module = CACHE[filename] = {
filename,
exports: {},
require: _prepareRequire(dirname)
};
// lookup extensions
if (EXTENSIONS[extname]) {
EXTENSIONS[extname](module, filename, dirname);
return module.exports;
}
throw new VMError(`Failed to load '${modulename}': Unknown type.`, "ELOADFAIL");
};
return _require;
};
/**
* Prepare sandbox.
*/
global.setTimeout = function(callback, delay, ...args) {
const tmr = host.setTimeout(Decontextify.value(function() {
callback.apply(null, args)
}), Decontextify.value(delay));
const local = {
ref() { return tmr.ref(); },
unref() { return tmr.unref(); }
};
TIMERS.set(local, tmr);
return local;
};
global.setInterval = function(callback, interval, ...args) {
const tmr = host.setInterval(Decontextify.value(function() {
callback.apply(null, args)
}), Decontextify.value(interval));
const local = {
ref() { return tmr.ref(); },
unref() { return tmr.unref(); }
};
TIMERS.set(local, tmr);
return local;
};
global.setImmediate = function(callback, ...args) {
const tmr = host.setImmediate(Decontextify.value(function() {
callback.apply(null, args)
}));
const local = {
ref() { return tmr.ref(); },
unref() { return tmr.unref(); }
};
TIMERS.set(local, tmr);
return local;
};
global.clearTimeout = function(local) {
host.clearTimeout(TIMERS.get(local));
return null;
};
global.clearInterval = function(local) {
host.clearInterval(TIMERS.get(local));
return null;
};
global.clearImmediate = function(local) {
host.clearImmediate(TIMERS.get(local));
return null;
};
global.process = {
argv: [],
title: host.process.title,
version: host.process.version,
versions: Contextify.readonly(host.process.versions),
arch: host.process.arch,
platform: host.process.platform,
env: {},
pid: host.process.pid,
features: Contextify.readonly(host.process.features),
nextTick(callback, ...args) {
if (typeof callback !== 'function') {
throw new Error('Callback must be a function.');
};
try {
return host.process.nextTick(Decontextify.value(function() {
callback.apply(null, args)
}));
} catch (e) {
throw Contextify.value(e);
}
},
hrtime() {
try {
return host.process.hrtime();
} catch (e) {
throw Contextify.value(e);
}
},
cwd() {
try {
return host.process.cwd();
} catch (e) {
throw Contextify.value(e);
}
},
on(name, handler) {
if (name !== 'beforeExit' && name !== 'exit') {
throw new Error(`Access denied to listen for '${name}' event.`);
}
try {
host.process.on(name, Decontextify.value(handler));
} catch (e) {
throw Contextify.value(e);
}
return this;
},
once(name, handler) {
if (name !== 'beforeExit' && name !== 'exit') {
throw new Error(`Access denied to listen for '${name}' event.`);
}
try {
host.process.once(name, Decontextify.value(handler));
} catch (e) {
throw Contextify.value(e);
}
return this;
},
listeners(name) {
// Filter out listeners, which were not created in this sandbox (isVMProxy is undefined)
return Contextify.value(host.process.listeners(name).filter(listener => !Contextify.value(listener).isVMProxy));
},
removeListener(name, handler) {
try {
host.process.removeListener(name, Decontextify.value(handler));
} catch (e) {
throw Contextify.value(e);
}
return this;
},
umask() {
if (arguments.length) {
throw new Error("Access denied to set umask.");
}
try {
return host.process.umask();
} catch (e) {
throw Contextify.value(e);
}
}
};
if (vm.options.console === 'inherit') {
global.console = Contextify.readonly(host.console);
} else if (vm.options.console === 'redirect') {
global.console = {
log(...args) {
vm.emit('console.log', ...Decontextify.arguments(args));
return null;
},
info(...args) {
vm.emit('console.info', ...Decontextify.arguments(args));
return null;
},
warn(...args) {
vm.emit('console.warn', ...Decontextify.arguments(args));
return null;
},
error(...args) {
vm.emit('console.error', ...Decontextify.arguments(args));
return null;
},
dir(...args) {
vm.emit('console.dir', ...Decontextify.arguments(args));
return null;
},
time: () => {},
timeEnd: () => {},
trace(...args) {
vm.emit('console.trace', ...Decontextify.arguments(args));
return null;
}
};
}
/*
Return contextized require.
*/
return _prepareRequire;
})(vm, host);