Skip to content

Commit

Permalink
fix: emit IPC event in correct context if isolation and sandbox enabl…
Browse files Browse the repository at this point in the history
…ed (electron#16352)

* fix: emit IPC event in correct context if isolation and sandbox enabled

IPC events were not being delivered to renderer processes when both
`contextIsolation` and `sandbox` were enabled. This is because the
`AtomSandboxedRenderFrameObserver` class was incorrectly using the
`MainWorldScriptContext`, rather than conditionally selecting the
context based on if isolation was enabled.

Fixes electron#11922
  • Loading branch information
aegarbutt authored and akisctx committed Jan 22, 2019
1 parent e14d3f8 commit 8670a6e
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 61 deletions.
4 changes: 3 additions & 1 deletion atom/renderer/atom_sandboxed_renderer_client.cc
Expand Up @@ -111,8 +111,10 @@ class AtomSandboxedRenderFrameObserver : public AtomRenderFrameObserver {

auto* isolate = blink::MainThreadIsolate();
v8::HandleScope handle_scope(isolate);
auto context = frame->MainWorldScriptContext();

auto context = renderer_client_->GetContext(frame, isolate);
v8::Context::Scope context_scope(context);

v8::Local<v8::Value> argv[] = {mate::ConvertToV8(isolate, channel),
mate::ConvertToV8(isolate, args),
mate::ConvertToV8(isolate, sender_id)};
Expand Down
83 changes: 37 additions & 46 deletions spec/api-ipc-renderer-spec.js
Expand Up @@ -138,63 +138,54 @@ describe('ipc renderer module', () => {
contents = null
})

it('sends message to WebContents', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-inject-ipc.js')
})

const payload = 'Hello World!'

ipcRenderer.once('pong', (event, data) => {
expect(payload).to.equal(data)
done()
})

contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping', payload)
})

contents.loadFile(path.join(fixtures, 'pages', 'ping-pong.html'))
})
const generateSpecs = (description, webPreferences) => {
describe(description, () => {
it('sends message to WebContents', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-ipc-ping-pong.js'),
...webPreferences
})

it('sends message to WebContents (sanboxed renderer)', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-inject-ipc.js'),
sandbox: true
})
const payload = 'Hello World!'

const payload = 'Hello World!'
ipcRenderer.once('pong', (event, data) => {
expect(payload).to.equal(data)
done()
})

ipcRenderer.once('pong', (event, data) => {
expect(payload).to.equal(data)
done()
})
contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping', payload)
})

contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping', payload)
})
contents.loadFile(path.join(fixtures, 'pages', 'base-page.html'))
})

contents.loadFile(path.join(fixtures, 'pages', 'ping-pong.html'))
})
it('sends message to WebContents (channel has special chars)', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-ipc-ping-pong.js'),
...webPreferences
})

it('sends message to WebContents (channel has special chars)', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-inject-ipc.js')
})
const payload = 'Hello World!'

const payload = 'Hello World!'
ipcRenderer.once('pong-æøåü', (event, data) => {
expect(payload).to.equal(data)
done()
})

ipcRenderer.once('pong-æøåü', (event, data) => {
expect(payload).to.equal(data)
done()
})
contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping-æøåü', payload)
})

contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping-æøåü', payload)
contents.loadFile(path.join(fixtures, 'pages', 'base-page.html'))
})
})
}

contents.loadFile(path.join(fixtures, 'pages', 'ping-pong.html'))
})
generateSpecs('without sandbox', {})
generateSpecs('with sandbox', { sandbox: true })
generateSpecs('with contextIsolation', { contextIsolation: true })
generateSpecs('with contextIsolation + sandbox', { contextIsolation: true, sandbox: true })
})

describe('remote listeners', () => {
Expand Down
2 changes: 0 additions & 2 deletions spec/fixtures/module/preload-inject-ipc.js

This file was deleted.

9 changes: 9 additions & 0 deletions spec/fixtures/module/preload-ipc-ping-pong.js
@@ -0,0 +1,9 @@
const { ipcRenderer } = require('electron')

ipcRenderer.on('ping', function (event, payload) {
ipcRenderer.sendTo(event.senderId, 'pong', payload)
})

ipcRenderer.on('ping-æøåü', function (event, payload) {
ipcRenderer.sendTo(event.senderId, 'pong-æøåü', payload)
})
12 changes: 0 additions & 12 deletions spec/fixtures/pages/ping-pong.html

This file was deleted.

0 comments on commit 8670a6e

Please sign in to comment.