| 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 |  | 
| Ed Tanous | d093c99 | 2023-01-19 19:01:49 -0800 | [diff] [blame] | 4 | #include "async_resp.hpp" | 
| Nan Zhou | d055a34 | 2022-05-25 01:15:34 +0000 | [diff] [blame] | 5 | #include "authentication.hpp" | 
| Ed Tanous | ed5f895 | 2023-06-22 14:06:22 -0700 | [diff] [blame] | 6 | #include "complete_response_fields.hpp" | 
| Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 7 | #include "http2_connection.hpp" | 
| Ed Tanous | b289614 | 2024-01-31 15:25:47 -0800 | [diff] [blame] | 8 | #include "http_body.hpp" | 
| Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 9 | #include "http_response.hpp" | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 10 | #include "http_utility.hpp" | 
| Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 11 | #include "logging.hpp" | 
| Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 12 | #include "mutual_tls.hpp" | 
| Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 13 | #include "ssl_key_handler.hpp" | 
| Ed Tanous | 18f8f60 | 2023-07-18 10:07:23 -0700 | [diff] [blame] | 14 | #include "str_utility.hpp" | 
| Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 15 | #include "utility.hpp" | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 16 |  | 
| Ed Tanous | 8f62635 | 2018-12-19 14:51:54 -0800 | [diff] [blame] | 17 | #include <boost/asio/io_context.hpp> | 
| Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 18 | #include <boost/asio/ip/tcp.hpp> | 
| Ed Tanous | d43cd0c | 2020-09-30 20:46:53 -0700 | [diff] [blame] | 19 | #include <boost/asio/ssl/stream.hpp> | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 20 | #include <boost/asio/steady_timer.hpp> | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 21 | #include <boost/beast/_experimental/test/stream.hpp> | 
| Ed Tanous | 4d69861 | 2024-02-06 14:57:24 -0800 | [diff] [blame] | 22 | #include <boost/beast/core/buffers_generator.hpp> | 
| Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 23 | #include <boost/beast/core/flat_static_buffer.hpp> | 
| Myung Bae | a4326fe | 2023-01-10 14:29:24 -0600 | [diff] [blame] | 24 | #include <boost/beast/http/error.hpp> | 
| Ed Tanous | 4d69861 | 2024-02-06 14:57:24 -0800 | [diff] [blame] | 25 | #include <boost/beast/http/message_generator.hpp> | 
| Ed Tanous | 918ef25 | 2022-05-25 10:40:41 -0700 | [diff] [blame] | 26 | #include <boost/beast/http/parser.hpp> | 
|  | 27 | #include <boost/beast/http/read.hpp> | 
| Ed Tanous | 918ef25 | 2022-05-25 10:40:41 -0700 | [diff] [blame] | 28 | #include <boost/beast/http/write.hpp> | 
| Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 29 | #include <boost/beast/websocket.hpp> | 
| Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 30 |  | 
| Manojkiran Eda | 4425044 | 2020-06-16 12:51:38 +0530 | [diff] [blame] | 31 | #include <atomic> | 
| Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 32 | #include <chrono> | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 33 | #include <memory> | 
| Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 34 | #include <vector> | 
|  | 35 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 36 | namespace crow | 
|  | 37 | { | 
| Ed Tanous | 257f579 | 2018-03-17 14:40:09 -0700 | [diff] [blame] | 38 |  | 
| Ed Tanous | cf9e417 | 2022-12-21 09:30:16 -0800 | [diff] [blame] | 39 | // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) | 
| Ed Tanous | 6fbdbca | 2021-12-06 14:36:06 -0800 | [diff] [blame] | 40 | static int connectionCount = 0; | 
| Jennifer Lee | acb7cfb | 2018-06-07 16:08:15 -0700 | [diff] [blame] | 41 |  | 
| Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 42 | // request body limit size set by the BMCWEB_HTTP_BODY_LIMIT option | 
|  | 43 | constexpr uint64_t httpReqBodyLimit = 1024UL * 1024UL * BMCWEB_HTTP_BODY_LIMIT; | 
| Jennifer Lee | acb7cfb | 2018-06-07 16:08:15 -0700 | [diff] [blame] | 44 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 45 | constexpr uint64_t loggedOutPostBodyLimit = 4096U; | 
| James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 46 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 47 | constexpr uint32_t httpHeaderLimit = 8192U; | 
| James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 48 |  | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 49 | template <typename> | 
|  | 50 | struct IsTls : std::false_type | 
|  | 51 | {}; | 
|  | 52 |  | 
|  | 53 | template <typename T> | 
| Ed Tanous | 003301a | 2024-04-16 09:59:19 -0700 | [diff] [blame] | 54 | struct IsTls<boost::asio::ssl::stream<T>> : std::true_type | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 55 | {}; | 
|  | 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 | { | 
| Ed Tanous | 7c8e064 | 2022-02-21 12:11:14 -0800 | [diff] [blame] | 61 | using self_type = Connection<Adaptor, Handler>; | 
|  | 62 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 63 | public: | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 64 | Connection(Handler* handlerIn, boost::asio::steady_timer&& timerIn, | 
| Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 65 | std::function<std::string()>& getCachedDateStrF, | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 66 | Adaptor adaptorIn) : | 
| Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 67 | adaptor(std::move(adaptorIn)), | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 68 | handler(handlerIn), timer(std::move(timerIn)), | 
|  | 69 | getCachedDateStr(getCachedDateStrF) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 70 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 71 | initParser(); | 
| Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 72 |  | 
| Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 73 | if constexpr (BMCWEB_MUTUAL_TLS_AUTH) | 
|  | 74 | { | 
|  | 75 | prepareMutualTls(); | 
|  | 76 | } | 
| Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 77 |  | 
| Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 78 | connectionCount++; | 
| Ed Tanous | 6fbdbca | 2021-12-06 14:36:06 -0800 | [diff] [blame] | 79 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 80 | BMCWEB_LOG_DEBUG("{} Connection created, total {}", logPtr(this), | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 81 | connectionCount); | 
| Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 82 | } | 
|  | 83 |  | 
|  | 84 | ~Connection() | 
|  | 85 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 86 | res.releaseCompleteRequestHandler(); | 
| Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 87 | cancelDeadlineTimer(); | 
| Ed Tanous | 6fbdbca | 2021-12-06 14:36:06 -0800 | [diff] [blame] | 88 |  | 
| Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 89 | connectionCount--; | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 90 | BMCWEB_LOG_DEBUG("{} Connection closed, total {}", logPtr(this), | 
|  | 91 | connectionCount); | 
| Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 92 | } | 
|  | 93 |  | 
| Ed Tanous | ecd6a3a | 2022-01-07 09:18:40 -0800 | [diff] [blame] | 94 | Connection(const Connection&) = delete; | 
|  | 95 | Connection(Connection&&) = delete; | 
|  | 96 | Connection& operator=(const Connection&) = delete; | 
|  | 97 | Connection& operator=(Connection&&) = delete; | 
|  | 98 |  | 
| Ed Tanous | 7c8e064 | 2022-02-21 12:11:14 -0800 | [diff] [blame] | 99 | bool tlsVerifyCallback(bool preverified, | 
|  | 100 | boost::asio::ssl::verify_context& ctx) | 
|  | 101 | { | 
|  | 102 | // We always return true to allow full auth flow for resources that | 
|  | 103 | // don't require auth | 
|  | 104 | if (preverified) | 
|  | 105 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 106 | mtlsSession = verifyMtlsUser(ip, ctx); | 
| Boleslaw Ogonczyk Makowski | b496307 | 2023-02-06 09:59:58 +0100 | [diff] [blame] | 107 | if (mtlsSession) | 
| Ed Tanous | 7c8e064 | 2022-02-21 12:11:14 -0800 | [diff] [blame] | 108 | { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 109 | BMCWEB_LOG_DEBUG("{} Generating TLS session: {}", logPtr(this), | 
|  | 110 | mtlsSession->uniqueId); | 
| Ed Tanous | 7c8e064 | 2022-02-21 12:11:14 -0800 | [diff] [blame] | 111 | } | 
|  | 112 | } | 
|  | 113 | return true; | 
|  | 114 | } | 
|  | 115 |  | 
| Ed Tanous | 40aa058 | 2021-07-14 13:24:40 -0700 | [diff] [blame] | 116 | void prepareMutualTls() | 
|  | 117 | { | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 118 | if constexpr (IsTls<Adaptor>::value) | 
| Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 119 | { | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 120 | std::error_code error; | 
|  | 121 | std::filesystem::path caPath(ensuressl::trustStorePath); | 
|  | 122 | auto caAvailable = !std::filesystem::is_empty(caPath, error); | 
|  | 123 | caAvailable = caAvailable && !error; | 
|  | 124 | if (caAvailable && persistent_data::SessionStore::getInstance() | 
|  | 125 | .getAuthMethodsConfig() | 
|  | 126 | .tls) | 
| Ed Tanous | e7d1a1c | 2020-09-28 09:36:35 -0700 | [diff] [blame] | 127 | { | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 128 | adaptor.set_verify_mode(boost::asio::ssl::verify_peer); | 
|  | 129 | std::string id = "bmcweb"; | 
| Zbigniew Kurzynski | 009c2a4 | 2019-11-14 13:37:15 +0100 | [diff] [blame] | 130 |  | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 131 | const char* cStr = id.c_str(); | 
|  | 132 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast) | 
|  | 133 | const auto* idC = reinterpret_cast<const unsigned char*>(cStr); | 
|  | 134 | int ret = SSL_set_session_id_context( | 
|  | 135 | adaptor.native_handle(), idC, | 
|  | 136 | static_cast<unsigned int>(id.length())); | 
|  | 137 | if (ret == 0) | 
|  | 138 | { | 
|  | 139 | BMCWEB_LOG_ERROR("{} failed to set SSL id", logPtr(this)); | 
|  | 140 | } | 
|  | 141 | } | 
|  | 142 |  | 
|  | 143 | adaptor.set_verify_callback( | 
|  | 144 | std::bind_front(&self_type::tlsVerifyCallback, this)); | 
|  | 145 | } | 
| Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 146 | } | 
|  | 147 |  | 
| Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 148 | Adaptor& socket() | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 149 | { | 
| Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 150 | return adaptor; | 
| Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 151 | } | 
|  | 152 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 153 | void start() | 
|  | 154 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 155 | BMCWEB_LOG_DEBUG("{} Connection started, total {}", logPtr(this), | 
|  | 156 | connectionCount); | 
| Gunnar Mills | 4f63be0 | 2023-10-25 09:14:07 -0500 | [diff] [blame] | 157 | if (connectionCount >= 200) | 
| Ed Tanous | 6fbdbca | 2021-12-06 14:36:06 -0800 | [diff] [blame] | 158 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 159 | BMCWEB_LOG_CRITICAL("{} Max connection count exceeded.", | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 160 | logPtr(this)); | 
| Ed Tanous | 6fbdbca | 2021-12-06 14:36:06 -0800 | [diff] [blame] | 161 | return; | 
|  | 162 | } | 
|  | 163 |  | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 164 | startDeadline(); | 
| Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 165 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 166 | readClientIp(); | 
|  | 167 |  | 
| Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 168 | // TODO(ed) Abstract this to a more clever class with the idea of an | 
|  | 169 | // asynchronous "start" | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 170 | if constexpr (IsTls<Adaptor>::value) | 
| Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 171 | { | 
| Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 172 | adaptor.async_handshake(boost::asio::ssl::stream_base::server, | 
|  | 173 | [this, self(shared_from_this())]( | 
|  | 174 | const boost::system::error_code& ec) { | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 175 | if (ec) | 
|  | 176 | { | 
|  | 177 | return; | 
|  | 178 | } | 
| Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 179 | afterSslHandshake(); | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 180 | }); | 
| Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 181 | } | 
|  | 182 | else | 
|  | 183 | { | 
|  | 184 | doReadHeaders(); | 
|  | 185 | } | 
| Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 186 | } | 
| Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 187 |  | 
| Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 188 | void afterSslHandshake() | 
|  | 189 | { | 
|  | 190 | // If http2 is enabled, negotiate the protocol | 
| Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 191 | if constexpr (BMCWEB_EXPERIMENTAL_HTTP2) | 
| Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 192 | { | 
|  | 193 | const unsigned char* alpn = nullptr; | 
|  | 194 | unsigned int alpnlen = 0; | 
|  | 195 | SSL_get0_alpn_selected(adaptor.native_handle(), &alpn, &alpnlen); | 
|  | 196 | if (alpn != nullptr) | 
|  | 197 | { | 
|  | 198 | std::string_view selectedProtocol( | 
|  | 199 | std::bit_cast<const char*>(alpn), alpnlen); | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 200 | BMCWEB_LOG_DEBUG("ALPN selected protocol \"{}\" len: {}", | 
|  | 201 | selectedProtocol, alpnlen); | 
| Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 202 | if (selectedProtocol == "h2") | 
|  | 203 | { | 
|  | 204 | auto http2 = | 
|  | 205 | std::make_shared<HTTP2Connection<Adaptor, Handler>>( | 
|  | 206 | std::move(adaptor), handler, getCachedDateStr); | 
|  | 207 | http2->start(); | 
|  | 208 | return; | 
|  | 209 | } | 
|  | 210 | } | 
|  | 211 | } | 
|  | 212 |  | 
|  | 213 | doReadHeaders(); | 
|  | 214 | } | 
|  | 215 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 216 | void initParser() | 
|  | 217 | { | 
|  | 218 | boost::beast::http::request_parser<bmcweb::HttpBody>& instance = | 
|  | 219 | parser.emplace(std::piecewise_construct, std::make_tuple()); | 
|  | 220 |  | 
|  | 221 | // reset header limit for newly created parser | 
|  | 222 | instance.header_limit(httpHeaderLimit); | 
|  | 223 |  | 
|  | 224 | // Initially set no body limit. We don't yet know if the user is | 
|  | 225 | // authenticated. | 
|  | 226 | instance.body_limit(boost::none); | 
|  | 227 | } | 
|  | 228 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 229 | void handle() | 
|  | 230 | { | 
| Ed Tanous | f79b7a5 | 2021-09-22 19:04:29 -0700 | [diff] [blame] | 231 | std::error_code reqEc; | 
| Ed Tanous | e01d0c3 | 2023-06-30 13:21:32 -0700 | [diff] [blame] | 232 | if (!parser) | 
|  | 233 | { | 
|  | 234 | return; | 
|  | 235 | } | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 236 | req = std::make_shared<crow::Request>(parser->release(), reqEc); | 
| Ed Tanous | f79b7a5 | 2021-09-22 19:04:29 -0700 | [diff] [blame] | 237 | if (reqEc) | 
|  | 238 | { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 239 | BMCWEB_LOG_DEBUG("Request failed to construct{}", reqEc.message()); | 
| Gunnar Mills | 262f115 | 2022-12-20 15:18:47 -0600 | [diff] [blame] | 240 | res.result(boost::beast::http::status::bad_request); | 
|  | 241 | completeRequest(res); | 
| Ed Tanous | f79b7a5 | 2021-09-22 19:04:29 -0700 | [diff] [blame] | 242 | return; | 
|  | 243 | } | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 244 | req->session = userSession; | 
| Ed Tanous | 89cda63 | 2024-04-16 08:45:54 -0700 | [diff] [blame^] | 245 | accept = req->getHeaderValue("Accept"); | 
| Ivan Mikhaylov | f65b0be | 2021-04-19 10:05:30 +0000 | [diff] [blame] | 246 | // Fetch the client IP address | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 247 | req->ipAddress = ip; | 
| Ivan Mikhaylov | f65b0be | 2021-04-19 10:05:30 +0000 | [diff] [blame] | 248 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 249 | // Check for HTTP version 1.1. | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 250 | if (req->version() == 11) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 251 | { | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 252 | if (req->getHeaderValue(boost::beast::http::field::host).empty()) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 253 | { | 
| Ed Tanous | de5c9f3 | 2019-03-26 09:17:55 -0700 | [diff] [blame] | 254 | res.result(boost::beast::http::status::bad_request); | 
| Nan Zhou | 72374eb | 2022-01-27 17:06:51 -0800 | [diff] [blame] | 255 | completeRequest(res); | 
| Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 256 | return; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 257 | } | 
|  | 258 | } | 
| Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 259 |  | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 260 | BMCWEB_LOG_INFO("Request:  {} HTTP/{}.{} {} {} {}", logPtr(this), | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 261 | req->version() / 10, req->version() % 10, | 
|  | 262 | req->methodString(), req->target(), | 
|  | 263 | req->ipAddress.to_string()); | 
| Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 264 |  | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 265 | req->ioService = static_cast<decltype(req->ioService)>( | 
| Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 266 | &adaptor.get_executor().context()); | 
| Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 267 |  | 
| Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 268 | if (res.completed) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 269 | { | 
| Nan Zhou | 72374eb | 2022-01-27 17:06:51 -0800 | [diff] [blame] | 270 | completeRequest(res); | 
| Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 271 | return; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 272 | } | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 273 | keepAlive = req->keepAlive(); | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 274 | if constexpr (!std::is_same_v<Adaptor, boost::beast::test::stream>) | 
| Ed Tanous | 1d3c14a | 2021-09-22 18:54:40 -0700 | [diff] [blame] | 275 | { | 
| Ed Tanous | 8332831 | 2024-05-09 15:48:09 -0700 | [diff] [blame] | 276 | if constexpr (!BMCWEB_INSECURE_DISABLE_AUTH) | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 277 | { | 
| Ed Tanous | 8332831 | 2024-05-09 15:48:09 -0700 | [diff] [blame] | 278 | if (!crow::authentication::isOnAllowlist(req->url().path(), | 
|  | 279 | req->method()) && | 
|  | 280 | req->session == nullptr) | 
|  | 281 | { | 
|  | 282 | BMCWEB_LOG_WARNING("Authentication failed"); | 
|  | 283 | forward_unauthorized::sendUnauthorized( | 
|  | 284 | req->url().encoded_path(), | 
|  | 285 | req->getHeaderValue("X-Requested-With"), | 
|  | 286 | req->getHeaderValue("Accept"), res); | 
|  | 287 | completeRequest(res); | 
|  | 288 | return; | 
|  | 289 | } | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 290 | } | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 291 | } | 
| Nan Zhou | 72374eb | 2022-01-27 17:06:51 -0800 | [diff] [blame] | 292 | auto asyncResp = std::make_shared<bmcweb::AsyncResp>(); | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 293 | BMCWEB_LOG_DEBUG("Setting completion handler"); | 
| Nan Zhou | 72374eb | 2022-01-27 17:06:51 -0800 | [diff] [blame] | 294 | asyncResp->res.setCompleteRequestHandler( | 
|  | 295 | [self(shared_from_this())](crow::Response& thisRes) { | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 296 | self->completeRequest(thisRes); | 
|  | 297 | }); | 
| Ed Tanous | 6fde95f | 2023-06-01 07:33:34 -0700 | [diff] [blame] | 298 | bool isSse = | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 299 | isContentTypeAllowed(req->getHeaderValue("Accept"), | 
| Ed Tanous | 6fde95f | 2023-06-01 07:33:34 -0700 | [diff] [blame] | 300 | http_helpers::ContentType::EventStream, false); | 
| Ed Tanous | 18f8f60 | 2023-07-18 10:07:23 -0700 | [diff] [blame] | 301 | std::string_view upgradeType( | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 302 | req->getHeaderValue(boost::beast::http::field::upgrade)); | 
|  | 303 | if ((req->isUpgrade() && | 
| Ed Tanous | 18f8f60 | 2023-07-18 10:07:23 -0700 | [diff] [blame] | 304 | bmcweb::asciiIEquals(upgradeType, "websocket")) || | 
| Ed Tanous | 6fde95f | 2023-06-01 07:33:34 -0700 | [diff] [blame] | 305 | isSse) | 
| Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 306 | { | 
| P Dheeraj Srujan Kumar | a9f076e | 2021-10-18 22:45:37 +0530 | [diff] [blame] | 307 | asyncResp->res.setCompleteRequestHandler( | 
|  | 308 | [self(shared_from_this())](crow::Response& thisRes) { | 
|  | 309 | if (thisRes.result() != boost::beast::http::status::ok) | 
|  | 310 | { | 
|  | 311 | // When any error occurs before handle upgradation, | 
|  | 312 | // the result in response will be set to respective | 
|  | 313 | // error. By default the Result will be OK (200), | 
|  | 314 | // which implies successful handle upgrade. Response | 
|  | 315 | // needs to be sent over this connection only on | 
|  | 316 | // failure. | 
|  | 317 | self->completeRequest(thisRes); | 
|  | 318 | return; | 
|  | 319 | } | 
|  | 320 | }); | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 321 | handler->handleUpgrade(req, asyncResp, std::move(adaptor)); | 
| Ed Tanous | 6c7f01d | 2021-08-25 13:42:35 -0700 | [diff] [blame] | 322 | return; | 
|  | 323 | } | 
| Ed Tanous | 291d709 | 2022-04-13 12:34:57 -0700 | [diff] [blame] | 324 | std::string_view expected = | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 325 | req->getHeaderValue(boost::beast::http::field::if_none_match); | 
| Ed Tanous | 291d709 | 2022-04-13 12:34:57 -0700 | [diff] [blame] | 326 | if (!expected.empty()) | 
|  | 327 | { | 
|  | 328 | res.setExpectedHash(expected); | 
|  | 329 | } | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 330 | handler->handle(req, asyncResp); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 331 | } | 
| Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 332 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 333 | void hardClose() | 
| Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 334 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 335 | BMCWEB_LOG_DEBUG("{} Closing socket", logPtr(this)); | 
|  | 336 | boost::beast::get_lowest_layer(adaptor).close(); | 
|  | 337 | } | 
|  | 338 |  | 
|  | 339 | void tlsShutdownComplete(const std::shared_ptr<self_type>& self, | 
|  | 340 | const boost::system::error_code& ec) | 
|  | 341 | { | 
|  | 342 | if (ec) | 
|  | 343 | { | 
|  | 344 | BMCWEB_LOG_WARNING("{} Failed to shut down TLS cleanly {}", | 
|  | 345 | logPtr(self.get()), ec); | 
|  | 346 | } | 
|  | 347 | self->hardClose(); | 
|  | 348 | } | 
|  | 349 |  | 
|  | 350 | void gracefulClose() | 
|  | 351 | { | 
|  | 352 | BMCWEB_LOG_DEBUG("{} Socket close requested", logPtr(this)); | 
|  | 353 | if (mtlsSession != nullptr) | 
|  | 354 | { | 
|  | 355 | BMCWEB_LOG_DEBUG("{} Removing TLS session: {}", logPtr(this), | 
|  | 356 | mtlsSession->uniqueId); | 
|  | 357 | persistent_data::SessionStore::getInstance().removeSession( | 
|  | 358 | mtlsSession); | 
|  | 359 | } | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 360 | if constexpr (IsTls<Adaptor>::value) | 
| Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 361 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 362 | adaptor.async_shutdown(std::bind_front( | 
|  | 363 | &self_type::tlsShutdownComplete, this, shared_from_this())); | 
| Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 364 | } | 
|  | 365 | else | 
|  | 366 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 367 | hardClose(); | 
| Ed Tanous | e278c18 | 2019-03-13 16:23:37 -0700 | [diff] [blame] | 368 | } | 
|  | 369 | } | 
|  | 370 |  | 
| Nan Zhou | 72374eb | 2022-01-27 17:06:51 -0800 | [diff] [blame] | 371 | void completeRequest(crow::Response& thisRes) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 372 | { | 
| Nan Zhou | 72374eb | 2022-01-27 17:06:51 -0800 | [diff] [blame] | 373 | res = std::move(thisRes); | 
| Ed Tanous | 4cdc2e8 | 2023-01-13 10:03:22 -0800 | [diff] [blame] | 374 | res.keepAlive(keepAlive); | 
| Ed Tanous | 5ae6f92 | 2023-01-09 10:45:53 -0800 | [diff] [blame] | 375 |  | 
| Ed Tanous | 89cda63 | 2024-04-16 08:45:54 -0700 | [diff] [blame^] | 376 | completeResponseFields(accept, res); | 
| Ed Tanous | 998e0cb | 2023-09-06 13:57:30 -0700 | [diff] [blame] | 377 | res.addHeader(boost::beast::http::field::date, getCachedDateStr()); | 
| Ed Tanous | 291d709 | 2022-04-13 12:34:57 -0700 | [diff] [blame] | 378 |  | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 379 | doWrite(); | 
| Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 380 |  | 
|  | 381 | // delete lambda with self shared_ptr | 
|  | 382 | // to enable connection destruction | 
| John Edward Broadbent | 4147b8a | 2021-07-19 16:52:24 -0700 | [diff] [blame] | 383 | res.setCompleteRequestHandler(nullptr); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 384 | } | 
|  | 385 |  | 
| Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 386 | void readClientIp() | 
|  | 387 | { | 
|  | 388 | boost::system::error_code ec; | 
| Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 389 |  | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 390 | if constexpr (!std::is_same_v<Adaptor, boost::beast::test::stream>) | 
| Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 391 | { | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 392 | boost::asio::ip::tcp::endpoint endpoint = | 
|  | 393 | boost::beast::get_lowest_layer(adaptor).remote_endpoint(ec); | 
|  | 394 |  | 
|  | 395 | if (ec) | 
|  | 396 | { | 
|  | 397 | // If remote endpoint fails keep going. "ClientOriginIPAddress" | 
|  | 398 | // will be empty. | 
|  | 399 | BMCWEB_LOG_ERROR( | 
|  | 400 | "Failed to get the client's IP Address. ec : {}", ec); | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 401 | return; | 
| Ed Tanous | 4fa45df | 2023-09-01 14:20:50 -0700 | [diff] [blame] | 402 | } | 
|  | 403 | ip = endpoint.address(); | 
| Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 404 | } | 
| Sunitha Harish | c0ea7ae | 2020-10-30 02:37:30 -0500 | [diff] [blame] | 405 | } | 
|  | 406 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 407 | private: | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 408 | uint64_t getContentLengthLimit() | 
|  | 409 | { | 
| Ed Tanous | 8332831 | 2024-05-09 15:48:09 -0700 | [diff] [blame] | 410 | if constexpr (!BMCWEB_INSECURE_DISABLE_AUTH) | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 411 | { | 
| Ed Tanous | 8332831 | 2024-05-09 15:48:09 -0700 | [diff] [blame] | 412 | if (userSession == nullptr) | 
|  | 413 | { | 
|  | 414 | return loggedOutPostBodyLimit; | 
|  | 415 | } | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 416 | } | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 417 |  | 
|  | 418 | return httpReqBodyLimit; | 
|  | 419 | } | 
|  | 420 |  | 
|  | 421 | // Returns true if content length was within limits | 
|  | 422 | // Returns false if content length error has been returned | 
|  | 423 | bool handleContentLengthError() | 
|  | 424 | { | 
|  | 425 | if (!parser) | 
|  | 426 | { | 
| Manojkiran Eda | efff2b5 | 2024-06-18 18:01:46 +0530 | [diff] [blame] | 427 | BMCWEB_LOG_CRITICAL("Parser was null"); | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 428 | return false; | 
|  | 429 | } | 
|  | 430 | const boost::optional<uint64_t> contentLength = | 
|  | 431 | parser->content_length(); | 
|  | 432 | if (!contentLength) | 
|  | 433 | { | 
|  | 434 | BMCWEB_LOG_DEBUG("{} No content length available", logPtr(this)); | 
|  | 435 | return true; | 
|  | 436 | } | 
|  | 437 |  | 
|  | 438 | uint64_t maxAllowedContentLength = getContentLengthLimit(); | 
|  | 439 |  | 
|  | 440 | if (*contentLength > maxAllowedContentLength) | 
|  | 441 | { | 
|  | 442 | // If the users content limit is between the logged in | 
|  | 443 | // and logged out limits They probably just didn't log | 
|  | 444 | // in | 
|  | 445 | if (*contentLength > loggedOutPostBodyLimit && | 
|  | 446 | *contentLength < httpReqBodyLimit) | 
|  | 447 | { | 
|  | 448 | BMCWEB_LOG_DEBUG( | 
|  | 449 | "{} Content length {} valid, but greater than logged out" | 
|  | 450 | " limit of {}. Setting unauthorized", | 
|  | 451 | logPtr(this), *contentLength, loggedOutPostBodyLimit); | 
|  | 452 | res.result(boost::beast::http::status::unauthorized); | 
|  | 453 | } | 
|  | 454 | else | 
|  | 455 | { | 
|  | 456 | // Otherwise they're over both limits, so inform | 
|  | 457 | // them | 
|  | 458 | BMCWEB_LOG_DEBUG( | 
|  | 459 | "{} Content length {} was greater than global limit {}." | 
|  | 460 | " Setting payload too large", | 
|  | 461 | logPtr(this), *contentLength, httpReqBodyLimit); | 
|  | 462 | res.result(boost::beast::http::status::payload_too_large); | 
|  | 463 | } | 
|  | 464 |  | 
|  | 465 | keepAlive = false; | 
|  | 466 | doWrite(); | 
|  | 467 | return false; | 
|  | 468 | } | 
|  | 469 |  | 
|  | 470 | return true; | 
|  | 471 | } | 
|  | 472 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 473 | void doReadHeaders() | 
|  | 474 | { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 475 | BMCWEB_LOG_DEBUG("{} doReadHeaders", logPtr(this)); | 
| Ed Tanous | e01d0c3 | 2023-06-30 13:21:32 -0700 | [diff] [blame] | 476 | if (!parser) | 
|  | 477 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 478 | BMCWEB_LOG_CRITICAL("Parser was not initialized."); | 
| Ed Tanous | e01d0c3 | 2023-06-30 13:21:32 -0700 | [diff] [blame] | 479 | return; | 
|  | 480 | } | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 481 | // Clean up any previous Connection. | 
|  | 482 | boost::beast::http::async_read_header( | 
| Ed Tanous | ceac6f7 | 2018-12-02 11:58:47 -0800 | [diff] [blame] | 483 | adaptor, buffer, *parser, | 
| Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 484 | [this, | 
|  | 485 | self(shared_from_this())](const boost::system::error_code& ec, | 
| Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 486 | std::size_t bytesTransferred) { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 487 | BMCWEB_LOG_DEBUG("{} async_read_header {} Bytes", logPtr(this), | 
|  | 488 | bytesTransferred); | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 489 |  | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 490 | if (ec) | 
|  | 491 | { | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 492 | cancelDeadlineTimer(); | 
|  | 493 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 494 | if (ec == boost::beast::http::error::header_limit) | 
|  | 495 | { | 
|  | 496 | BMCWEB_LOG_ERROR("{} Header field too large, closing", | 
|  | 497 | logPtr(this), ec.message()); | 
|  | 498 |  | 
|  | 499 | res.result(boost::beast::http::status:: | 
|  | 500 | request_header_fields_too_large); | 
|  | 501 | keepAlive = false; | 
|  | 502 | doWrite(); | 
|  | 503 | return; | 
|  | 504 | } | 
| Myung Bae | a4326fe | 2023-01-10 14:29:24 -0600 | [diff] [blame] | 505 | if (ec == boost::beast::http::error::end_of_stream) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 506 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 507 | BMCWEB_LOG_WARNING("{} End of stream, closing {}", | 
|  | 508 | logPtr(this), ec); | 
|  | 509 | hardClose(); | 
|  | 510 | return; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 511 | } | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 512 |  | 
|  | 513 | BMCWEB_LOG_DEBUG("{} Closing socket due to read error {}", | 
|  | 514 | logPtr(this), ec.message()); | 
|  | 515 | gracefulClose(); | 
|  | 516 |  | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 517 | return; | 
|  | 518 | } | 
|  | 519 |  | 
| Ed Tanous | 8332831 | 2024-05-09 15:48:09 -0700 | [diff] [blame] | 520 | if constexpr (!std::is_same_v<Adaptor, boost::beast::test::stream>) | 
|  | 521 | { | 
|  | 522 | if constexpr (!BMCWEB_INSECURE_DISABLE_AUTH) | 
|  | 523 | { | 
|  | 524 | boost::beast::http::verb method = parser->get().method(); | 
|  | 525 | userSession = crow::authentication::authenticate( | 
|  | 526 | ip, res, method, parser->get().base(), mtlsSession); | 
|  | 527 | } | 
|  | 528 | } | 
|  | 529 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 530 | std::string_view expect = | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 531 | parser->get()[boost::beast::http::field::expect]; | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 532 | if (bmcweb::asciiIEquals(expect, "100-continue")) | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 533 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 534 | res.result(boost::beast::http::status::continue_); | 
|  | 535 | doWrite(); | 
|  | 536 | return; | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 537 | } | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 538 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 539 | if (!handleContentLengthError()) | 
|  | 540 | { | 
|  | 541 | return; | 
|  | 542 | } | 
|  | 543 |  | 
|  | 544 | parser->body_limit(getContentLengthLimit()); | 
|  | 545 |  | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 546 | if (parser->is_done()) | 
|  | 547 | { | 
|  | 548 | handle(); | 
|  | 549 | return; | 
|  | 550 | } | 
|  | 551 |  | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 552 | doRead(); | 
| Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 553 | }); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 554 | } | 
|  | 555 |  | 
|  | 556 | void doRead() | 
|  | 557 | { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 558 | BMCWEB_LOG_DEBUG("{} doRead", logPtr(this)); | 
| Ed Tanous | e01d0c3 | 2023-06-30 13:21:32 -0700 | [diff] [blame] | 559 | if (!parser) | 
|  | 560 | { | 
|  | 561 | return; | 
|  | 562 | } | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 563 | startDeadline(); | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 564 | boost::beast::http::async_read_some( | 
|  | 565 | adaptor, buffer, *parser, | 
|  | 566 | [this, | 
|  | 567 | self(shared_from_this())](const boost::system::error_code& ec, | 
|  | 568 | std::size_t bytesTransferred) { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 569 | BMCWEB_LOG_DEBUG("{} async_read_some {} Bytes", logPtr(this), | 
|  | 570 | bytesTransferred); | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 571 |  | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 572 | if (ec) | 
|  | 573 | { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 574 | BMCWEB_LOG_ERROR("{} Error while reading: {}", logPtr(this), | 
|  | 575 | ec.message()); | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 576 | if (ec == boost::beast::http::error::body_limit) | 
|  | 577 | { | 
|  | 578 | if (handleContentLengthError()) | 
|  | 579 | { | 
|  | 580 | BMCWEB_LOG_CRITICAL("Body length limit reached, " | 
|  | 581 | "but no content-length " | 
|  | 582 | "available?  Should never happen"); | 
|  | 583 | res.result( | 
|  | 584 | boost::beast::http::status::internal_server_error); | 
|  | 585 | keepAlive = false; | 
|  | 586 | doWrite(); | 
|  | 587 | } | 
|  | 588 | return; | 
|  | 589 | } | 
|  | 590 |  | 
|  | 591 | gracefulClose(); | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 592 | return; | 
|  | 593 | } | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 594 |  | 
|  | 595 | // If the user is logged in, allow them to send files incrementally | 
|  | 596 | // one piece at a time. If authentication is disabled then there is | 
|  | 597 | // no user session hence always allow to send one piece at a time. | 
|  | 598 | if (userSession != nullptr) | 
|  | 599 | { | 
|  | 600 | cancelDeadlineTimer(); | 
|  | 601 | } | 
|  | 602 | if (!parser->is_done()) | 
|  | 603 | { | 
|  | 604 | doRead(); | 
|  | 605 | return; | 
|  | 606 | } | 
|  | 607 |  | 
|  | 608 | cancelDeadlineTimer(); | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 609 | handle(); | 
| Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 610 | }); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 611 | } | 
|  | 612 |  | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 613 | void afterDoWrite(const std::shared_ptr<self_type>& /*self*/, | 
|  | 614 | const boost::system::error_code& ec, | 
|  | 615 | std::size_t bytesTransferred) | 
|  | 616 | { | 
| Ed Tanous | 0242baf | 2024-05-16 19:52:47 -0700 | [diff] [blame] | 617 | BMCWEB_LOG_DEBUG("{} async_write wrote {} bytes, ec={}", logPtr(this), | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 618 | bytesTransferred, ec); | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 619 |  | 
|  | 620 | cancelDeadlineTimer(); | 
|  | 621 |  | 
| Ed Tanous | 0242baf | 2024-05-16 19:52:47 -0700 | [diff] [blame] | 622 | if (ec == boost::system::errc::operation_would_block || | 
|  | 623 | ec == boost::system::errc::resource_unavailable_try_again) | 
|  | 624 | { | 
|  | 625 | doWrite(); | 
|  | 626 | return; | 
|  | 627 | } | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 628 | if (ec) | 
|  | 629 | { | 
|  | 630 | BMCWEB_LOG_DEBUG("{} from write(2)", logPtr(this)); | 
|  | 631 | return; | 
|  | 632 | } | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 633 |  | 
|  | 634 | if (res.result() == boost::beast::http::status::continue_) | 
|  | 635 | { | 
|  | 636 | // Reset the result to ok | 
|  | 637 | res.result(boost::beast::http::status::ok); | 
|  | 638 | doRead(); | 
|  | 639 | return; | 
|  | 640 | } | 
|  | 641 |  | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 642 | if (!keepAlive) | 
|  | 643 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 644 | BMCWEB_LOG_DEBUG("{} keepalive not set.  Closing socket", | 
|  | 645 | logPtr(this)); | 
|  | 646 |  | 
|  | 647 | gracefulClose(); | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 648 | return; | 
|  | 649 | } | 
|  | 650 |  | 
|  | 651 | BMCWEB_LOG_DEBUG("{} Clearing response", logPtr(this)); | 
|  | 652 | res.clear(); | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 653 | initParser(); | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 654 |  | 
|  | 655 | userSession = nullptr; | 
|  | 656 |  | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 657 | req->clear(); | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 658 | doReadHeaders(); | 
|  | 659 | } | 
|  | 660 |  | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 661 | void doWrite() | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 662 | { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 663 | BMCWEB_LOG_DEBUG("{} doWrite", logPtr(this)); | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 664 | res.preparePayload(); | 
| Ed Tanous | 27b0cf9 | 2023-08-07 12:02:40 -0700 | [diff] [blame] | 665 |  | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 666 | startDeadline(); | 
| Ed Tanous | 4d69861 | 2024-02-06 14:57:24 -0800 | [diff] [blame] | 667 | boost::beast::async_write( | 
|  | 668 | adaptor, | 
|  | 669 | boost::beast::http::message_generator(std::move(res.response)), | 
| Ed Tanous | 52e3162 | 2024-01-23 16:31:11 -0800 | [diff] [blame] | 670 | std::bind_front(&self_type::afterDoWrite, this, | 
|  | 671 | shared_from_this())); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 672 | } | 
|  | 673 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 674 | void cancelDeadlineTimer() | 
|  | 675 | { | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 676 | timer.cancel(); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 677 | } | 
|  | 678 |  | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 679 | void startDeadline() | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 680 | { | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 681 | // Timer is already started so no further action is required. | 
|  | 682 | if (timerStarted) | 
|  | 683 | { | 
|  | 684 | return; | 
|  | 685 | } | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 686 |  | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 687 | std::chrono::seconds timeout(15); | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 688 |  | 
|  | 689 | std::weak_ptr<Connection<Adaptor, Handler>> weakSelf = weak_from_this(); | 
|  | 690 | timer.expires_after(timeout); | 
| Ed Tanous | 81c4e33 | 2023-05-18 10:30:34 -0700 | [diff] [blame] | 691 | timer.async_wait([weakSelf](const boost::system::error_code& ec) { | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 692 | // Note, we are ignoring other types of errors here;  If the timer | 
|  | 693 | // failed for any reason, we should still close the connection | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 694 | std::shared_ptr<Connection<Adaptor, Handler>> self = | 
|  | 695 | weakSelf.lock(); | 
|  | 696 | if (!self) | 
|  | 697 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 698 | if (ec == boost::asio::error::operation_aborted) | 
|  | 699 | { | 
|  | 700 | BMCWEB_LOG_DEBUG( | 
|  | 701 | "{} Timer canceled on connection being destroyed", | 
|  | 702 | logPtr(self.get())); | 
|  | 703 | return; | 
|  | 704 | } | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 705 | BMCWEB_LOG_CRITICAL("{} Failed to capture connection", | 
|  | 706 | logPtr(self.get())); | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 707 | return; | 
|  | 708 | } | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 709 |  | 
|  | 710 | self->timerStarted = false; | 
|  | 711 |  | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 712 | if (ec) | 
|  | 713 | { | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 714 | if (ec == boost::asio::error::operation_aborted) | 
|  | 715 | { | 
|  | 716 | BMCWEB_LOG_DEBUG("{} Timer canceled", logPtr(self.get())); | 
|  | 717 | return; | 
|  | 718 | } | 
|  | 719 | BMCWEB_LOG_CRITICAL("{} Timer failed {}", logPtr(self.get()), | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 720 | ec); | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 721 | } | 
|  | 722 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 723 | BMCWEB_LOG_WARNING("{} Connection timed out, hard closing", | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 724 | logPtr(self.get())); | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 725 |  | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 726 | self->hardClose(); | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 727 | }); | 
|  | 728 |  | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 729 | timerStarted = true; | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 730 | BMCWEB_LOG_DEBUG("{} timer started", logPtr(this)); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 731 | } | 
|  | 732 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 733 | Adaptor adaptor; | 
|  | 734 | Handler* handler; | 
| Ed Tanous | 1d1d778 | 2024-04-09 12:54:08 -0700 | [diff] [blame] | 735 |  | 
|  | 736 | boost::asio::ip::address ip; | 
|  | 737 |  | 
| Ed Tanous | a24526d | 2018-12-10 15:17:59 -0800 | [diff] [blame] | 738 | // Making this a std::optional allows it to be efficiently destroyed and | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 739 | // re-created on Connection reset | 
| Ed Tanous | b289614 | 2024-01-31 15:25:47 -0800 | [diff] [blame] | 740 | std::optional<boost::beast::http::request_parser<bmcweb::HttpBody>> parser; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 741 |  | 
| Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 742 | boost::beast::flat_static_buffer<8192> buffer; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 743 |  | 
| Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 744 | std::shared_ptr<crow::Request> req; | 
| Ed Tanous | 89cda63 | 2024-04-16 08:45:54 -0700 | [diff] [blame^] | 745 | std::string accept; | 
|  | 746 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 747 | crow::Response res; | 
| Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 748 |  | 
| John Edward Broadbent | 59b98b2 | 2021-07-13 15:36:32 -0700 | [diff] [blame] | 749 | std::shared_ptr<persistent_data::UserSession> userSession; | 
| Boleslaw Ogonczyk Makowski | b496307 | 2023-02-06 09:59:58 +0100 | [diff] [blame] | 750 | std::shared_ptr<persistent_data::UserSession> mtlsSession; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 751 |  | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 752 | boost::asio::steady_timer timer; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 753 |  | 
| Ed Tanous | 4cdc2e8 | 2023-01-13 10:03:22 -0800 | [diff] [blame] | 754 | bool keepAlive = true; | 
|  | 755 |  | 
| Ed Tanous | 7d243eb | 2023-01-23 15:57:41 -0800 | [diff] [blame] | 756 | bool timerStarted = false; | 
|  | 757 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 758 | std::function<std::string()>& getCachedDateStr; | 
| Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 759 |  | 
|  | 760 | using std::enable_shared_from_this< | 
| Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 761 | Connection<Adaptor, Handler>>::shared_from_this; | 
| Ed Tanous | 5dfb5b2 | 2021-12-03 11:24:53 -0800 | [diff] [blame] | 762 |  | 
|  | 763 | using std::enable_shared_from_this< | 
|  | 764 | Connection<Adaptor, Handler>>::weak_from_this; | 
| Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 765 | }; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 766 | } // namespace crow |