-
Notifications
You must be signed in to change notification settings - Fork 31.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recursive fs.readdirSync tries to recurse into Unix domain socket #52159
Comments
Amusingly this works if you pass Edit: Ah, yeah, looks like this is wrong. That code has been wrong for a long time. Didn't matter when it was just used for module loading, since it would end up being "module not found", but using it here exposes the problem. |
I think |
PR-URL: #52164 Fixes: #52159 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #52164 Fixes: #52159 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #52164 Fixes: #52159 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #52164 Fixes: #52159 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: nodejs#52164 Fixes: nodejs#52159 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: nodejs#52164 Fixes: nodejs#52159 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
Version
v21.7.1
Platform
Darwin nathan-MacBook-Pro 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:31:00 PST 2023; root:xnu-10002.81.5~7/RELEASE_ARM64_T6020 arm64
Subsystem
fs
What steps will reproduce the bug?
The following snippet will reproduce the bug on macOS and Linux; I'm not able to test it on Windows:
How often does it reproduce? Is there a required condition?
It reproduces consistently for me.
What is the expected behavior? Why is that the expected behavior?
I would expect to see output like the following:
In both the recursive and non-recursive case, listing a directory with a single file in it should produce an array containing that file's name.
What do you see instead?
Instead, I see the following output:
Additional information
For some reason, it's treating a Unix domain socket as a directory and it tries to call
scandir
on it, which is clearly not valid.To confirm that
dir/file.sock
created by the above script is indeed a socket, I ran the following (output shown below the command):The text was updated successfully, but these errors were encountered: