Spaces:
Running
Running
File size: 13,191 Bytes
87b3b3a |
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 |
Game.prototype.verbotenWords = [
'.call', 'call(', 'apply', 'bind', // prevents arbitrary code execution
'prototype', // prevents messing with prototypes
'debugger', // prevents pausing execution
'delete', // prevents removing items
'constructor', // prevents retrieval of Function using an instance of it
'window', // prevents setting "window.[...] = map", etc.
'top', // prevents user code from escaping the iframe
'validate', 'onExit', 'objective', // don't let players rewrite these methods
'\\u' // prevents usage of arbitrary code through unicode escape characters, see issue #378
];
Game.prototype.allowedTime = 2000; // for infinite loop prevention
var DummyDisplay = function () {
this.clear = function () {};
this.drawAll = function () {};
this.drawObject = function () {};
this.drawText = function () {};
this.writeStatus = function () {};
};
Game.prototype.validate = function(allCode, playerCode, restartingLevelFromScript) {
var game = this;
try {
for (var i = 0; i < this.verbotenWords.length; i++) {
var badWord = this.verbotenWords[i];
if (playerCode.indexOf(badWord) > -1) {
throw "You are not allowed to use '" + badWord + "'!";
}
}
var dummyMap = new Map(new DummyDisplay(), this);
dummyMap._dummy = true;
dummyMap._setProperties(this.editor.getProperties().mapProperties);
// modify the code to always check time to prevent infinite loops
allCode = allCode.replace(/\)\s*{/g, ") {"); // converts Allman indentation -> K&R
allCode = allCode.replace(/\n\s*while\s*\((.*)\)/g, "\nfor (dummy=0;$1;)"); // while -> for
allCode = $.map(allCode.split('\n'), function (line, i) {
return line.replace(/for\s*\((.*);(.*);(.*)\)\s*{/g,
"for ($1, startTime = Date.now();$2;$3){" +
"if (Date.now() - startTime > " + game.allowedTime + ") {" +
"throw '[Line " + (i+1) + "] TimeOutException: Maximum loop execution time of " + game.allowedTime + " ms exceeded.';" +
"}");
}).join('\n');
allCode = "'use strict';var validateLevel,onExit,objective\n"+allCode;
allCode = allCode+"\n({startLevel:startLevel,validateLevel:validateLevel,onExit:onExit,objective:objective})";
if (this._debugMode) {
console.log(allCode);
}
var allowjQuery = dummyMap._properties.showDummyDom;
// setup iframe in which code is run. As a side effect, this sets `this._eval`
// and `this.SyntaxError` correctly.
var userEnv = this.initIframe(allowjQuery);
// evaluate the code to get startLevel() and (opt) validateLevel() methods
var userOutput = this._eval(allCode);
// start the level on a dummy map to validate
this._setPlayerCodeRunning(true);
userOutput.startLevel(dummyMap);
this._setPlayerCodeRunning(false);
// re-run to check if the player messed with startLevel
this._startOfStartLevelReached = false;
this._endOfStartLevelReached = false;
dummyMap._reset();
this._setPlayerCodeRunning(true);
userOutput.startLevel(dummyMap);
this._setPlayerCodeRunning(false);
// does startLevel() execute fully?
// (if we're restarting a level after editing a script, we can't test for this
// - nor do we care)
if (!this._startOfStartLevelReached && !restartingLevelFromScript) {
throw 'startLevel() has been tampered with!';
}
if (!this._endOfStartLevelReached && !restartingLevelFromScript) {
throw 'startLevel() returned prematurely!';
}
this.validateLevel = function () { return true; };
// does validateLevel() succeed?
if (typeof(userOutput.validateLevel) === "function") {
this.validateLevel = userOutput.validateLevel;
this._setPlayerCodeRunning(true);
userOutput.validateLevel(dummyMap);
this._setPlayerCodeRunning(false);
}
dummyMap._clearIntervals();
this.onExit = function () { return true; };
if (typeof userOutput.onExit === "function") {
this.onExit = userOutput.onExit;
}
this.objective = function () { return false; };
if (typeof userOutput.objective === "function") {
this.objective = userOutput.objective;
}
return userOutput.startLevel;
} catch (e) {
// cleanup
this._setPlayerCodeRunning(false);
if (dummyMap) {
dummyMap._clearIntervals();
}
var exceptionText = e.toString();
if (e instanceof this.SyntaxError) {
var lineNum = this.findSyntaxError(allCode, e.message);
if (lineNum) {
exceptionText = "[Line " + lineNum + "] " + exceptionText;
}
}
this.display.appendError(exceptionText);
// throw e; // for debugging
return null;
}
};
// makes sure nothing un-kosher happens during a callback within the game
// e.g. item collison; function phone
Game.prototype.validateCallback = function(callback, throwExceptions) {
var savedException = null;
var exceptionFound = false;
try {
// run the callback and check for forbidden method calls
try {
this._setPlayerCodeRunning(true);
var result = callback();
this._setPlayerCodeRunning(false);
} catch (e) {
// cleanup
this._setPlayerCodeRunning(false);
if (e.toString().indexOf("Forbidden method call") > -1 ||
e.toString().indexOf("Attempt to modify private property") > -1 ||
e.toString().indexOf("Attempt to read private property") > -1) {
// display error, disable player movement
this.display.appendError(e.toString(), "%c{red}Please reload the level.");
this.sound.playSound('static');
this.map.getPlayer()._canMove = false;
this.map._callbackValidationFailed = true;
this.map._clearIntervals();
// throw e; // for debugging
return;
} else {
// other exceptions are fine here, but be sure to run validation before passing them up
savedException = e;
exceptionFound = true;
}
}
// check if validator still passes
try {
if (typeof(this.validateLevel) === 'function') {
this._setPlayerCodeRunning(true);
this.validateLevel(this.map);
this._setPlayerCodeRunning(false);
}
} catch (e) {
this._setPlayerCodeRunning(false);
// validation failed - not much to do here but restart the level, unfortunately
this.display.appendError(e.toString(), "%c{red}Validation failed! Please reload the level.");
// play error sound
this.sound.playSound('static');
// disable player movement
this.map.getPlayer()._canMove = false;
this.map._callbackValidationFailed = true;
this.map._clearIntervals();
return;
}
// refresh the map (unless it refreshes automatically), just in case
if(!this.map._properties.refreshRate) {
this.map.refresh();
}
if(exceptionFound) {
throw savedException;
}
return result;
} catch (e) {
this.map.writeStatus(e.toString());
// throw e; // for debugging
if (throwExceptions) {
throw e;
}
}
};
Game.prototype.validateAndRunScript = function (code) {
try {
// Game.prototype.blah => game.blah
code = code.replace(/Game.prototype/, 'this');
// Blah => game._blahPrototype
code = code.replace(/function Map/, 'this._mapPrototype = function');
code = code.replace(/function Player/, 'this._playerPrototype = function');
new Function(code).bind(this).call(); // bind the function to current instance of game!
if (this._mapPrototype) {
// re-initialize map if necessary
this.map._reset(); // for cleanup
this.map = new this._mapPrototype(this.display, this);
}
// re-initialize objects if necessary
this.objects = this.getListOfObjects();
// and restart current level from saved state
var savedState = this.editor.getGoodState(this._currentLevel);
this._evalLevelCode(savedState['code'], savedState['playerCode'], false, true);
} catch (e) {
this.display.writeStatus(e.toString());
//throw e; // for debugging
}
}
var allowedGlobals = {
// These four are allowed primarily to avoid confusing the programmer
'Object':true,
'Array':true,
'String':true,
'Number':true,
// Math.Floor and Math.random are used in many levels
'Math':true,
// parseInt is used in a few bonus levels
'parseInt':true,
// Date is used by the infinite loop prevention code
'Date':true
}
Game.prototype.initIframe = function(allowjQuery){
var iframe = $("#user_code")[0];
// reset any state in the iframe
iframe.src = "about:blank";
var iframewindow = iframe.contentWindow;
if (iframewindow.eval) {
this._eval = iframewindow.eval;
this.SyntaxError = iframewindow.SyntaxError;
}
// delete any unwated global variables in the iframe
function purgeObject(object) {
var globals = Object.getOwnPropertyNames(object);
for (var i = 0;i < globals.length;i++) {
var variable = globals[i];
if (!allowedGlobals.hasOwnProperty(variable)) {
delete object[variable];
}
}
var prototype = Object.getPrototypeOf(object);
if (prototype && prototype != iframewindow.Object.prototype) {
purgeObject(prototype);
}
}
purgeObject(iframewindow);
// document can't be deleted, so purge it instead
purgeObject(iframewindow.document);
// add in any necessary global variables
iframewindow.ROT = {Map: {DividedMaze: ROT.Map.DividedMaze }}
if (allowjQuery) {
// this is not secure, however it doesn't matter since the only level
// with showDummyDom set has no editable code
iframewindow.$ = iframewindow.jQuery = jQuery;
}
return iframewindow;
}
// Object security
// takes an object and modifies it so that all properties starting with `_`
// throw an error when accessed in level code,
// and that all functions are unwritable
Game.prototype.secureObject = function(object, objecttype) {
for (var prop in object) {
if(prop == "_startOfStartLevelReached" || prop == "_endOfStartLevelReached"){
// despite starting with an _, these two properties are intended to be called from map code
continue;
}
if(prop[0] == "_"){
this.secureProperty(object, prop, objecttype);
} else if (typeof object[prop] == "function") {
Object.defineProperty(object, prop, {
configurable:false,
writable:false
});
}
}
}
Game.prototype.secureProperty = function(object, prop, objecttype){
var val = object[prop];
var game = this;
Object.defineProperty(object, prop, {
configurable:false,
enumerable:false,
get:function(){
if (game._isPlayerCodeRunning()) {
throw "Attempt to read private property " + objecttype + "." + prop;
}
return val;
},
set:function(newValue){
if(game._isPlayerCodeRunning()) {
throw "Attempt to modify private property " + objecttype + "." + prop;
}
val = newValue
}
});
}
// awful awful awful method that tries to find the line
// of code where a given error occurs
Game.prototype.findSyntaxError = function(code, errorMsg) {
var lines = code.split('\n');
// One line at the top is the added declarations and doesn't
// correspond to any real editor code
var phantomLines = 1;
for (var i = 1; i <= lines.length; i++) {
var line = lines[i - 1];
var startStartLevel = "map._startOfStartLevelReached()";
var endStartLevel = "map._endOfStartLevelReached()";
if (line == startStartLevel || line == endStartLevel ) {
// This line was added by the editor and doesn't show up to the user
// so shouldn't be counted.
phantomLines += 1;
}
var testCode = lines.slice(0, i).join('\n');
try {
this._eval("'use strict';" + testCode);
} catch (e) {
if (e.message === errorMsg) {
return i - phantomLines;
}
}
}
return null;
};
|