Refactor sandbox preload initialization. (#12877)

Use a single synchronous IPC call to retrieve data required by early
sandbox scripts. This has two purposes:

- Optimize preload script initialization by:
  - Using one synchronous IPC call to retrieve preload script,
  webContentsId (more on that later), process.{platform,execPath,env}
  - Lazy loading as many modules as possible.
- Fix #12316 for sandbox. @MarshallOfSound addressed the issue in
  #12342, but it was still present in sandbox mode. By loading
  webContentsId very early and skipping remote module at early
  startup, we fix it for sandbox.
This commit is contained in:
Thiago de Arruda 2018-05-21 09:56:05 -03:00 committed by Samuel Attard
parent ef7947d176
commit 6f076f7433
3 changed files with 62 additions and 21 deletions

View file

@ -3,6 +3,7 @@
const {Buffer} = require('buffer') const {Buffer} = require('buffer')
const electron = require('electron') const electron = require('electron')
const {EventEmitter} = require('events') const {EventEmitter} = require('events')
const fs = require('fs')
const v8Util = process.atomBinding('v8_util') const v8Util = process.atomBinding('v8_util')
const {ipcMain, isPromise, webContents} = electron const {ipcMain, isPromise, webContents} = electron
@ -448,3 +449,23 @@ ipcMain.on('ELECTRON_BROWSER_WINDOW_CLOSE', function (event) {
} }
event.returnValue = null event.returnValue = null
}) })
ipcMain.on('ELECTRON_BROWSER_SANDBOX_LOAD', function (event, preloadPath) {
let preloadSrc = null
let preloadError = null
if (preloadPath) {
try {
preloadSrc = fs.readFileSync(preloadPath).toString()
} catch (err) {
preloadError = {stack: err ? err.stack : (new Error(`Failed to load "${preloadPath}"`)).stack}
}
}
event.returnValue = {
preloadSrc: preloadSrc,
preloadError: preloadError,
webContentsId: event.sender.getId(),
platform: process.platform,
execPath: process.execPath,
env: process.env
}
})

View file

@ -306,10 +306,13 @@ exports.getCurrentWebContents = () => {
const CONTEXT_ARG = '--context-id=' const CONTEXT_ARG = '--context-id='
let initialContext = process.argv.find(arg => arg.startsWith(CONTEXT_ARG)) let initialContext = process.argv.find(arg => arg.startsWith(CONTEXT_ARG))
if (initialContext) { if (process.webContentsId) {
// set by sandbox renderer init script
initialContext = process.webContentsId
} else if (initialContext) {
initialContext = parseInt(initialContext.substr(CONTEXT_ARG.length), 10) initialContext = parseInt(initialContext.substr(CONTEXT_ARG.length), 10)
} else { } else {
// In sandbox we need to pull this from remote // if not available, pull from remote
initialContext = exports.getCurrentWebContents().getId() initialContext = exports.getCurrentWebContents().getId()
} }

View file

@ -1,6 +1,7 @@
/* eslint no-eval: "off" */ /* eslint no-eval: "off" */
/* global binding, preloadPath, Buffer */ /* global binding, preloadPath, Buffer */
const events = require('events') const events = require('events')
const electron = require('electron')
process.atomBinding = require('../common/atom-binding-setup')(binding.get, 'renderer') process.atomBinding = require('../common/atom-binding-setup')(binding.get, 'renderer')
@ -20,19 +21,30 @@ for (let prop of Object.keys(events.EventEmitter.prototype)) {
} }
Object.setPrototypeOf(process, events.EventEmitter.prototype) Object.setPrototypeOf(process, events.EventEmitter.prototype)
const electron = require('electron') const remoteModules = new Set([
const fs = require('fs') 'child_process',
const preloadModules = new Map([ 'fs',
['child_process', require('child_process')], 'os',
'path'
])
const loadedModules = new Map([
['electron', electron], ['electron', electron],
['events', events], ['events', events],
['fs', fs], ['timers', require('timers')],
['os', require('os')], ['url', require('url')]
['path', require('path')],
['url', require('url')],
['timers', require('timers')]
]) ])
const {
preloadSrc, preloadError, webContentsId, platform, execPath, env
} = electron.ipcRenderer.sendSync('ELECTRON_BROWSER_SANDBOX_LOAD', preloadPath)
Object.defineProperty(process, 'webContentsId', {
configurable: false,
writable: false,
value: webContentsId
})
require('../renderer/web-frame-init')() require('../renderer/web-frame-init')()
// Pass different process object to the preload script(which should not have // Pass different process object to the preload script(which should not have
@ -43,15 +55,19 @@ preloadProcess.hang = () => binding.hang()
preloadProcess.getProcessMemoryInfo = () => binding.getProcessMemoryInfo() preloadProcess.getProcessMemoryInfo = () => binding.getProcessMemoryInfo()
preloadProcess.getSystemMemoryInfo = () => binding.getSystemMemoryInfo() preloadProcess.getSystemMemoryInfo = () => binding.getSystemMemoryInfo()
preloadProcess.argv = binding.getArgv() preloadProcess.argv = binding.getArgv()
process.platform = preloadProcess.platform = electron.remote.process.platform preloadProcess.platform = process.platform = platform
process.execPath = preloadProcess.execPath = electron.remote.process.execPath preloadProcess.execPath = process.execPath = execPath
process.env = preloadProcess.env = electron.remote.process.env preloadProcess.env = process.env = env
process.on('exit', () => preloadProcess.emit('exit')) process.on('exit', () => preloadProcess.emit('exit'))
// This is the `require` function that will be visible to the preload script // This is the `require` function that will be visible to the preload script
function preloadRequire (module) { function preloadRequire (module) {
if (preloadModules.has(module)) { if (loadedModules.has(module)) {
return preloadModules.get(module) return loadedModules.get(module)
}
if (remoteModules.has(module)) {
return require(module)
} }
throw new Error('module not found') throw new Error('module not found')
} }
@ -80,9 +96,8 @@ if (window.location.protocol === 'chrome-devtools:') {
// and any `require('electron')` calls in `preload.js` will work as expected // and any `require('electron')` calls in `preload.js` will work as expected
// since browserify won't try to include `electron` in the bundle, falling back // since browserify won't try to include `electron` in the bundle, falling back
// to the `preloadRequire` function above. // to the `preloadRequire` function above.
if (preloadPath) { if (preloadSrc) {
const preloadSrc = fs.readFileSync(preloadPath).toString() const preloadWrapperSrc = `(function(require, process, Buffer, global, setImmediate, clearImmediate) {
const preloadWrapperSrc = `(function(require, process, Buffer, global, setImmediate) {
${preloadSrc} ${preloadSrc}
})` })`
@ -90,6 +105,8 @@ if (preloadPath) {
// http://www.ecma-international.org/ecma-262/5.1/#sec-10.4.2 // http://www.ecma-international.org/ecma-262/5.1/#sec-10.4.2
const geval = eval const geval = eval
const preloadFn = geval(preloadWrapperSrc) const preloadFn = geval(preloadWrapperSrc)
const {setImmediate} = require('timers') const {setImmediate, clearImmediate} = require('timers')
preloadFn(preloadRequire, preloadProcess, Buffer, global, setImmediate) preloadFn(preloadRequire, preloadProcess, Buffer, global, setImmediate, clearImmediate)
} else if (preloadError) {
console.error(preloadError.stack)
} }