Zeroize potentially sensitive bytes#49
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces a dedicated “secret bytes” container and threads it through PAM conversation/item APIs to reduce accidental leakage (notably via Debug) and to zeroize sensitive buffers on drop / before free().
Changes:
- Add
SecretBytes(owned, redactedDebug, zeroize-on-drop) and export it via a newsecretmodule. - Update PAM conversation (
Conv::send) to returnSecretBytesand explicitly zero PAM/libc buffers before freeing. - Replace
AuthTok/OldAuthTokitem wrappers with secret-aware wrappers that redactDebugand can produce owned secret bytes.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| pam/src/secret.rs | Adds SecretBytes zeroize-on-drop wrapper + redacted Debug. |
| pam/src/lib.rs | Exports the new secret module. |
| pam/src/items.rs | Adds secret_cstr_item! and uses it for AuthTok / OldAuthTok. |
| pam/src/conv.rs | Returns SecretBytes from send() and zeroizes response buffers before free(). |
| pam/examples/quiz.rs | Updates example to use the new SecretBytes API (as_str). |
| pam/Cargo.toml | Adds the zeroize dependency. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.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.
Some points in this codebase handle potential secrets. These need debug impls that don't leak and, ideally, bytes that are zeroized on drop or before being libc free'd (context-dependent). This PR:
This required writing a new secret_cstr_item macro, modeled after the existing cstr_item macro, to handle the AuthTok and OldAuthTok types.