Skip to content

Commit d4693ff

Browse files
fs: add validation for fd and path
Adds type validation to options fd & opts in `fs.createWriteStream` and `fs.createReadStream`. Fixes: #35178 PR-URL: #35187 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent d08ea01 commit d4693ff

File tree

2 files changed

+66
-1
lines changed

2 files changed

+66
-1
lines changed

lib/internal/fs/streams.js

+17-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ const { Buffer } = require('buffer');
2828
const {
2929
copyObject,
3030
getOptions,
31+
getValidatedFd,
32+
validatePath,
3133
} = require('internal/fs/utils');
3234
const { Readable, Writable, finished } = require('stream');
3335
const { toPathIfFileURL } = require('internal/url');
@@ -119,7 +121,7 @@ function close(stream, err, cb) {
119121

120122
function importFd(stream, options) {
121123
stream.fd = null;
122-
if (options.fd) {
124+
if (options.fd != null) {
123125
if (typeof options.fd === 'number') {
124126
// When fd is a raw descriptor, we must keep our fingers crossed
125127
// that the descriptor won't get closed, or worse, replaced with
@@ -185,6 +187,13 @@ function ReadStream(path, options) {
185187
this.pos = this.start;
186188
}
187189

190+
// If fd has been set, validate, otherwise validate path.
191+
if (this.fd != null) {
192+
this.fd = getValidatedFd(this.fd);
193+
} else {
194+
validatePath(this.path);
195+
}
196+
188197
if (this.end === undefined) {
189198
this.end = Infinity;
190199
} else if (this.end !== Infinity) {
@@ -344,6 +353,13 @@ function WriteStream(path, options) {
344353
this.closed = false;
345354
this[kIsPerformingIO] = false;
346355

356+
// If fd has been set, validate, otherwise validate path.
357+
if (this.fd != null) {
358+
this.fd = getValidatedFd(this.fd);
359+
} else {
360+
validatePath(this.path);
361+
}
362+
347363
if (this.start !== undefined) {
348364
validateInteger(this.start, 'start', 0);
349365

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
'use strict';
2+
require('../common');
3+
4+
const assert = require('assert');
5+
const fs = require('fs');
6+
7+
{
8+
const fd = 'k';
9+
10+
assert.throws(
11+
() => {
12+
fs.createReadStream(null, { fd });
13+
},
14+
{
15+
code: 'ERR_INVALID_ARG_TYPE',
16+
name: 'TypeError',
17+
});
18+
19+
assert.throws(
20+
() => {
21+
fs.createWriteStream(null, { fd });
22+
},
23+
{
24+
code: 'ERR_INVALID_ARG_TYPE',
25+
name: 'TypeError',
26+
});
27+
}
28+
29+
{
30+
const path = 46;
31+
32+
assert.throws(
33+
() => {
34+
fs.createReadStream(path);
35+
},
36+
{
37+
code: 'ERR_INVALID_ARG_TYPE',
38+
name: 'TypeError',
39+
});
40+
41+
assert.throws(
42+
() => {
43+
fs.createWriteStream(path);
44+
},
45+
{
46+
code: 'ERR_INVALID_ARG_TYPE',
47+
name: 'TypeError',
48+
});
49+
}

0 commit comments

Comments
 (0)