Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2016-03-05 01:14:27 +0300
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-03-08 23:57:16 +0300
commit5e6d7067583632ac5885b8f8669ca25d2e61f627 (patch)
tree60a223ff7d4a88b442d55e2ee94eff638b44b7ca
parent85013456cd26c527bcd8f50da80a58cab36a0fdc (diff)
src,http: fix uncaughtException miss in http
In AsyncWrap::MakeCallback always return empty handle if there is an error. In the future this should change to return a v8::MaybeLocal, but that major change will have to wait for v6.x, and these changes are meant to be backported to v4.x. The HTTParser call to AsyncWrap::MakeCallback failed because it expected a thrown call to return an empty handle. In node::MakeCallback return an empty handle if the call is in_makecallback(), otherwise return v8::Undefined() as usual to preserve backwards compatibility. Fixes: https://github.com/nodejs/node/issues/5555 PR-URL: https://github.com/nodejs/node/pull/5591 Reviewed-By: Julien Gilli <jgilli@nodejs.org>
-rw-r--r--src/async-wrap.cc6
-rw-r--r--src/node.cc6
-rw-r--r--test/parallel/test-http-catch-uncaughtexception.js23
3 files changed, 31 insertions, 4 deletions
diff --git a/src/async-wrap.cc b/src/async-wrap.cc
index 11a696cc232..e2054031014 100644
--- a/src/async-wrap.cc
+++ b/src/async-wrap.cc
@@ -193,7 +193,7 @@ Local<Value> AsyncWrap::MakeCallback(const Local<Function> cb,
if (has_domain) {
domain = domain_v.As<Object>();
if (domain->Get(env()->disposed_string())->IsTrue())
- return Undefined(env()->isolate());
+ return Local<Value>();
}
}
@@ -220,7 +220,7 @@ Local<Value> AsyncWrap::MakeCallback(const Local<Function> cb,
}
if (ret.IsEmpty()) {
- return Undefined(env()->isolate());
+ return ret;
}
if (has_domain) {
@@ -249,7 +249,7 @@ Local<Value> AsyncWrap::MakeCallback(const Local<Function> cb,
}
if (env()->tick_callback_function()->Call(process, 0, nullptr).IsEmpty()) {
- return Undefined(env()->isolate());
+ return Local<Value>();
}
return ret;
diff --git a/src/node.cc b/src/node.cc
index 96485711c0a..cceb70361a9 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -1185,7 +1185,11 @@ Local<Value> MakeCallback(Environment* env,
}
if (ret.IsEmpty()) {
- return Undefined(env->isolate());
+ if (callback_scope.in_makecallback())
+ return ret;
+ // NOTE: Undefined() is returned here for backwards compatibility.
+ else
+ return Undefined(env->isolate());
}
if (has_domain) {
diff --git a/test/parallel/test-http-catch-uncaughtexception.js b/test/parallel/test-http-catch-uncaughtexception.js
new file mode 100644
index 00000000000..c4054aafbfb
--- /dev/null
+++ b/test/parallel/test-http-catch-uncaughtexception.js
@@ -0,0 +1,23 @@
+'use strict';
+
+const common = require('../common');
+const assert = require('assert');
+const http = require('http');
+
+const uncaughtCallback = common.mustCall(function(er) {
+ assert.equal(er.message, 'get did fail');
+});
+
+process.on('uncaughtException', uncaughtCallback);
+
+const server = http.createServer(function(req, res) {
+ res.writeHead(200, { 'Content-Type': 'text/plain' });
+ res.end('bye');
+}).listen(common.PORT, function() {
+ http.get({ port: common.PORT }, function(res) {
+ res.resume();
+ throw new Error('get did fail');
+ }).on('close', function() {
+ server.close();
+ });
+});