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