2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-06-22 17:51:11 +02:00
|
|
|
|
|
|
|
#include "remote/apiuser.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "remote/apiuser-ti.cpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2018-02-08 14:54:52 +01:00
|
|
|
#include "base/base64.hpp"
|
2017-08-11 16:23:24 +02:00
|
|
|
#include "base/tlsutility.hpp"
|
2019-02-22 11:37:07 +01:00
|
|
|
#include "base/utility.hpp"
|
2015-06-22 17:51:11 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
REGISTER_TYPE(ApiUser);
|
|
|
|
|
2015-07-09 15:25:51 +02:00
|
|
|
ApiUser::Ptr ApiUser::GetByClientCN(const String& cn)
|
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const ApiUser::Ptr& user : ConfigType::GetObjectsByType<ApiUser>()) {
|
2015-07-09 15:25:51 +02:00
|
|
|
if (user->GetClientCN() == cn)
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
2017-11-30 08:36:35 +01:00
|
|
|
return nullptr;
|
2015-07-09 15:25:51 +02:00
|
|
|
}
|
2018-02-08 14:54:52 +01:00
|
|
|
|
2018-02-19 13:33:58 +01:00
|
|
|
ApiUser::Ptr ApiUser::GetByAuthHeader(const String& auth_header)
|
|
|
|
{
|
2018-02-08 14:54:52 +01: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 16:19:54 +01: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 14:54:52 +01:00
|
|
|
return nullptr;
|
2019-02-22 11:37:07 +01:00
|
|
|
else if (user && !Utility::ComparePasswords(password, user->GetPassword()))
|
2018-06-18 11:05:56 +02:00
|
|
|
return nullptr;
|
2018-02-08 14:54:52 +01:00
|
|
|
|
|
|
|
return user;
|
|
|
|
}
|
2018-02-21 16:19:54 +01:00
|
|
|
|