security: sign registry registration — proof-of-possession (PPA-003)#37
Merged
Conversation
RegisterWithKeyOpts (the single builder emitting a public_key; RegisterWithKey funnels through it) now attaches a signature over "register:<listenAddr>:<publicKeyB64>", proving the submitter holds the private key for the registered public_key — matching the existing signed heartbeat/deregister/resolve operations. The challenge binds the public_key (defeats key-directory poisoning) and the listen_addr (hardens the re-registration endpoint-repoint vector), and is verifiable by the server before node_id assignment (node_id is not an input). Additive and backward-compatible: only an optional signature field is added, best-effort when a signer is configured; keyless/anonymous registration is unchanged. Server-side enforcement and registry-TLS-by-default are separate coordinated changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
Registration was the only key-establishing registry operation with no signature, while
heartbeat/deregister/resolveall sign. This lets anyone reaching the registry claim a node_id / repoint a victim's endpoint (key-directory poisoning).Fix:
RegisterWithKeyOpts(the single builder emitting apublic_key;RegisterWithKeyfunnels through it) attaches a signature overregister:<listenAddr>:<publicKeyB64>, proving possession of the private key for the registeredpublic_key.public_key(defeats poisoning) andlisten_addr(hardens the re-registration endpoint-repoint vector).signaturefield is added, best-effort when a signer is configured; keyless/anonymous registration unchanged. An older server that ignores the field still accepts registration.Separate coordinated work (not here): server-side enforcement of this signature (rendezvous repo/deploy) and registry-TLS-by-default transport (would sever daemons from the current plaintext
:9000registry until the server serves TLS).Tests:
TestRegisterWithKeyOptsCarriesProofOfPossession,...ReRegistrationBindsPublicKey,...NoSignerOmitsSignature.go build ./... && go test ./registry/...green.🤖 Generated with Claude Code