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> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 6 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 7 | #include <cstring> |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 8 | #include <memory> |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 9 | |
| 10 | // function used to get user input |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 11 | inline int pamFunctionConversation(int numMsg, const struct pam_message** msg, |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 12 | struct pam_response** resp, void* appdataPtr) |
| 13 | { |
| 14 | if (appdataPtr == nullptr) |
| 15 | { |
| 16 | return PAM_AUTH_ERR; |
| 17 | } |
Ed Tanous | f1eebf0 | 2019-03-04 15:57:09 -0800 | [diff] [blame] | 18 | char* appPass = reinterpret_cast<char*>(appdataPtr); |
| 19 | size_t appPassSize = std::strlen(appPass); |
| 20 | char* pass = reinterpret_cast<char*>(malloc(appPassSize + 1)); |
Ed Tanous | 39e7750 | 2019-03-04 17:35:53 -0800 | [diff] [blame] | 21 | if (pass == nullptr) |
Ed Tanous | f1eebf0 | 2019-03-04 15:57:09 -0800 | [diff] [blame] | 22 | { |
| 23 | return PAM_AUTH_ERR; |
| 24 | } |
| 25 | |
Ed Tanous | eb7d3d5 | 2019-10-24 10:23:56 -0700 | [diff] [blame] | 26 | std::strncpy(pass, appPass, appPassSize + 1); |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 27 | |
Ed Tanous | f23b729 | 2020-10-15 09:41:17 -0700 | [diff] [blame^] | 28 | void* ptr = |
| 29 | calloc(static_cast<size_t>(numMsg), sizeof(struct pam_response)); |
| 30 | if (ptr == nullptr) |
Ed Tanous | f1eebf0 | 2019-03-04 15:57:09 -0800 | [diff] [blame] | 31 | { |
AppaRao Puli | 87f171a | 2020-08-07 01:37:28 +0530 | [diff] [blame] | 32 | free(pass); |
Ed Tanous | f1eebf0 | 2019-03-04 15:57:09 -0800 | [diff] [blame] | 33 | return PAM_AUTH_ERR; |
| 34 | } |
| 35 | |
Ed Tanous | f23b729 | 2020-10-15 09:41:17 -0700 | [diff] [blame^] | 36 | *resp = reinterpret_cast<pam_response*>(ptr); |
| 37 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 38 | for (int i = 0; i < numMsg; ++i) |
| 39 | { |
| 40 | /* Ignore all PAM messages except prompting for hidden input */ |
| 41 | if (msg[i]->msg_style != PAM_PROMPT_ECHO_OFF) |
| 42 | { |
| 43 | continue; |
| 44 | } |
| 45 | |
| 46 | /* Assume PAM is only prompting for the password as hidden input */ |
| 47 | resp[i]->resp = pass; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 48 | } |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 49 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 50 | return PAM_SUCCESS; |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Joseph Reynolds | d887fff | 2020-01-14 16:34:09 -0600 | [diff] [blame] | 53 | /** |
| 54 | * @brief Attempt username/password authentication via PAM. |
| 55 | * @param username The provided username aka account name. |
| 56 | * @param password The provided password. |
| 57 | * @returns PAM error code or PAM_SUCCESS for success. */ |
| 58 | inline int pamAuthenticateUser(const std::string_view username, |
| 59 | const std::string_view password) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 60 | { |
| 61 | std::string userStr(username); |
| 62 | std::string passStr(password); |
| 63 | const struct pam_conv localConversation = { |
| 64 | pamFunctionConversation, const_cast<char*>(passStr.c_str())}; |
Ed Tanous | 99131cd | 2019-10-24 11:12:47 -0700 | [diff] [blame] | 65 | pam_handle_t* localAuthHandle = nullptr; // this gets set by pam_start |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 66 | |
Joseph Reynolds | d887fff | 2020-01-14 16:34:09 -0600 | [diff] [blame] | 67 | int retval = pam_start("webserver", userStr.c_str(), &localConversation, |
| 68 | &localAuthHandle); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 69 | if (retval != PAM_SUCCESS) |
| 70 | { |
Joseph Reynolds | d887fff | 2020-01-14 16:34:09 -0600 | [diff] [blame] | 71 | return retval; |
| 72 | } |
| 73 | |
| 74 | retval = pam_authenticate(localAuthHandle, |
| 75 | PAM_SILENT | PAM_DISALLOW_NULL_AUTHTOK); |
| 76 | if (retval != PAM_SUCCESS) |
| 77 | { |
| 78 | pam_end(localAuthHandle, PAM_SUCCESS); // ignore retval |
| 79 | return retval; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 80 | } |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 81 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 82 | /* check that the account is healthy */ |
Joseph Reynolds | d887fff | 2020-01-14 16:34:09 -0600 | [diff] [blame] | 83 | retval = pam_acct_mgmt(localAuthHandle, PAM_DISALLOW_NULL_AUTHTOK); |
| 84 | if (retval != PAM_SUCCESS) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 85 | { |
Joseph Reynolds | d887fff | 2020-01-14 16:34:09 -0600 | [diff] [blame] | 86 | pam_end(localAuthHandle, PAM_SUCCESS); // ignore retval |
| 87 | return retval; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 88 | } |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 89 | |
Joseph Reynolds | d887fff | 2020-01-14 16:34:09 -0600 | [diff] [blame] | 90 | return pam_end(localAuthHandle, PAM_SUCCESS); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 91 | } |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 92 | |
jayaprakash Mutyala | 66b5ca7 | 2019-08-07 20:26:37 +0000 | [diff] [blame] | 93 | inline int pamUpdatePassword(const std::string& username, |
| 94 | const std::string& password) |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 95 | { |
| 96 | const struct pam_conv localConversation = { |
| 97 | pamFunctionConversation, const_cast<char*>(password.c_str())}; |
Ed Tanous | 99131cd | 2019-10-24 11:12:47 -0700 | [diff] [blame] | 98 | pam_handle_t* localAuthHandle = nullptr; // this gets set by pam_start |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 99 | |
Joseph Reynolds | 96b39e0 | 2019-12-05 17:53:35 -0600 | [diff] [blame] | 100 | int retval = pam_start("webserver", username.c_str(), &localConversation, |
jayaprakash Mutyala | 66b5ca7 | 2019-08-07 20:26:37 +0000 | [diff] [blame] | 101 | &localAuthHandle); |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 102 | |
| 103 | if (retval != PAM_SUCCESS) |
| 104 | { |
jayaprakash Mutyala | 66b5ca7 | 2019-08-07 20:26:37 +0000 | [diff] [blame] | 105 | return retval; |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 106 | } |
| 107 | |
jayaprakash Mutyala | 66b5ca7 | 2019-08-07 20:26:37 +0000 | [diff] [blame] | 108 | retval = pam_chauthtok(localAuthHandle, PAM_SILENT); |
| 109 | if (retval != PAM_SUCCESS) |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 110 | { |
jayaprakash Mutyala | 66b5ca7 | 2019-08-07 20:26:37 +0000 | [diff] [blame] | 111 | pam_end(localAuthHandle, PAM_SUCCESS); |
| 112 | return retval; |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 113 | } |
| 114 | |
jayaprakash Mutyala | 66b5ca7 | 2019-08-07 20:26:37 +0000 | [diff] [blame] | 115 | return pam_end(localAuthHandle, PAM_SUCCESS); |
Ed Tanous | a840879 | 2018-09-05 16:08:38 -0700 | [diff] [blame] | 116 | } |