8000 fix: ensure that functions are not retained beyond their context being released by MarshallOfSound · Pull Request #23232 · electron/electron · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: ensure that functions are not retained beyond their context being released #23232

New issue 8000

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,16 @@ void RenderFramePersistenceStore::OnDestruct() {
delete this;
}

void RenderFramePersistenceStore::WillReleaseScriptContext(
v8::Local<v8::Context> context,
int32_t world_id) {
base::EraseIf(functions_, [context](auto const& pair) {
v8::Local<v8::Context> func_owning_context =
std::get<1>(pair.second).Get(context->GetIsolate());
return func_owning_context == context;
});
}

void RenderFramePersistenceStore::CacheProxiedObject(
v8::Local<v8::Value> from,
v8::Local<v8::Value> proxy_value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class RenderFramePersistenceStore final : public content::RenderFrameObserver {

// RenderFrameObserver implementation.
void OnDestruct() override;
void WillReleaseScriptContext(v8::Local<v8::Context> context,
int32_t world_id) override;

size_t take_func_id() { return next_func_id_++; }

Expand Down
41 changes: 39 additions & 2 deletions spec-main/api-context-bridge-spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { contextBridge, BrowserWindow, ipcMain } from 'electron'
import { expect } from 'chai'
import * as fs from 'fs-extra'
import * as http from 'http'
import { AddressInfo } from 'net'
import * as os from 'os'
import * as path from 'path'

Expand All @@ -12,6 +14,20 @@ const fixturesPath = path.resolve(__dirname, 'fixtures', 'api', 'context-bridge'
describe('contextBridge', () => {
let w: BrowserWindow
let dir: string
let server: http.Server

before(async () => {
server = http.createServer((req, res) => {
res.setHeader('Content-Type', 'text/html')
res.end('')
})
await new Promise(resolve => server.listen(0, resolve))
})

after(async () => {
if (server) await new Promise(resolve => server.close(resolve))
server = null as any
})

afterEach(async () => {
await closeWindow(w)
Expand Down Expand Up @@ -64,7 +80,7 @@ describe('contextBridge', () => {
preload: path.resolve(tmpDir, 'preload.js')
}
})
await w.loadFile(path.resolve(fixturesPath, 'empty.html'))
await w.loadURL(`http://127.0.0.1:${(server.address() as AddressInfo).port}`)
}

const callWithBindings = async (fn: Function) => {
Expand Down Expand Up @@ -503,7 +519,28 @@ describe('contextBridge', () => {
expect(info.objectCount).to.equal(6)
})
}


if (useSandbox) {
it('should not leak the global hold on methods sent across contexts when reloading a sandboxed renderer', async () => {
await makeBindingWindow(() => {
require('electron').ipcRenderer.on('get-gc-info', e => e.sender.send('gc-info', (contextBridge as any).debugGC()))
contextBridge.exposeInMainWorld('example', {
getFunction: () => () => 123
})
require('electron').ipcRenderer.send('window-ready-for-tasking')
})
const loadPromise = emittedOnce(ipcMain, 'window-ready-for-tasking')
expect((await getGCInfo()).functionCount).to.equal(1)
await callWithBindings((root: any) => {
root.location.reload()
})
await loadPromise
// If this is ever "2" it means we leaked the exposed function and
// therefore the entire context after a reload
expect((await getGCInfo()).functionCount).to.equal(1)
})
}

it('it should not let you overwrite existing exposed things', async () => {
await makeBindingWindow(() => {
let threw = false
Expand Down
0