Daniel-Eisenberg 6bbc89712a
Aug 08 2025 dev (#336)
* sync code

* sync code

* sync code

---------

Co-authored-by: Ned Wright <nedwright@proton.me>
2025-08-10 13:21:52 +03:00

231 lines
7.0 KiB
C++
Executable File

// 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.
#pragma once
#include <cereal/types/vector.hpp>
#include <boost/regex.hpp>
#include <boost/algorithm/string/case_conv.hpp>
#include <vector>
#include <string>
#include <memory>
#include "debug.h"
#include "DecisionType.h"
USE_DEBUG_FLAG(D_WAAP);
namespace Waap {
namespace Trigger {
using boost::algorithm::to_lower_copy;
struct Log {
template <typename _A>
void serialize(_A &ar) {
ar(cereal::make_nvp("verbosity", verbosity));
verbosity = to_lower_copy(verbosity);
ar(cereal::make_nvp("complianceWarnings", complianceWarnings));
ar(cereal::make_nvp("complianceViolations", complianceViolations));
ar(cereal::make_nvp("acAllow", acAllow));
ar(cereal::make_nvp("acDrop", acDrop));
ar(cereal::make_nvp("tpDetect", tpDetect));
ar(cereal::make_nvp("tpPrevent", tpPrevent));
ar(cereal::make_nvp("webRequests", webRequests));
ar(cereal::make_nvp("webUrlPath", webUrlPath));
ar(cereal::make_nvp("webUrlQuery", webUrlQuery));
ar(cereal::make_nvp("webBody", webBody));
ar(cereal::make_nvp("logToCloud", logToCloud));
ar(cereal::make_nvp("logToAgent", logToAgent));
try
{
ar(cereal::make_nvp("webHeaders", webHeaders));
}
catch (const cereal::Exception &e)
{
ar.setNextName(nullptr);
dbgDebug(D_WAAP) << "failed to load webHeaders field. Error: " << e.what();
}
try
{
ar(cereal::make_nvp("extendLogging", extendLogging));
}
catch(const cereal::Exception &e)
{
ar.setNextName(nullptr);
dbgDebug(D_WAAP) << "Failed to load extendedLogging field. Error: " << e.what();
}
if (extendLogging)
{
try
{
ar(cereal::make_nvp("extendLoggingMinSeverity", extendLoggingMinSeverity));
}
catch(const cereal::Exception &e)
{
ar.setNextName(nullptr);
dbgDebug(D_WAAP) << "Failed to load extendLoggingMinSeverity field. Error: " << e.what();
}
try
{
ar(cereal::make_nvp("responseCode", responseCode));
}
catch(const cereal::Exception &e)
{
ar.setNextName(nullptr);
dbgDebug(D_WAAP) << "Failed to load responseCode field. Error: " << e.what();
}
try
{
ar(cereal::make_nvp("responseBody", responseBody));
}
catch(const cereal::Exception &e)
{
ar.setNextName(nullptr);
dbgDebug(D_WAAP) << "Failed to load responseBody field. Error: " << e.what();
}
}
}
Log();
bool operator==(const Log &other) const;
std::string verbosity;
bool complianceWarnings;
bool complianceViolations;
bool acAllow;
bool acDrop;
bool tpDetect;
bool tpPrevent;
bool webRequests;
bool webUrlPath;
bool webUrlQuery;
bool webHeaders;
bool webBody;
bool logToCloud;
bool logToAgent;
bool extendLogging;
bool responseCode;
bool responseBody;
std::string extendLoggingMinSeverity;
};
struct Trigger {
template <typename _A>
void serialize(_A &ar) {
ar(cereal::make_nvp("id", triggerId));
ar(cereal::make_nvp("$triggerType", triggerType));
triggerType = to_lower_copy(triggerType);
// Currently, only load triggers of type "log".
if (triggerType == "log") {
ar(cereal::make_nvp("log", *log));
}
}
Trigger();
bool operator==(const Trigger &other) const;
std::string triggerId;
std::string triggerType;
std::shared_ptr<Log> log;
};
class TriggersByPractice
{
public:
template <typename _A>
void serialize(_A& ar)
{
ar(
cereal::make_nvp("WebApplicationTriggers", m_web_app_ids),
cereal::make_nvp("APIProtectionTriggers", m_api_protect_ids),
cereal::make_nvp("AntiBotTriggers", m_anti_bot_ids)
);
m_all_ids.insert(m_all_ids.end(), m_web_app_ids.begin(), m_web_app_ids.end());
m_all_ids.insert(m_all_ids.end(), m_api_protect_ids.begin(), m_api_protect_ids.end());
m_all_ids.insert(m_all_ids.end(), m_anti_bot_ids.begin(), m_anti_bot_ids.end());
}
bool operator==(const TriggersByPractice &other) const;
const std::vector<std::string>& getTriggersByPractice(DecisionType practiceType) const;
const std::vector<std::string>& getAllTriggers() const;
private:
std::vector<std::string> m_web_app_ids;
std::vector<std::string> m_api_protect_ids;
std::vector<std::string> m_anti_bot_ids;
std::vector<std::string> m_all_ids;
};
class WebUserResponseByPractice
{
public:
template <typename _A>
void serialize(_A& ar)
{
ar(
cereal::make_nvp("WebApplicationResponse", m_web_app_ids),
cereal::make_nvp("APIProtectionResponse", m_api_protect_ids),
cereal::make_nvp("AntiBotResponse", m_anti_bot_ids)
);
}
bool operator==(const WebUserResponseByPractice &other) const;
const std::vector<std::string>& getResponseByPractice(DecisionType practiceType) const;
private:
std::vector<std::string> m_web_app_ids;
std::vector<std::string> m_api_protect_ids;
std::vector<std::string> m_anti_bot_ids;
};
struct Policy {
template <typename _A>
Policy(_A &ar) {
try {
ar(
cereal::make_nvp("triggersPerPractice", triggersByPractice)
);
}
catch (std::runtime_error &e) {
ar.setNextName(nullptr);
dbgInfo(D_WAAP) << "Failed to load triggers per practice, error: " << e.what();
triggersByPractice = TriggersByPractice();
}
try {
ar(
cereal::make_nvp("webUserResponsePerPractice", responseByPractice)
);
}
catch (std::runtime_error &e) {
ar.setNextName(nullptr);
dbgInfo(D_WAAP) << "Failed to load web user response per practice, error: " << e.what();
responseByPractice = WebUserResponseByPractice();
}
ar(
cereal::make_nvp("triggers", triggers)
);
}
bool operator==(const Policy &other) const;
std::vector<Waap::Trigger::Trigger> triggers;
TriggersByPractice triggersByPractice;
WebUserResponseByPractice responseByPractice;
};
}
}