blob: 94a0755e7f6a631365f59d40754fdedaf38fc0f3 [file] [log] [blame]
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +01001#pragma once
2
Ed Tanous04e438c2020-10-03 08:06:26 -07003#include "logging.hpp"
Ed Tanousfc76b8a2020-09-28 17:21:52 -07004#include "random.hpp"
Ed Tanous04e438c2020-10-03 08:06:26 -07005#include "utility.hpp"
Ed Tanousfc76b8a2020-09-28 17:21:52 -07006
Ed Tanous1abe55e2018-09-05 08:30:59 -07007#include <nlohmann/json.hpp>
Jiaqing Zhao41d61c82021-12-07 13:21:47 +08008#include <utils/ip_utils.hpp>
Ratan Gupta12c04ef2019-04-03 10:08:11 +05309
Gunnar Mills1214b7e2020-06-04 10:11:30 -050010#include <csignal>
Ed Tanousbb759e32022-08-02 17:07:54 -070011#include <optional>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050012#include <random>
Ratan Gupta07386c62019-12-14 14:06:09 +053013#ifdef BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
14#include <ibm/locks.hpp>
15#endif
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +010016
Ed Tanous1abe55e2018-09-05 08:30:59 -070017namespace persistent_data
18{
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +010019
Ed Tanous51dae672018-09-05 16:07:32 -070020// entropy: 20 characters, 62 possibilities. log2(62^20) = 119 bits of
21// entropy. OWASP recommends at least 64
22// https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#session-id-entropy
23constexpr std::size_t sessionTokenSize = 20;
24
Ed Tanous1abe55e2018-09-05 08:30:59 -070025enum class PersistenceType
26{
27 TIMEOUT, // User session times out after a predetermined amount of time
28 SINGLE_REQUEST // User times out once this request is completed.
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +010029};
30
Ed Tanous1abe55e2018-09-05 08:30:59 -070031struct UserSession
32{
33 std::string uniqueId;
34 std::string sessionToken;
35 std::string username;
36 std::string csrfToken;
Ed Tanousbb759e32022-08-02 17:07:54 -070037 std::optional<std::string> clientId;
Sunitha Harish92f68222020-05-28 05:09:09 -050038 std::string clientIp;
Ed Tanous1abe55e2018-09-05 08:30:59 -070039 std::chrono::time_point<std::chrono::steady_clock> lastUpdated;
Ed Tanousd3a9e082022-01-07 09:30:41 -080040 PersistenceType persistence{PersistenceType::TIMEOUT};
James Feistf8aa3d22020-04-08 18:32:33 -070041 bool cookieAuth = false;
Joseph Reynolds3bf4e632020-02-06 14:44:32 -060042 bool isConfigureSelfOnly = false;
43
44 // There are two sources of truth for isConfigureSelfOnly:
45 // 1. When pamAuthenticateUser() returns PAM_NEW_AUTHTOK_REQD.
46 // 2. D-Bus User.Manager.GetUserInfo property UserPasswordExpired.
47 // These should be in sync, but the underlying condition can change at any
48 // time. For example, a password can expire or be changed outside of
49 // bmcweb. The value stored here is updated at the start of each
50 // operation and used as the truth within bmcweb.
Kowalski, Kamil5cef0f72018-02-15 15:26:51 +010051
Ed Tanous1abe55e2018-09-05 08:30:59 -070052 /**
53 * @brief Fills object with data from UserSession's JSON representation
54 *
55 * This replaces nlohmann's from_json to ensure no-throw approach
56 *
57 * @param[in] j JSON object from which data should be loaded
58 *
59 * @return a shared pointer if data has been loaded properly, nullptr
60 * otherwise
61 */
62 static std::shared_ptr<UserSession> fromJson(const nlohmann::json& j)
63 {
64 std::shared_ptr<UserSession> userSession =
65 std::make_shared<UserSession>();
66 for (const auto& element : j.items())
67 {
68 const std::string* thisValue =
69 element.value().get_ptr<const std::string*>();
70 if (thisValue == nullptr)
71 {
72 BMCWEB_LOG_ERROR << "Error reading persistent store. Property "
73 << element.key() << " was not of type string";
Ed Tanousdc511aa2020-10-21 12:33:42 -070074 continue;
Ed Tanous1abe55e2018-09-05 08:30:59 -070075 }
76 if (element.key() == "unique_id")
77 {
78 userSession->uniqueId = *thisValue;
79 }
80 else if (element.key() == "session_token")
81 {
82 userSession->sessionToken = *thisValue;
83 }
84 else if (element.key() == "csrf_token")
85 {
86 userSession->csrfToken = *thisValue;
87 }
88 else if (element.key() == "username")
89 {
90 userSession->username = *thisValue;
91 }
Sunitha Harish08bdcc72020-05-12 05:17:57 -050092 else if (element.key() == "client_id")
93 {
94 userSession->clientId = *thisValue;
95 }
Sunitha Harish92f68222020-05-28 05:09:09 -050096 else if (element.key() == "client_ip")
97 {
98 userSession->clientIp = *thisValue;
99 }
100
Ed Tanous1abe55e2018-09-05 08:30:59 -0700101 else
102 {
103 BMCWEB_LOG_ERROR
104 << "Got unexpected property reading persistent file: "
105 << element.key();
Ed Tanousdc511aa2020-10-21 12:33:42 -0700106 continue;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700107 }
108 }
Ed Tanousdc511aa2020-10-21 12:33:42 -0700109 // If any of these fields are missing, we can't restore the session, as
110 // we don't have enough information. These 4 fields have been present
111 // in every version of this file in bmcwebs history, so any file, even
112 // on upgrade, should have these present
113 if (userSession->uniqueId.empty() || userSession->username.empty() ||
114 userSession->sessionToken.empty() || userSession->csrfToken.empty())
115 {
116 BMCWEB_LOG_DEBUG << "Session missing required security "
117 "information, refusing to restore";
118 return nullptr;
119 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700120
121 // For now, sessions that were persisted through a reboot get their idle
122 // timer reset. This could probably be overcome with a better
123 // understanding of wall clock time and steady timer time, possibly
124 // persisting values with wall clock time instead of steady timer, but
125 // the tradeoffs of all the corner cases involved are non-trivial, so
126 // this is done temporarily
127 userSession->lastUpdated = std::chrono::steady_clock::now();
128 userSession->persistence = PersistenceType::TIMEOUT;
129
130 return userSession;
Kowalski, Kamil5cef0f72018-02-15 15:26:51 +0100131 }
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +0100132};
133
Zbigniew Kurzynski78158632019-11-05 12:57:37 +0100134struct AuthConfigMethods
135{
Alan Kuof16f6262020-12-08 19:29:59 +0800136#ifdef BMCWEB_ENABLE_BASIC_AUTHENTICATION
Zbigniew Kurzynski78158632019-11-05 12:57:37 +0100137 bool basic = true;
Alan Kuof16f6262020-12-08 19:29:59 +0800138#else
139 bool basic = false;
140#endif
141
142#ifdef BMCWEB_ENABLE_SESSION_AUTHENTICATION
143 bool sessionToken = true;
144#else
145 bool sessionToken = false;
146#endif
147
148#ifdef BMCWEB_ENABLE_XTOKEN_AUTHENTICATION
149 bool xtoken = true;
150#else
151 bool xtoken = false;
152#endif
153
154#ifdef BMCWEB_ENABLE_COOKIE_AUTHENTICATION
155 bool cookie = true;
156#else
157 bool cookie = false;
158#endif
159
160#ifdef BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION
161 bool tls = true;
162#else
Zbigniew Kurzynskicac94c52019-11-07 12:55:04 +0100163 bool tls = false;
Alan Kuof16f6262020-12-08 19:29:59 +0800164#endif
Zbigniew Kurzynski78158632019-11-05 12:57:37 +0100165
166 void fromJson(const nlohmann::json& j)
167 {
168 for (const auto& element : j.items())
169 {
170 const bool* value = element.value().get_ptr<const bool*>();
171 if (value == nullptr)
172 {
173 continue;
174 }
175
176 if (element.key() == "XToken")
177 {
178 xtoken = *value;
179 }
180 else if (element.key() == "Cookie")
181 {
182 cookie = *value;
183 }
184 else if (element.key() == "SessionToken")
185 {
186 sessionToken = *value;
187 }
188 else if (element.key() == "BasicAuth")
189 {
190 basic = *value;
191 }
Zbigniew Kurzynski501f1e52019-10-02 11:22:11 +0200192 else if (element.key() == "TLS")
193 {
194 tls = *value;
195 }
Zbigniew Kurzynski78158632019-11-05 12:57:37 +0100196 }
197 }
198};
199
Ed Tanous1abe55e2018-09-05 08:30:59 -0700200class SessionStore
201{
202 public:
203 std::shared_ptr<UserSession> generateUserSession(
Jiaqing Zhao41d61c82021-12-07 13:21:47 +0800204 const std::string_view username,
205 const boost::asio::ip::address& clientIp,
Ed Tanousbb759e32022-08-02 17:07:54 -0700206 const std::optional<std::string>& clientId,
Joseph Reynolds3bf4e632020-02-06 14:44:32 -0600207 PersistenceType persistence = PersistenceType::TIMEOUT,
Sunitha Harishd3239222021-02-24 15:33:29 +0530208 bool isConfigureSelfOnly = false)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700209 {
210 // TODO(ed) find a secure way to not generate session identifiers if
211 // persistence is set to SINGLE_REQUEST
212 static constexpr std::array<char, 62> alphanum = {
Joseph Reynolds368b1d42019-08-15 15:29:06 -0500213 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C',
214 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
215 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c',
Ed Tanous1abe55e2018-09-05 08:30:59 -0700216 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
217 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +0100218
Ed Tanous1abe55e2018-09-05 08:30:59 -0700219 std::string sessionToken;
Ed Tanous51dae672018-09-05 16:07:32 -0700220 sessionToken.resize(sessionTokenSize, '0');
Ed Tanous271584a2019-07-09 16:24:22 -0700221 std::uniform_int_distribution<size_t> dist(0, alphanum.size() - 1);
James Feista68a8042020-04-15 15:46:44 -0700222
Ed Tanousfc76b8a2020-09-28 17:21:52 -0700223 bmcweb::OpenSSLGenerator gen;
James Feista68a8042020-04-15 15:46:44 -0700224
Ed Tanous0dfeda62019-10-24 11:21:38 -0700225 for (char& sessionChar : sessionToken)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700226 {
Ed Tanous0dfeda62019-10-24 11:21:38 -0700227 sessionChar = alphanum[dist(gen)];
James Feista68a8042020-04-15 15:46:44 -0700228 if (gen.error())
229 {
230 return nullptr;
231 }
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +0100232 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700233 // Only need csrf tokens for cookie based auth, token doesn't matter
234 std::string csrfToken;
Ed Tanous51dae672018-09-05 16:07:32 -0700235 csrfToken.resize(sessionTokenSize, '0');
Ed Tanous0dfeda62019-10-24 11:21:38 -0700236 for (char& csrfChar : csrfToken)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700237 {
Ed Tanous0dfeda62019-10-24 11:21:38 -0700238 csrfChar = alphanum[dist(gen)];
James Feista68a8042020-04-15 15:46:44 -0700239 if (gen.error())
240 {
241 return nullptr;
242 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700243 }
244
245 std::string uniqueId;
246 uniqueId.resize(10, '0');
Ed Tanous0dfeda62019-10-24 11:21:38 -0700247 for (char& uidChar : uniqueId)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700248 {
Ed Tanous0dfeda62019-10-24 11:21:38 -0700249 uidChar = alphanum[dist(gen)];
James Feista68a8042020-04-15 15:46:44 -0700250 if (gen.error())
251 {
252 return nullptr;
253 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700254 }
Jiaqing Zhao41d61c82021-12-07 13:21:47 +0800255
256 auto session = std::make_shared<UserSession>(UserSession{
Ed Tanousbb759e32022-08-02 17:07:54 -0700257 uniqueId, sessionToken, std::string(username), csrfToken, clientId,
258 redfish::ip_util::toString(clientIp),
Jiaqing Zhao41d61c82021-12-07 13:21:47 +0800259 std::chrono::steady_clock::now(), persistence, false,
260 isConfigureSelfOnly});
Patrick Williams41713dd2022-09-28 06:48:07 -0500261 auto it = authTokens.emplace(sessionToken, session);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700262 // Only need to write to disk if session isn't about to be destroyed.
263 needWrite = persistence == PersistenceType::TIMEOUT;
264 return it.first->second;
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +0100265 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700266
267 std::shared_ptr<UserSession>
Ed Tanous39e77502019-03-04 17:35:53 -0800268 loginSessionByToken(const std::string_view token)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700269 {
270 applySessionTimeouts();
Ed Tanous51dae672018-09-05 16:07:32 -0700271 if (token.size() != sessionTokenSize)
272 {
273 return nullptr;
274 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700275 auto sessionIt = authTokens.find(std::string(token));
276 if (sessionIt == authTokens.end())
277 {
278 return nullptr;
279 }
280 std::shared_ptr<UserSession> userSession = sessionIt->second;
281 userSession->lastUpdated = std::chrono::steady_clock::now();
282 return userSession;
283 }
284
Ed Tanous39e77502019-03-04 17:35:53 -0800285 std::shared_ptr<UserSession> getSessionByUid(const std::string_view uid)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700286 {
287 applySessionTimeouts();
288 // TODO(Ed) this is inefficient
289 auto sessionIt = authTokens.begin();
290 while (sessionIt != authTokens.end())
291 {
292 if (sessionIt->second->uniqueId == uid)
293 {
294 return sessionIt->second;
295 }
296 sessionIt++;
297 }
298 return nullptr;
299 }
300
Ed Tanousb5a76932020-09-29 16:16:58 -0700301 void removeSession(const std::shared_ptr<UserSession>& session)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700302 {
Ratan Gupta07386c62019-12-14 14:06:09 +0530303#ifdef BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
304 crow::ibm_mc_lock::Lock::getInstance().releaseLock(session->uniqueId);
305#endif
Ed Tanous1abe55e2018-09-05 08:30:59 -0700306 authTokens.erase(session->sessionToken);
307 needWrite = true;
308 }
309
310 std::vector<const std::string*> getUniqueIds(
311 bool getAll = true,
312 const PersistenceType& type = PersistenceType::SINGLE_REQUEST)
313 {
314 applySessionTimeouts();
315
316 std::vector<const std::string*> ret;
317 ret.reserve(authTokens.size());
318 for (auto& session : authTokens)
319 {
320 if (getAll || type == session.second->persistence)
321 {
322 ret.push_back(&session.second->uniqueId);
323 }
324 }
325 return ret;
326 }
327
Zbigniew Kurzynski78158632019-11-05 12:57:37 +0100328 void updateAuthMethodsConfig(const AuthConfigMethods& config)
329 {
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100330 bool isTLSchanged = (authMethodsConfig.tls != config.tls);
Zbigniew Kurzynski78158632019-11-05 12:57:37 +0100331 authMethodsConfig = config;
332 needWrite = true;
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100333 if (isTLSchanged)
334 {
335 // recreate socket connections with new settings
336 std::raise(SIGHUP);
337 }
Zbigniew Kurzynski78158632019-11-05 12:57:37 +0100338 }
339
340 AuthConfigMethods& getAuthMethodsConfig()
341 {
342 return authMethodsConfig;
343 }
344
Ed Tanous9eb808c2022-01-25 10:19:23 -0800345 bool needsWrite() const
Ed Tanous1abe55e2018-09-05 08:30:59 -0700346 {
347 return needWrite;
348 }
Ed Tanous271584a2019-07-09 16:24:22 -0700349 int64_t getTimeoutInSeconds() const
Ed Tanous1abe55e2018-09-05 08:30:59 -0700350 {
Manojkiran Edaf2a4a602020-08-27 16:04:26 +0530351 return std::chrono::seconds(timeoutInSeconds).count();
352 }
353
354 void updateSessionTimeout(std::chrono::seconds newTimeoutInSeconds)
355 {
356 timeoutInSeconds = newTimeoutInSeconds;
357 needWrite = true;
Ed Tanous23a21a12020-07-25 04:45:05 +0000358 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700359
Ed Tanous1abe55e2018-09-05 08:30:59 -0700360 static SessionStore& getInstance()
361 {
362 static SessionStore sessionStore;
363 return sessionStore;
364 }
365
Ed Tanous1abe55e2018-09-05 08:30:59 -0700366 void applySessionTimeouts()
367 {
368 auto timeNow = std::chrono::steady_clock::now();
Manojkiran Edaf2a4a602020-08-27 16:04:26 +0530369 if (timeNow - lastTimeoutUpdate > std::chrono::seconds(1))
Ed Tanous1abe55e2018-09-05 08:30:59 -0700370 {
371 lastTimeoutUpdate = timeNow;
372 auto authTokensIt = authTokens.begin();
373 while (authTokensIt != authTokens.end())
374 {
375 if (timeNow - authTokensIt->second->lastUpdated >=
Manojkiran Edaf2a4a602020-08-27 16:04:26 +0530376 timeoutInSeconds)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700377 {
Ratan Gupta07386c62019-12-14 14:06:09 +0530378#ifdef BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
379 crow::ibm_mc_lock::Lock::getInstance().releaseLock(
380 authTokensIt->second->uniqueId);
381#endif
Ed Tanous1abe55e2018-09-05 08:30:59 -0700382 authTokensIt = authTokens.erase(authTokensIt);
Ratan Gupta07386c62019-12-14 14:06:09 +0530383
Ed Tanous1abe55e2018-09-05 08:30:59 -0700384 needWrite = true;
385 }
386 else
387 {
388 authTokensIt++;
389 }
390 }
391 }
392 }
Gunnar Mills83cf8182020-11-11 15:37:34 -0600393
394 SessionStore(const SessionStore&) = delete;
395 SessionStore& operator=(const SessionStore&) = delete;
Ed Tanousecd6a3a2022-01-07 09:18:40 -0800396 SessionStore(SessionStore&&) = delete;
397 SessionStore& operator=(const SessionStore&&) = delete;
398 ~SessionStore() = default;
Gunnar Mills83cf8182020-11-11 15:37:34 -0600399
400 std::unordered_map<std::string, std::shared_ptr<UserSession>,
401 std::hash<std::string>,
402 crow::utility::ConstantTimeCompare>
403 authTokens;
404
405 std::chrono::time_point<std::chrono::steady_clock> lastTimeoutUpdate;
406 bool needWrite{false};
407 std::chrono::seconds timeoutInSeconds;
408 AuthConfigMethods authMethodsConfig;
409
410 private:
Jason M. Billsdc414b52021-08-05 15:20:25 -0700411 SessionStore() : timeoutInSeconds(1800)
Gunnar Mills83cf8182020-11-11 15:37:34 -0600412 {}
Kowalski, Kamil2b7981f2018-01-31 13:24:59 +0100413};
414
Ed Tanous1abe55e2018-09-05 08:30:59 -0700415} // namespace persistent_data