[2026 Plugins] Verify plugin signatures and trust metadata - #761
Open
Godfrey-Delight wants to merge 2 commits into
Open
[2026 Plugins] Verify plugin signatures and trust metadata#761Godfrey-Delight wants to merge 2 commits into
Godfrey-Delight wants to merge 2 commits into
Conversation
|
@Godfrey-Delight Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Collaborator
|
@Godfrey-Delight Please fix all CI check failure |
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.
Description
Authenticates plugin publishers and surfaces verification status prior to installation or dynamic execution in the registry and loader.
Authenticates template publishers, rate-limits publish/mutation endpoints, and retains an auditable ownership history log in the StarForge Remote Template Registry API (
registry-api).Type of Change
Changes Made
Created
src/plugins/verifier.rsfor Ed25519 SHA-256 binary signature verification supporting Stellar StrKey public keys (G...) and hex formats.Extended
PluginManifestandInstalledPluginregistry schema to persistpublisher,publisher_key, andverification_statuswith backward-compatible defaults.Integrated pre-load signature verification into
PluginManager::load_plugin_diagnosed()to block execution of untrusted or invalid plugin binaries beforelibloading.Updated
starforge pluginCLI commands (install,list,verify,audit,update) to display verification status and enforcerequire_signatures/trusted_publisherssettings.Added comprehensive integration tests (
tests/plugin_signature_verification.rs) and updated developer guidance inPLUGIN_TRUST.md.Publisher Authentication & Ownership Enforcement (
src/routes/templates.ts,src/models/Template.ts):publisherId).403 Forbiddenfor unauthorized attempts.Mutation Rate Limiting (
src/middleware/rateLimiter.ts):POST /publish,POST /:name/transfer-ownership).X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset,Retry-After).PUBLISH_RATE_LIMIT_WINDOW_MS(default: 60s) andPUBLISH_RATE_LIMIT_MAX(default: 10).Auditable Ownership History & Transfers (
src/models/OwnershipHistory.ts,src/models/User.ts):OwnershipHistoryStoreto maintain an immutable audit trail of"PUBLISH"and"TRANSFER_OWNERSHIP"actions.GET /api/templates/:name/ownership-historyto query audit logs.POST /api/templates/:name/transfer-ownershipallowing owners to transfer template ownership to another registered user.Automated Tests (
src/tests/publisher_ownership_ratelimit.test.ts):Documentation Updates:
registry-api/README.md,registry-api/QUICK_START.md, andREGISTRY_ACCEPTANCE_CRITERIA.md.Testing
How has this been tested?
Added dedicated integration test suite covering publisher authentication, key parsing, allowlists, and signature verification.
Test Coverage
Describe what scenarios have been tested:
Happy path: Successful installation, verification, listing (
--json), and auditing of valid signed plugins.Edge cases: Unsigned plugin installation under default permissive settings, matching publisher public keys against
trusted_publishersconfiguration.Error handling: Rejection of tampered plugin binaries (signature mismatch), malformed publisher key strings, untrusted publishers under allowlists, and forced signature requirement enforcement (
require_signatures = true).Happy path: Authenticated user publishes template, queries audit history, transfers ownership to another user, and new owner publishes a new version.
Edge cases: Rate limit boundary thresholds (
X-RateLimit-Remainingdecrements to 0), environment fallback when invalid/negativePUBLISH_RATE_LIMIT_MAXorPUBLISH_RATE_LIMIT_WINDOW_MSis set.Error handling: Rejection of publish under an existing template name by a different publisher (403 Forbidden), rate limit exceeded (429 Too Many Requests with
Retry-After), missing required fields (400 Bad Request), ownership transfer attempt by non-owner (403 Forbidden), transfer to non-existent publisher (404 Not Found), duplicate version publishing (409 Conflict).Code Quality Checklist
cargo fmt)cargo clippy -- -D warnings)Breaking Changes
starforge.db/plugins.jsonregistries via#[serde(default)]).Documentation
PLUGIN_TRUST.mdupdated with publisher signature schema and verification workflows.Screenshots (if applicable)
N/A (CLI output updated with
Verificationstatus columns and structured--jsonpayload fields).Additional Context
Fully satisfies issue requirements for verifying plugin signatures and trust metadata prior to execution.
Closes #678
Closes #683