fix: resolve /etc/resolv.conf symlink on separate mounts#35
Merged
Conversation
On systems using systemd-resolved, /etc/resolv.conf is a symlink to /run/systemd/resolve/stub-resolv.conf. After bwrap's non-recursive --ro-bind / /, the /run tmpfs is empty so the symlink target is unreachable, causing "Can't create file at /etc/resolv.conf". The previous fix only handled cross-device symlinks (sameDevice check), which missed cases where /run is a separate mount but happens to share a device ID with /. Changes: - Add isSeparateMount() that compares a path's device ID with its parent's, reliably detecting separate mounts like /run as tmpfs - Add resolveSymlinkForBind() helper that generates bwrap --tmpfs/--dir args to make symlink targets reachable inside the sandbox - Bind DNS override resolv.conf to the resolved target path directly, avoiding bwrap's symlink following for the destination - Add unit tests for the new helpers and an integration test verifying /etc/resolv.conf is readable inside the sandbox
Replaced by isSeparateMount in the resolv.conf symlink fix.
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.
Summary
Fixes #25 (resolv.conf part)
/etc/resolv.confis a symlink to/run/systemd/resolve/stub-resolv.conf. After bwrap's non-recursive--ro-bind / /, the/runtmpfs is empty so the symlink target is unreachable, causingbwrap: Can't create file at /etc/resolv.conf.sameDevicecheck), which missed cases where/runis a separate mount but device IDs happen to match.isSeparateMount()that compares a path's device ID with its parent's, reliably detecting separate mounts.resolveSymlinkForBind()helper that generates bwrap--tmpfs/--dirargs to make symlink targets reachable.Test plan
isSeparateMount(),resolveSymlinkForBind()(non-symlink, nonexistent, cross-mount, resolv.conf)cat /etc/resolv.confsucceeds inside sandboxgreywall -- curl https://greyhaven.co