Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Add support for Node native addons #837

Merged
merged 17 commits into from
Mar 2, 2021
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,17 @@ This way you may even avoid creating `pkg` config for your project.

## Native addons

Native addons (`.node` files) use is supported, but packaging
`.node` files inside the executable is not resolved yet. You have
to deploy native addons used by your project to the same directory
as the executable.
Native addons (`.node` files) use is supported. When `pkg` encounters
a `.node` file in a `require` call, it will package this like an asset.
In some cases (like with the `bindings` package), the module path is generated
dynamicaly and `pkg` won't be able to detect it. In this case, you should
add the `.node` file directly in the `assets` field in `package.json`.

The way NodeJS requires native addon is different from a classic JS
leerob marked this conversation as resolved.
Show resolved Hide resolved
file. It needs to have a file on disk to load it but `pkg` only generate
leerob marked this conversation as resolved.
Show resolved Hide resolved
one file. To circumvent this, `pkg` will create a temporary file on the
disk. These files will stay on the disk after the process has exited
and will be used again on the next process launch.

When a package, that contains a native module, is being installed,
the native module is compiled against current system-wide Node.js
Expand Down
9 changes: 2 additions & 7 deletions lib/packer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import {
STORE_BLOB, STORE_CONTENT, STORE_LINKS,
STORE_STAT, isDotJS, isDotJSON, isDotNODE
STORE_STAT, isDotJS, isDotJSON
} from '../prelude/common.js';

