2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-06-22 11:51:11 -04:00
|
|
|
|
|
|
|
|
#include "remote/apiuser.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "remote/apiuser-ti.cpp"
|
2015-08-15 14:28:05 -04:00
|
|
|
#include "base/configtype.hpp"
|
2018-02-08 08:54:52 -05:00
|
|
|
#include "base/base64.hpp"
|
2017-08-11 10:23:24 -04:00
|
|
|
#include "base/tlsutility.hpp"
|
2019-02-22 05:37:07 -05:00
|
|
|
#include "base/utility.hpp"
|
2015-06-22 11:51:11 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
|
|
REGISTER_TYPE(ApiUser);
|
|
|
|
|
|
2015-07-09 09:25:51 -04:00
|
|
|
ApiUser::Ptr ApiUser::GetByClientCN(const String& cn)
|
|
|
|
|
{
|
2016-08-25 00:19:44 -04:00
|
|
|
for (const ApiUser::Ptr& user : ConfigType::GetObjectsByType<ApiUser>()) {
|
2015-07-09 09:25:51 -04:00
|
|
|
if (user->GetClientCN() == cn)
|
|
|
|
|
return user;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-30 02:36:35 -05:00
|
|
|
return nullptr;
|
2015-07-09 09:25:51 -04:00
|
|
|
}
|
2018-02-08 08:54:52 -05:00
|
|
|
|
2018-02-19 07:33:58 -05:00
|
|
|
ApiUser::Ptr ApiUser::GetByAuthHeader(const String& auth_header)
|
|
|
|
|
{
|
2018-02-08 08:54:52 -05:00
|
|
|
String::SizeType pos = auth_header.FindFirstOf(" ");
|
|
|
|
|
String username, password;
|
|
|
|
|
|
|
|
|
|
if (pos != String::NPos && auth_header.SubStr(0, pos) == "Basic") {
|
|
|
|
|
String credentials_base64 = auth_header.SubStr(pos + 1);
|
|
|
|
|
String credentials = Base64::Decode(credentials_base64);
|
|
|
|
|
|
|
|
|
|
String::SizeType cpos = credentials.FindFirstOf(":");
|
|
|
|
|
|
|
|
|
|
if (cpos != String::NPos) {
|
|
|
|
|
username = credentials.SubStr(0, cpos);
|
|
|
|
|
password = credentials.SubStr(cpos + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const ApiUser::Ptr& user = ApiUser::GetByName(username);
|
|
|
|
|
|
2018-02-21 10:19:54 -05:00
|
|
|
/* Deny authentication if:
|
|
|
|
|
* 1) user does not exist
|
|
|
|
|
* 2) given password is empty
|
|
|
|
|
* 2) configured password does not match.
|
|
|
|
|
*/
|
|
|
|
|
if (!user || password.IsEmpty())
|
2018-02-08 08:54:52 -05:00
|
|
|
return nullptr;
|
2019-02-22 05:37:07 -05:00
|
|
|
else if (user && !Utility::ComparePasswords(password, user->GetPassword()))
|
2018-06-18 05:05:56 -04:00
|
|
|
return nullptr;
|
2018-02-08 08:54:52 -05:00
|
|
|
|
|
|
|
|
return user;
|
|
|
|
|
}
|