123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116 |
- #include "http.h"
- #include "abortable_http_response.h"
- #include "core.h"
- #include "helpers.h"
- #include <yt/cpp/mapreduce/common/helpers.h>
- #include <yt/cpp/mapreduce/common/retry_lib.h>
- #include <yt/cpp/mapreduce/common/wait_proxy.h>
- #include <yt/cpp/mapreduce/interface/config.h>
- #include <yt/cpp/mapreduce/interface/errors.h>
- #include <yt/cpp/mapreduce/interface/error_codes.h>
- #include <yt/cpp/mapreduce/interface/logging/yt_log.h>
- #include <yt/yt/core/http/http.h>
- #include <library/cpp/json/json_writer.h>
- #include <library/cpp/string_utils/base64/base64.h>
- #include <library/cpp/string_utils/quote/quote.h>
- #include <util/generic/singleton.h>
- #include <util/generic/algorithm.h>
- #include <util/stream/mem.h>
- #include <util/string/builder.h>
- #include <util/string/cast.h>
- #include <util/string/escape.h>
- #include <util/string/printf.h>
- #include <util/system/byteorder.h>
- #include <util/system/getpid.h>
- #include <exception>
- namespace NYT {
- ////////////////////////////////////////////////////////////////////////////////
- std::exception_ptr WrapSystemError(
- const TRequestContext& context,
- const std::exception& ex)
- {
- if (auto errorResponse = dynamic_cast<const TErrorResponse*>(&ex); errorResponse != nullptr) {
- return std::make_exception_ptr(errorResponse);
- }
- auto message = NYT::Format("Request %qv to %qv failed", context.RequestId, context.HostName + context.Method);
- TYtError outer(1, message, {TYtError(NClusterErrorCodes::Generic, ex.what())}, {
- {"request_id", context.RequestId},
- {"host", context.HostName},
- {"method", context.Method},
- });
- TTransportError errorResponse(std::move(outer));
- return std::make_exception_ptr(errorResponse);
- }
- ////////////////////////////////////////////////////////////////////////////////
- class THttpRequest::TRequestStream
- : public IOutputStream
- {
- public:
- TRequestStream(THttpRequest* httpRequest, const TSocket& s)
- : HttpRequest_(httpRequest)
- , SocketOutput_(s)
- , HttpOutput_(static_cast<IOutputStream*>(&SocketOutput_))
- {
- HttpOutput_.EnableKeepAlive(true);
- }
- private:
- void DoWrite(const void* buf, size_t len) override
- {
- WrapWriteFunc([&] {
- HttpOutput_.Write(buf, len);
- });
- }
- void DoWriteV(const TPart* parts, size_t count) override
- {
- WrapWriteFunc([&] {
- HttpOutput_.Write(parts, count);
- });
- }
- void DoWriteC(char ch) override
- {
- WrapWriteFunc([&] {
- HttpOutput_.Write(ch);
- });
- }
- void DoFlush() override
- {
- WrapWriteFunc([&] {
- HttpOutput_.Flush();
- });
- }
- void DoFinish() override
- {
- WrapWriteFunc([&] {
- HttpOutput_.Finish();
- });
- }
- void WrapWriteFunc(std::function<void()> func)
- {
- CheckErrorState();
- try {
- func();
- } catch (const std::exception& ex) {
- HandleWriteException(ex);
- }
- }
- // In many cases http proxy stops reading request and resets connection
- // if error has happend. This function tries to read error response
- // in such cases.
- void HandleWriteException(const std::exception& ex) {
- Y_ABORT_UNLESS(WriteError_ == nullptr);
- WriteError_ = WrapSystemError(HttpRequest_->Context_, ex);
- Y_ABORT_UNLESS(WriteError_ != nullptr);
- try {
- HttpRequest_->GetResponseStream();
- } catch (const TErrorResponse &) {
- throw;
- } catch (...) {
- }
- std::rethrow_exception(WriteError_);
- }
- void CheckErrorState()
- {
- if (WriteError_) {
- std::rethrow_exception(WriteError_);
- }
- }
- private:
- THttpRequest* const HttpRequest_;
- TSocketOutput SocketOutput_;
- THttpOutput HttpOutput_;
- std::exception_ptr WriteError_;
- };
- ////////////////////////////////////////////////////////////////////////////////
- THttpHeader::THttpHeader(const TString& method, const TString& command, bool isApi)
- : Method_(method)
- , Command_(command)
- , IsApi_(isApi)
- { }
- void THttpHeader::AddParameter(const TString& key, TNode value, bool overwrite)
- {
- auto it = Parameters_.find(key);
- if (it == Parameters_.end()) {
- Parameters_.emplace(key, std::move(value));
- } else {
- if (overwrite) {
- it->second = std::move(value);
- } else {
- ythrow yexception() << "Duplicate key: " << key;
- }
- }
- }
- void THttpHeader::MergeParameters(const TNode& newParameters, bool overwrite)
- {
- for (const auto& p : newParameters.AsMap()) {
- AddParameter(p.first, p.second, overwrite);
- }
- }
- void THttpHeader::RemoveParameter(const TString& key)
- {
- Parameters_.erase(key);
- }
- TNode THttpHeader::GetParameters() const
- {
- return Parameters_;
- }
- void THttpHeader::AddTransactionId(const TTransactionId& transactionId, bool overwrite)
- {
- if (transactionId) {
- AddParameter("transaction_id", GetGuidAsString(transactionId), overwrite);
- } else {
- RemoveParameter("transaction_id");
- }
- }
- void THttpHeader::AddPath(const TString& path, bool overwrite)
- {
- AddParameter("path", path, overwrite);
- }
- void THttpHeader::AddOperationId(const TOperationId& operationId, bool overwrite)
- {
- AddParameter("operation_id", GetGuidAsString(operationId), overwrite);
- }
- TMutationId THttpHeader::AddMutationId()
- {
- TGUID guid;
- // Some users use `fork()' with yt wrapper
- // (actually they use python + multiprocessing)
- // and CreateGuid is not resistant to `fork()', so spice it a little bit.
- //
- // Check IGNIETFERRO-610
- CreateGuid(&guid);
- guid.dw[2] = GetPID() ^ MicroSeconds();
- AddParameter("mutation_id", GetGuidAsString(guid), true);
- return guid;
- }
- bool THttpHeader::HasMutationId() const
- {
- return Parameters_.contains("mutation_id");
- }
- void THttpHeader::SetMutationId(TMutationId mutationId)
- {
- AddParameter("mutation_id", GetGuidAsString(mutationId), /*overwrite*/ true);
- }
- void THttpHeader::SetToken(const TString& token)
- {
- Token_ = token;
- }
- void THttpHeader::SetProxyAddress(const TString& proxyAddress)
- {
- ProxyAddress_ = proxyAddress;
- }
- void THttpHeader::SetHostPort(const TString& hostPort)
- {
- HostPort_ = hostPort;
- }
- void THttpHeader::SetImpersonationUser(const TString& impersonationUser)
- {
- ImpersonationUser_ = impersonationUser;
- }
- void THttpHeader::SetServiceTicket(const TString& ticket)
- {
- ServiceTicket_ = ticket;
- }
- void THttpHeader::SetInputFormat(const TMaybe<TFormat>& format)
- {
- InputFormat_ = format;
- }
- void THttpHeader::SetOutputFormat(const TMaybe<TFormat>& format)
- {
- OutputFormat_ = format;
- }
- TMaybe<TFormat> THttpHeader::GetOutputFormat() const
- {
- return OutputFormat_;
- }
- void THttpHeader::SetRequestCompression(const TString& compression)
- {
- RequestCompression_ = compression;
- }
- void THttpHeader::SetResponseCompression(const TString& compression)
- {
- ResponseCompression_ = compression;
- }
- TString THttpHeader::GetCommand() const
- {
- return Command_;
- }
- TString THttpHeader::GetUrl(bool needProxy) const
- {
- TStringStream url;
- if (needProxy && !ProxyAddress_.empty()) {
- url << ProxyAddress_ << "/";
- return url.Str();
- }
- if (!ProxyAddress_.empty()) {
- url << HostPort_;
- }
- if (IsApi_) {
- url << "/api/" << TConfig::Get()->ApiVersion << "/" << Command_;
- } else {
- url << "/" << Command_;
- }
- return url.Str();
- }
- bool THttpHeader::ShouldAcceptFraming() const
- {
- return TConfig::Get()->CommandsWithFraming.contains(Command_);
- }
- TString THttpHeader::GetHeaderAsString(const TString& hostName, const TString& requestId, bool includeParameters) const
- {
- TStringStream result;
- result << Method_ << " " << GetUrl() << " HTTP/1.1\r\n";
- GetHeader(HostPort_.empty() ? hostName : HostPort_, requestId, includeParameters).Get()->WriteTo(&result);
- if (ShouldAcceptFraming()) {
- result << "X-YT-Accept-Framing: 1\r\n";
- }
- result << "\r\n";
- return result.Str();
- }
- NHttp::THeadersPtrWrapper THttpHeader::GetHeader(const TString& hostName, const TString& requestId, bool includeParameters) const
- {
- auto headers = New<NHttp::THeaders>();
- headers->Add("Host", hostName);
- headers->Add("User-Agent", TProcessState::Get()->ClientVersion);
- if (!Token_.empty()) {
- headers->Add("Authorization", "OAuth " + Token_);
- }
- if (!ServiceTicket_.empty()) {
- headers->Add("X-Ya-Service-Ticket", ServiceTicket_);
- }
- if (!ImpersonationUser_.empty()) {
- headers->Add("X-Yt-User-Name", ImpersonationUser_);
- }
- if (Method_ == "PUT" || Method_ == "POST") {
- headers->Add("Transfer-Encoding", "chunked");
- }
- headers->Add("X-YT-Correlation-Id", requestId);
- headers->Add("X-YT-Header-Format", "<format=text>yson");
- headers->Add("Content-Encoding", RequestCompression_);
- headers->Add("Accept-Encoding", ResponseCompression_);
- auto printYTHeader = [&headers] (const char* headerName, const TString& value) {
- static const size_t maxHttpHeaderSize = 64 << 10;
- if (!value) {
- return;
- }
- if (value.size() <= maxHttpHeaderSize) {
- headers->Add(headerName, value);
- return;
- }
- TString encoded;
- Base64Encode(value, encoded);
- auto ptr = encoded.data();
- auto finish = encoded.data() + encoded.size();
- size_t index = 0;
- do {
- auto end = Min(ptr + maxHttpHeaderSize, finish);
- headers->Add(Format("%v%v", headerName, index++), TString(ptr, end));
- ptr = end;
- } while (ptr != finish);
- };
- if (InputFormat_) {
- printYTHeader("X-YT-Input-Format", NodeToYsonString(InputFormat_->Config));
- }
- if (OutputFormat_) {
- printYTHeader("X-YT-Output-Format", NodeToYsonString(OutputFormat_->Config));
- }
- if (includeParameters) {
- printYTHeader("X-YT-Parameters", NodeToYsonString(Parameters_));
- }
- return NHttp::THeadersPtrWrapper(std::move(headers));
- }
- const TString& THttpHeader::GetMethod() const
- {
- return Method_;
- }
- ////////////////////////////////////////////////////////////////////////////////
- TAddressCache* TAddressCache::Get()
- {
- return Singleton<TAddressCache>();
- }
- bool ContainsAddressOfRequiredVersion(const TAddressCache::TAddressPtr& address)
- {
- if (!TConfig::Get()->ForceIpV4 && !TConfig::Get()->ForceIpV6) {
- return true;
- }
- for (auto i = address->Begin(); i != address->End(); ++i) {
- const auto& addressInfo = *i;
- if (TConfig::Get()->ForceIpV4 && addressInfo.ai_family == AF_INET) {
- return true;
- }
- if (TConfig::Get()->ForceIpV6 && addressInfo.ai_family == AF_INET6) {
- return true;
- }
- }
- return false;
- }
- TAddressCache::TAddressPtr TAddressCache::Resolve(const TString& hostName)
- {
- auto address = FindAddress(hostName);
- if (address) {
- return address;
- }
- TString host(hostName);
- ui16 port = 80;
- auto colon = hostName.find(':');
- if (colon != TString::npos) {
- port = FromString<ui16>(hostName.substr(colon + 1));
- host = hostName.substr(0, colon);
- }
- auto retryPolicy = CreateDefaultRequestRetryPolicy(TConfig::Get());
- auto error = yexception() << "can not resolve address of required version for host " << hostName;
- while (true) {
- address = new TNetworkAddress(host, port);
- if (ContainsAddressOfRequiredVersion(address)) {
- break;
- }
- retryPolicy->NotifyNewAttempt();
- YT_LOG_DEBUG("Failed to resolve address of required version for host %v, retrying: %v",
- hostName,
- retryPolicy->GetAttemptDescription());
- if (auto backoffDuration = retryPolicy->OnGenericError(error)) {
- NDetail::TWaitProxy::Get()->Sleep(*backoffDuration);
- } else {
- ythrow error;
- }
- }
- AddAddress(hostName, address);
- return address;
- }
- TAddressCache::TAddressPtr TAddressCache::FindAddress(const TString& hostName) const
- {
- TCacheEntry entry;
- {
- TReadGuard guard(Lock_);
- auto it = Cache_.find(hostName);
- if (it == Cache_.end()) {
- return nullptr;
- }
- entry = it->second;
- }
- if (TInstant::Now() > entry.ExpirationTime) {
- YT_LOG_DEBUG("Address resolution cache entry for host %v is expired, will retry resolution",
- hostName);
- return nullptr;
- }
- if (!ContainsAddressOfRequiredVersion(entry.Address)) {
- YT_LOG_DEBUG("Address of required version not found for host %v, will retry resolution",
- hostName);
- return nullptr;
- }
- return entry.Address;
- }
- void TAddressCache::AddAddress(TString hostName, TAddressPtr address)
- {
- auto entry = TCacheEntry{
- .Address = std::move(address),
- .ExpirationTime = TInstant::Now() + TConfig::Get()->AddressCacheExpirationTimeout,
- };
- {
- TWriteGuard guard(Lock_);
- Cache_.emplace(std::move(hostName), std::move(entry));
- }
- }
- ////////////////////////////////////////////////////////////////////////////////
- TConnectionPool* TConnectionPool::Get()
- {
- return Singleton<TConnectionPool>();
- }
- TConnectionPtr TConnectionPool::Connect(
- const TString& hostName,
- TDuration socketTimeout)
- {
- Refresh();
- if (socketTimeout == TDuration::Zero()) {
- socketTimeout = TConfig::Get()->SocketTimeout;
- }
- {
- auto guard = Guard(Lock_);
- auto now = TInstant::Now();
- auto range = Connections_.equal_range(hostName);
- for (auto it = range.first; it != range.second; ++it) {
- auto& connection = it->second;
- if (connection->DeadLine < now) {
- continue;
- }
- if (!AtomicCas(&connection->Busy, 1, 0)) {
- continue;
- }
- connection->DeadLine = now + socketTimeout;
- connection->Socket->SetSocketTimeout(socketTimeout.Seconds());
- return connection;
- }
- }
- TConnectionPtr connection(new TConnection);
- auto networkAddress = TAddressCache::Get()->Resolve(hostName);
- TSocketHolder socket(DoConnect(networkAddress));
- SetNonBlock(socket, false);
- connection->Socket = std::make_unique<TSocket>(socket.Release());
- connection->DeadLine = TInstant::Now() + socketTimeout;
- connection->Socket->SetSocketTimeout(socketTimeout.Seconds());
- {
- auto guard = Guard(Lock_);
- static ui32 connectionId = 0;
- connection->Id = ++connectionId;
- Connections_.insert({hostName, connection});
- }
- YT_LOG_DEBUG("New connection to %v #%v opened",
- hostName,
- connection->Id);
- return connection;
- }
- void TConnectionPool::Release(TConnectionPtr connection)
- {
- auto socketTimeout = TConfig::Get()->SocketTimeout;
- auto newDeadline = TInstant::Now() + socketTimeout;
- {
- auto guard = Guard(Lock_);
- connection->DeadLine = newDeadline;
- }
- connection->Socket->SetSocketTimeout(socketTimeout.Seconds());
- AtomicSet(connection->Busy, 0);
- Refresh();
- }
- void TConnectionPool::Invalidate(
- const TString& hostName,
- TConnectionPtr connection)
- {
- auto guard = Guard(Lock_);
- auto range = Connections_.equal_range(hostName);
- for (auto it = range.first; it != range.second; ++it) {
- if (it->second == connection) {
- YT_LOG_DEBUG("Closing connection #%v",
- connection->Id);
- Connections_.erase(it);
- return;
- }
- }
- }
- void TConnectionPool::Refresh()
- {
- auto guard = Guard(Lock_);
- // simple, since we don't expect too many connections
- using TItem = std::pair<TInstant, TConnectionMap::iterator>;
- std::vector<TItem> sortedConnections;
- for (auto it = Connections_.begin(); it != Connections_.end(); ++it) {
- sortedConnections.emplace_back(it->second->DeadLine, it);
- }
- std::sort(
- sortedConnections.begin(),
- sortedConnections.end(),
- [] (const TItem& a, const TItem& b) -> bool {
- return a.first < b.first;
- });
- auto removeCount = static_cast<int>(Connections_.size()) - TConfig::Get()->ConnectionPoolSize;
- const auto now = TInstant::Now();
- for (const auto& item : sortedConnections) {
- const auto& mapIterator = item.second;
- auto connection = mapIterator->second;
- if (AtomicGet(connection->Busy)) {
- continue;
- }
- if (removeCount > 0) {
- Connections_.erase(mapIterator);
- YT_LOG_DEBUG("Closing connection #%v (too many opened connections)",
- connection->Id);
- --removeCount;
- continue;
- }
- if (connection->DeadLine < now) {
- Connections_.erase(mapIterator);
- YT_LOG_DEBUG("Closing connection #%v (timeout)",
- connection->Id);
- }
- }
- }
- SOCKET TConnectionPool::DoConnect(TAddressCache::TAddressPtr address)
- {
- int lastError = 0;
- for (auto i = address->Begin(); i != address->End(); ++i) {
- struct addrinfo* info = &*i;
- if (TConfig::Get()->ForceIpV4 && info->ai_family != AF_INET) {
- continue;
- }
- if (TConfig::Get()->ForceIpV6 && info->ai_family != AF_INET6) {
- continue;
- }
- TSocketHolder socket(
- ::socket(info->ai_family, info->ai_socktype, info->ai_protocol));
- if (socket.Closed()) {
- lastError = LastSystemError();
- continue;
- }
- SetNonBlock(socket, true);
- if (TConfig::Get()->SocketPriority) {
- SetSocketPriority(socket, *TConfig::Get()->SocketPriority);
- }
- if (connect(socket, info->ai_addr, info->ai_addrlen) == 0)
- return socket.Release();
- int err = LastSystemError();
- if (err == EINPROGRESS || err == EAGAIN || err == EWOULDBLOCK) {
- struct pollfd p = {
- socket,
- POLLOUT,
- 0
- };
- const ssize_t n = PollD(&p, 1, TInstant::Now() + TConfig::Get()->ConnectTimeout);
- if (n < 0) {
- ythrow TSystemError(-(int)n) << "can not connect to " << info;
- }
- CheckedGetSockOpt(socket, SOL_SOCKET, SO_ERROR, err, "socket error");
- if (!err)
- return socket.Release();
- }
- lastError = err;
- continue;
- }
- ythrow TSystemError(lastError) << "can not connect to " << *address;
- }
- ////////////////////////////////////////////////////////////////////////////////
- class THttpResponse::THttpInputWrapped
- : public IInputStream
- {
- public:
- explicit THttpInputWrapped(TRequestContext context, IInputStream* input)
- : Context_(std::move(context))
- , HttpInput_(input)
- { }
- const THttpHeaders& Headers() const noexcept
- {
- return HttpInput_.Headers();
- }
- const TString& FirstLine() const noexcept
- {
- return HttpInput_.FirstLine();
- }
- bool IsKeepAlive() const noexcept
- {
- return HttpInput_.IsKeepAlive();
- }
- const TMaybe<THttpHeaders>& Trailers() const noexcept
- {
- return HttpInput_.Trailers();
- }
- private:
- size_t DoRead(void* buf, size_t len) override
- {
- try {
- return HttpInput_.Read(buf, len);
- } catch (const std::exception& ex) {
- auto wrapped = WrapSystemError(Context_, ex);
- std::rethrow_exception(wrapped);
- }
- }
- size_t DoSkip(size_t len) override
- {
- try {
- return HttpInput_.Skip(len);
- } catch (const std::exception& ex) {
- auto wrapped = WrapSystemError(Context_, ex);
- std::rethrow_exception(wrapped);
- }
- }
- private:
- const TRequestContext Context_;
- THttpInput HttpInput_;
- };
- THttpResponse::THttpResponse(
- TRequestContext context,
- IInputStream* socketStream)
- : HttpInput_(std::make_unique<THttpInputWrapped>(context, socketStream))
- , Unframe_(HttpInput_->Headers().HasHeader("X-YT-Framing"))
- , Context_(std::move(context))
- {
- if (auto proxyHeader = HttpInput_->Headers().FindHeader("X-YT-Proxy")) {
- Context_.HostName = proxyHeader->Value();
- }
- HttpCode_ = ParseHttpRetCode(HttpInput_->FirstLine());
- if (HttpCode_ == 200 || HttpCode_ == 202) {
- return;
- }
- ErrorResponse_ = TErrorResponse(HttpCode_, Context_.RequestId);
- auto logAndSetError = [&] (const TString& rawError) {
- YT_LOG_ERROR("RSP %v - HTTP %v - %v",
- Context_.RequestId,
- HttpCode_,
- rawError.data());
- ErrorResponse_->SetRawError(rawError);
- };
- switch (HttpCode_) {
- case 429:
- logAndSetError("request rate limit exceeded");
- break;
- case 500:
- logAndSetError(::TStringBuilder() << "internal error in proxy " << Context_.HostName);
- break;
- default: {
- TStringStream httpHeaders;
- httpHeaders << "HTTP headers (";
- for (const auto& header : HttpInput_->Headers()) {
- httpHeaders << header.Name() << ": " << header.Value() << "; ";
- }
- httpHeaders << ")";
- auto errorString = Sprintf("RSP %s - HTTP %d - %s",
- Context_.RequestId.data(),
- HttpCode_,
- httpHeaders.Str().data());
- YT_LOG_ERROR("%v",
- errorString.data());
- if (auto parsedResponse = ParseError(HttpInput_->Headers())) {
- ErrorResponse_ = parsedResponse.GetRef();
- } else {
- ErrorResponse_->SetRawError(
- errorString + " - X-YT-Error is missing in headers");
- }
- break;
- }
- }
- }
- THttpResponse::~THttpResponse()
- { }
- const THttpHeaders& THttpResponse::Headers() const
- {
- return HttpInput_->Headers();
- }
- void THttpResponse::CheckErrorResponse() const
- {
- if (ErrorResponse_) {
- throw *ErrorResponse_;
- }
- }
- bool THttpResponse::IsExhausted() const
- {
- return IsExhausted_;
- }
- int THttpResponse::GetHttpCode() const
- {
- return HttpCode_;
- }
- const TString& THttpResponse::GetHostName() const
- {
- return Context_.HostName;
- }
- bool THttpResponse::IsKeepAlive() const
- {
- return HttpInput_->IsKeepAlive();
- }
- TMaybe<TErrorResponse> THttpResponse::ParseError(const THttpHeaders& headers)
- {
- for (const auto& header : headers) {
- if (header.Name() == "X-YT-Error") {
- TErrorResponse errorResponse(HttpCode_, Context_.RequestId);
- errorResponse.ParseFromJsonError(header.Value());
- if (errorResponse.IsOk()) {
- return Nothing();
- }
- return errorResponse;
- }
- }
- return Nothing();
- }
- size_t THttpResponse::DoRead(void* buf, size_t len)
- {
- size_t read;
- if (Unframe_) {
- read = UnframeRead(buf, len);
- } else {
- read = HttpInput_->Read(buf, len);
- }
- if (read == 0 && len != 0) {
- // THttpInput MUST return defined (but may be empty)
- // trailers when it is exhausted.
- Y_ABORT_UNLESS(HttpInput_->Trailers().Defined(),
- "trailers MUST be defined for exhausted stream");
- CheckTrailers(HttpInput_->Trailers().GetRef());
- IsExhausted_ = true;
- }
- return read;
- }
- size_t THttpResponse::DoSkip(size_t len)
- {
- size_t skipped;
- if (Unframe_) {
- skipped = UnframeSkip(len);
- } else {
- skipped = HttpInput_->Skip(len);
- }
- if (skipped == 0 && len != 0) {
- // THttpInput MUST return defined (but may be empty)
- // trailers when it is exhausted.
- Y_ABORT_UNLESS(HttpInput_->Trailers().Defined(),
- "trailers MUST be defined for exhausted stream");
- CheckTrailers(HttpInput_->Trailers().GetRef());
- IsExhausted_ = true;
- }
- return skipped;
- }
- void THttpResponse::CheckTrailers(const THttpHeaders& trailers)
- {
- if (auto errorResponse = ParseError(trailers)) {
- errorResponse->SetIsFromTrailers(true);
- YT_LOG_ERROR("RSP %v - %v",
- Context_.RequestId,
- errorResponse.GetRef().what());
- ythrow errorResponse.GetRef();
- }
- }
- static ui32 ReadDataFrameSize(IInputStream* stream)
- {
- ui32 littleEndianSize;
- auto read = stream->Load(&littleEndianSize, sizeof(littleEndianSize));
- if (read < sizeof(littleEndianSize)) {
- ythrow yexception() << "Bad data frame header: " <<
- "expected " << sizeof(littleEndianSize) << " bytes, got " << read;
- }
- return LittleToHost(littleEndianSize);
- }
- bool THttpResponse::RefreshFrameIfNecessary()
- {
- while (RemainingFrameSize_ == 0) {
- ui8 frameTypeByte;
- auto read = HttpInput_->Read(&frameTypeByte, sizeof(frameTypeByte));
- if (read == 0) {
- return false;
- }
- auto frameType = static_cast<EFrameType>(frameTypeByte);
- switch (frameType) {
- case EFrameType::KeepAlive:
- break;
- case EFrameType::Data:
- RemainingFrameSize_ = ReadDataFrameSize(HttpInput_.get());
- break;
- default:
- ythrow yexception() << "Bad frame type " << static_cast<int>(frameTypeByte);
- }
- }
- return true;
- }
- size_t THttpResponse::UnframeRead(void* buf, size_t len)
- {
- if (!RefreshFrameIfNecessary()) {
- return 0;
- }
- auto read = HttpInput_->Read(buf, Min(len, RemainingFrameSize_));
- RemainingFrameSize_ -= read;
- return read;
- }
- size_t THttpResponse::UnframeSkip(size_t len)
- {
- if (!RefreshFrameIfNecessary()) {
- return 0;
- }
- auto skipped = HttpInput_->Skip(Min(len, RemainingFrameSize_));
- RemainingFrameSize_ -= skipped;
- return skipped;
- }
- ////////////////////////////////////////////////////////////////////////////////
- THttpRequest::THttpRequest(TString requestId, TString hostName, THttpHeader header, TDuration socketTimeout)
- : Context_(TRequestContext{
- .RequestId = std::move(requestId),
- .HostName = std::move(hostName),
- .Method = header.GetUrl(/*needProxy=*/ false)
- })
- , Header_(std::move(header))
- , Url_(Header_.GetUrl(true))
- , SocketTimeout_(socketTimeout)
- { }
- THttpRequest::~THttpRequest()
- {
- if (!Connection_) {
- return;
- }
- if (Input_ && Input_->IsKeepAlive() && Input_->IsExhausted()) {
- // We should return to the pool only connections where HTTP response was fully read.
- // Otherwise next reader might read our remaining data and misinterpret them (YT-6510).
- TConnectionPool::Get()->Release(Connection_);
- } else {
- TConnectionPool::Get()->Invalidate(Context_.HostName, Connection_);
- }
- }
- TString THttpRequest::GetRequestId() const
- {
- return Context_.RequestId;
- }
- IOutputStream* THttpRequest::StartRequestImpl(bool includeParameters)
- {
- YT_LOG_DEBUG("REQ %v - requesting connection to %v from connection pool",
- Context_.RequestId,
- Context_.HostName);
- StartTime_ = TInstant::Now();
- try {
- Connection_ = TConnectionPool::Get()->Connect(Context_.HostName, SocketTimeout_);
- } catch (const std::exception& ex) {
- auto wrapped = WrapSystemError(Context_, ex);
- std::rethrow_exception(wrapped);
- }
- YT_LOG_DEBUG("REQ %v - connection #%v",
- Context_.RequestId,
- Connection_->Id);
- auto strHeader = Header_.GetHeaderAsString(Context_.HostName, Context_.RequestId, includeParameters);
- LogRequest(Header_, Url_, includeParameters, Context_.RequestId, Context_.HostName);
- LoggedAttributes_ = GetLoggedAttributes(Header_, Url_, includeParameters, 128);
- auto outputFormat = Header_.GetOutputFormat();
- if (outputFormat && outputFormat->IsTextYson()) {
- LogResponse_ = true;
- }
- RequestStream_ = std::make_unique<TRequestStream>(this, *Connection_->Socket.get());
- RequestStream_->Write(strHeader.data(), strHeader.size());
- return RequestStream_.get();
- }
- IOutputStream* THttpRequest::StartRequest()
- {
- return StartRequestImpl(true);
- }
- void THttpRequest::FinishRequest()
- {
- RequestStream_->Flush();
- RequestStream_->Finish();
- }
- void THttpRequest::SmallRequest(TMaybe<TStringBuf> body)
- {
- if (!body && (Header_.GetMethod() == "PUT" || Header_.GetMethod() == "POST")) {
- const auto& parameters = Header_.GetParameters();
- auto parametersStr = NodeToYsonString(parameters);
- auto* output = StartRequestImpl(false);
- output->Write(parametersStr);
- FinishRequest();
- } else {
- auto* output = StartRequest();
- if (body) {
- output->Write(*body);
- }
- FinishRequest();
- }
- }
- THttpResponse* THttpRequest::GetResponseStream()
- {
- if (!Input_) {
- SocketInput_ = std::make_unique<TSocketInput>(*Connection_->Socket.get());
- if (TConfig::Get()->UseAbortableResponse) {
- Y_ABORT_UNLESS(!Url_.empty());
- Input_ = std::make_unique<TAbortableHttpResponse>(Context_, SocketInput_.get(), Url_);
- } else {
- Input_ = std::make_unique<THttpResponse>(Context_, SocketInput_.get());
- }
- Input_->CheckErrorResponse();
- }
- return Input_.get();
- }
- TString THttpRequest::GetResponse()
- {
- TString result = GetResponseStream()->ReadAll();
- TStringStream loggedAttributes;
- loggedAttributes
- << "Time: " << TInstant::Now() - StartTime_ << "; "
- << "HostName: " << GetResponseStream()->GetHostName() << "; "
- << LoggedAttributes_;
- if (LogResponse_) {
- constexpr auto sizeLimit = 1 << 7;
- YT_LOG_DEBUG("RSP %v - received response (Response: '%v'; %v)",
- Context_.RequestId,
- TruncateForLogs(result, sizeLimit),
- loggedAttributes.Str());
- } else {
- YT_LOG_DEBUG("RSP %v - received response of %v bytes (%v)",
- Context_.RequestId,
- result.size(),
- loggedAttributes.Str());
- }
- return result;
- }
- int THttpRequest::GetHttpCode() {
- return GetResponseStream()->GetHttpCode();
- }
- void THttpRequest::InvalidateConnection()
- {
- TConnectionPool::Get()->Invalidate(Context_.HostName, Connection_);
- Connection_.Reset();
- }
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT
|