Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 1 | #pragma once |
Ed Tanous | 7531298 | 2021-02-11 14:26:02 -0800 | [diff] [blame] | 2 | #include "bmcweb_config.h" |
Adriana Kobylak | 0e1cf26 | 2019-12-05 13:57:57 -0600 | [diff] [blame] | 3 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 4 | #include "authorization.hpp" |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 5 | #include "http_response.hpp" |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 6 | #include "http_utility.hpp" |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 7 | #include "logging.hpp" |
| 8 | #include "timer_queue.hpp" |
| 9 | #include "utility.hpp" |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 10 | |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 11 | #include <boost/algorithm/string.hpp> |
Ed Tanous | 257f579 | 2018-03-17 14:40:09 -0700 | [diff] [blame] | 12 | #include <boost/algorithm/string/predicate.hpp> |
Ed Tanous | 8f62635 | 2018-12-19 14:51:54 -0800 | [diff] [blame] | 13 | #include <boost/asio/io_context.hpp> |
Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 14 | #include <boost/asio/ip/tcp.hpp> |
Ed Tanous | d43cd0c | 2020-09-30 20:46:53 -0700 | [diff] [blame] | 15 | #include <boost/asio/ssl/stream.hpp> |
Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 16 | #include <boost/beast/core/flat_static_buffer.hpp> |
Manojkiran Eda | 4425044 | 2020-06-16 12:51:38 +0530 | [diff] [blame] | 17 | #include <boost/beast/ssl/ssl_stream.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 18 | #include <boost/beast/websocket.hpp> |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 19 | #include <boost/url/url_view.hpp> |
Ed Tanous | 57fce80 | 2019-05-21 13:00:34 -0700 | [diff] [blame] | 20 | #include <json_html_serializer.hpp> |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 21 | #include <security_headers.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 22 | #include <ssl_key_handler.hpp> |
| 23 | |
Manojkiran Eda | 4425044 | 2020-06-16 12:51:38 +0530 | [diff] [blame] | 24 | #include <atomic> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 25 | #include <chrono> |
| 26 | #include <vector> |
| 27 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 28 | namespace crow |
| 29 | { |
Ed Tanous | 257f579 | 2018-03-17 14:40:09 -0700 | [diff] [blame] | 30 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 31 | inline void prettyPrintJson(crow::Response& res) |
| 32 | { |
Ed Tanous | 57fce80 | 2019-05-21 13:00:34 -0700 | [diff] [blame] | 33 | json_html_util::dumpHtml(res.body(), res.jsonValue); |
| 34 | |
Ed Tanous | 93ef580 | 2019-01-03 10:15:41 -0800 | [diff] [blame] | 35 | res.addHeader("Content-Type", "text/html;charset=UTF-8"); |
Ed Tanous | 257f579 | 2018-03-17 14:40:09 -0700 | [diff] [blame] | 36 | } |
| 37 | |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 38 | #ifdef BMCWEB_ENABLE_DEBUG |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 39 | static std::atomic<int> connectionCount; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 40 | #endif |
Jennifer Lee | acb7cfb | 2018-06-07 16:08:15 -0700 | [diff] [blame] | 41 | |
Ed Tanous | 0260d9d | 2021-02-07 19:31:07 +0000 | [diff] [blame] | 42 | // request body limit size set by the bmcwebHttpReqBodyLimitMb option |
Adriana Kobylak | 0e1cf26 | 2019-12-05 13:57:57 -0600 | [diff] [blame] | 43 | constexpr unsigned int httpReqBodyLimit = |
Ed Tanous | 0260d9d | 2021-02-07 19:31:07 +0000 | [diff] [blame] | 44 | 1024 * 1024 * bmcwebHttpReqBodyLimitMb; |
Jennifer Lee | acb7cfb | 2018-06-07 16:08:15 -0700 | [diff] [blame] | 45 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 46 | constexpr uint64_t loggedOutPostBodyLimit = 4096; |
| 47 | |
| 48 | constexpr uint32_t httpHeaderLimit = 8192; |
| 49 | |
| 50 | // drop all connections after 1 minute, this time limit was chosen |
| 51 | // arbitrarily and can be adjusted later if needed |
| 52 | static constexpr const size_t loggedInAttempts = |
| 53 | (60 / timerQueueTimeoutSeconds); |
| 54 | |
| 55 | static constexpr const size_t loggedOutAttempts = |
| 56 | (15 / timerQueueTimeoutSeconds); |
| 57 | |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 58 | template <typename Adaptor, typename Handler> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 59 | class Connection : |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 60 | public std::enable_shared_from_this<Connection<Adaptor, Handler>> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 61 | { |
| 62 | public: |
Ed Tanous | e7d1a1c | 2020-09-28 09:36:35 -0700 | [diff] [blame] | 63 | Connection(Handler* handlerIn, |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 64 | std::function<std::string()>& getCachedDateStrF, |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 65 | detail::TimerQueue& timerQueueIn, Adaptor adaptorIn) : |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 66 | adaptor(std::move(adaptorIn)), |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 67 | handler(handlerIn), getCachedDateStr(getCachedDateStrF), |
Ed Tanous | e7d1a1c | 2020-09-28 09:36:35 -0700 | [diff] [blame] | 68 | timerQueue(timerQueueIn) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 69 | { |
| 70 | parser.emplace(std::piecewise_construct, std::make_tuple()); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 71 | parser->body_limit(httpReqBodyLimit); |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 72 | parser->header_limit(httpHeaderLimit); |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 73 | |
| 74 | #ifdef BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION |
Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 75 | prepareMutualTls(); |
| 76 | #endif // BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION |
| 77 | |
| 78 | #ifdef BMCWEB_ENABLE_DEBUG |
| 79 | connectionCount++; |
| 80 | BMCWEB_LOG_DEBUG << this << " Connection open, total " |
| 81 | << connectionCount; |
| 82 | #endif |
| 83 | } |
| 84 | |
| 85 | ~Connection() |
| 86 | { |
John Edward Broadbent | 4147b8a | 2021-07-19 16:52:24 -0700 | [diff] [blame] | 87 | res.setCompleteRequestHandler(nullptr); |
Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 88 | cancelDeadlineTimer(); |
| 89 | #ifdef BMCWEB_ENABLE_DEBUG |
| 90 | connectionCount--; |
| 91 | BMCWEB_LOG_DEBUG << this << " Connection closed, total " |
| 92 | << connectionCount; |
| 93 | #endif |
| 94 | } |
| 95 | |
| 96 | void prepareMutualTls() |
| 97 | { |
Jonathan Doman | 83deb7d | 2020-11-16 17:00:22 -0800 | [diff] [blame] | 98 | std::error_code error; |
| 99 | std::filesystem::path caPath(ensuressl::trustStorePath); |
| 100 | auto caAvailable = !std::filesystem::is_empty(caPath, error); |
| 101 | caAvailable = caAvailable && !error; |
Ed Tanous | 2c70f80 | 2020-09-28 14:29:23 -0700 | [diff] [blame] | 102 | if (caAvailable && persistent_data::SessionStore::getInstance() |
| 103 | .getAuthMethodsConfig() |
| 104 | .tls) |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 105 | { |
| 106 | adaptor.set_verify_mode(boost::asio::ssl::verify_peer); |
Ed Tanous | e7d1a1c | 2020-09-28 09:36:35 -0700 | [diff] [blame] | 107 | std::string id = "bmcweb"; |
| 108 | int ret = SSL_set_session_id_context( |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 109 | adaptor.native_handle(), |
Ed Tanous | e7d1a1c | 2020-09-28 09:36:35 -0700 | [diff] [blame] | 110 | reinterpret_cast<const unsigned char*>(id.c_str()), |
| 111 | static_cast<unsigned int>(id.length())); |
| 112 | if (ret == 0) |
| 113 | { |
| 114 | BMCWEB_LOG_ERROR << this << " failed to set SSL id"; |
| 115 | } |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 116 | } |
| 117 | |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 118 | adaptor.set_verify_callback([this]( |
| 119 | bool preverified, |
| 120 | boost::asio::ssl::verify_context& ctx) { |
| 121 | // do nothing if TLS is disabled |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 122 | if (!persistent_data::SessionStore::getInstance() |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 123 | .getAuthMethodsConfig() |
| 124 | .tls) |
| 125 | { |
| 126 | BMCWEB_LOG_DEBUG << this << " TLS auth_config is disabled"; |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 127 | return true; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | // We always return true to allow full auth flow |
| 131 | if (!preverified) |
| 132 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 133 | BMCWEB_LOG_DEBUG << this << " TLS preverification failed."; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 134 | return true; |
| 135 | } |
| 136 | |
| 137 | X509_STORE_CTX* cts = ctx.native_handle(); |
| 138 | if (cts == nullptr) |
| 139 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 140 | BMCWEB_LOG_DEBUG << this << " Cannot get native TLS handle."; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 141 | return true; |
| 142 | } |
| 143 | |
| 144 | // Get certificate |
| 145 | X509* peerCert = |
| 146 | X509_STORE_CTX_get_current_cert(ctx.native_handle()); |
| 147 | if (peerCert == nullptr) |
| 148 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 149 | BMCWEB_LOG_DEBUG << this |
| 150 | << " Cannot get current TLS certificate."; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 151 | return true; |
| 152 | } |
| 153 | |
| 154 | // Check if certificate is OK |
| 155 | int error = X509_STORE_CTX_get_error(cts); |
| 156 | if (error != X509_V_OK) |
| 157 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 158 | BMCWEB_LOG_INFO << this << " Last TLS error is: " << error; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 159 | return true; |
| 160 | } |
| 161 | // Check that we have reached final certificate in chain |
| 162 | int32_t depth = X509_STORE_CTX_get_error_depth(cts); |
| 163 | if (depth != 0) |
| 164 | |
| 165 | { |
| 166 | BMCWEB_LOG_DEBUG |
| 167 | << this << " Certificate verification in progress (depth " |
| 168 | << depth << "), waiting to reach final depth"; |
| 169 | return true; |
| 170 | } |
| 171 | |
| 172 | BMCWEB_LOG_DEBUG << this |
| 173 | << " Certificate verification of final depth"; |
| 174 | |
| 175 | // Verify KeyUsage |
| 176 | bool isKeyUsageDigitalSignature = false; |
| 177 | bool isKeyUsageKeyAgreement = false; |
| 178 | |
| 179 | ASN1_BIT_STRING* usage = static_cast<ASN1_BIT_STRING*>( |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 180 | X509_get_ext_d2i(peerCert, NID_key_usage, nullptr, nullptr)); |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 181 | |
| 182 | if (usage == nullptr) |
| 183 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 184 | BMCWEB_LOG_DEBUG << this << " TLS usage is null"; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 185 | return true; |
| 186 | } |
| 187 | |
| 188 | for (int i = 0; i < usage->length; i++) |
| 189 | { |
| 190 | if (KU_DIGITAL_SIGNATURE & usage->data[i]) |
| 191 | { |
| 192 | isKeyUsageDigitalSignature = true; |
| 193 | } |
| 194 | if (KU_KEY_AGREEMENT & usage->data[i]) |
| 195 | { |
| 196 | isKeyUsageKeyAgreement = true; |
| 197 | } |
| 198 | } |
Vernon Mauery | b937830 | 2021-06-16 14:06:57 -0700 | [diff] [blame] | 199 | ASN1_BIT_STRING_free(usage); |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 200 | |
| 201 | if (!isKeyUsageDigitalSignature || !isKeyUsageKeyAgreement) |
| 202 | { |
| 203 | BMCWEB_LOG_DEBUG << this |
| 204 | << " Certificate ExtendedKeyUsage does " |
| 205 | "not allow provided certificate to " |
| 206 | "be used for user authentication"; |
| 207 | return true; |
| 208 | } |
| 209 | |
| 210 | // Determine that ExtendedKeyUsage includes Client Auth |
| 211 | |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 212 | stack_st_ASN1_OBJECT* extUsage = |
| 213 | static_cast<stack_st_ASN1_OBJECT*>(X509_get_ext_d2i( |
| 214 | peerCert, NID_ext_key_usage, nullptr, nullptr)); |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 215 | |
| 216 | if (extUsage == nullptr) |
| 217 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 218 | BMCWEB_LOG_DEBUG << this << " TLS extUsage is null"; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 219 | return true; |
| 220 | } |
| 221 | |
| 222 | bool isExKeyUsageClientAuth = false; |
| 223 | for (int i = 0; i < sk_ASN1_OBJECT_num(extUsage); i++) |
| 224 | { |
| 225 | if (NID_client_auth == |
| 226 | OBJ_obj2nid(sk_ASN1_OBJECT_value(extUsage, i))) |
| 227 | { |
| 228 | isExKeyUsageClientAuth = true; |
| 229 | break; |
| 230 | } |
| 231 | } |
Zbigniew Kurzynski | 09d02f8 | 2020-03-30 13:41:42 +0200 | [diff] [blame] | 232 | sk_ASN1_OBJECT_free(extUsage); |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 233 | |
| 234 | // Certificate has to have proper key usages set |
| 235 | if (!isExKeyUsageClientAuth) |
| 236 | { |
| 237 | BMCWEB_LOG_DEBUG << this |
| 238 | << " Certificate ExtendedKeyUsage does " |
| 239 | "not allow provided certificate to " |
| 240 | "be used for user authentication"; |
| 241 | return true; |
| 242 | } |
| 243 | std::string sslUser; |
| 244 | // Extract username contained in CommonName |
| 245 | sslUser.resize(256, '\0'); |
| 246 | |
| 247 | int status = X509_NAME_get_text_by_NID( |
| 248 | X509_get_subject_name(peerCert), NID_commonName, sslUser.data(), |
| 249 | static_cast<int>(sslUser.size())); |
| 250 | |
| 251 | if (status == -1) |
| 252 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 253 | BMCWEB_LOG_DEBUG |
| 254 | << this << " TLS cannot get username to create session"; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 255 | return true; |
| 256 | } |
| 257 | |
| 258 | size_t lastChar = sslUser.find('\0'); |
| 259 | if (lastChar == std::string::npos || lastChar == 0) |
| 260 | { |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 261 | BMCWEB_LOG_DEBUG << this << " Invalid TLS user name"; |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 262 | return true; |
| 263 | } |
| 264 | sslUser.resize(lastChar); |
Sunitha Harish | d323922 | 2021-02-24 15:33:29 +0530 | [diff] [blame] | 265 | std::string unsupportedClientId = ""; |
Ed Tanous | 9a69d5a | 2021-09-13 10:23:51 -0700 | [diff] [blame] | 266 | sessionIsFromTransport = true; |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 267 | userSession = persistent_data::SessionStore::getInstance() |
| 268 | .generateUserSession( |
| 269 | sslUser, req->ipAddress.to_string(), |
| 270 | unsupportedClientId, |
| 271 | persistent_data::PersistenceType::TIMEOUT); |
| 272 | if (userSession != nullptr) |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 273 | { |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 274 | BMCWEB_LOG_DEBUG |
| 275 | << this |
| 276 | << " Generating TLS session: " << userSession->uniqueId; |
Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 277 | } |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 278 | return true; |
| 279 | }); |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 282 | Adaptor& socket() |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 283 | { |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 284 | return adaptor; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 287 | void start() |
| 288 | { |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 289 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 290 | startDeadline(0); |
Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 291 | |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 292 | // TODO(ed) Abstract this to a more clever class with the idea of an |
| 293 | // asynchronous "start" |
| 294 | if constexpr (std::is_same_v<Adaptor, |
| 295 | boost::beast::ssl_stream< |
| 296 | boost::asio::ip::tcp::socket>>) |
| 297 | { |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 298 | adaptor.async_handshake(boost::asio::ssl::stream_base::server, |
| 299 | [this, self(shared_from_this())]( |
| 300 | const boost::system::error_code& ec) { |
| 301 | if (ec) |
| 302 | { |
| 303 | return; |
| 304 | } |
| 305 | doReadHeaders(); |
| 306 | }); |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 307 | } |
| 308 | else |
| 309 | { |
| 310 | doReadHeaders(); |
| 311 | } |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 312 | } |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 313 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 314 | void handle() |
| 315 | { |
| 316 | cancelDeadlineTimer(); |
Ed Tanous | f79b7a5 | 2021-09-22 19:04:29 -0700 | [diff] [blame] | 317 | std::error_code reqEc; |
| 318 | crow::Request& thisReq = req.emplace(parser->release(), reqEc); |
| 319 | if (reqEc) |
| 320 | { |
| 321 | BMCWEB_LOG_DEBUG << "Request failed to construct" << reqEc; |
| 322 | return; |
| 323 | } |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 324 | thisReq.session = userSession; |
| 325 | |
Ivan Mikhaylov | f65b0be | 2021-04-19 10:05:30 +0000 | [diff] [blame] | 326 | // Fetch the client IP address |
| 327 | readClientIp(); |
| 328 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 329 | // Check for HTTP version 1.1. |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 330 | if (thisReq.version() == 11) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 331 | { |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 332 | if (thisReq.getHeaderValue(boost::beast::http::field::host).empty()) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 333 | { |
Ed Tanous | de5c9f3 | 2019-03-26 09:17:55 -0700 | [diff] [blame] | 334 | res.result(boost::beast::http::status::bad_request); |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 335 | completeRequest(); |
| 336 | return; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 337 | } |
| 338 | } |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 339 | |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 340 | BMCWEB_LOG_INFO << "Request: " |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 341 | << " " << this << " HTTP/" << thisReq.version() / 10 |
| 342 | << "." << thisReq.version() % 10 << ' ' |
| 343 | << thisReq.methodString() << " " << thisReq.target() |
| 344 | << " " << thisReq.ipAddress; |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 345 | |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 346 | res.setCompleteRequestHandler(nullptr); |
| 347 | res.isAliveHelper = [this]() -> bool { return isAlive(); }; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 348 | |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 349 | thisReq.ioService = static_cast<decltype(thisReq.ioService)>( |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 350 | &adaptor.get_executor().context()); |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 351 | |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 352 | if (res.completed) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 353 | { |
| 354 | completeRequest(); |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 355 | return; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 356 | } |
Ed Tanous | 1d3c14a | 2021-09-22 18:54:40 -0700 | [diff] [blame] | 357 | |
Ed Tanous | efee36b | 2021-09-22 19:09:11 -0700 | [diff] [blame] | 358 | if (!crow::authorization::isOnAllowlist(req->url, req->method()) && |
Ed Tanous | 1d3c14a | 2021-09-22 18:54:40 -0700 | [diff] [blame] | 359 | thisReq.session == nullptr) |
| 360 | { |
| 361 | BMCWEB_LOG_WARNING << "[AuthMiddleware] authorization failed"; |
| 362 | forward_unauthorized::sendUnauthorized( |
| 363 | req->url, req->getHeaderValue("User-Agent"), |
| 364 | req->getHeaderValue("Accept"), res); |
| 365 | completeRequest(); |
| 366 | return; |
| 367 | } |
| 368 | |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 369 | res.setCompleteRequestHandler([self(shared_from_this())] { |
| 370 | boost::asio::post(self->adaptor.get_executor(), |
| 371 | [self] { self->completeRequest(); }); |
| 372 | }); |
| 373 | |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 374 | if (thisReq.isUpgrade() && |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 375 | boost::iequals( |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 376 | thisReq.getHeaderValue(boost::beast::http::field::upgrade), |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 377 | "websocket")) |
| 378 | { |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 379 | handler->handleUpgrade(thisReq, res, std::move(adaptor)); |
Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 380 | // delete lambda with self shared_ptr |
| 381 | // to enable connection destruction |
| 382 | res.setCompleteRequestHandler(nullptr); |
| 383 | return; |
| 384 | } |
| 385 | auto asyncResp = std::make_shared<bmcweb::AsyncResp>(res); |
Ed Tanous | 596b203 | 2021-09-13 10:32:22 -0700 | [diff] [blame] | 386 | handler->handle(thisReq, asyncResp); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 387 | } |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 388 | |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 389 | bool isAlive() |
| 390 | { |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 391 | if constexpr (std::is_same_v<Adaptor, |
| 392 | boost::beast::ssl_stream< |
| 393 | boost::asio::ip::tcp::socket>>) |
| 394 | { |
| 395 | return adaptor.next_layer().is_open(); |
| 396 | } |
| 397 | else |
| 398 | { |
| 399 | return adaptor.is_open(); |
| 400 | } |
| 401 | } |
| 402 | void close() |
| 403 | { |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 404 | if constexpr (std::is_same_v<Adaptor, |
| 405 | boost::beast::ssl_stream< |
| 406 | boost::asio::ip::tcp::socket>>) |
| 407 | { |
| 408 | adaptor.next_layer().close(); |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 409 | #ifdef BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 410 | if (userSession != nullptr) |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 411 | { |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 412 | BMCWEB_LOG_DEBUG |
| 413 | << this |
| 414 | << " Removing TLS session: " << userSession->uniqueId; |
| 415 | persistent_data::SessionStore::getInstance().removeSession( |
| 416 | userSession); |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 417 | } |
| 418 | #endif // BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 419 | } |
| 420 | else |
| 421 | { |
| 422 | adaptor.close(); |
| 423 | } |
| 424 | } |
| 425 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 426 | void completeRequest() |
| 427 | { |
Ed Tanous | f79b7a5 | 2021-09-22 19:04:29 -0700 | [diff] [blame] | 428 | if (!req) |
| 429 | { |
| 430 | return; |
| 431 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 432 | BMCWEB_LOG_INFO << "Response: " << this << ' ' << req->url << ' ' |
| 433 | << res.resultInt() << " keepalive=" << req->keepAlive(); |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 434 | |
Ed Tanous | 0260d9d | 2021-02-07 19:31:07 +0000 | [diff] [blame] | 435 | addSecurityHeaders(*req, res); |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 436 | |
Ed Tanous | cf099fa | 2021-08-25 12:37:31 -0700 | [diff] [blame] | 437 | crow::authorization::cleanupTempSession(*req); |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 438 | |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 439 | if (!isAlive()) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 440 | { |
| 441 | // BMCWEB_LOG_DEBUG << this << " delete (socket is closed) " << |
| 442 | // isReading |
| 443 | // << ' ' << isWriting; |
| 444 | // delete this; |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 445 | |
| 446 | // delete lambda with self shared_ptr |
| 447 | // to enable connection destruction |
John Edward Broadbent | 4147b8a | 2021-07-19 16:52:24 -0700 | [diff] [blame] | 448 | res.setCompleteRequestHandler(nullptr); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 449 | return; |
| 450 | } |
| 451 | if (res.body().empty() && !res.jsonValue.empty()) |
| 452 | { |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 453 | if (http_helpers::requestPrefersHtml(req->getHeaderValue("Accept"))) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 454 | { |
| 455 | prettyPrintJson(res); |
| 456 | } |
| 457 | else |
| 458 | { |
| 459 | res.jsonMode(); |
Ed Tanous | 71f52d9 | 2021-02-19 08:51:17 -0800 | [diff] [blame] | 460 | res.body() = res.jsonValue.dump( |
| 461 | 2, ' ', true, nlohmann::json::error_handler_t::replace); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 462 | } |
| 463 | } |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 464 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 465 | if (res.resultInt() >= 400 && res.body().empty()) |
| 466 | { |
| 467 | res.body() = std::string(res.reason()); |
| 468 | } |
Ed Tanous | 6295bec | 2019-09-03 10:11:01 -0700 | [diff] [blame] | 469 | |
| 470 | if (res.result() == boost::beast::http::status::no_content) |
| 471 | { |
| 472 | // Boost beast throws if content is provided on a no-content |
| 473 | // response. Ideally, this would never happen, but in the case that |
| 474 | // it does, we don't want to throw. |
| 475 | BMCWEB_LOG_CRITICAL |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 476 | << this << " Response content provided but code was no-content"; |
Ed Tanous | 6295bec | 2019-09-03 10:11:01 -0700 | [diff] [blame] | 477 | res.body().clear(); |
| 478 | } |
| 479 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 480 | res.addHeader(boost::beast::http::field::date, getCachedDateStr()); |
| 481 | |
| 482 | res.keepAlive(req->keepAlive()); |
| 483 | |
| 484 | doWrite(); |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 485 | |
| 486 | // delete lambda with self shared_ptr |
| 487 | // to enable connection destruction |
John Edward Broadbent | 4147b8a | 2021-07-19 16:52:24 -0700 | [diff] [blame] | 488 | res.setCompleteRequestHandler(nullptr); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 491 | void readClientIp() |
| 492 | { |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 493 | boost::asio::ip::address ip; |
| 494 | boost::system::error_code ec = getClientIp(ip); |
| 495 | if (ec) |
| 496 | { |
| 497 | return; |
| 498 | } |
| 499 | req->ipAddress = ip; |
| 500 | } |
| 501 | |
| 502 | boost::system::error_code getClientIp(boost::asio::ip::address& ip) |
| 503 | { |
Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 504 | boost::system::error_code ec; |
| 505 | BMCWEB_LOG_DEBUG << "Fetch the client IP address"; |
| 506 | boost::asio::ip::tcp::endpoint endpoint = |
| 507 | boost::beast::get_lowest_layer(adaptor).remote_endpoint(ec); |
| 508 | |
| 509 | if (ec) |
| 510 | { |
| 511 | // If remote endpoint fails keep going. "ClientOriginIPAddress" |
| 512 | // will be empty. |
| 513 | BMCWEB_LOG_ERROR << "Failed to get the client's IP Address. ec : " |
| 514 | << ec; |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 515 | return ec; |
Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 516 | } |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 517 | ip = endpoint.address(); |
| 518 | return ec; |
Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 519 | } |
| 520 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 521 | private: |
| 522 | void doReadHeaders() |
| 523 | { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 524 | BMCWEB_LOG_DEBUG << this << " doReadHeaders"; |
| 525 | |
| 526 | // Clean up any previous Connection. |
| 527 | boost::beast::http::async_read_header( |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 528 | adaptor, buffer, *parser, |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 529 | [this, |
| 530 | self(shared_from_this())](const boost::system::error_code& ec, |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 531 | std::size_t bytesTransferred) { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 532 | BMCWEB_LOG_ERROR << this << " async_read_header " |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 533 | << bytesTransferred << " Bytes"; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 534 | bool errorWhileReading = false; |
| 535 | if (ec) |
| 536 | { |
| 537 | errorWhileReading = true; |
| 538 | BMCWEB_LOG_ERROR |
| 539 | << this << " Error while reading: " << ec.message(); |
| 540 | } |
| 541 | else |
| 542 | { |
| 543 | // if the adaptor isn't open anymore, and wasn't handed to a |
| 544 | // websocket, treat as an error |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 545 | if (!isAlive() && |
| 546 | !boost::beast::websocket::is_upgrade(parser->get())) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 547 | { |
| 548 | errorWhileReading = true; |
| 549 | } |
| 550 | } |
| 551 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 552 | cancelDeadlineTimer(); |
| 553 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 554 | if (errorWhileReading) |
| 555 | { |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 556 | close(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 557 | BMCWEB_LOG_DEBUG << this << " from read(1)"; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 558 | return; |
| 559 | } |
| 560 | |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 561 | boost::beast::http::verb method = parser->get().method(); |
| 562 | readClientIp(); |
Ed Tanous | 92ccb88 | 2020-08-18 10:36:33 -0700 | [diff] [blame] | 563 | |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 564 | boost::asio::ip::address ip; |
| 565 | if (getClientIp(ip)) |
| 566 | { |
| 567 | BMCWEB_LOG_DEBUG << "Unable to get client IP"; |
| 568 | } |
Ed Tanous | 9a69d5a | 2021-09-13 10:23:51 -0700 | [diff] [blame] | 569 | sessionIsFromTransport = false; |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 570 | userSession = crow::authorization::authenticate( |
Ed Tanous | 1d3c14a | 2021-09-22 18:54:40 -0700 | [diff] [blame] | 571 | ip, res, method, parser->get().base(), userSession); |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 572 | bool loggedIn = userSession != nullptr; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 573 | if (loggedIn) |
| 574 | { |
| 575 | startDeadline(loggedInAttempts); |
| 576 | BMCWEB_LOG_DEBUG << "Starting slow deadline"; |
| 577 | |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 578 | req->urlParams = req->urlView.query_params(); |
James Feist | 5a7e877 | 2020-07-22 09:08:38 -0700 | [diff] [blame] | 579 | |
| 580 | #ifdef BMCWEB_ENABLE_DEBUG |
| 581 | std::string paramList = ""; |
| 582 | for (const auto param : req->urlParams) |
| 583 | { |
| 584 | paramList += param->key() + " " + param->value() + " "; |
| 585 | } |
| 586 | BMCWEB_LOG_DEBUG << "QueryParams: " << paramList; |
| 587 | #endif |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 588 | } |
| 589 | else |
| 590 | { |
| 591 | const boost::optional<uint64_t> contentLength = |
| 592 | parser->content_length(); |
| 593 | if (contentLength && |
| 594 | *contentLength > loggedOutPostBodyLimit) |
| 595 | { |
| 596 | BMCWEB_LOG_DEBUG << "Content length greater than limit " |
| 597 | << *contentLength; |
| 598 | close(); |
| 599 | return; |
| 600 | } |
| 601 | |
| 602 | startDeadline(loggedOutAttempts); |
| 603 | BMCWEB_LOG_DEBUG << "Starting quick deadline"; |
| 604 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 605 | doRead(); |
| 606 | }); |
| 607 | } |
| 608 | |
| 609 | void doRead() |
| 610 | { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 611 | BMCWEB_LOG_DEBUG << this << " doRead"; |
| 612 | |
| 613 | boost::beast::http::async_read( |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 614 | adaptor, buffer, *parser, |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 615 | [this, |
| 616 | self(shared_from_this())](const boost::system::error_code& ec, |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 617 | std::size_t bytesTransferred) { |
| 618 | BMCWEB_LOG_DEBUG << this << " async_read " << bytesTransferred |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 619 | << " Bytes"; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 620 | |
| 621 | bool errorWhileReading = false; |
| 622 | if (ec) |
| 623 | { |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 624 | BMCWEB_LOG_ERROR |
| 625 | << this << " Error while reading: " << ec.message(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 626 | errorWhileReading = true; |
| 627 | } |
| 628 | else |
| 629 | { |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 630 | if (isAlive()) |
| 631 | { |
| 632 | cancelDeadlineTimer(); |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 633 | if (userSession != nullptr) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 634 | { |
| 635 | startDeadline(loggedInAttempts); |
| 636 | } |
| 637 | else |
| 638 | { |
| 639 | startDeadline(loggedOutAttempts); |
| 640 | } |
| 641 | } |
| 642 | else |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 643 | { |
| 644 | errorWhileReading = true; |
| 645 | } |
| 646 | } |
| 647 | if (errorWhileReading) |
| 648 | { |
| 649 | cancelDeadlineTimer(); |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 650 | close(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 651 | BMCWEB_LOG_DEBUG << this << " from read(1)"; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 652 | return; |
| 653 | } |
| 654 | handle(); |
| 655 | }); |
| 656 | } |
| 657 | |
| 658 | void doWrite() |
| 659 | { |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 660 | bool loggedIn = req && req->session; |
| 661 | if (loggedIn) |
| 662 | { |
| 663 | startDeadline(loggedInAttempts); |
| 664 | } |
| 665 | else |
| 666 | { |
| 667 | startDeadline(loggedOutAttempts); |
| 668 | } |
Zbigniew Kurzynski | 2658d98 | 2019-11-19 18:01:08 +0100 | [diff] [blame] | 669 | BMCWEB_LOG_DEBUG << this << " doWrite"; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 670 | res.preparePayload(); |
| 671 | serializer.emplace(*res.stringResponse); |
| 672 | boost::beast::http::async_write( |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 673 | adaptor, *serializer, |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 674 | [this, |
| 675 | self(shared_from_this())](const boost::system::error_code& ec, |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 676 | std::size_t bytesTransferred) { |
| 677 | BMCWEB_LOG_DEBUG << this << " async_write " << bytesTransferred |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 678 | << " bytes"; |
| 679 | |
James Feist | 54d8bb1 | 2020-07-20 13:28:59 -0700 | [diff] [blame] | 680 | cancelDeadlineTimer(); |
| 681 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 682 | if (ec) |
| 683 | { |
| 684 | BMCWEB_LOG_DEBUG << this << " from write(2)"; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 685 | return; |
| 686 | } |
Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 687 | if (!res.keepAlive()) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 688 | { |
Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 689 | close(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 690 | BMCWEB_LOG_DEBUG << this << " from write(1)"; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 691 | return; |
| 692 | } |
| 693 | |
| 694 | serializer.reset(); |
| 695 | BMCWEB_LOG_DEBUG << this << " Clearing response"; |
| 696 | res.clear(); |
| 697 | parser.emplace(std::piecewise_construct, std::make_tuple()); |
Gunnar Mills | ded2a1e | 2020-07-24 09:46:33 -0500 | [diff] [blame] | 698 | parser->body_limit(httpReqBodyLimit); // reset body limit for |
| 699 | // newly created parser |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 700 | buffer.consume(buffer.size()); |
| 701 | |
Ed Tanous | 9a69d5a | 2021-09-13 10:23:51 -0700 | [diff] [blame] | 702 | // If the session was built from the transport, we don't need to |
| 703 | // clear it. All other sessions are generated per request. |
| 704 | if (!sessionIsFromTransport) |
| 705 | { |
| 706 | userSession = nullptr; |
| 707 | } |
| 708 | |
Ed Tanous | 1d3c14a | 2021-09-22 18:54:40 -0700 | [diff] [blame] | 709 | // Destroy the Request via the std::optional |
| 710 | req.reset(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 711 | doReadHeaders(); |
| 712 | }); |
| 713 | } |
| 714 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 715 | void cancelDeadlineTimer() |
| 716 | { |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 717 | if (timerCancelKey) |
| 718 | { |
| 719 | BMCWEB_LOG_DEBUG << this << " timer cancelled: " << &timerQueue |
| 720 | << ' ' << *timerCancelKey; |
| 721 | timerQueue.cancel(*timerCancelKey); |
| 722 | timerCancelKey.reset(); |
| 723 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 724 | } |
| 725 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 726 | void startDeadline(size_t timerIterations) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 727 | { |
| 728 | cancelDeadlineTimer(); |
| 729 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 730 | if (timerIterations) |
| 731 | { |
| 732 | timerIterations--; |
| 733 | } |
Jan Sowinski | 2b5e08e | 2020-01-09 17:16:02 +0100 | [diff] [blame] | 734 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 735 | timerCancelKey = |
James Feist | be5dfca | 2020-07-22 08:54:59 -0700 | [diff] [blame] | 736 | timerQueue.add([self(shared_from_this()), timerIterations, |
| 737 | readCount{parser->get().body().size()}] { |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 738 | // Mark timer as not active to avoid canceling it during |
| 739 | // Connection destructor which leads to double free issue |
| 740 | self->timerCancelKey.reset(); |
| 741 | if (!self->isAlive()) |
| 742 | { |
| 743 | return; |
| 744 | } |
Jan Sowinski | 2b5e08e | 2020-01-09 17:16:02 +0100 | [diff] [blame] | 745 | |
James Feist | be5dfca | 2020-07-22 08:54:59 -0700 | [diff] [blame] | 746 | bool loggedIn = self->req && self->req->session; |
| 747 | // allow slow uploads for logged in users |
| 748 | if (loggedIn && self->parser->get().body().size() > readCount) |
| 749 | { |
| 750 | BMCWEB_LOG_DEBUG << self.get() |
| 751 | << " restart timer - read in progress"; |
| 752 | self->startDeadline(timerIterations); |
| 753 | return; |
| 754 | } |
| 755 | |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 756 | // Threshold can be used to drop slow connections |
| 757 | // to protect against slow-rate DoS attack |
| 758 | if (timerIterations) |
| 759 | { |
James Feist | be5dfca | 2020-07-22 08:54:59 -0700 | [diff] [blame] | 760 | BMCWEB_LOG_DEBUG << self.get() << " restart timer"; |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 761 | self->startDeadline(timerIterations); |
| 762 | return; |
| 763 | } |
| 764 | |
| 765 | self->close(); |
| 766 | }); |
James Feist | cb6cb49 | 2020-04-03 13:36:17 -0700 | [diff] [blame] | 767 | |
| 768 | if (!timerCancelKey) |
| 769 | { |
| 770 | close(); |
| 771 | return; |
| 772 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 773 | BMCWEB_LOG_DEBUG << this << " timer added: " << &timerQueue << ' ' |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 774 | << *timerCancelKey; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 775 | } |
| 776 | |
| 777 | private: |
| 778 | Adaptor adaptor; |
| 779 | Handler* handler; |
Ed Tanous | a24526d | 2018-12-10 15:17:59 -0800 | [diff] [blame] | 780 | // Making this a std::optional allows it to be efficiently destroyed and |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 781 | // re-created on Connection reset |
Ed Tanous | a24526d | 2018-12-10 15:17:59 -0800 | [diff] [blame] | 782 | std::optional< |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 783 | boost::beast::http::request_parser<boost::beast::http::string_body>> |
| 784 | parser; |
| 785 | |
Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 786 | boost::beast::flat_static_buffer<8192> buffer; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 787 | |
Ed Tanous | a24526d | 2018-12-10 15:17:59 -0800 | [diff] [blame] | 788 | std::optional<boost::beast::http::response_serializer< |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 789 | boost::beast::http::string_body>> |
| 790 | serializer; |
| 791 | |
Ed Tanous | a24526d | 2018-12-10 15:17:59 -0800 | [diff] [blame] | 792 | std::optional<crow::Request> req; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 793 | crow::Response res; |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 794 | |
Ed Tanous | 9a69d5a | 2021-09-13 10:23:51 -0700 | [diff] [blame] | 795 | bool sessionIsFromTransport = false; |
John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 796 | std::shared_ptr<persistent_data::UserSession> userSession; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 797 | |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 798 | std::optional<size_t> timerCancelKey; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 799 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 800 | std::function<std::string()>& getCachedDateStr; |
| 801 | detail::TimerQueue& timerQueue; |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 802 | |
| 803 | using std::enable_shared_from_this< |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 804 | Connection<Adaptor, Handler>>::shared_from_this; |
Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 805 | }; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 806 | } // namespace crow |