summaryrefslogtreecommitdiff
path: root/include/pam_authenticate.hpp
diff options
context:
space:
mode:
authorJoseph Reynolds <joseph-reynolds@charter.net>2020-01-15 01:34:09 +0300
committerJoseph Reynolds <joseph-reynolds@charter.net>2020-01-30 19:24:12 +0300
commitd887fff197b2fc3357bcbb1adb028521699a204a (patch)
treecd2038b1dfd796becf9444d27b1024ca5dc4b7d7 /include/pam_authenticate.hpp
parentd04ba325f3ef4e60eb4fd8e7477af78d1be0d79d (diff)
downloadbmcweb-d887fff197b2fc3357bcbb1adb028521699a204a.tar.xz
Enhance return value from pamAuthenticateUser
This enhances the return value from the pamAuthenticateUser function so callers can articulate PAM error codes like PAM_NEW_AUTHTOK_REQD which means the credentials are correct, but the password must be changed. Tested: Yes, scenarios via both Redfish login and Basic Auth: - correct username and password, password is not expired - correct username and password, password is expired - correct username and incorrect password, password is not expired - correct username and incorrect password, password is expired - non-existent user (passsword is not relevant) Signed-off-by: Joseph Reynolds <joseph-reynolds@charter.net> Change-Id: I1114d6c9cc591fb0a1853cb4edea32ad22f7b015
Diffstat (limited to 'include/pam_authenticate.hpp')
-rw-r--r--include/pam_authenticate.hpp39
1 files changed, 20 insertions, 19 deletions
diff --git a/include/pam_authenticate.hpp b/include/pam_authenticate.hpp
index 234246dd04..f8afbb13e8 100644
--- a/include/pam_authenticate.hpp
+++ b/include/pam_authenticate.hpp
@@ -47,8 +47,13 @@ inline int pamFunctionConversation(int numMsg, const struct pam_message** msg,
return PAM_SUCCESS;
}
-inline bool pamAuthenticateUser(const std::string_view username,
- const std::string_view password)
+/**
+ * @brief Attempt username/password authentication via PAM.
+ * @param username The provided username aka account name.
+ * @param password The provided password.
+ * @returns PAM error code or PAM_SUCCESS for success. */
+inline int pamAuthenticateUser(const std::string_view username,
+ const std::string_view password)
{
std::string userStr(username);
std::string passStr(password);
@@ -56,34 +61,30 @@ inline bool pamAuthenticateUser(const std::string_view username,
pamFunctionConversation, const_cast<char*>(passStr.c_str())};
pam_handle_t* localAuthHandle = nullptr; // this gets set by pam_start
- if (pam_start("webserver", userStr.c_str(), &localConversation,
- &localAuthHandle) != PAM_SUCCESS)
+ int retval = pam_start("webserver", userStr.c_str(), &localConversation,
+ &localAuthHandle);
+ if (retval != PAM_SUCCESS)
{
- return false;
+ return retval;
}
- int retval = pam_authenticate(localAuthHandle,
- PAM_SILENT | PAM_DISALLOW_NULL_AUTHTOK);
+ retval = pam_authenticate(localAuthHandle,
+ PAM_SILENT | PAM_DISALLOW_NULL_AUTHTOK);
if (retval != PAM_SUCCESS)
{
- pam_end(localAuthHandle, PAM_SUCCESS);
- return false;
+ pam_end(localAuthHandle, PAM_SUCCESS); // ignore retval
+ return retval;
}
/* check that the account is healthy */
- if (pam_acct_mgmt(localAuthHandle, PAM_DISALLOW_NULL_AUTHTOK) !=
- PAM_SUCCESS)
- {
- pam_end(localAuthHandle, PAM_SUCCESS);
- return false;
- }
-
- if (pam_end(localAuthHandle, PAM_SUCCESS) != PAM_SUCCESS)
+ retval = pam_acct_mgmt(localAuthHandle, PAM_DISALLOW_NULL_AUTHTOK);
+ if (retval != PAM_SUCCESS)
{
- return false;
+ pam_end(localAuthHandle, PAM_SUCCESS); // ignore retval
+ return retval;
}
- return true;
+ return pam_end(localAuthHandle, PAM_SUCCESS);
}
inline int pamUpdatePassword(const std::string& username,