-
Notifications
You must be signed in to change notification settings - Fork 28
Fix: FFI return code handling #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| use pam::constants::{PamFlag, PamResultCode}; | ||
| use pam::module::{PamHandle, PamHooks}; | ||
| use pam::pam_hooks; | ||
| use std::ffi::CStr; | ||
|
|
||
| struct Data; | ||
| pam_hooks!(Data); | ||
|
|
||
| impl PamHooks for Data { | ||
| fn sm_authenticate(pamh: &mut PamHandle, _args: Vec<&CStr>, _flags: PamFlag) -> PamResultCode { | ||
| // Store a value on the handle | ||
| if let Err(e) = pamh.set_data("greeting", Box::new(String::from("hello"))) { | ||
| eprintln!("set_data failed, error code: {e:?}"); | ||
| return e; | ||
| } | ||
|
|
||
| // Read the data back | ||
| let greeting = match unsafe { pamh.get_data::<String>("greeting") } { | ||
| Ok(greeting) => greeting, | ||
| Err(e) => { | ||
| eprintln!("get_data failed, error code: {e:?}"); | ||
| return e; | ||
| } | ||
| }; | ||
|
|
||
| if greeting == "hello" { | ||
| eprintln!("data: {greeting}"); | ||
| PamResultCode::PAM_SUCCESS | ||
| } else { | ||
| PamResultCode::PAM_AUTH_ERR | ||
| } | ||
| } | ||
| } |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| mod harness; | ||
|
|
||
| mod test_data; | ||
| mod test_quiz; | ||
| mod test_trivial; | ||
| mod test_username; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| use crate::harness::pamtester; | ||
|
|
||
| #[test] | ||
| fn test_data_example_module() { | ||
| let output = pamtester("data", &["auth required"], None, "authenticate", &[]); | ||
|
|
||
| let expected_stdout = "pamtester: successfully authenticated\n"; | ||
| let expected_stderr = "data: hello\n"; | ||
| let actual_stdout = String::from_utf8_lossy(&output.stdout); | ||
| let actual_stderr = String::from_utf8_lossy(&output.stderr); | ||
|
|
||
| assert!( | ||
| output.status.success(), | ||
| "stdout: {actual_stdout} stderr: {actual_stderr}" | ||
| ); | ||
| assert_eq!(expected_stdout, actual_stdout); | ||
| assert_eq!(expected_stderr, actual_stderr); | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.