event stream: fix wildcard namespace bypass #25089
Merged
+148
−85
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.
Description
Fixes an issue when reading from the Event stream API, the wildcard namespace can be used to bypass ACL policy checks that would not otherwise permit access to a given namespace. Having policy = "read" for any namespace allows the equivalent of policy = "read" for all namespaces.
Testing & Reproduction steps
Create the following ACL policy file:
Apply that policy and create a token that uses that policy
In another terminal, set
NOMAD_TOKEN
to the new token secret:In the original terminal, create this minimal jobspec:
Run it and deploy it to the
dev
namespace:In the "dev" terminal, read the event stream for the Job topic in the "dev" namespace:
You'll see events for the job deployed to the dev namespace, as expected. Hit Ctrl-C and try again, this time using the wildcard namespace.
You'll see the same set of events for the job deployed to the dev namespace. Leave this running.
Go back to the other terminal where you have the management token and run the job again, this time deploying to the
prod
namespace:Watch the other terminal, and you'll see events for the job in the
prod
namespace appear, in violation of the ACL policy. Note that if you hit Ctrl-C and try again, this time using theprod
namespace, it will fail as expected:Links
Contributor Checklist
changelog entry using the
make cl
command.ensure regressions will be caught.
and job configuration, please update the Nomad website documentation to reflect this. Refer to
the website README for docs guidelines. Please also consider whether the
change requires notes within the upgrade guide.
Reviewer Checklist
backporting document.
in the majority of situations. The main exceptions are long-lived feature branches or merges where
history should be preserved.
within the public repository.