/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include #include #include #include #include #include #include #include namespace apache { namespace thrift { ThriftProcessor::ThriftProcessor(ThriftServer& server) : server_(server) {} void ThriftProcessor::onThriftRequest( RequestRpcMetadata&& metadata, std::unique_ptr payload, std::shared_ptr channel, std::unique_ptr connContext) noexcept { DCHECK(payload); DCHECK(channel); auto& processorFactory = server_.getDecoratedProcessorFactory(); const auto& processor = processor_.try_emplace_with([&] { auto p = processorFactory.getProcessor(); p->coalesceWithServerScopedLegacyEventHandlers(server_); return p; }); auto worker = connContext->getWorker(); worker->getEventBase()->dcheckIsInEventBaseThread(); bool invalidMetadata = !(metadata.protocol_ref() && metadata.name_ref() && metadata.kind_ref()); bool invalidChecksum = metadata.crc32c_ref() && *metadata.crc32c_ref() != apache::thrift::checksum::crc32c(*payload); auto request = std::make_unique( server_, channel, std::move(metadata), std::move(connContext)); auto* evb = channel->getEventBase(); if (UNLIKELY(invalidMetadata)) { LOG(ERROR) << "Invalid metadata object"; evb->runInEventBaseThread([request = std::move(request)]() { request->sendErrorWrapped( folly::make_exception_wrapper( TApplicationException::UNSUPPORTED_CLIENT_TYPE, "invalid metadata object"), "corrupted metadata"); }); return; } if (UNLIKELY(invalidChecksum)) { LOG(ERROR) << "Invalid checksum"; evb->runInEventBaseThread([request = std::move(request)]() { request->sendErrorWrapped( folly::make_exception_wrapper( TApplicationException::CHECKSUM_MISMATCH, "checksum mismatch"), "corrupted request"); }); return; } const auto& serviceMetadata = worker->getMetadataForService(processorFactory); using PerServiceMetadata = Cpp2Worker::PerServiceMetadata; const PerServiceMetadata::FindMethodResult methodMetadataResult = serviceMetadata.findMethod(request->getMethodName()); auto baseReqCtx = serviceMetadata.getBaseContextForRequest(methodMetadataResult); auto reqCtx = baseReqCtx ? folly::RequestContext::copyAsChild(*baseReqCtx) : std::make_shared(); folly::RequestContextScopeGuard rctx(reqCtx); auto protoId = request->getProtoId(); auto reqContext = request->getRequestContext(); Cpp2Worker::dispatchRequest( processor.get(), std::move(request), SerializedCompressedRequest(std::move(payload)), methodMetadataResult, protoId, reqContext, server_.getThreadManager_deprecated().get(), &server_); } } // namespace thrift } // namespace apache