Skip to content

Commit b373a2c

Browse files
juanarboljasnell
authored andcommitted
Revert "worker: remove ERR_CLOSED_MESSAGE_PORT"
This reverts commit 73370b4. The unit test is preserved to make sure it does not break #26463 again. PR-URL: #38510 Fixes: #38499 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent bed947b commit b373a2c

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

doc/api/errors.md

+6
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,12 @@ Used when a child process is being forked without specifying an IPC channel.
714714
Used when the main process is trying to read data from the child process's
715715
STDERR/STDOUT, and the data's length is longer than the `maxBuffer` option.
716716

717+
<a id="ERR_CLOSED_MESSAGE_PORT"></a>
718+
### ERR_CLOSED_MESSAGE_PORT
719+
720+
There was an attempt to use a `MessagePort` instance in a closed
721+
state, usually after `.close()` has been called.
722+
717723
<a id="ERR_CONSOLE_WRITABLE_STREAM"></a>
718724
### `ERR_CONSOLE_WRITABLE_STREAM`
719725

src/node_errors.h

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ void OnFatalError(const char* location, const char* message);
3232
V(ERR_BUFFER_CONTEXT_NOT_AVAILABLE, Error) \
3333
V(ERR_BUFFER_OUT_OF_BOUNDS, RangeError) \
3434
V(ERR_BUFFER_TOO_LARGE, Error) \
35+
V(ERR_CLOSED_MESSAGE_PORT, Error) \
3536
V(ERR_CONSTRUCT_CALL_REQUIRED, TypeError) \
3637
V(ERR_CONSTRUCT_CALL_INVALID, TypeError) \
3738
V(ERR_CRYPTO_INITIALIZATION_FAILED, Error) \
@@ -118,6 +119,7 @@ ERRORS_WITH_CODE(V)
118119
#define PREDEFINED_ERROR_MESSAGES(V) \
119120
V(ERR_BUFFER_CONTEXT_NOT_AVAILABLE, \
120121
"Buffer is not available for the current Context") \
122+
V(ERR_CLOSED_MESSAGE_PORT, "Cannot send data on closed MessagePort") \
121123
V(ERR_CONSTRUCT_CALL_INVALID, "Constructor cannot be called") \
122124
V(ERR_CONSTRUCT_CALL_REQUIRED, "Cannot call constructor without `new`") \
123125
V(ERR_CRYPTO_INITIALIZATION_FAILED, "Initialization failed") \

src/node_messaging.cc

+5-1
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,11 @@ void MessagePort::MoveToContext(const FunctionCallbackInfo<Value>& args) {
10651065
"The \"port\" argument must be a MessagePort instance");
10661066
}
10671067
MessagePort* port = Unwrap<MessagePort>(args[0].As<Object>());
1068-
CHECK_NOT_NULL(port);
1068+
if (port == nullptr || port->IsHandleClosing()) {
1069+
Isolate* isolate = env->isolate();
1070+
THROW_ERR_CLOSED_MESSAGE_PORT(isolate);
1071+
return;
1072+
}
10691073

10701074
Local<Value> context_arg = args[1];
10711075
ContextifyContext* context_wrapper;

0 commit comments

Comments
 (0)