-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fs: do not crash when using a closed fs event watcher
Before this commit, when the user calls methods on a closed or errored fs event watcher, they could hit a crash since the FSEventWrap in C++ land may have already been destroyed with the internal pointer set to nullptr. This commit makes sure that the user cannot hit crashes like that, instead the methods calling on a closed watcher will be noops. Also explicitly documents that the watchers should not be used in `close` and `error` event handlers. PR-URL: #20985 Fixes: #20738 Fixes: #20297 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Tiancheng "Timothy" Gu <[email protected]> Backport-PR-URL: #21172
- Loading branch information
1 parent
b4b7d36
commit c09bfd8
Showing
4 changed files
with
74 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
'use strict'; | ||
|
||
// This tests that closing a watcher when the underlying handle is | ||
// already destroyed will result in a noop instead of a crash. | ||
|
||
const common = require('../common'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
tmpdir.refresh(); | ||
const root = path.join(tmpdir.path, 'watched-directory'); | ||
fs.mkdirSync(root); | ||
|
||
const watcher = fs.watch(root, { persistent: false, recursive: false }); | ||
|
||
// The following listeners may or may not be invoked. | ||
|
||
watcher.addListener('error', () => { | ||
setTimeout( | ||
() => { watcher.close(); }, // Should not crash if it's invoked | ||
common.platformTimeout(10) | ||
); | ||
}); | ||
|
||
watcher.addListener('change', () => { | ||
setTimeout( | ||
() => { watcher.close(); }, | ||
common.platformTimeout(10) | ||
); | ||
}); | ||
|
||
fs.rmdirSync(root); | ||
// Wait for the listener to hit | ||
setTimeout( | ||
common.mustCall(() => {}), | ||
common.platformTimeout(100) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters