Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 3 | #include <security/pam_appl.h> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 4 | |
| 5 | #include <boost/utility/string_view.hpp> |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 6 | #include <cstring> |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 7 | #include <memory> |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 8 | |
| 9 | // function used to get user input |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 10 | inline int pamFunctionConversation(int numMsg, const struct pam_message** msg, |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 11 | struct pam_response** resp, void* appdataPtr) |
| 12 | { |
| 13 | if (appdataPtr == nullptr) |
| 14 | { |
| 15 | return PAM_AUTH_ERR; |
| 16 | } |
Ed Tanous | f1eebf0 | 2019-03-04 15:57:09 -0800 | [diff] [blame] | 17 | char* appPass = reinterpret_cast<char*>(appdataPtr); |
| 18 | size_t appPassSize = std::strlen(appPass); |
| 19 | char* pass = reinterpret_cast<char*>(malloc(appPassSize + 1)); |
Ed Tanous | 39e7750 | 2019-03-04 17:35:53 -0800 | [diff] [blame] | 20 | if (pass == nullptr) |
Ed Tanous | f1eebf0 | 2019-03-04 15:57:09 -0800 | [diff] [blame] | 21 | { |
| 22 | return PAM_AUTH_ERR; |
| 23 | } |
| 24 | |
| 25 | std::strcpy(pass, appPass); |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 26 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 27 | *resp = reinterpret_cast<pam_response*>( |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 28 | calloc(numMsg, sizeof(struct pam_response))); |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 29 | |
Ed Tanous | 39e7750 | 2019-03-04 17:35:53 -0800 | [diff] [blame] | 30 | if (resp == nullptr) |
Ed Tanous | f1eebf0 | 2019-03-04 15:57:09 -0800 | [diff] [blame] | 31 | { |
| 32 | return PAM_AUTH_ERR; |
| 33 | } |
| 34 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 35 | for (int i = 0; i < numMsg; ++i) |
| 36 | { |
| 37 | /* Ignore all PAM messages except prompting for hidden input */ |
| 38 | if (msg[i]->msg_style != PAM_PROMPT_ECHO_OFF) |
| 39 | { |
| 40 | continue; |
| 41 | } |
| 42 | |
| 43 | /* Assume PAM is only prompting for the password as hidden input */ |
| 44 | resp[i]->resp = pass; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 45 | } |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 46 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 47 | return PAM_SUCCESS; |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Ed Tanous | 39e7750 | 2019-03-04 17:35:53 -0800 | [diff] [blame] | 50 | inline bool pamAuthenticateUser(const std::string_view username, |
Joseph Reynolds | 8fd315a | 2019-09-12 12:02:33 -0500 | [diff] [blame^] | 51 | const std::string_view password, |
| 52 | bool& passwordChangeRequired) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 53 | { |
| 54 | std::string userStr(username); |
| 55 | std::string passStr(password); |
Joseph Reynolds | 8fd315a | 2019-09-12 12:02:33 -0500 | [diff] [blame^] | 56 | passwordChangeRequired = false; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 57 | const struct pam_conv localConversation = { |
| 58 | pamFunctionConversation, const_cast<char*>(passStr.c_str())}; |
| 59 | pam_handle_t* localAuthHandle = NULL; // this gets set by pam_start |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 60 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 61 | if (pam_start("webserver", userStr.c_str(), &localConversation, |
| 62 | &localAuthHandle) != PAM_SUCCESS) |
| 63 | { |
| 64 | return false; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 65 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 66 | int retval = pam_authenticate(localAuthHandle, |
| 67 | PAM_SILENT | PAM_DISALLOW_NULL_AUTHTOK); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 68 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 69 | if (retval != PAM_SUCCESS) |
| 70 | { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 71 | pam_end(localAuthHandle, PAM_SUCCESS); |
| 72 | return false; |
| 73 | } |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 74 | |
Joseph Reynolds | 8fd315a | 2019-09-12 12:02:33 -0500 | [diff] [blame^] | 75 | /* check if the account is healthy */ |
| 76 | switch (pam_acct_mgmt(localAuthHandle, PAM_DISALLOW_NULL_AUTHTOK)) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 77 | { |
Joseph Reynolds | 8fd315a | 2019-09-12 12:02:33 -0500 | [diff] [blame^] | 78 | case PAM_SUCCESS: |
| 79 | break; |
| 80 | case PAM_NEW_AUTHTOK_REQD: |
| 81 | passwordChangeRequired = true; |
| 82 | break; |
| 83 | default: |
| 84 | pam_end(localAuthHandle, PAM_SUCCESS); |
| 85 | return false; |
| 86 | break; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 87 | } |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 88 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 89 | if (pam_end(localAuthHandle, PAM_SUCCESS) != PAM_SUCCESS) |
| 90 | { |
| 91 | return false; |
| 92 | } |
| 93 | |
| 94 | return true; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 95 | } |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 96 | |
| 97 | inline bool pamUpdatePassword(const std::string& username, |
| 98 | const std::string& password) |
| 99 | { |
| 100 | const struct pam_conv localConversation = { |
| 101 | pamFunctionConversation, const_cast<char*>(password.c_str())}; |
| 102 | pam_handle_t* localAuthHandle = NULL; // this gets set by pam_start |
| 103 | |
| 104 | if (pam_start("passwd", username.c_str(), &localConversation, |
| 105 | &localAuthHandle) != PAM_SUCCESS) |
| 106 | { |
| 107 | return false; |
| 108 | } |
| 109 | int retval = pam_chauthtok(localAuthHandle, PAM_SILENT); |
| 110 | |
| 111 | if (retval != PAM_SUCCESS) |
| 112 | { |
| 113 | pam_end(localAuthHandle, PAM_SUCCESS); |
| 114 | return false; |
| 115 | } |
| 116 | |
| 117 | if (pam_end(localAuthHandle, PAM_SUCCESS) != PAM_SUCCESS) |
| 118 | { |
| 119 | return false; |
| 120 | } |
| 121 | |
| 122 | return true; |
| 123 | } |