Skip to content

Commit 24b02f6

Browse files
committed
fs: fix rmsync error swallowing
fix rmsync swallowing errors instead of throwing them. fixes: nodejs#38683
1 parent aefc621 commit 24b02f6

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

lib/internal/fs/rimraf.js

+14
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,12 @@ function _unlinkSync(path, options) {
219219
i < tries &&
220220
options.retryDelay > 0) {
221221
sleep(i * options.retryDelay);
222+
} else {
223+
// The file is already gone.
224+
if (err.code === 'ENOENT') {
225+
return;
226+
}
227+
throw err;
222228
}
223229
}
224230
}
@@ -259,10 +265,18 @@ function _rmdirSync(path, options, originalErr) {
259265
i < tries &&
260266
options.retryDelay > 0) {
261267
sleep(i * options.retryDelay);
268+
} else {
269+
// The file is already gone.
270+
if (err.code === 'ENOENT') {
271+
return;
272+
}
273+
throw err;
262274
}
263275
}
264276
}
265277
}
278+
279+
throw originalErr;
266280
}
267281
}
268282

test/parallel/test-fs-rm.js

+21
Original file line numberDiff line numberDiff line change
@@ -280,3 +280,24 @@ function removeAsync(dir) {
280280
message: /^The value of "options\.maxRetries" is out of range\./
281281
});
282282
}
283+
284+
{
285+
// Check the deleting a file that cannot be accessed using rmsync throws
286+
const dirname = nextDirPath();
287+
try {
288+
fs.mkdirSync(dirname, { recursive: true });
289+
fs.writeFileSync(path.join(dirname, 'text.txt'), 'hello');
290+
fs.chmodSync(dirname, '500');
291+
assert.throws(() => {
292+
fs.rmSync(`${dirname}/text.txt`, { force: true });
293+
}, {
294+
code: 'EACCES',
295+
syscall: 'unlink',
296+
name: 'Error',
297+
errno: -13,
298+
});
299+
} finally {
300+
fs.chmodSync(dirname, '777');
301+
fs.rmSync(`${dirname}/text.txt`, { force: true });
302+
}
303+
}

0 commit comments

Comments
 (0)