James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Paul Fertser | 29aab24 | 2024-06-12 19:28:47 +0000 | [diff] [blame] | 3 | #include "cookies.hpp" |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 4 | #include "forward_unauthorized.hpp" |
| 5 | #include "http_request.hpp" |
| 6 | #include "http_response.hpp" |
| 7 | #include "http_utility.hpp" |
| 8 | #include "pam_authenticate.hpp" |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 9 | #include "webroutes.hpp" |
| 10 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 11 | #include <boost/container/flat_set.hpp> |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 12 | |
| 13 | #include <random> |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 14 | #include <utility> |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 15 | |
| 16 | namespace crow |
| 17 | { |
| 18 | |
Nan Zhou | d055a34 | 2022-05-25 01:15:34 +0000 | [diff] [blame] | 19 | namespace authentication |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 20 | { |
| 21 | |
Patrick Williams | bd79bce | 2024-08-16 15:22:20 -0400 | [diff] [blame] | 22 | inline std::shared_ptr<persistent_data::UserSession> performBasicAuth( |
| 23 | const boost::asio::ip::address& clientIp, std::string_view authHeader) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 24 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 25 | BMCWEB_LOG_DEBUG("[AuthMiddleware] Basic authentication"); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 26 | |
Ed Tanous | 11ba397 | 2022-07-11 09:50:41 -0700 | [diff] [blame] | 27 | if (!authHeader.starts_with("Basic ")) |
John Edward Broadbent | 97a056a | 2021-09-10 14:56:19 -0700 | [diff] [blame] | 28 | { |
| 29 | return nullptr; |
| 30 | } |
| 31 | |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 32 | std::string_view param = authHeader.substr(strlen("Basic ")); |
John Edward Broadbent | 97a056a | 2021-09-10 14:56:19 -0700 | [diff] [blame] | 33 | std::string authData; |
| 34 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 35 | if (!crow::utility::base64Decode(param, authData)) |
| 36 | { |
| 37 | return nullptr; |
| 38 | } |
| 39 | std::size_t separator = authData.find(':'); |
| 40 | if (separator == std::string::npos) |
| 41 | { |
| 42 | return nullptr; |
| 43 | } |
| 44 | |
| 45 | std::string user = authData.substr(0, separator); |
| 46 | separator += 1; |
| 47 | if (separator > authData.size()) |
| 48 | { |
| 49 | return nullptr; |
| 50 | } |
| 51 | std::string pass = authData.substr(separator); |
| 52 | |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 53 | BMCWEB_LOG_DEBUG("[AuthMiddleware] Authenticating user: {}", user); |
| 54 | BMCWEB_LOG_DEBUG("[AuthMiddleware] User IPAddress: {}", |
| 55 | clientIp.to_string()); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 56 | |
Ravi Teja | 2ccce1f | 2024-08-10 04:05:36 -0500 | [diff] [blame] | 57 | int pamrc = pamAuthenticateUser(user, pass, std::nullopt); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 58 | bool isConfigureSelfOnly = pamrc == PAM_NEW_AUTHTOK_REQD; |
| 59 | if ((pamrc != PAM_SUCCESS) && !isConfigureSelfOnly) |
| 60 | { |
| 61 | return nullptr; |
| 62 | } |
| 63 | |
Ed Tanous | 89cda63 | 2024-04-16 08:45:54 -0700 | [diff] [blame] | 64 | // Attempt to locate an existing Basic Auth session from the same ip address |
| 65 | // and user |
| 66 | for (auto& session : |
| 67 | persistent_data::SessionStore::getInstance().getSessions()) |
| 68 | { |
| 69 | if (session->sessionType != persistent_data::SessionType::Basic) |
| 70 | { |
| 71 | continue; |
| 72 | } |
| 73 | if (session->clientIp != redfish::ip_util::toString(clientIp)) |
| 74 | { |
| 75 | continue; |
| 76 | } |
| 77 | if (session->username != user) |
| 78 | { |
| 79 | continue; |
| 80 | } |
| 81 | return session; |
| 82 | } |
| 83 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 84 | return persistent_data::SessionStore::getInstance().generateUserSession( |
Ed Tanous | 89cda63 | 2024-04-16 08:45:54 -0700 | [diff] [blame] | 85 | user, clientIp, std::nullopt, persistent_data::SessionType::Basic, |
| 86 | isConfigureSelfOnly); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 89 | inline std::shared_ptr<persistent_data::UserSession> |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 90 | performTokenAuth(std::string_view authHeader) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 91 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 92 | BMCWEB_LOG_DEBUG("[AuthMiddleware] Token authentication"); |
Ed Tanous | 11ba397 | 2022-07-11 09:50:41 -0700 | [diff] [blame] | 93 | if (!authHeader.starts_with("Token ")) |
John Edward Broadbent | 97a056a | 2021-09-10 14:56:19 -0700 | [diff] [blame] | 94 | { |
| 95 | return nullptr; |
| 96 | } |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 97 | std::string_view token = authHeader.substr(strlen("Token ")); |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 98 | auto sessionOut = |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 99 | persistent_data::SessionStore::getInstance().loginSessionByToken(token); |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 100 | return sessionOut; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 103 | inline std::shared_ptr<persistent_data::UserSession> |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 104 | performXtokenAuth(const boost::beast::http::header<true>& reqHeader) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 105 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 106 | BMCWEB_LOG_DEBUG("[AuthMiddleware] X-Auth-Token authentication"); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 107 | |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 108 | std::string_view token = reqHeader["X-Auth-Token"]; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 109 | if (token.empty()) |
| 110 | { |
| 111 | return nullptr; |
| 112 | } |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 113 | auto sessionOut = |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 114 | persistent_data::SessionStore::getInstance().loginSessionByToken(token); |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 115 | return sessionOut; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 118 | inline std::shared_ptr<persistent_data::UserSession> |
Ed Tanous | 1d86960 | 2022-12-19 13:48:12 -0800 | [diff] [blame] | 119 | performCookieAuth(boost::beast::http::verb method [[maybe_unused]], |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 120 | const boost::beast::http::header<true>& reqHeader) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 121 | { |
Ed Tanous | 9f217c2 | 2024-04-19 17:22:43 -0700 | [diff] [blame] | 122 | using headers = boost::beast::http::header<true>; |
| 123 | std::pair<headers::const_iterator, headers::const_iterator> cookies = |
| 124 | reqHeader.equal_range(boost::beast::http::field::cookie); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 125 | |
Ed Tanous | 9f217c2 | 2024-04-19 17:22:43 -0700 | [diff] [blame] | 126 | for (auto it = cookies.first; it != cookies.second; it++) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 127 | { |
Ed Tanous | 9f217c2 | 2024-04-19 17:22:43 -0700 | [diff] [blame] | 128 | std::string_view cookieValue = it->value(); |
| 129 | BMCWEB_LOG_DEBUG("Checking cookie {}", cookieValue); |
| 130 | auto startIndex = cookieValue.find("SESSION="); |
| 131 | if (startIndex == std::string::npos) |
| 132 | { |
| 133 | BMCWEB_LOG_DEBUG( |
| 134 | "Cookie was present, but didn't look like a session {}", |
| 135 | cookieValue); |
| 136 | continue; |
| 137 | } |
| 138 | startIndex += sizeof("SESSION=") - 1; |
| 139 | auto endIndex = cookieValue.find(';', startIndex); |
| 140 | if (endIndex == std::string::npos) |
| 141 | { |
| 142 | endIndex = cookieValue.size(); |
| 143 | } |
Patrick Williams | bd79bce | 2024-08-16 15:22:20 -0400 | [diff] [blame] | 144 | std::string_view authKey = |
| 145 | cookieValue.substr(startIndex, endIndex - startIndex); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 146 | |
Ed Tanous | 9f217c2 | 2024-04-19 17:22:43 -0700 | [diff] [blame] | 147 | std::shared_ptr<persistent_data::UserSession> sessionOut = |
| 148 | persistent_data::SessionStore::getInstance().loginSessionByToken( |
| 149 | authKey); |
| 150 | if (sessionOut == nullptr) |
| 151 | { |
| 152 | return nullptr; |
| 153 | } |
| 154 | sessionOut->cookieAuth = true; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 155 | |
Ed Tanous | 576db69 | 2024-05-10 16:37:56 -0700 | [diff] [blame] | 156 | if constexpr (!BMCWEB_INSECURE_DISABLE_CSRF) |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 157 | { |
| 158 | // RFC7231 defines methods that need csrf protection |
| 159 | if (method != boost::beast::http::verb::get) |
Ed Tanous | 9f217c2 | 2024-04-19 17:22:43 -0700 | [diff] [blame] | 160 | { |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 161 | std::string_view csrf = reqHeader["X-XSRF-TOKEN"]; |
| 162 | // Make sure both tokens are filled |
| 163 | if (csrf.empty() || sessionOut->csrfToken.empty()) |
| 164 | { |
| 165 | return nullptr; |
| 166 | } |
| 167 | |
| 168 | if (csrf.size() != persistent_data::sessionTokenSize) |
| 169 | { |
| 170 | return nullptr; |
| 171 | } |
| 172 | // Reject if csrf token not available |
Ed Tanous | 724985f | 2024-06-05 09:19:06 -0700 | [diff] [blame] | 173 | if (!bmcweb::constantTimeStringCompare(csrf, |
| 174 | sessionOut->csrfToken)) |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 175 | { |
| 176 | return nullptr; |
| 177 | } |
Ed Tanous | 9f217c2 | 2024-04-19 17:22:43 -0700 | [diff] [blame] | 178 | } |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 179 | } |
Ed Tanous | 3eaecac | 2024-05-08 16:26:24 -0700 | [diff] [blame] | 180 | return sessionOut; |
Ed Tanous | 9f217c2 | 2024-04-19 17:22:43 -0700 | [diff] [blame] | 181 | } |
| 182 | return nullptr; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Patrick Williams | bd79bce | 2024-08-16 15:22:20 -0400 | [diff] [blame] | 185 | inline std::shared_ptr<persistent_data::UserSession> performTLSAuth( |
| 186 | Response& res, const std::shared_ptr<persistent_data::UserSession>& session) |
James Feist | 6964c98 | 2020-07-28 16:10:23 -0700 | [diff] [blame] | 187 | { |
Ed Tanous | 3281bcf | 2024-06-25 16:02:05 -0700 | [diff] [blame] | 188 | if (session != nullptr) |
James Feist | 6964c98 | 2020-07-28 16:10:23 -0700 | [diff] [blame] | 189 | { |
Ed Tanous | 994fd86 | 2023-06-06 13:37:03 -0700 | [diff] [blame] | 190 | res.addHeader(boost::beast::http::field::set_cookie, |
| 191 | "IsAuthenticated=true; Secure"); |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 192 | BMCWEB_LOG_DEBUG( |
| 193 | " TLS session: {} with cookie will be used for this request.", |
Ed Tanous | 3281bcf | 2024-06-25 16:02:05 -0700 | [diff] [blame] | 194 | session->uniqueId); |
James Feist | 6964c98 | 2020-07-28 16:10:23 -0700 | [diff] [blame] | 195 | } |
Ed Tanous | 3281bcf | 2024-06-25 16:02:05 -0700 | [diff] [blame] | 196 | |
| 197 | return session; |
James Feist | 6964c98 | 2020-07-28 16:10:23 -0700 | [diff] [blame] | 198 | } |
| 199 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 200 | // checks if request can be forwarded without authentication |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 201 | inline bool isOnAllowlist(std::string_view url, boost::beast::http::verb method) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 202 | { |
Ed Tanous | 3822150 | 2024-06-03 12:19:38 -0700 | [diff] [blame] | 203 | // Handle the case where the router registers routes as both ending with / |
| 204 | // and not. |
VinceChang6637 | 8f5df13 | 2024-06-14 17:13:16 +0800 | [diff] [blame] | 205 | if (url.ends_with('/') && url != "/") |
Ed Tanous | 3822150 | 2024-06-03 12:19:38 -0700 | [diff] [blame] | 206 | { |
| 207 | url.remove_suffix(1); |
| 208 | } |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 209 | if (boost::beast::http::verb::get == method) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 210 | { |
Myung Bae | 41868c6 | 2024-10-09 16:36:49 -0700 | [diff] [blame^] | 211 | if ((url == "/redfish") || // |
| 212 | (url == "/redfish/v1") || // |
Ed Tanous | 3822150 | 2024-06-03 12:19:38 -0700 | [diff] [blame] | 213 | (url == "/redfish/v1/odata") || // |
| 214 | (url == "/redfish/v1/$metadata")) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 215 | { |
| 216 | return true; |
| 217 | } |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 218 | if (crow::webroutes::routes.find(std::string(url)) != |
Ed Tanous | d4d2579 | 2020-09-29 15:15:03 -0700 | [diff] [blame] | 219 | crow::webroutes::routes.end()) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 220 | { |
| 221 | return true; |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | // it's allowed to POST on session collection & login without |
| 226 | // authentication |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 227 | if (boost::beast::http::verb::post == method) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 228 | { |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 229 | if ((url == "/redfish/v1/SessionService/Sessions") || |
Ed Tanous | e76cd86 | 2022-03-14 09:12:00 -0700 | [diff] [blame] | 230 | (url == "/redfish/v1/SessionService/Sessions/Members") || |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 231 | (url == "/login")) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 232 | { |
| 233 | return true; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | return false; |
| 238 | } |
| 239 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 240 | inline std::shared_ptr<persistent_data::UserSession> authenticate( |
| 241 | const boost::asio::ip::address& ipAddress [[maybe_unused]], |
| 242 | Response& res [[maybe_unused]], |
| 243 | boost::beast::http::verb method [[maybe_unused]], |
| 244 | const boost::beast::http::header<true>& reqHeader, |
| 245 | [[maybe_unused]] const std::shared_ptr<persistent_data::UserSession>& |
| 246 | session) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 247 | { |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 248 | const persistent_data::AuthConfigMethods& authMethodsConfig = |
| 249 | persistent_data::SessionStore::getInstance().getAuthMethodsConfig(); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 250 | |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 251 | std::shared_ptr<persistent_data::UserSession> sessionOut = nullptr; |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 252 | if constexpr (BMCWEB_MUTUAL_TLS_AUTH) |
James Feist | 6964c98 | 2020-07-28 16:10:23 -0700 | [diff] [blame] | 253 | { |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 254 | if (authMethodsConfig.tls) |
| 255 | { |
Ed Tanous | 3281bcf | 2024-06-25 16:02:05 -0700 | [diff] [blame] | 256 | sessionOut = performTLSAuth(res, session); |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 257 | } |
James Feist | 6964c98 | 2020-07-28 16:10:23 -0700 | [diff] [blame] | 258 | } |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 259 | if constexpr (BMCWEB_XTOKEN_AUTH) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 260 | { |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 261 | if (sessionOut == nullptr && authMethodsConfig.xtoken) |
| 262 | { |
| 263 | sessionOut = performXtokenAuth(reqHeader); |
| 264 | } |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 265 | } |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 266 | if constexpr (BMCWEB_COOKIE_AUTH) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 267 | { |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 268 | if (sessionOut == nullptr && authMethodsConfig.cookie) |
| 269 | { |
| 270 | sessionOut = performCookieAuth(method, reqHeader); |
| 271 | } |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 272 | } |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 273 | std::string_view authHeader = reqHeader["Authorization"]; |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 274 | BMCWEB_LOG_DEBUG("authHeader={}", authHeader); |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 275 | if constexpr (BMCWEB_SESSION_AUTH) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 276 | { |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 277 | if (sessionOut == nullptr && authMethodsConfig.sessionToken) |
| 278 | { |
| 279 | sessionOut = performTokenAuth(authHeader); |
| 280 | } |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 281 | } |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 282 | if constexpr (BMCWEB_BASIC_AUTH) |
John Edward Broadbent | 97a056a | 2021-09-10 14:56:19 -0700 | [diff] [blame] | 283 | { |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 284 | if (sessionOut == nullptr && authMethodsConfig.basic) |
| 285 | { |
| 286 | sessionOut = performBasicAuth(ipAddress, authHeader); |
| 287 | } |
John Edward Broadbent | 97a056a | 2021-09-10 14:56:19 -0700 | [diff] [blame] | 288 | } |
| 289 | if (sessionOut != nullptr) |
| 290 | { |
| 291 | return sessionOut; |
| 292 | } |
| 293 | |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 294 | return nullptr; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Nan Zhou | d055a34 | 2022-05-25 01:15:34 +0000 | [diff] [blame] | 297 | } // namespace authentication |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 298 | } // namespace crow |