-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtotp.hpp
162 lines (142 loc) · 4.62 KB
/
totp.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#pragma once
#include "config.h"
#include <security/pam_appl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <phosphor-logging/elog-errors.hpp>
#include <phosphor-logging/elog.hpp>
#include <phosphor-logging/lg2.hpp>
#include <cstring>
#include <memory>
#include <span>
#include <string_view>
struct PasswordData
{
struct Response
{
std::string_view prompt;
std::string value;
};
std::vector<Response> responseData;
int addPrompt(std::string_view prompt, std::string_view value)
{
if (value.size() + 1 > PAM_MAX_MSG_SIZE)
{
lg2::error("value length error{PROMPT}", "PROMPT", prompt);
return PAM_CONV_ERR;
}
responseData.emplace_back(prompt, std::string(value));
return PAM_SUCCESS;
}
int makeResponse(const pam_message& msg, pam_response& response)
{
switch (msg.msg_style)
{
case PAM_PROMPT_ECHO_ON:
break;
case PAM_PROMPT_ECHO_OFF:
{
std::string prompt(msg.msg);
auto iter = std::ranges::find_if(
responseData, [&prompt](const Response& data) {
return prompt.starts_with(data.prompt);
});
if (iter == responseData.end())
{
return PAM_CONV_ERR;
}
response.resp = strdup(iter->value.c_str());
return PAM_SUCCESS;
}
break;
case PAM_ERROR_MSG:
{
lg2::error("Pam error {MSG}", "MSG", msg.msg);
}
break;
case PAM_TEXT_INFO:
{
lg2::error("Pam info {MSG}", "MSG", msg.msg);
}
break;
default:
{
return PAM_CONV_ERR;
}
}
return PAM_SUCCESS;
}
};
// function used to get user input
inline int pamFunctionConversation(int numMsg, const struct pam_message** msgs,
struct pam_response** resp, void* appdataPtr)
{
if ((appdataPtr == nullptr) || (msgs == nullptr) || (resp == nullptr))
{
return PAM_CONV_ERR;
}
if (numMsg <= 0 || numMsg >= PAM_MAX_NUM_MSG)
{
return PAM_CONV_ERR;
}
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
PasswordData* appPass = reinterpret_cast<PasswordData*>(appdataPtr);
auto msgCount = static_cast<size_t>(numMsg);
// NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays)
// auto responseArrPtr = std::make_unique<pam_response[]>(msgCount);
auto pamResponseDeleter = [](pam_response* ptr) { free(ptr); };
std::unique_ptr<pam_response[], decltype(pamResponseDeleter)> responses(
static_cast<pam_response*>(calloc(msgCount, sizeof(pam_response))),
pamResponseDeleter);
auto messagePtrs = std::span(msgs, msgCount);
for (size_t i = 0; i < msgCount; ++i)
{
const pam_message& msg = *(messagePtrs[i]);
pam_response& response = responses[i];
response.resp_retcode = 0;
response.resp = nullptr;
int r = appPass->makeResponse(msg, response);
if (r != PAM_SUCCESS)
{
return r;
}
}
*resp = responses.release();
return PAM_SUCCESS;
}
struct Totp
{
/**
* @brief Attempt username/password authentication via PAM.
* @param username The provided username aka account name.
* @param token The provided MFA token.
* @returns PAM error code or PAM_SUCCESS for success. */
static inline int verify(std::string_view username, std::string token)
{
std::string userStr(username);
PasswordData data;
if (int ret = data.addPrompt("Verification code: ", token);
ret != PAM_SUCCESS)
{
return ret;
}
const struct pam_conv localConversation = {pamFunctionConversation,
&data};
pam_handle_t* localAuthHandle = nullptr; // this gets set by pam_start
int retval = pam_start("mfa_pam", userStr.c_str(), &localConversation,
&localAuthHandle);
if (retval != PAM_SUCCESS)
{
return retval;
}
retval = pam_authenticate(localAuthHandle,
PAM_SILENT | PAM_DISALLOW_NULL_AUTHTOK);
if (retval != PAM_SUCCESS)
{
pam_end(localAuthHandle, PAM_SUCCESS); // ignore retval
return retval;
}
return pam_end(localAuthHandle, PAM_SUCCESS);
}
};