Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 3 | #include <pam_authenticate.hpp> |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 4 | #include <persistent_data_middleware.hpp> |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 5 | #include <webassets.hpp> |
| 6 | #include <random> |
| 7 | #include <crow/app.h> |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 8 | #include <crow/common.h> |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 9 | #include <crow/http_request.h> |
| 10 | #include <crow/http_response.h> |
Ed Tanous | 4758d5b | 2017-06-06 15:28:13 -0700 | [diff] [blame] | 11 | #include <boost/container/flat_set.hpp> |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 12 | |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 13 | namespace crow { |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 14 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 15 | namespace TokenAuthorization { |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 16 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 17 | class Middleware { |
Ed Tanous | 3dac749 | 2017-08-02 13:46:20 -0700 | [diff] [blame] | 18 | public: |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 19 | struct context { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 20 | std::shared_ptr<crow::PersistentData::UserSession> session; |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 21 | }; |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 22 | |
| 23 | void before_handle(crow::request& req, response& res, context& ctx) { |
Ed Tanous | bae064e | 2018-03-22 15:44:39 -0700 | [diff] [blame] | 24 | if (is_on_whitelist(req)) { |
| 25 | return; |
| 26 | } |
| 27 | |
Ed Tanous | 1ea9f06 | 2018-03-27 17:45:20 -0700 | [diff] [blame] | 28 | ctx.session = perform_xtoken_auth(req); |
Ed Tanous | 1ea9f06 | 2018-03-27 17:45:20 -0700 | [diff] [blame] | 29 | if (ctx.session == nullptr) { |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 30 | ctx.session = perform_cookie_auth(req); |
Ed Tanous | 1ea9f06 | 2018-03-27 17:45:20 -0700 | [diff] [blame] | 31 | } |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 32 | if (ctx.session == nullptr) { |
| 33 | boost::string_view auth_header = req.get_header_value("Authorization"); |
| 34 | if (!auth_header.empty()) { |
| 35 | // Reject any kind of auth other than basic or token |
| 36 | if (boost::starts_with(auth_header, "Token ")) { |
| 37 | ctx.session = perform_token_auth(auth_header); |
| 38 | } else if (boost::starts_with(auth_header, "Basic ")) { |
| 39 | ctx.session = perform_basic_auth(auth_header); |
| 40 | } |
| 41 | } |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 42 | } |
| 43 | |
Ed Tanous | bae064e | 2018-03-22 15:44:39 -0700 | [diff] [blame] | 44 | if (ctx.session == nullptr) { |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 45 | CROW_LOG_WARNING << "[AuthMiddleware] authorization failed"; |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 46 | |
| 47 | res.result(boost::beast::http::status::unauthorized); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 48 | res.add_header("WWW-Authenticate", "Basic"); |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 49 | |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 50 | res.end(); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 51 | return; |
| 52 | } |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 53 | |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 54 | // TODO get user privileges here and propagate it via MW context |
| 55 | // else let the request continue unharmed |
| 56 | } |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 57 | |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 58 | template <typename AllContext> |
| 59 | void after_handle(request& req, response& res, context& ctx, |
| 60 | AllContext& allctx) { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 61 | // TODO(ed) THis should really be handled by the persistent data |
| 62 | // middleware, but because it is upstream, it doesn't have access to the |
| 63 | // session information. Should the data middleware persist the current |
| 64 | // user session? |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 65 | if (ctx.session != nullptr && |
| 66 | ctx.session->persistence == |
| 67 | crow::PersistentData::PersistenceType::SINGLE_REQUEST) { |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 68 | PersistentData::session_store->remove_session(ctx.session); |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 69 | } |
| 70 | } |
| 71 | |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 72 | private: |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 73 | const std::shared_ptr<crow::PersistentData::UserSession> perform_basic_auth( |
| 74 | boost::string_view auth_header) const { |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 75 | CROW_LOG_DEBUG << "[AuthMiddleware] Basic authentication"; |
| 76 | |
| 77 | std::string auth_data; |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 78 | boost::string_view param = auth_header.substr(strlen("Basic ")); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 79 | if (!crow::utility::base64_decode(param, auth_data)) { |
| 80 | return nullptr; |
| 81 | } |
| 82 | std::size_t separator = auth_data.find(':'); |
| 83 | if (separator == std::string::npos) { |
| 84 | return nullptr; |
| 85 | } |
| 86 | |
| 87 | std::string user = auth_data.substr(0, separator); |
| 88 | separator += 1; |
| 89 | if (separator > auth_data.size()) { |
| 90 | return nullptr; |
| 91 | } |
| 92 | std::string pass = auth_data.substr(separator); |
| 93 | |
| 94 | CROW_LOG_DEBUG << "[AuthMiddleware] Authenticating user: " << user; |
| 95 | |
| 96 | if (!pam_authenticate_user(user, pass)) { |
| 97 | return nullptr; |
| 98 | } |
| 99 | |
| 100 | // TODO(ed) generate_user_session is a little expensive for basic |
| 101 | // auth, as it generates some random identifiers that will never be |
| 102 | // used. This should have a "fast" path for when user tokens aren't |
| 103 | // needed. |
| 104 | // This whole flow needs to be revisited anyway, as we can't be |
| 105 | // calling directly into pam for every request |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 106 | return PersistentData::session_store->generate_user_session( |
| 107 | user, crow::PersistentData::PersistenceType::SINGLE_REQUEST); |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 108 | } |
Ed Tanous | 8041f31 | 2017-04-03 09:47:01 -0700 | [diff] [blame] | 109 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 110 | const std::shared_ptr<crow::PersistentData::UserSession> perform_token_auth( |
| 111 | boost::string_view auth_header) const { |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 112 | CROW_LOG_DEBUG << "[AuthMiddleware] Token authentication"; |
| 113 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 114 | boost::string_view token = auth_header.substr(strlen("Token ")); |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 115 | auto session = PersistentData::session_store->login_session_by_token(token); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 116 | return session; |
| 117 | } |
| 118 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 119 | const std::shared_ptr<crow::PersistentData::UserSession> perform_xtoken_auth( |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 120 | const crow::request& req) const { |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 121 | CROW_LOG_DEBUG << "[AuthMiddleware] X-Auth-Token authentication"; |
| 122 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 123 | boost::string_view token = req.get_header_value("X-Auth-Token"); |
Ed Tanous | 1ea9f06 | 2018-03-27 17:45:20 -0700 | [diff] [blame] | 124 | if (token.empty()) { |
| 125 | return nullptr; |
| 126 | } |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 127 | auto session = PersistentData::session_store->login_session_by_token(token); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 128 | return session; |
| 129 | } |
| 130 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 131 | const std::shared_ptr<crow::PersistentData::UserSession> perform_cookie_auth( |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 132 | const crow::request& req) const { |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 133 | CROW_LOG_DEBUG << "[AuthMiddleware] Cookie authentication"; |
| 134 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 135 | boost::string_view cookie_value = req.get_header_value("Cookie"); |
Ed Tanous | 1ea9f06 | 2018-03-27 17:45:20 -0700 | [diff] [blame] | 136 | if (cookie_value.empty()) { |
| 137 | return nullptr; |
| 138 | } |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 139 | |
| 140 | auto start_index = cookie_value.find("SESSION="); |
| 141 | if (start_index == std::string::npos) { |
| 142 | return nullptr; |
| 143 | } |
Ed Tanous | 41ff64d | 2018-01-30 13:13:38 -0800 | [diff] [blame] | 144 | start_index += sizeof("SESSION=") - 1; |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 145 | auto end_index = cookie_value.find(";", start_index); |
| 146 | if (end_index == std::string::npos) { |
| 147 | end_index = cookie_value.size(); |
| 148 | } |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 149 | boost::string_view auth_key = |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 150 | cookie_value.substr(start_index, end_index - start_index); |
| 151 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 152 | const std::shared_ptr<crow::PersistentData::UserSession> session = |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 153 | PersistentData::session_store->login_session_by_token(auth_key); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 154 | if (session == nullptr) { |
| 155 | return nullptr; |
| 156 | } |
| 157 | |
| 158 | // RFC7231 defines methods that need csrf protection |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 159 | if (req.method() != "GET"_method) { |
| 160 | boost::string_view csrf = req.get_header_value("X-XSRF-TOKEN"); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 161 | // Make sure both tokens are filled |
| 162 | if (csrf.empty() || session->csrf_token.empty()) { |
| 163 | return nullptr; |
| 164 | } |
| 165 | // Reject if csrf token not available |
| 166 | if (csrf != session->csrf_token) { |
| 167 | return nullptr; |
| 168 | } |
| 169 | } |
| 170 | return session; |
| 171 | } |
| 172 | |
| 173 | // checks if request can be forwarded without authentication |
| 174 | bool is_on_whitelist(const crow::request& req) const { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 175 | // it's allowed to GET root node without authentica tion |
| 176 | if ("GET"_method == req.method()) { |
Ed Tanous | aa2e59c | 2018-04-12 12:17:20 -0700 | [diff] [blame] | 177 | if (req.url == "/redfish/v1" || req.url == "/redfish/v1/") { |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 178 | return true; |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 179 | } else if (crow::webassets::routes.find(std::string(req.url)) != |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 180 | crow::webassets::routes.end()) { |
| 181 | return true; |
| 182 | } |
| 183 | } |
| 184 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 185 | // it's allowed to POST on session collection & login without |
| 186 | // authentication |
| 187 | if ("POST"_method == req.method()) { |
| 188 | if ((req.url == "/redfish/v1/SessionService/Sessions") || |
| 189 | (req.url == "/redfish/v1/SessionService/Sessions/") || |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 190 | (req.url == "/login") || (req.url == "/logout")) { |
| 191 | return true; |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | return false; |
| 196 | } |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 197 | }; |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 198 | |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 199 | // TODO(ed) see if there is a better way to allow middlewares to request |
| 200 | // routes. |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 201 | // Possibly an init function on first construction? |
| 202 | template <typename... Middlewares> |
| 203 | void request_routes(Crow<Middlewares...>& app) { |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 204 | static_assert( |
| 205 | black_magic::contains<PersistentData::Middleware, Middlewares...>::value, |
| 206 | "TokenAuthorization middleware must be enabled in app to use " |
| 207 | "auth routes"); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 208 | CROW_ROUTE(app, "/login") |
| 209 | .methods( |
| 210 | "POST"_method)([&](const crow::request& req, crow::response& res) { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 211 | boost::string_view content_type = req.get_header_value("content-type"); |
| 212 | boost::string_view username; |
| 213 | boost::string_view password; |
| 214 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 215 | bool looks_like_ibm = false; |
Ed Tanous | db024a5 | 2018-03-06 12:50:34 -0800 | [diff] [blame] | 216 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 217 | // This object needs to be declared at this scope so the strings |
| 218 | // within it are not destroyed before we can use them |
Ed Tanous | db024a5 | 2018-03-06 12:50:34 -0800 | [diff] [blame] | 219 | nlohmann::json login_credentials; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 220 | // Check if auth was provided by a payload |
| 221 | if (content_type == "application/json") { |
Ed Tanous | db024a5 | 2018-03-06 12:50:34 -0800 | [diff] [blame] | 222 | login_credentials = nlohmann::json::parse(req.body, nullptr, false); |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 223 | if (login_credentials.is_discarded()) { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 224 | res.result(boost::beast::http::status::bad_request); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 225 | res.end(); |
| 226 | return; |
| 227 | } |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 228 | |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 229 | // check for username/password in the root object |
| 230 | // THis method is how intel APIs authenticate |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 231 | nlohmann::json::iterator user_it = login_credentials.find("username"); |
| 232 | nlohmann::json::iterator pass_it = login_credentials.find("password"); |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 233 | if (user_it != login_credentials.end() && |
| 234 | pass_it != login_credentials.end()) { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 235 | const std::string* user_str = |
| 236 | user_it->get_ptr<const std::string*>(); |
| 237 | const std::string* pass_str = |
| 238 | pass_it->get_ptr<const std::string*>(); |
| 239 | if (user_str != nullptr && pass_str != nullptr) { |
| 240 | username = *user_str; |
| 241 | password = *pass_str; |
| 242 | } |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 243 | } else { |
| 244 | // Openbmc appears to push a data object that contains the same |
| 245 | // keys (username and password), attempt to use that |
| 246 | auto data_it = login_credentials.find("data"); |
| 247 | if (data_it != login_credentials.end()) { |
| 248 | // Some apis produce an array of value ["username", |
| 249 | // "password"] |
| 250 | if (data_it->is_array()) { |
| 251 | if (data_it->size() == 2) { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 252 | nlohmann::json::iterator user_it2 = data_it->begin(); |
| 253 | nlohmann::json::iterator pass_it2 = data_it->begin() + 1; |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 254 | looks_like_ibm = true; |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 255 | if (user_it2 != data_it->end() && |
| 256 | pass_it2 != data_it->end()) { |
| 257 | const std::string* user_str = |
| 258 | user_it2->get_ptr<const std::string*>(); |
| 259 | const std::string* pass_str = |
| 260 | pass_it2->get_ptr<const std::string*>(); |
| 261 | if (user_str != nullptr && pass_str != nullptr) { |
| 262 | username = *user_str; |
| 263 | password = *pass_str; |
| 264 | } |
| 265 | } |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 266 | } |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 267 | |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 268 | } else if (data_it->is_object()) { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 269 | nlohmann::json::iterator user_it2 = data_it->find("username"); |
| 270 | nlohmann::json::iterator pass_it2 = data_it->find("password"); |
| 271 | if (user_it2 != data_it->end() && pass_it2 != data_it->end()) { |
| 272 | const std::string* user_str = |
| 273 | user_it2->get_ptr<const std::string*>(); |
| 274 | const std::string* pass_str = |
| 275 | pass_it2->get_ptr<const std::string*>(); |
| 276 | if (user_str != nullptr && pass_str != nullptr) { |
| 277 | username = *user_str; |
| 278 | password = *pass_str; |
| 279 | } |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 280 | } |
| 281 | } |
| 282 | } |
| 283 | } |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 284 | } else { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 285 | // check if auth was provided as a headers |
| 286 | username = req.get_header_value("username"); |
| 287 | password = req.get_header_value("password"); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 290 | if (!username.empty() && !password.empty()) { |
| 291 | if (!pam_authenticate_user(username, password)) { |
| 292 | res.result(boost::beast::http::status::unauthorized); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 293 | } else { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 294 | auto session = |
| 295 | PersistentData::session_store->generate_user_session(username); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 296 | |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 297 | if (looks_like_ibm) { |
| 298 | // IBM requires a very specific login structure, and doesn't |
| 299 | // actually look at the status code. TODO(ed).... Fix that |
| 300 | // upstream |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 301 | res.json_value = { |
| 302 | {"data", "User '" + std::string(username) + "' logged in"}, |
| 303 | {"message", "200 OK"}, |
| 304 | {"status", "ok"}}; |
| 305 | res.add_header("Set-Cookie", "XSRF-TOKEN=" + session->csrf_token); |
| 306 | res.add_header("Set-Cookie", "SESSION=" + session->session_token + |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 307 | "; Secure; HttpOnly"); |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 308 | } else { |
| 309 | // if content type is json, assume json token |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 310 | res.json_value = {{"token", session->session_token}}; |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 311 | } |
| 312 | } |
| 313 | |
| 314 | } else { |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame^] | 315 | res.result(boost::beast::http::status::bad_request); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 316 | } |
| 317 | res.end(); |
| 318 | }); |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 319 | |
| 320 | CROW_ROUTE(app, "/logout") |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 321 | .methods("POST"_method)( |
| 322 | [&](const crow::request& req, crow::response& res) { |
| 323 | auto& session = |
| 324 | app.template get_context<TokenAuthorization::Middleware>(req) |
| 325 | .session; |
| 326 | if (session != nullptr) { |
| 327 | PersistentData::session_store->remove_session(session); |
| 328 | } |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 329 | res.end(); |
| 330 | return; |
Borawski.Lukasz | 9d8fd30 | 2018-01-05 14:56:09 +0100 | [diff] [blame] | 331 | |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 332 | }); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 333 | } |
Ed Tanous | db024a5 | 2018-03-06 12:50:34 -0800 | [diff] [blame] | 334 | } // namespace TokenAuthorization |
Ed Tanous | ba9f9a6 | 2017-10-11 16:40:35 -0700 | [diff] [blame] | 335 | } // namespace crow |