fix(fs): use libuv for recursive cpSync to avoid VirtioFS EACCES - #65547
Open
shoemoney wants to merge 1 commit into
Open
fix(fs): use libuv for recursive cpSync to avoid VirtioFS EACCES#65547shoemoney wants to merge 1 commit into
shoemoney wants to merge 1 commit into
Conversation
Fix verified RED->GREEN. fs.cpSync recursive copy fails EACCES on Docker VirtioFS bind mounts via std::filesystem 0200 intermediate at node_file.cc:4205. libstdc++ creates dest with 0200 then fchmod, VirtioFS blocks. Single-file path at 4015 correctly uses uv_fs_copyfile when mode != 0. Fixes: nodejs#65497 Signed-off-by: Jeremy Schoemaker <jeremy@shoemoney.com> Assisted-by: Claude <noreply@anthropic.com>
shoemoney
force-pushed
the
fix/cpsync-virtiofs-permission
branch
from
August 25, 2026 22:13
0f9ffa7 to
221cfd9
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes recursive cpSync EACCES on Docker VirtioFS bind mounts.
Bug: CpSyncCopyDir at src/node_file.cc:4205 uses std::filesystem::copy_file which libstdc++ implements by creating dest with 0200 then fchmod. VirtioFS blocks the 0200 creation with EACCES. Single-file path at 4015 already avoids this by using uv_fs_copyfile when mode != 0.
Fix: Use uv_fs_copyfile with mode 0 for recursive regular-file copies, preserving force, errorOnExist and skipExisting semantics via UV_FS_COPYFILE_EXCL and an exists check. Mirrors the single-file path fix.
Evidence: Verified RED before and GREEN after. All 42 test/parallel/test-fs-cp-sync* tests pass sequentially.
Fixes: #65497
Signed-off-by: Jeremy Schoemaker (jeremy@shoemoney.com)
Assisted-by: Claude