fix: null-terminate readlink buffer in GetSelfPath#275
Merged
blondfrogs merged 1 commit intoRunOnFlux:masterfrom Apr 21, 2026
Merged
Conversation
readlink does not append a null byte. Without null-termination, dirname reads into uninitialized stack memory causing intermittent failures where GetSelfPath returns the full binary path instead of the directory, preventing fluxbenchd from being found at startup. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
readlink()before passing it todirname()inGetSelfPath()Problem
Observed fluxd failing to start intermittently with:
After systemd restarted the service, it worked fine:
On the failed start,
GetSelfPath()returned/usr/local/bin/fluxd(full binary path) instead of/usr/local/bin(directory only). This causedFindBenchmarkPath("fluxbenchd", "/usr/local/bin/fluxd")to look for/usr/local/bin/fluxd/fluxbenchdwhich doesn't exist.Root cause
readlink()does not append a null byte to the buffer.GetSelfPath()passes the un-terminated buffer directly todirname(), which reads past the valid bytes into whatever garbage is on the stack. If that garbage happens to contain a/character,dirname()finds it and returns the wrong directory. Whether the stack contains a/depends on prior call history, ASLR, environment size, etc. — hence the intermittent nature.Test plan
Built a test binary that reproduces the issue by simulating dirty stack memory:
🤖 Generated with Claude Code