Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 3 | #include "logging.hpp" |
Ed Tanous | 2c6ffdb | 2023-06-28 11:28:38 -0700 | [diff] [blame] | 4 | #include "ossl_random.hpp" |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 5 | #include "utility.hpp" |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 6 | #include "utils/ip_utils.hpp" |
Ed Tanous | fc76b8a | 2020-09-28 17:21:52 -0700 | [diff] [blame] | 7 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 8 | #include <nlohmann/json.hpp> |
Ratan Gupta | 12c04ef | 2019-04-03 10:08:11 +0530 | [diff] [blame] | 9 | |
Xie Ning | 9fa06f1 | 2022-06-29 18:27:47 +0800 | [diff] [blame] | 10 | #include <algorithm> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 11 | #include <csignal> |
Ed Tanous | bb759e3 | 2022-08-02 17:07:54 -0700 | [diff] [blame] | 12 | #include <optional> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 13 | #include <random> |
Ed Tanous | b7f3a82 | 2024-06-05 08:45:25 -0700 | [diff] [blame] | 14 | #include <string> |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 15 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 16 | namespace persistent_data |
| 17 | { |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 18 | |
Ed Tanous | 51dae67 | 2018-09-05 16:07:32 -0700 | [diff] [blame] | 19 | // entropy: 20 characters, 62 possibilities. log2(62^20) = 119 bits of |
| 20 | // entropy. OWASP recommends at least 64 |
| 21 | // https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#session-id-entropy |
| 22 | constexpr std::size_t sessionTokenSize = 20; |
| 23 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 24 | enum class PersistenceType |
| 25 | { |
| 26 | TIMEOUT, // User session times out after a predetermined amount of time |
| 27 | SINGLE_REQUEST // User times out once this request is completed. |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 28 | }; |
| 29 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 30 | struct UserSession |
| 31 | { |
| 32 | std::string uniqueId; |
| 33 | std::string sessionToken; |
| 34 | std::string username; |
| 35 | std::string csrfToken; |
Ed Tanous | bb759e3 | 2022-08-02 17:07:54 -0700 | [diff] [blame] | 36 | std::optional<std::string> clientId; |
Sunitha Harish | 92f6822 | 2020-05-28 05:09:09 -0500 | [diff] [blame] | 37 | std::string clientIp; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 38 | std::chrono::time_point<std::chrono::steady_clock> lastUpdated; |
Ed Tanous | d3a9e08 | 2022-01-07 09:30:41 -0800 | [diff] [blame] | 39 | PersistenceType persistence{PersistenceType::TIMEOUT}; |
Ed Tanous | 7e9c08e | 2023-06-16 11:29:37 -0700 | [diff] [blame] | 40 | bool cookieAuth = false; |
Joseph Reynolds | 3bf4e63 | 2020-02-06 14:44:32 -0600 | [diff] [blame] | 41 | bool isConfigureSelfOnly = false; |
Ed Tanous | 47f2934 | 2024-03-19 12:18:06 -0700 | [diff] [blame] | 42 | std::string userRole; |
| 43 | std::vector<std::string> userGroups; |
Joseph Reynolds | 3bf4e63 | 2020-02-06 14:44:32 -0600 | [diff] [blame] | 44 | |
| 45 | // There are two sources of truth for isConfigureSelfOnly: |
| 46 | // 1. When pamAuthenticateUser() returns PAM_NEW_AUTHTOK_REQD. |
| 47 | // 2. D-Bus User.Manager.GetUserInfo property UserPasswordExpired. |
| 48 | // These should be in sync, but the underlying condition can change at any |
| 49 | // time. For example, a password can expire or be changed outside of |
| 50 | // bmcweb. The value stored here is updated at the start of each |
| 51 | // operation and used as the truth within bmcweb. |
Kowalski, Kamil | 5cef0f7 | 2018-02-15 15:26:51 +0100 | [diff] [blame] | 52 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 53 | /** |
| 54 | * @brief Fills object with data from UserSession's JSON representation |
| 55 | * |
| 56 | * This replaces nlohmann's from_json to ensure no-throw approach |
| 57 | * |
| 58 | * @param[in] j JSON object from which data should be loaded |
| 59 | * |
| 60 | * @return a shared pointer if data has been loaded properly, nullptr |
| 61 | * otherwise |
| 62 | */ |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 63 | static std::shared_ptr<UserSession> |
| 64 | fromJson(const nlohmann::json::object_t& j) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 65 | { |
| 66 | std::shared_ptr<UserSession> userSession = |
| 67 | std::make_shared<UserSession>(); |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 68 | for (const auto& element : j) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 69 | { |
| 70 | const std::string* thisValue = |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 71 | element.second.get_ptr<const std::string*>(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 72 | if (thisValue == nullptr) |
| 73 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 74 | BMCWEB_LOG_ERROR( |
| 75 | "Error reading persistent store. Property {} was not of type string", |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 76 | element.first); |
Ed Tanous | dc511aa | 2020-10-21 12:33:42 -0700 | [diff] [blame] | 77 | continue; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 78 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 79 | if (element.first == "unique_id") |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 80 | { |
| 81 | userSession->uniqueId = *thisValue; |
| 82 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 83 | else if (element.first == "session_token") |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 84 | { |
| 85 | userSession->sessionToken = *thisValue; |
| 86 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 87 | else if (element.first == "csrf_token") |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 88 | { |
| 89 | userSession->csrfToken = *thisValue; |
| 90 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 91 | else if (element.first == "username") |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 92 | { |
| 93 | userSession->username = *thisValue; |
| 94 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 95 | else if (element.first == "client_id") |
Sunitha Harish | 08bdcc7 | 2020-05-12 05:17:57 -0500 | [diff] [blame] | 96 | { |
| 97 | userSession->clientId = *thisValue; |
| 98 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 99 | else if (element.first == "client_ip") |
Sunitha Harish | 92f6822 | 2020-05-28 05:09:09 -0500 | [diff] [blame] | 100 | { |
| 101 | userSession->clientIp = *thisValue; |
| 102 | } |
| 103 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 104 | else |
| 105 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 106 | BMCWEB_LOG_ERROR( |
| 107 | "Got unexpected property reading persistent file: {}", |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 108 | element.first); |
Ed Tanous | dc511aa | 2020-10-21 12:33:42 -0700 | [diff] [blame] | 109 | continue; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 110 | } |
| 111 | } |
Ed Tanous | dc511aa | 2020-10-21 12:33:42 -0700 | [diff] [blame] | 112 | // If any of these fields are missing, we can't restore the session, as |
| 113 | // we don't have enough information. These 4 fields have been present |
| 114 | // in every version of this file in bmcwebs history, so any file, even |
| 115 | // on upgrade, should have these present |
| 116 | if (userSession->uniqueId.empty() || userSession->username.empty() || |
| 117 | userSession->sessionToken.empty() || userSession->csrfToken.empty()) |
| 118 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 119 | BMCWEB_LOG_DEBUG("Session missing required security " |
| 120 | "information, refusing to restore"); |
Ed Tanous | dc511aa | 2020-10-21 12:33:42 -0700 | [diff] [blame] | 121 | return nullptr; |
| 122 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 123 | |
| 124 | // For now, sessions that were persisted through a reboot get their idle |
| 125 | // timer reset. This could probably be overcome with a better |
| 126 | // understanding of wall clock time and steady timer time, possibly |
| 127 | // persisting values with wall clock time instead of steady timer, but |
| 128 | // the tradeoffs of all the corner cases involved are non-trivial, so |
| 129 | // this is done temporarily |
| 130 | userSession->lastUpdated = std::chrono::steady_clock::now(); |
| 131 | userSession->persistence = PersistenceType::TIMEOUT; |
| 132 | |
| 133 | return userSession; |
Kowalski, Kamil | 5cef0f7 | 2018-02-15 15:26:51 +0100 | [diff] [blame] | 134 | } |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 135 | }; |
| 136 | |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 137 | struct AuthConfigMethods |
| 138 | { |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 139 | bool basic = BMCWEB_BASIC_AUTH; |
| 140 | bool sessionToken = BMCWEB_SESSION_AUTH; |
| 141 | bool xtoken = BMCWEB_XTOKEN_AUTH; |
| 142 | bool cookie = BMCWEB_COOKIE_AUTH; |
| 143 | bool tls = BMCWEB_MUTUAL_TLS_AUTH; |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 144 | |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 145 | void fromJson(const nlohmann::json::object_t& j) |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 146 | { |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 147 | for (const auto& element : j) |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 148 | { |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 149 | const bool* value = element.second.get_ptr<const bool*>(); |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 150 | if (value == nullptr) |
| 151 | { |
| 152 | continue; |
| 153 | } |
| 154 | |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 155 | if (element.first == "XToken") |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 156 | { |
| 157 | xtoken = *value; |
| 158 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 159 | else if (element.first == "Cookie") |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 160 | { |
| 161 | cookie = *value; |
| 162 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 163 | else if (element.first == "SessionToken") |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 164 | { |
| 165 | sessionToken = *value; |
| 166 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 167 | else if (element.first == "BasicAuth") |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 168 | { |
| 169 | basic = *value; |
| 170 | } |
Ed Tanous | 0bdda66 | 2023-08-03 17:27:34 -0700 | [diff] [blame] | 171 | else if (element.first == "TLS") |
Zbigniew Kurzynski | 501f1e5 | 2019-10-02 11:22:11 +0200 | [diff] [blame] | 172 | { |
| 173 | tls = *value; |
| 174 | } |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 175 | } |
| 176 | } |
| 177 | }; |
| 178 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 179 | class SessionStore |
| 180 | { |
| 181 | public: |
| 182 | std::shared_ptr<UserSession> generateUserSession( |
Ed Tanous | 26ccae3 | 2023-02-16 10:28:44 -0800 | [diff] [blame] | 183 | std::string_view username, const boost::asio::ip::address& clientIp, |
Ed Tanous | bb759e3 | 2022-08-02 17:07:54 -0700 | [diff] [blame] | 184 | const std::optional<std::string>& clientId, |
Joseph Reynolds | 3bf4e63 | 2020-02-06 14:44:32 -0600 | [diff] [blame] | 185 | PersistenceType persistence = PersistenceType::TIMEOUT, |
Sunitha Harish | d323922 | 2021-02-24 15:33:29 +0530 | [diff] [blame] | 186 | bool isConfigureSelfOnly = false) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 187 | { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 188 | // Only need csrf tokens for cookie based auth, token doesn't matter |
Ed Tanous | b7f3a82 | 2024-06-05 08:45:25 -0700 | [diff] [blame] | 189 | std::string sessionToken = |
| 190 | bmcweb::getRandomIdOfLength(sessionTokenSize); |
| 191 | std::string csrfToken = bmcweb::getRandomIdOfLength(sessionTokenSize); |
| 192 | std::string uniqueId = bmcweb::getRandomIdOfLength(10); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 193 | |
Ed Tanous | b7f3a82 | 2024-06-05 08:45:25 -0700 | [diff] [blame] | 194 | // |
| 195 | if (sessionToken.empty() || csrfToken.empty() || uniqueId.empty()) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 196 | { |
Ed Tanous | b7f3a82 | 2024-06-05 08:45:25 -0700 | [diff] [blame] | 197 | BMCWEB_LOG_ERROR("Failed to generate session tokens"); |
| 198 | return nullptr; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 199 | } |
Jiaqing Zhao | 41d61c8 | 2021-12-07 13:21:47 +0800 | [diff] [blame] | 200 | |
Ed Tanous | 47f2934 | 2024-03-19 12:18:06 -0700 | [diff] [blame] | 201 | auto session = std::make_shared<UserSession>( |
| 202 | UserSession{uniqueId, |
| 203 | sessionToken, |
| 204 | std::string(username), |
| 205 | csrfToken, |
| 206 | clientId, |
| 207 | redfish::ip_util::toString(clientIp), |
| 208 | std::chrono::steady_clock::now(), |
| 209 | persistence, |
| 210 | false, |
| 211 | isConfigureSelfOnly, |
| 212 | "", |
| 213 | {}}); |
Patrick Williams | 41713dd | 2022-09-28 06:48:07 -0500 | [diff] [blame] | 214 | auto it = authTokens.emplace(sessionToken, session); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 215 | // Only need to write to disk if session isn't about to be destroyed. |
| 216 | needWrite = persistence == PersistenceType::TIMEOUT; |
| 217 | return it.first->second; |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 218 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 219 | |
Ed Tanous | 26ccae3 | 2023-02-16 10:28:44 -0800 | [diff] [blame] | 220 | std::shared_ptr<UserSession> loginSessionByToken(std::string_view token) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 221 | { |
| 222 | applySessionTimeouts(); |
Ed Tanous | 51dae67 | 2018-09-05 16:07:32 -0700 | [diff] [blame] | 223 | if (token.size() != sessionTokenSize) |
| 224 | { |
| 225 | return nullptr; |
| 226 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 227 | auto sessionIt = authTokens.find(std::string(token)); |
| 228 | if (sessionIt == authTokens.end()) |
| 229 | { |
| 230 | return nullptr; |
| 231 | } |
| 232 | std::shared_ptr<UserSession> userSession = sessionIt->second; |
| 233 | userSession->lastUpdated = std::chrono::steady_clock::now(); |
| 234 | return userSession; |
| 235 | } |
| 236 | |
Ed Tanous | 26ccae3 | 2023-02-16 10:28:44 -0800 | [diff] [blame] | 237 | std::shared_ptr<UserSession> getSessionByUid(std::string_view uid) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 238 | { |
| 239 | applySessionTimeouts(); |
| 240 | // TODO(Ed) this is inefficient |
| 241 | auto sessionIt = authTokens.begin(); |
| 242 | while (sessionIt != authTokens.end()) |
| 243 | { |
| 244 | if (sessionIt->second->uniqueId == uid) |
| 245 | { |
| 246 | return sessionIt->second; |
| 247 | } |
| 248 | sessionIt++; |
| 249 | } |
| 250 | return nullptr; |
| 251 | } |
| 252 | |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 253 | void removeSession(const std::shared_ptr<UserSession>& session) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 254 | { |
| 255 | authTokens.erase(session->sessionToken); |
| 256 | needWrite = true; |
| 257 | } |
| 258 | |
| 259 | std::vector<const std::string*> getUniqueIds( |
| 260 | bool getAll = true, |
| 261 | const PersistenceType& type = PersistenceType::SINGLE_REQUEST) |
| 262 | { |
| 263 | applySessionTimeouts(); |
| 264 | |
| 265 | std::vector<const std::string*> ret; |
| 266 | ret.reserve(authTokens.size()); |
| 267 | for (auto& session : authTokens) |
| 268 | { |
| 269 | if (getAll || type == session.second->persistence) |
| 270 | { |
| 271 | ret.push_back(&session.second->uniqueId); |
| 272 | } |
| 273 | } |
| 274 | return ret; |
| 275 | } |
| 276 | |
Xie Ning | 9fa06f1 | 2022-06-29 18:27:47 +0800 | [diff] [blame] | 277 | void removeSessionsByUsername(std::string_view username) |
| 278 | { |
| 279 | std::erase_if(authTokens, [username](const auto& value) { |
| 280 | if (value.second == nullptr) |
| 281 | { |
| 282 | return false; |
| 283 | } |
| 284 | return value.second->username == username; |
| 285 | }); |
| 286 | } |
| 287 | |
Ravi Teja | e518ef3 | 2024-05-16 10:33:08 -0500 | [diff] [blame] | 288 | void removeSessionsByUsernameExceptSession( |
| 289 | std::string_view username, const std::shared_ptr<UserSession>& session) |
| 290 | { |
| 291 | std::erase_if(authTokens, [username, session](const auto& value) { |
| 292 | if (value.second == nullptr) |
| 293 | { |
| 294 | return false; |
| 295 | } |
| 296 | |
| 297 | return value.second->username == username && |
| 298 | value.second->uniqueId != session->uniqueId; |
| 299 | }); |
| 300 | } |
| 301 | |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 302 | void updateAuthMethodsConfig(const AuthConfigMethods& config) |
| 303 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 304 | bool isTLSchanged = (authMethodsConfig.tls != config.tls); |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 305 | authMethodsConfig = config; |
| 306 | needWrite = true; |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 307 | if (isTLSchanged) |
| 308 | { |
| 309 | // recreate socket connections with new settings |
| 310 | std::raise(SIGHUP); |
| 311 | } |
Zbigniew Kurzynski | 7815863 | 2019-11-05 12:57:37 +0100 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | AuthConfigMethods& getAuthMethodsConfig() |
| 315 | { |
| 316 | return authMethodsConfig; |
| 317 | } |
| 318 | |
Ed Tanous | 9eb808c | 2022-01-25 10:19:23 -0800 | [diff] [blame] | 319 | bool needsWrite() const |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 320 | { |
| 321 | return needWrite; |
| 322 | } |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 323 | int64_t getTimeoutInSeconds() const |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 324 | { |
Manojkiran Eda | f2a4a60 | 2020-08-27 16:04:26 +0530 | [diff] [blame] | 325 | return std::chrono::seconds(timeoutInSeconds).count(); |
| 326 | } |
| 327 | |
| 328 | void updateSessionTimeout(std::chrono::seconds newTimeoutInSeconds) |
| 329 | { |
| 330 | timeoutInSeconds = newTimeoutInSeconds; |
| 331 | needWrite = true; |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 332 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 333 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 334 | static SessionStore& getInstance() |
| 335 | { |
| 336 | static SessionStore sessionStore; |
| 337 | return sessionStore; |
| 338 | } |
| 339 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 340 | void applySessionTimeouts() |
| 341 | { |
| 342 | auto timeNow = std::chrono::steady_clock::now(); |
Manojkiran Eda | f2a4a60 | 2020-08-27 16:04:26 +0530 | [diff] [blame] | 343 | if (timeNow - lastTimeoutUpdate > std::chrono::seconds(1)) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 344 | { |
| 345 | lastTimeoutUpdate = timeNow; |
| 346 | auto authTokensIt = authTokens.begin(); |
| 347 | while (authTokensIt != authTokens.end()) |
| 348 | { |
| 349 | if (timeNow - authTokensIt->second->lastUpdated >= |
Manojkiran Eda | f2a4a60 | 2020-08-27 16:04:26 +0530 | [diff] [blame] | 350 | timeoutInSeconds) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 351 | { |
| 352 | authTokensIt = authTokens.erase(authTokensIt); |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 353 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 354 | needWrite = true; |
| 355 | } |
| 356 | else |
| 357 | { |
| 358 | authTokensIt++; |
| 359 | } |
| 360 | } |
| 361 | } |
| 362 | } |
Gunnar Mills | 83cf818 | 2020-11-11 15:37:34 -0600 | [diff] [blame] | 363 | |
| 364 | SessionStore(const SessionStore&) = delete; |
| 365 | SessionStore& operator=(const SessionStore&) = delete; |
Ed Tanous | ecd6a3a | 2022-01-07 09:18:40 -0800 | [diff] [blame] | 366 | SessionStore(SessionStore&&) = delete; |
| 367 | SessionStore& operator=(const SessionStore&&) = delete; |
| 368 | ~SessionStore() = default; |
Gunnar Mills | 83cf818 | 2020-11-11 15:37:34 -0600 | [diff] [blame] | 369 | |
| 370 | std::unordered_map<std::string, std::shared_ptr<UserSession>, |
| 371 | std::hash<std::string>, |
| 372 | crow::utility::ConstantTimeCompare> |
| 373 | authTokens; |
| 374 | |
| 375 | std::chrono::time_point<std::chrono::steady_clock> lastTimeoutUpdate; |
| 376 | bool needWrite{false}; |
| 377 | std::chrono::seconds timeoutInSeconds; |
| 378 | AuthConfigMethods authMethodsConfig; |
| 379 | |
| 380 | private: |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 381 | SessionStore() : timeoutInSeconds(1800) {} |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 382 | }; |
| 383 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 384 | } // namespace persistent_data |