-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathvalidate_schema.h
113 lines (88 loc) · 3.08 KB
/
validate_schema.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
* ModSecurity, http://www.modsecurity.org/
* Copyright (c) 2015 - 2023 Trustwave Holdings, Inc. (http://www.trustwave.com/)
*
* 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
*
* If any of the files related to licensing are missing or if you have any
* other questions related to licensing please contact Trustwave Holdings, Inc.
* directly using the email address [email protected].
*
*/
#ifndef SRC_OPERATORS_VALIDATE_SCHEMA_H_
#define SRC_OPERATORS_VALIDATE_SCHEMA_H_
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#ifdef WITH_LIBXML2
#include <libxml/xmlschemas.h>
#include <libxml/xpath.h>
#endif
#include <string>
#include <memory>
#include <utility>
#include "src/operators/operator.h"
namespace modsecurity {
namespace operators {
class ValidateSchema : public Operator {
public:
/** @ingroup ModSecurity_Operator */
explicit ValidateSchema(std::unique_ptr<RunTimeString> param)
: Operator("ValidateSchema", std::move(param)) { }
#ifdef WITH_LIBXML2
bool evaluate(Transaction *transaction, const std::string &str) override;
bool init(const std::string &file, std::string *error) override;
static void error_load(void *ctx, const char *msg, ...) {
va_list args;
va_start(args, msg);
callback_func(ctx, append_msg, PREFIX_ERROR, msg, args);
va_end(args);
}
static void warn_load(void *ctx, const char *msg, ...) {
va_list args;
va_start(args, msg);
callback_func(ctx, append_msg, PREFIX_WARNING, msg, args);
va_end(args);
}
static void error_runtime(void *ctx, const char *msg, ...) {
va_list args;
va_start(args, msg);
callback_func(ctx, log_msg, PREFIX_ERROR, msg, args);
va_end(args);
}
static void warn_runtime(void *ctx, const char *msg, ...) {
va_list args;
va_start(args, msg);
callback_func(ctx, log_msg, PREFIX_WARNING, msg, args);
va_end(args);
}
static void null_error(void *, const char *, ...) { // cppcheck-suppress[constParameterPointer,constParameterCallback]
}
template<typename Pred>
static void callback_func(void *ctx, Pred pred, const char *base_msg, const char *msg, va_list args) {
char buf[1024];
const auto len = vsnprintf(buf, sizeof(buf), msg, args);
if (len > 0)
pred(ctx, base_msg + std::string(buf));
}
static void log_msg(const void *ctx, const std::string &msg) {
auto t = reinterpret_cast<const Transaction *>(ctx);
ms_dbg_a(t, 4, msg);
}
static void append_msg(void *ctx, const std::string &msg) {
auto s = reinterpret_cast<std::string*>(ctx);
s->append(msg);
}
static constexpr auto PREFIX_WARNING = "XML Warning: ";
static constexpr auto PREFIX_ERROR = "XML Error: ";
private:
std::string m_resource;
std::string m_err;
#endif
};
} // namespace operators
} // namespace modsecurity
#endif // SRC_OPERATORS_VALIDATE_SCHEMA_H_