import { log, wasReported } from './log.js';
Expand Down Expand Up @@ -34,18 +34,13 @@ function hasAnyStore (record) {

export default function ({ records, entrypoint, bytecode }) {
const stripes = [];

for (const snap in records) {
const record = records[snap];
const { file } = record;
if (!hasAnyStore(record)) continue;
assert(record[STORE_STAT], 'packer: no STORE_STAT');

if (isDotNODE(file)) {
continue;
} else {
assert(record[STORE_BLOB] || record[STORE_CONTENT] || record[STORE_LINKS]);
}
assert(record[STORE_BLOB] || record[STORE_CONTENT] || record[STORE_LINKS]);

if (record[STORE_BLOB] && !bytecode) {
delete record[STORE_BLOB];
Expand Down
15 changes: 1 addition & 14 deletions lib/walker.js
Original file line number Diff line number Diff line change
Expand Up @@ -512,24 +512,11 @@ class Walker {
store: STORE_STAT
});

if (isDotNODE(record.file)) {
// provide explicit deployFiles to override
// native addon deployment place. see 'sharp'
if (!marker.hasDeployFiles) {
log.warn('Cannot include addon %1 into executable.', [
'The addon must be distributed with executable as %2.',
'%1: ' + record.file,
'%2: path-to-executable/' + path.basename(record.file) ]);
}
return; // discard
}

const derivatives1 = [];
await this.stepActivate(marker, derivatives1);
await this.stepDerivatives(record, marker, derivatives1);

if (store === STORE_BLOB) {
if (unlikelyJavascript(record.file)) {
if (unlikelyJavascript(record.file) || isDotNODE(record.file)) {
this.append({
file: record.file,
marker,
Expand Down
62 changes: 62 additions & 0 deletions prelude/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1512,3 +1512,65 @@ function payloadFileSync (pointer) {
});
}
}());

// /////////////////////////////////////////////////////////////////
// PATCH PROCESS ///////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////

(function() {
const fs = require('fs');
var ancestor = {};
ancestor.dlopen = process.dlopen;

process.dlopen = function () {
const args = cloneArgs(arguments);
const modulePath = args[1];
const moduleDirname = require('path').dirname(modulePath);
if (insideSnapshot(modulePath)) {
// Node addon files and .so cannot be read with fs directly, they are loaded with process.dlopen which needs a filesystem path
// we need to write the file somewhere on disk first and then load it
const moduleContent = fs.readFileSync(modulePath);
const moduleBaseName = require('path').basename(modulePath);
const hash = require('crypto').createHash('sha256').update(moduleContent).digest('hex');
const tmpModulePath = `${require('os').tmpdir()}/${hash}_${moduleBaseName}`;
try {
fs.statSync(tmpModulePath);
} catch (e) {
// Most likely this means the module is not on disk yet
fs.writeFileSync(tmpModulePath, moduleContent, { mode: 0o444 });
}
args[1] = tmpModulePath;
}

const unknownModuleErrorRegex = /([^:]+): cannot open shared object file: No such file or directory/;
const tryImporting = function (previousErrorMessage) {
try {
const res = ancestor.dlopen.apply(process, args);
return res;
} catch (e) {
if (e.message === previousErrorMessage) {
// we already tried to fix this and it didn't work, give up
throw e;
}
if (e.message.match(unknownModuleErrorRegex)) {
// some modules are packaged with dynamic linking and needs to open other files that should be in
// the same directory, in this case, we write this file in the same /tmp directory and try to
// import the module again
const moduleName = e.message.match(unknownModuleErrorRegex)[1];
const modulePath = `${moduleDirname}/${moduleName}`;
const moduleContent = fs.readFileSync(modulePath);
const moduleBaseName = require('path').basename(modulePath);
const tmpModulePath = `${require('os').tmpdir()}/${moduleBaseName}`;
try {
fs.statSync(tmpModulePath);
} catch (e) {
fs.writeFileSync(tmpModulePath, moduleContent, { mode: 0o444 });
}
return tryImporting(e.message);
}
throw e;
}
}
tryImporting();
}
}());
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ right = utils.pkg.sync([

assert(right.indexOf('\x1B\x5B') < 0, 'colors detected');
right = right.replace(/\\/g, '/');
assert(right.indexOf('test-50-cannot-include-addon/time.node') >= 0);
assert(right.indexOf('path-to-executable/time.node') >= 0);
assert(right.indexOf('test-50-can-include-addon/time.node') === -1);
assert(right.indexOf('path-to-executable/time.node') === -1);
utils.vacuum.sync(output);
1 change: 1 addition & 0 deletions test/test-50-can-include-addon/time.node
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'test';
1 change: 0 additions & 1 deletion test/test-50-cannot-include-addon/time.node

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/test-50-native-addon-3/lib/community/time-y.node
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('path').basename(__filename);
module.exports = 'time-y';
2 changes: 1 addition & 1 deletion test/test-50-native-addon-3/lib/enterprise/time-z.node
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('path').basename(__filename);
module.exports = 'time-z';
2 changes: 1 addition & 1 deletion test/test-50-native-addon-3/lib/time-x.node
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('path').basename(__filename);
module.exports = 'test';

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions test/test-50-native-addon-4/lib/time.node
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'test';
36 changes: 36 additions & 0 deletions test/test-50-native-addon-4/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env node

'use strict';

const path = require('path');
const assert = require('assert');
const utils = require('../utils.js');

assert(!module.parent);
assert(__dirname === process.cwd());

const host = 'node' + process.version.match(/^v(\d+)/)[1];
const target = process.argv[2] || host;
const input = './test-x-index.js';
const output = './run-time/test-output.exe';

let left, right;
utils.mkdirp.sync(path.dirname(output));

left = utils.spawn.sync(
'node', [ path.basename(input) ],
{ cwd: path.dirname(input) }
);

utils.pkg.sync([
'--target', target,
'--output', output, input
]);

right = utils.spawn.sync(
'./' + path.basename(output), [],
{ cwd: path.dirname(output) }
);

assert.equal(left, right);
utils.vacuum.sync(path.dirname(output));
10 changes: 10 additions & 0 deletions test/test-50-native-addon-4/test-x-index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* eslint-disable no-underscore-dangle */

'use strict';

var fs = require('fs');
var path = require('path');
var Module = require('module');
Module._extensions['.node'] = Module._extensions['.js'];
console.log(fs.existsSync(path.join(__dirname, 'lib/time.node')));
console.log(require('./lib/time.node'));
2 changes: 1 addition & 1 deletion test/test-50-native-addon/lib/time.node
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('path').basename(__filename);
module.exports = 'test';