// Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved. // Licensed under the Apache License, Version 2.0 (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. #ifndef __HTTP_MANAGER_OPAQUE_H__ #define __HTTP_MANAGER_OPAQUE_H__ #include #include "buffer.h" #include "table_opaque.h" #include "nano_attachment_common.h" #include "http_inspection_events.h" static const std::string HTTP_MANAGER_NAME = "HTTP Manager"; class HttpManagerOpaque : public TableOpaqueSerialize { public: HttpManagerOpaque(); void setApplicationVerdict(const std::string &app_name, ServiceVerdict verdict); void setApplicationWebResponse(const std::string &app_name, std::string web_user_response_id); void setCustomResponse(const std::string &app_name, const CustomResponse &custom_response); ServiceVerdict getApplicationsVerdict(const std::string &app_name) const; void setManagerVerdict(ServiceVerdict verdict) { manager_verdict = verdict; } ServiceVerdict getManagerVerdict() const { return manager_verdict; } ServiceVerdict getCurrVerdict() const; const std::string & getCurrWebUserResponse() const { return current_web_user_response; }; std::set getCurrentDropVerdictCausers() const; void saveCurrentDataToCache(const Buffer &full_data); void setUserDefinedValue(const std::string &value) { user_defined_value = value; } Maybe getUserDefinedValue() const { return user_defined_value; } Maybe getCurrentCustomResponse() const { return current_custom_response; } const Buffer & getPreviousDataCache() const { return prev_data_cache; } uint getAggeregatedPayloadSize() const { return aggregated_payload_size; } void updatePayloadSize(const uint curr_payload); void resetPayloadSize() { aggregated_payload_size = 0; } // LCOV_EXCL_START - sync functions, can only be tested once the sync module exists template void serialize(T &ar, uint) { ar(applications_verdicts, prev_data_cache); } static std::unique_ptr prototype() { return std::make_unique(); } // LCOV_EXCL_STOP static const std::string name() { return "HttpTransactionData"; } static uint currVer() { return 0; } static uint minVer() { return 0; } private: std::unordered_map applications_verdicts; std::unordered_map applications_web_user_response; mutable std::string current_web_user_response; ServiceVerdict manager_verdict = ServiceVerdict::TRAFFIC_VERDICT_INSPECT; Buffer prev_data_cache; uint aggregated_payload_size = 0; Maybe current_custom_response = genError("uninitialized"); Maybe user_defined_value = genError("uninitialized"); }; #endif // __HTTP_MANAGER_OPAQUE_H__