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