Skip to content

Commit 13c931a

Browse files
cjihrigjasnell
authored andcommitted
process: add range validation to debugPort
This commit adds validation to the process.debugPort setter. Fixes: #38037 PR-URL: #38205 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
1 parent 756d2e4 commit 13c931a

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

src/node_process_object.cc

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include "env-inl.h"
2+
#include "node_errors.h"
23
#include "node_external_reference.h"
34
#include "node_internals.h"
45
#include "node_metadata.h"
@@ -60,6 +61,13 @@ static void DebugPortSetter(Local<Name> property,
6061
const PropertyCallbackInfo<void>& info) {
6162
Environment* env = Environment::GetCurrent(info);
6263
int32_t port = value->Int32Value(env->context()).FromMaybe(0);
64+
65+
if ((port != 0 && port < 1024) || port > 65535) {
66+
return THROW_ERR_OUT_OF_RANGE(
67+
env,
68+
"process.debugPort must be 0 or in range 1024 to 65535");
69+
}
70+
6371
ExclusiveAccess<HostPort>::Scoped host_port(env->inspector_host_port());
6472
host_port->set_port(static_cast<int>(port));
6573
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
'use strict';
2+
const common = require('../common');
3+
4+
common.skipIfInspectorDisabled();
5+
common.skipIfWorker();
6+
7+
const assert = require('assert');
8+
const kMinPort = 1024;
9+
const kMaxPort = 65535;
10+
11+
function check(value, expected) {
12+
process.debugPort = value;
13+
assert.strictEqual(process.debugPort, expected);
14+
}
15+
16+
// Expected usage with numbers.
17+
check(0, 0);
18+
check(kMinPort, kMinPort);
19+
check(kMinPort + 1, kMinPort + 1);
20+
check(kMaxPort - 1, kMaxPort - 1);
21+
check(kMaxPort, kMaxPort);
22+
23+
// Numeric strings coerce.
24+
check('0', 0);
25+
check(`${kMinPort}`, kMinPort);
26+
check(`${kMinPort + 1}`, kMinPort + 1);
27+
check(`${kMaxPort - 1}`, kMaxPort - 1);
28+
check(`${kMaxPort}`, kMaxPort);
29+
30+
// Most other values are coerced to 0.
31+
check('', 0);
32+
check(false, 0);
33+
check(NaN, 0);
34+
check(Infinity, 0);
35+
check(-Infinity, 0);
36+
check(function() {}, 0);
37+
check({}, 0);
38+
check([], 0);
39+
40+
// Symbols do not coerce.
41+
assert.throws(() => {
42+
process.debugPort = Symbol();
43+
}, /^TypeError: Cannot convert a Symbol value to a number$/);
44+
45+
// Verify port bounds checking.
46+
[
47+
true,
48+
-1,
49+
1,
50+
kMinPort - 1,
51+
kMaxPort + 1,
52+
'-1',
53+
'1',
54+
`${kMinPort - 1}`,
55+
`${kMaxPort + 1}`,
56+
].forEach((value) => {
57+
assert.throws(() => {
58+
process.debugPort = value;
59+
}, /^RangeError: process\.debugPort must be 0 or in range 1024 to 65535$/);
60+
});

0 commit comments

Comments
 (0)