blob: ae0477ab3273c53f7fde076444a74cf398afe50f [file] [log] [blame]
Ed Tanous7045c8d2017-04-03 10:04:37 -07001#pragma once
Ed Tanous75312982021-02-11 14:26:02 -08002#include "bmcweb_config.h"
Adriana Kobylak0e1cf262019-12-05 13:57:57 -06003
James Feist3909dc82020-04-03 10:58:55 -07004#include "authorization.hpp"
Ed Tanous04e438c2020-10-03 08:06:26 -07005#include "http_response.hpp"
Ed Tanous1abe55e2018-09-05 08:30:59 -07006#include "http_utility.hpp"
Ed Tanous04e438c2020-10-03 08:06:26 -07007#include "logging.hpp"
8#include "timer_queue.hpp"
9#include "utility.hpp"
Ed Tanous1abe55e2018-09-05 08:30:59 -070010
Ed Tanouse0d918b2018-03-27 17:41:04 -070011#include <boost/algorithm/string.hpp>
Ed Tanous257f5792018-03-17 14:40:09 -070012#include <boost/algorithm/string/predicate.hpp>
Ed Tanous8f626352018-12-19 14:51:54 -080013#include <boost/asio/io_context.hpp>
Ed Tanous3112a142018-11-29 15:45:10 -080014#include <boost/asio/ip/tcp.hpp>
Ed Tanousd43cd0c2020-09-30 20:46:53 -070015#include <boost/asio/ssl/stream.hpp>
Ed Tanous3112a142018-11-29 15:45:10 -080016#include <boost/beast/core/flat_static_buffer.hpp>
Manojkiran Eda44250442020-06-16 12:51:38 +053017#include <boost/beast/ssl/ssl_stream.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050018#include <boost/beast/websocket.hpp>
Ed Tanous57fce802019-05-21 13:00:34 -070019#include <json_html_serializer.hpp>
Ed Tanous52cc1122020-07-18 13:51:21 -070020#include <security_headers.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050021#include <ssl_key_handler.hpp>
22
Manojkiran Eda44250442020-06-16 12:51:38 +053023#include <atomic>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050024#include <chrono>
25#include <vector>
26
Ed Tanous1abe55e2018-09-05 08:30:59 -070027namespace crow
28{
Ed Tanous257f5792018-03-17 14:40:09 -070029
Ed Tanous1abe55e2018-09-05 08:30:59 -070030inline void prettyPrintJson(crow::Response& res)
31{
Ed Tanous57fce802019-05-21 13:00:34 -070032 json_html_util::dumpHtml(res.body(), res.jsonValue);
33
Ed Tanous93ef5802019-01-03 10:15:41 -080034 res.addHeader("Content-Type", "text/html;charset=UTF-8");
Ed Tanous257f5792018-03-17 14:40:09 -070035}
36
Ed Tanous55c7b7a2018-05-22 15:27:24 -070037#ifdef BMCWEB_ENABLE_DEBUG
Ed Tanouse0d918b2018-03-27 17:41:04 -070038static std::atomic<int> connectionCount;
Ed Tanous7045c8d2017-04-03 10:04:37 -070039#endif
Jennifer Leeacb7cfb2018-06-07 16:08:15 -070040
Ed Tanous0260d9d2021-02-07 19:31:07 +000041// request body limit size set by the bmcwebHttpReqBodyLimitMb option
Adriana Kobylak0e1cf262019-12-05 13:57:57 -060042constexpr unsigned int httpReqBodyLimit =
Ed Tanous0260d9d2021-02-07 19:31:07 +000043 1024 * 1024 * bmcwebHttpReqBodyLimitMb;
Jennifer Leeacb7cfb2018-06-07 16:08:15 -070044
James Feist3909dc82020-04-03 10:58:55 -070045constexpr uint64_t loggedOutPostBodyLimit = 4096;
46
47constexpr 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
51static constexpr const size_t loggedInAttempts =
52 (60 / timerQueueTimeoutSeconds);
53
54static constexpr const size_t loggedOutAttempts =
55 (15 / timerQueueTimeoutSeconds);
56
Ed Tanous52cc1122020-07-18 13:51:21 -070057template <typename Adaptor, typename Handler>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050058class Connection :
Ed Tanous52cc1122020-07-18 13:51:21 -070059 public std::enable_shared_from_this<Connection<Adaptor, Handler>>
Ed Tanous1abe55e2018-09-05 08:30:59 -070060{
61 public:
Ed Tanouse7d1a1c2020-09-28 09:36:35 -070062 Connection(Handler* handlerIn,
Ed Tanous81ce6092020-12-17 16:54:55 +000063 std::function<std::string()>& getCachedDateStrF,
Ed Tanous271584a2019-07-09 16:24:22 -070064 detail::TimerQueue& timerQueueIn, Adaptor adaptorIn) :
Ed Tanousceac6f72018-12-02 11:58:47 -080065 adaptor(std::move(adaptorIn)),
Ed Tanous81ce6092020-12-17 16:54:55 +000066 handler(handlerIn), getCachedDateStr(getCachedDateStrF),
Ed Tanouse7d1a1c2020-09-28 09:36:35 -070067 timerQueue(timerQueueIn)
Ed Tanous1abe55e2018-09-05 08:30:59 -070068 {
69 parser.emplace(std::piecewise_construct, std::make_tuple());
Ed Tanous1abe55e2018-09-05 08:30:59 -070070 parser->body_limit(httpReqBodyLimit);
James Feist3909dc82020-04-03 10:58:55 -070071 parser->header_limit(httpHeaderLimit);
Kowalski, Kamil55e43f62019-07-10 13:12:57 +020072
73#ifdef BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION
Ed Tanous40aa0582021-07-14 13:24:40 -070074 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 Broadbent4147b8a2021-07-19 16:52:24 -070086 res.setCompleteRequestHandler(nullptr);
Ed Tanous40aa0582021-07-14 13:24:40 -070087 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 Doman83deb7d2020-11-16 17:00:22 -080097 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 Tanous2c70f802020-09-28 14:29:23 -0700101 if (caAvailable && persistent_data::SessionStore::getInstance()
102 .getAuthMethodsConfig()
103 .tls)
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100104 {
105 adaptor.set_verify_mode(boost::asio::ssl::verify_peer);
Ed Tanouse7d1a1c2020-09-28 09:36:35 -0700106 std::string id = "bmcweb";
107 int ret = SSL_set_session_id_context(
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100108 adaptor.native_handle(),
Ed Tanouse7d1a1c2020-09-28 09:36:35 -0700109 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 Kurzynski009c2a42019-11-14 13:37:15 +0100115 }
116
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100117 adaptor.set_verify_callback([this](
118 bool preverified,
119 boost::asio::ssl::verify_context& ctx) {
120 // do nothing if TLS is disabled
Ed Tanous52cc1122020-07-18 13:51:21 -0700121 if (!persistent_data::SessionStore::getInstance()
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100122 .getAuthMethodsConfig()
123 .tls)
124 {
125 BMCWEB_LOG_DEBUG << this << " TLS auth_config is disabled";
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200126 return true;
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100127 }
128
129 // We always return true to allow full auth flow
130 if (!preverified)
131 {
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100132 BMCWEB_LOG_DEBUG << this << " TLS preverification failed.";
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100133 return true;
134 }
135
136 X509_STORE_CTX* cts = ctx.native_handle();
137 if (cts == nullptr)
138 {
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100139 BMCWEB_LOG_DEBUG << this << " Cannot get native TLS handle.";
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100140 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 Kurzynski009c2a42019-11-14 13:37:15 +0100148 BMCWEB_LOG_DEBUG << this
149 << " Cannot get current TLS certificate.";
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100150 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 Kurzynski009c2a42019-11-14 13:37:15 +0100157 BMCWEB_LOG_INFO << this << " Last TLS error is: " << error;
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100158 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 Tanous23a21a12020-07-25 04:45:05 +0000179 X509_get_ext_d2i(peerCert, NID_key_usage, nullptr, nullptr));
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100180
181 if (usage == nullptr)
182 {
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100183 BMCWEB_LOG_DEBUG << this << " TLS usage is null";
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100184 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 Maueryb9378302021-06-16 14:06:57 -0700198 ASN1_BIT_STRING_free(usage);
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100199
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 Tanous23a21a12020-07-25 04:45:05 +0000211 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 Kurzynski2658d982019-11-19 18:01:08 +0100214
215 if (extUsage == nullptr)
216 {
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100217 BMCWEB_LOG_DEBUG << this << " TLS extUsage is null";
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100218 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 Kurzynski09d02f82020-03-30 13:41:42 +0200231 sk_ASN1_OBJECT_free(extUsage);
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100232
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 Kurzynski009c2a42019-11-14 13:37:15 +0100252 BMCWEB_LOG_DEBUG
253 << this << " TLS cannot get username to create session";
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100254 return true;
255 }
256
257 size_t lastChar = sslUser.find('\0');
258 if (lastChar == std::string::npos || lastChar == 0)
259 {
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100260 BMCWEB_LOG_DEBUG << this << " Invalid TLS user name";
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100261 return true;
262 }
263 sslUser.resize(lastChar);
Sunitha Harishd3239222021-02-24 15:33:29 +0530264 std::string unsupportedClientId = "";
Ed Tanous9a69d5a2021-09-13 10:23:51 -0700265 sessionIsFromTransport = true;
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700266 userSession = persistent_data::SessionStore::getInstance()
267 .generateUserSession(
268 sslUser, req->ipAddress.to_string(),
269 unsupportedClientId,
270 persistent_data::PersistenceType::TIMEOUT);
271 if (userSession != nullptr)
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100272 {
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700273 BMCWEB_LOG_DEBUG
274 << this
275 << " Generating TLS session: " << userSession->uniqueId;
Zbigniew Kurzynski009c2a42019-11-14 13:37:15 +0100276 }
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100277 return true;
278 });
Ed Tanous7045c8d2017-04-03 10:04:37 -0700279 }
280
Ed Tanousceac6f72018-12-02 11:58:47 -0800281 Adaptor& socket()
Ed Tanous1abe55e2018-09-05 08:30:59 -0700282 {
Ed Tanousceac6f72018-12-02 11:58:47 -0800283 return adaptor;
Ed Tanous7045c8d2017-04-03 10:04:37 -0700284 }
285
Ed Tanous1abe55e2018-09-05 08:30:59 -0700286 void start()
287 {
Ed Tanous7045c8d2017-04-03 10:04:37 -0700288
James Feist3909dc82020-04-03 10:58:55 -0700289 startDeadline(0);
Sunitha Harishc0ea7ae2020-10-30 02:37:30 -0500290
Ed Tanousceac6f72018-12-02 11:58:47 -0800291 // TODO(ed) Abstract this to a more clever class with the idea of an
292 // asynchronous "start"
293 if constexpr (std::is_same_v<Adaptor,
294 boost::beast::ssl_stream<
295 boost::asio::ip::tcp::socket>>)
296 {
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000297 adaptor.async_handshake(boost::asio::ssl::stream_base::server,
298 [this, self(shared_from_this())](
299 const boost::system::error_code& ec) {
300 if (ec)
301 {
302 return;
303 }
304 doReadHeaders();
305 });
Ed Tanousceac6f72018-12-02 11:58:47 -0800306 }
307 else
308 {
309 doReadHeaders();
310 }
Ed Tanous7045c8d2017-04-03 10:04:37 -0700311 }
Ed Tanous7045c8d2017-04-03 10:04:37 -0700312
Ed Tanous1abe55e2018-09-05 08:30:59 -0700313 void handle()
314 {
315 cancelDeadlineTimer();
James Feist3909dc82020-04-03 10:58:55 -0700316
Ed Tanous596b2032021-09-13 10:32:22 -0700317 crow::Request& thisReq = req.emplace(parser->release());
318 thisReq.session = userSession;
319
Ivan Mikhaylovf65b0be2021-04-19 10:05:30 +0000320 // Fetch the client IP address
321 readClientIp();
322
Ed Tanous1abe55e2018-09-05 08:30:59 -0700323 // Check for HTTP version 1.1.
Ed Tanous596b2032021-09-13 10:32:22 -0700324 if (thisReq.version() == 11)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700325 {
Ed Tanous596b2032021-09-13 10:32:22 -0700326 if (thisReq.getHeaderValue(boost::beast::http::field::host).empty())
Ed Tanous1abe55e2018-09-05 08:30:59 -0700327 {
Ed Tanousde5c9f32019-03-26 09:17:55 -0700328 res.result(boost::beast::http::status::bad_request);
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700329 completeRequest();
330 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700331 }
332 }
Ed Tanous7045c8d2017-04-03 10:04:37 -0700333
Ed Tanouse278c182019-03-13 16:23:37 -0700334 BMCWEB_LOG_INFO << "Request: "
Ed Tanous596b2032021-09-13 10:32:22 -0700335 << " " << this << " HTTP/" << thisReq.version() / 10
336 << "." << thisReq.version() % 10 << ' '
337 << thisReq.methodString() << " " << thisReq.target()
338 << " " << thisReq.ipAddress;
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700339 try
340 {
Ed Tanous596b2032021-09-13 10:32:22 -0700341 thisReq.urlView = boost::urls::url_view(thisReq.target());
342 thisReq.url = thisReq.urlView.encoded_path();
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700343 }
344 catch (std::exception& p)
345 {
346 BMCWEB_LOG_ERROR << p.what();
347 }
Ed Tanous7045c8d2017-04-03 10:04:37 -0700348
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700349 res.setCompleteRequestHandler(nullptr);
350 res.isAliveHelper = [this]() -> bool { return isAlive(); };
Ed Tanous7045c8d2017-04-03 10:04:37 -0700351
Ed Tanous596b2032021-09-13 10:32:22 -0700352 thisReq.ioService = static_cast<decltype(thisReq.ioService)>(
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700353 &adaptor.get_executor().context());
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200354
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700355 if (res.completed)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700356 {
357 completeRequest();
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700358 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700359 }
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700360 res.setCompleteRequestHandler([self(shared_from_this())] {
361 boost::asio::post(self->adaptor.get_executor(),
362 [self] { self->completeRequest(); });
363 });
364
Ed Tanous596b2032021-09-13 10:32:22 -0700365 if (thisReq.isUpgrade() &&
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700366 boost::iequals(
Ed Tanous596b2032021-09-13 10:32:22 -0700367 thisReq.getHeaderValue(boost::beast::http::field::upgrade),
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700368 "websocket"))
369 {
Ed Tanous596b2032021-09-13 10:32:22 -0700370 handler->handleUpgrade(thisReq, res, std::move(adaptor));
Ed Tanous6c7f01d2021-08-25 13:42:35 -0700371 // delete lambda with self shared_ptr
372 // to enable connection destruction
373 res.setCompleteRequestHandler(nullptr);
374 return;
375 }
376 auto asyncResp = std::make_shared<bmcweb::AsyncResp>(res);
Ed Tanous596b2032021-09-13 10:32:22 -0700377 handler->handle(thisReq, asyncResp);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700378 }
Ed Tanouse0d918b2018-03-27 17:41:04 -0700379
Ed Tanouse278c182019-03-13 16:23:37 -0700380 bool isAlive()
381 {
Ed Tanouse278c182019-03-13 16:23:37 -0700382 if constexpr (std::is_same_v<Adaptor,
383 boost::beast::ssl_stream<
384 boost::asio::ip::tcp::socket>>)
385 {
386 return adaptor.next_layer().is_open();
387 }
388 else
389 {
390 return adaptor.is_open();
391 }
392 }
393 void close()
394 {
Ed Tanouse278c182019-03-13 16:23:37 -0700395 if constexpr (std::is_same_v<Adaptor,
396 boost::beast::ssl_stream<
397 boost::asio::ip::tcp::socket>>)
398 {
399 adaptor.next_layer().close();
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200400#ifdef BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700401 if (userSession != nullptr)
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200402 {
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700403 BMCWEB_LOG_DEBUG
404 << this
405 << " Removing TLS session: " << userSession->uniqueId;
406 persistent_data::SessionStore::getInstance().removeSession(
407 userSession);
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200408 }
409#endif // BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION
Ed Tanouse278c182019-03-13 16:23:37 -0700410 }
411 else
412 {
413 adaptor.close();
414 }
415 }
416
Ed Tanous1abe55e2018-09-05 08:30:59 -0700417 void completeRequest()
418 {
419 BMCWEB_LOG_INFO << "Response: " << this << ' ' << req->url << ' '
420 << res.resultInt() << " keepalive=" << req->keepAlive();
Ed Tanous7045c8d2017-04-03 10:04:37 -0700421
Ed Tanous0260d9d2021-02-07 19:31:07 +0000422 addSecurityHeaders(*req, res);
Ed Tanous52cc1122020-07-18 13:51:21 -0700423
Ed Tanouscf099fa2021-08-25 12:37:31 -0700424 crow::authorization::cleanupTempSession(*req);
Ed Tanous7045c8d2017-04-03 10:04:37 -0700425
Ed Tanouse278c182019-03-13 16:23:37 -0700426 if (!isAlive())
Ed Tanous1abe55e2018-09-05 08:30:59 -0700427 {
428 // BMCWEB_LOG_DEBUG << this << " delete (socket is closed) " <<
429 // isReading
430 // << ' ' << isWriting;
431 // delete this;
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000432
433 // delete lambda with self shared_ptr
434 // to enable connection destruction
John Edward Broadbent4147b8a2021-07-19 16:52:24 -0700435 res.setCompleteRequestHandler(nullptr);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700436 return;
437 }
438 if (res.body().empty() && !res.jsonValue.empty())
439 {
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700440 if (http_helpers::requestPrefersHtml(req->getHeaderValue("Accept")))
Ed Tanous1abe55e2018-09-05 08:30:59 -0700441 {
442 prettyPrintJson(res);
443 }
444 else
445 {
446 res.jsonMode();
Ed Tanous71f52d92021-02-19 08:51:17 -0800447 res.body() = res.jsonValue.dump(
448 2, ' ', true, nlohmann::json::error_handler_t::replace);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700449 }
450 }
Ed Tanous7045c8d2017-04-03 10:04:37 -0700451
Ed Tanous1abe55e2018-09-05 08:30:59 -0700452 if (res.resultInt() >= 400 && res.body().empty())
453 {
454 res.body() = std::string(res.reason());
455 }
Ed Tanous6295bec2019-09-03 10:11:01 -0700456
457 if (res.result() == boost::beast::http::status::no_content)
458 {
459 // Boost beast throws if content is provided on a no-content
460 // response. Ideally, this would never happen, but in the case that
461 // it does, we don't want to throw.
462 BMCWEB_LOG_CRITICAL
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100463 << this << " Response content provided but code was no-content";
Ed Tanous6295bec2019-09-03 10:11:01 -0700464 res.body().clear();
465 }
466
Ed Tanous1abe55e2018-09-05 08:30:59 -0700467 res.addHeader(boost::beast::http::field::date, getCachedDateStr());
468
469 res.keepAlive(req->keepAlive());
470
471 doWrite();
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000472
473 // delete lambda with self shared_ptr
474 // to enable connection destruction
John Edward Broadbent4147b8a2021-07-19 16:52:24 -0700475 res.setCompleteRequestHandler(nullptr);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700476 }
477
Sunitha Harishc0ea7ae2020-10-30 02:37:30 -0500478 void readClientIp()
479 {
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700480 boost::asio::ip::address ip;
481 boost::system::error_code ec = getClientIp(ip);
482 if (ec)
483 {
484 return;
485 }
486 req->ipAddress = ip;
487 }
488
489 boost::system::error_code getClientIp(boost::asio::ip::address& ip)
490 {
Sunitha Harishc0ea7ae2020-10-30 02:37:30 -0500491 boost::system::error_code ec;
492 BMCWEB_LOG_DEBUG << "Fetch the client IP address";
493 boost::asio::ip::tcp::endpoint endpoint =
494 boost::beast::get_lowest_layer(adaptor).remote_endpoint(ec);
495
496 if (ec)
497 {
498 // If remote endpoint fails keep going. "ClientOriginIPAddress"
499 // will be empty.
500 BMCWEB_LOG_ERROR << "Failed to get the client's IP Address. ec : "
501 << ec;
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700502 return ec;
Sunitha Harishc0ea7ae2020-10-30 02:37:30 -0500503 }
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700504 ip = endpoint.address();
505 return ec;
Sunitha Harishc0ea7ae2020-10-30 02:37:30 -0500506 }
507
Ed Tanous1abe55e2018-09-05 08:30:59 -0700508 private:
509 void doReadHeaders()
510 {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700511 BMCWEB_LOG_DEBUG << this << " doReadHeaders";
512
513 // Clean up any previous Connection.
514 boost::beast::http::async_read_header(
Ed Tanousceac6f72018-12-02 11:58:47 -0800515 adaptor, buffer, *parser,
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000516 [this,
517 self(shared_from_this())](const boost::system::error_code& ec,
Ed Tanous81ce6092020-12-17 16:54:55 +0000518 std::size_t bytesTransferred) {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700519 BMCWEB_LOG_ERROR << this << " async_read_header "
Ed Tanous81ce6092020-12-17 16:54:55 +0000520 << bytesTransferred << " Bytes";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700521 bool errorWhileReading = false;
522 if (ec)
523 {
524 errorWhileReading = true;
525 BMCWEB_LOG_ERROR
526 << this << " Error while reading: " << ec.message();
527 }
528 else
529 {
530 // if the adaptor isn't open anymore, and wasn't handed to a
531 // websocket, treat as an error
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700532 if (!isAlive() &&
533 !boost::beast::websocket::is_upgrade(parser->get()))
Ed Tanous1abe55e2018-09-05 08:30:59 -0700534 {
535 errorWhileReading = true;
536 }
537 }
538
James Feist3909dc82020-04-03 10:58:55 -0700539 cancelDeadlineTimer();
540
Ed Tanous1abe55e2018-09-05 08:30:59 -0700541 if (errorWhileReading)
542 {
Ed Tanouse278c182019-03-13 16:23:37 -0700543 close();
Ed Tanous1abe55e2018-09-05 08:30:59 -0700544 BMCWEB_LOG_DEBUG << this << " from read(1)";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700545 return;
546 }
547
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700548 boost::beast::http::verb method = parser->get().method();
549 readClientIp();
Ed Tanousdc7a7932020-08-17 15:04:58 -0700550 try
551 {
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700552 req->urlView =
553 boost::urls::url_view(parser->get().target());
Ed Tanousdc7a7932020-08-17 15:04:58 -0700554 req->url = req->urlView.encoded_path();
555 }
Ed Tanous92ccb882020-08-18 10:36:33 -0700556 catch (std::exception& p)
Ed Tanousdc7a7932020-08-17 15:04:58 -0700557 {
Ed Tanous3bcc0152020-08-25 07:47:29 -0700558 BMCWEB_LOG_ERROR << p.what();
Ed Tanousdc7a7932020-08-17 15:04:58 -0700559 }
Ed Tanous92ccb882020-08-18 10:36:33 -0700560
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700561 boost::asio::ip::address ip;
562 if (getClientIp(ip))
563 {
564 BMCWEB_LOG_DEBUG << "Unable to get client IP";
565 }
Ed Tanous9a69d5a2021-09-13 10:23:51 -0700566 sessionIsFromTransport = false;
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700567 userSession = crow::authorization::authenticate(
568 req->url, ip, res, method, parser->get().base(),
569 userSession);
570 bool loggedIn = userSession != nullptr;
James Feist3909dc82020-04-03 10:58:55 -0700571 if (loggedIn)
572 {
573 startDeadline(loggedInAttempts);
574 BMCWEB_LOG_DEBUG << "Starting slow deadline";
575
James Feist5a7e8772020-07-22 09:08:38 -0700576 req->urlParams = req->urlView.params();
577
578#ifdef BMCWEB_ENABLE_DEBUG
579 std::string paramList = "";
580 for (const auto param : req->urlParams)
581 {
582 paramList += param->key() + " " + param->value() + " ";
583 }
584 BMCWEB_LOG_DEBUG << "QueryParams: " << paramList;
585#endif
James Feist3909dc82020-04-03 10:58:55 -0700586 }
587 else
588 {
589 const boost::optional<uint64_t> contentLength =
590 parser->content_length();
591 if (contentLength &&
592 *contentLength > loggedOutPostBodyLimit)
593 {
594 BMCWEB_LOG_DEBUG << "Content length greater than limit "
595 << *contentLength;
596 close();
597 return;
598 }
599
600 startDeadline(loggedOutAttempts);
601 BMCWEB_LOG_DEBUG << "Starting quick deadline";
602 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700603 doRead();
604 });
605 }
606
607 void doRead()
608 {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700609 BMCWEB_LOG_DEBUG << this << " doRead";
610
611 boost::beast::http::async_read(
Ed Tanousceac6f72018-12-02 11:58:47 -0800612 adaptor, buffer, *parser,
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000613 [this,
614 self(shared_from_this())](const boost::system::error_code& ec,
Ed Tanous81ce6092020-12-17 16:54:55 +0000615 std::size_t bytesTransferred) {
616 BMCWEB_LOG_DEBUG << this << " async_read " << bytesTransferred
Ed Tanous1abe55e2018-09-05 08:30:59 -0700617 << " Bytes";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700618
619 bool errorWhileReading = false;
620 if (ec)
621 {
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100622 BMCWEB_LOG_ERROR
623 << this << " Error while reading: " << ec.message();
Ed Tanous1abe55e2018-09-05 08:30:59 -0700624 errorWhileReading = true;
625 }
626 else
627 {
James Feist3909dc82020-04-03 10:58:55 -0700628 if (isAlive())
629 {
630 cancelDeadlineTimer();
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700631 if (userSession != nullptr)
James Feist3909dc82020-04-03 10:58:55 -0700632 {
633 startDeadline(loggedInAttempts);
634 }
635 else
636 {
637 startDeadline(loggedOutAttempts);
638 }
639 }
640 else
Ed Tanous1abe55e2018-09-05 08:30:59 -0700641 {
642 errorWhileReading = true;
643 }
644 }
645 if (errorWhileReading)
646 {
647 cancelDeadlineTimer();
Ed Tanouse278c182019-03-13 16:23:37 -0700648 close();
Ed Tanous1abe55e2018-09-05 08:30:59 -0700649 BMCWEB_LOG_DEBUG << this << " from read(1)";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700650 return;
651 }
652 handle();
653 });
654 }
655
656 void doWrite()
657 {
James Feist3909dc82020-04-03 10:58:55 -0700658 bool loggedIn = req && req->session;
659 if (loggedIn)
660 {
661 startDeadline(loggedInAttempts);
662 }
663 else
664 {
665 startDeadline(loggedOutAttempts);
666 }
Zbigniew Kurzynski2658d982019-11-19 18:01:08 +0100667 BMCWEB_LOG_DEBUG << this << " doWrite";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700668 res.preparePayload();
669 serializer.emplace(*res.stringResponse);
670 boost::beast::http::async_write(
Ed Tanousceac6f72018-12-02 11:58:47 -0800671 adaptor, *serializer,
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000672 [this,
673 self(shared_from_this())](const boost::system::error_code& ec,
Ed Tanous81ce6092020-12-17 16:54:55 +0000674 std::size_t bytesTransferred) {
675 BMCWEB_LOG_DEBUG << this << " async_write " << bytesTransferred
Ed Tanous1abe55e2018-09-05 08:30:59 -0700676 << " bytes";
677
James Feist54d8bb12020-07-20 13:28:59 -0700678 cancelDeadlineTimer();
679
Ed Tanous1abe55e2018-09-05 08:30:59 -0700680 if (ec)
681 {
682 BMCWEB_LOG_DEBUG << this << " from write(2)";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700683 return;
684 }
Ed Tanousceac6f72018-12-02 11:58:47 -0800685 if (!res.keepAlive())
Ed Tanous1abe55e2018-09-05 08:30:59 -0700686 {
Ed Tanouse278c182019-03-13 16:23:37 -0700687 close();
Ed Tanous1abe55e2018-09-05 08:30:59 -0700688 BMCWEB_LOG_DEBUG << this << " from write(1)";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700689 return;
690 }
691
692 serializer.reset();
693 BMCWEB_LOG_DEBUG << this << " Clearing response";
694 res.clear();
695 parser.emplace(std::piecewise_construct, std::make_tuple());
Gunnar Millsded2a1e2020-07-24 09:46:33 -0500696 parser->body_limit(httpReqBodyLimit); // reset body limit for
697 // newly created parser
Ed Tanous1abe55e2018-09-05 08:30:59 -0700698 buffer.consume(buffer.size());
699
Ed Tanous9a69d5a2021-09-13 10:23:51 -0700700 // If the session was built from the transport, we don't need to
701 // clear it. All other sessions are generated per request.
702 if (!sessionIsFromTransport)
703 {
704 userSession = nullptr;
705 }
706
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700707 req.emplace(parser->release());
Ed Tanous1abe55e2018-09-05 08:30:59 -0700708 doReadHeaders();
709 });
710 }
711
Ed Tanous1abe55e2018-09-05 08:30:59 -0700712 void cancelDeadlineTimer()
713 {
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000714 if (timerCancelKey)
715 {
716 BMCWEB_LOG_DEBUG << this << " timer cancelled: " << &timerQueue
717 << ' ' << *timerCancelKey;
718 timerQueue.cancel(*timerCancelKey);
719 timerCancelKey.reset();
720 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700721 }
722
James Feist3909dc82020-04-03 10:58:55 -0700723 void startDeadline(size_t timerIterations)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700724 {
725 cancelDeadlineTimer();
726
James Feist3909dc82020-04-03 10:58:55 -0700727 if (timerIterations)
728 {
729 timerIterations--;
730 }
Jan Sowinski2b5e08e2020-01-09 17:16:02 +0100731
James Feist3909dc82020-04-03 10:58:55 -0700732 timerCancelKey =
James Feistbe5dfca2020-07-22 08:54:59 -0700733 timerQueue.add([self(shared_from_this()), timerIterations,
734 readCount{parser->get().body().size()}] {
James Feist3909dc82020-04-03 10:58:55 -0700735 // Mark timer as not active to avoid canceling it during
736 // Connection destructor which leads to double free issue
737 self->timerCancelKey.reset();
738 if (!self->isAlive())
739 {
740 return;
741 }
Jan Sowinski2b5e08e2020-01-09 17:16:02 +0100742
James Feistbe5dfca2020-07-22 08:54:59 -0700743 bool loggedIn = self->req && self->req->session;
744 // allow slow uploads for logged in users
745 if (loggedIn && self->parser->get().body().size() > readCount)
746 {
747 BMCWEB_LOG_DEBUG << self.get()
748 << " restart timer - read in progress";
749 self->startDeadline(timerIterations);
750 return;
751 }
752
James Feist3909dc82020-04-03 10:58:55 -0700753 // Threshold can be used to drop slow connections
754 // to protect against slow-rate DoS attack
755 if (timerIterations)
756 {
James Feistbe5dfca2020-07-22 08:54:59 -0700757 BMCWEB_LOG_DEBUG << self.get() << " restart timer";
James Feist3909dc82020-04-03 10:58:55 -0700758 self->startDeadline(timerIterations);
759 return;
760 }
761
762 self->close();
763 });
James Feistcb6cb492020-04-03 13:36:17 -0700764
765 if (!timerCancelKey)
766 {
767 close();
768 return;
769 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700770 BMCWEB_LOG_DEBUG << this << " timer added: " << &timerQueue << ' '
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000771 << *timerCancelKey;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700772 }
773
774 private:
775 Adaptor adaptor;
776 Handler* handler;
Ed Tanousa24526d2018-12-10 15:17:59 -0800777 // Making this a std::optional allows it to be efficiently destroyed and
Ed Tanous1abe55e2018-09-05 08:30:59 -0700778 // re-created on Connection reset
Ed Tanousa24526d2018-12-10 15:17:59 -0800779 std::optional<
Ed Tanous1abe55e2018-09-05 08:30:59 -0700780 boost::beast::http::request_parser<boost::beast::http::string_body>>
781 parser;
782
Ed Tanous3112a142018-11-29 15:45:10 -0800783 boost::beast::flat_static_buffer<8192> buffer;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700784
Ed Tanousa24526d2018-12-10 15:17:59 -0800785 std::optional<boost::beast::http::response_serializer<
Ed Tanous1abe55e2018-09-05 08:30:59 -0700786 boost::beast::http::string_body>>
787 serializer;
788
Ed Tanousa24526d2018-12-10 15:17:59 -0800789 std::optional<crow::Request> req;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700790 crow::Response res;
Ed Tanous52cc1122020-07-18 13:51:21 -0700791
Ed Tanous9a69d5a2021-09-13 10:23:51 -0700792 bool sessionIsFromTransport = false;
John Edward Broadbent59b98b22021-07-13 15:36:32 -0700793 std::shared_ptr<persistent_data::UserSession> userSession;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700794
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000795 std::optional<size_t> timerCancelKey;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700796
Ed Tanous1abe55e2018-09-05 08:30:59 -0700797 std::function<std::string()>& getCachedDateStr;
798 detail::TimerQueue& timerQueue;
Jan Sowinskiee52ae12020-01-09 16:28:32 +0000799
800 using std::enable_shared_from_this<
Ed Tanous52cc1122020-07-18 13:51:21 -0700801 Connection<Adaptor, Handler>>::shared_from_this;
Ed Tanous3112a142018-11-29 15:45:10 -0800802};
Ed Tanous1abe55e2018-09-05 08:30:59 -0700803} // namespace crow