From 251e5ed8ee91747e31233fb2711f31be5d2e98a6 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Fri, 10 Feb 2017 10:18:19 -0800 Subject: [PATCH] errors: assign error code to bootstrap_node created error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This does not use the internal/errors.js module because the error in question may actually be *caused* by an attempt to load internal/errors.js. This error should only be encountered in the case of a bug within Node.js itself. PR-URL: https://github.com/nodejs/node/pull/11298 Ref: https://github.com/nodejs/node/issues/11273 Reviewed-By: Joyee Cheung Reviewed-By: Michaƫl Zasso Reviewed-By: Michael Dawson Reviewed-By: Sakthipriyan Vairamani --- doc/api/errors.md | 10 ++++++++++ lib/internal/bootstrap_node.js | 8 +++++++- lib/internal/errors.js | 1 + 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/doc/api/errors.md b/doc/api/errors.md index 7ee2963ae0352b..0d02fe58707355 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -558,6 +558,7 @@ found [here][online]. encountered by [`http`][] or [`net`][] -- often a sign that a `socket.end()` was not properly called. + ## Node.js Error Codes @@ -587,6 +588,14 @@ An error using the `'ERR_STDOUT_CLOSE'` code is thrown specifically when an attempt is made to close the `process.stdout` stream. By design, Node.js does not allow `stdout` or `stderr` Streams to be closed by user code. + +### ERR_UNKNOWN_BUILTIN_MODULE + +The `'ERR_UNKNOWN_BUILTIN_MODULE'` error code is used to identify a specific +kind of internal Node.js error that should not typically be triggered by user +code. Instances of this error point to an internal bug within the Node.js +binary itself. + ### ERR_UNKNOWN_STDIN_TYPE @@ -605,6 +614,7 @@ an attempt is made to launch a Node.js process with an unknown `stdout` or in user code, although it is not impossible. Occurrences of this error are most likely an indication of a bug within Node.js itself. + [`fs.readdir`]: fs.html#fs_fs_readdir_path_options_callback [`fs.readFileSync`]: fs.html#fs_fs_readfilesync_file_options [`fs.unlink`]: fs.html#fs_fs_unlink_path_callback diff --git a/lib/internal/bootstrap_node.js b/lib/internal/bootstrap_node.js index cec87f4a9e23bf..038e71502bdb1a 100644 --- a/lib/internal/bootstrap_node.js +++ b/lib/internal/bootstrap_node.js @@ -462,7 +462,13 @@ } if (!NativeModule.exists(id)) { - throw new Error(`No such native module ${id}`); + // Model the error off the internal/errors.js model, but + // do not use that module given that it could actually be + // the one causing the error if there's a bug in Node.js + const err = new Error(`No such built-in module: ${id}`); + err.code = 'ERR_UNKNOWN_BUILTIN_MODULE'; + err.name = 'Error [ERR_UNKNOWN_BUILTIN_MODULE]'; + throw err; } process.moduleLoadList.push(`NativeModule ${id}`); diff --git a/lib/internal/errors.js b/lib/internal/errors.js index dc56c68f34d281..58cc4979392b57 100644 --- a/lib/internal/errors.js +++ b/lib/internal/errors.js @@ -86,6 +86,7 @@ E('ERR_STDERR_CLOSE', 'process.stderr cannot be closed'); E('ERR_STDOUT_CLOSE', 'process.stdout cannot be closed'); E('ERR_UNKNOWN_STDIN_TYPE', 'Unknown stdin file type'); E('ERR_UNKNOWN_STREAM_TYPE', 'Unknown stream file type'); +E('ERR_UNKNOWN_BUILTIN_MODULE', (id) => `No such built-in module: ${id}`); // Add new errors from here... function invalidArgType(name, expected, actual) {