Skip to content
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

os: faster os.Root operations where available #73076

Open
neild opened this issue Mar 27, 2025 · 0 comments
Open

os: faster os.Root operations where available #73076

neild opened this issue Mar 27, 2025 · 0 comments
Assignees
Labels
LibraryProposal Issues describing a requested change to the Go standard library or x/ libraries, but not to a tool NeedsFix The path to resolution is known, but the work has not been done. Performance

Comments

@neild
Copy link
Contributor

neild commented Mar 27, 2025

Most os.Root operations reduce to opening a file within a root, and then performing some action on that file. For example, Root.Open opens a file and returns it, and Root.Mkdir opens the parent directory of its parameter and then creates a directory within it.

The current implementation of opening a file is (hopefully) correct, but it is not fast because it resolves each path component one step at a time to avoid unintended symlink traversal. This is the best we can do (so far as I can tell) within the scope of POSIX file APIs.

However, many platforms do support faster (if non-standard) options. We should use them when available. This is an umbrella issue for doing so. I will create subissues for individual platforms.

@neild neild self-assigned this Mar 27, 2025
@gabyhelp gabyhelp added the LibraryProposal Issues describing a requested change to the Go standard library or x/ libraries, but not to a tool label Mar 27, 2025
@dmitshur dmitshur added Performance NeedsFix The path to resolution is known, but the work has not been done. labels Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
LibraryProposal Issues describing a requested change to the Go standard library or x/ libraries, but not to a tool NeedsFix The path to resolution is known, but the work has not been done. Performance
Projects
None yet
Development

No branches or pull requests

3 participants