forked from VirusTotal/yara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyara_transaction_test.cc
200 lines (172 loc) · 5.54 KB
/
yara_transaction_test.cc
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
Copyright (c) 2019. The YARA Authors. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "sandbox/yara_transaction.h"
#include <asm/unistd.h> // __NR_memdfd_create
#include <unistd.h>
#include <atomic>
#include <cstdint>
#include <memory>
#include <string>
#include "absl/strings/str_cat.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "sandbox/yara_matches.pb.h"
#include "sandboxed_api/util/status_matchers.h"
#include "sandboxed_api/util/statusor.h"
using ::sapi::IsOk;
using ::testing::Eq;
using ::testing::StrEq;
namespace yara
{
namespace
{
// Wraps an in-memory file descriptor created by memfd_create().
class MemoryFD
{
public:
static ::sapi::StatusOr<MemoryFD> CreateWithContent(absl::string_view content)
{
MemoryFD mem_fd;
// Avoid dependency on UAPI headers
constexpr uintptr_t MFD_CLOEXEC = 0x0001U;
constexpr const char* kName = "memfd";
mem_fd.fd_ = syscall(
__NR_memfd_create, reinterpret_cast<uintptr_t>(kName), MFD_CLOEXEC);
if (mem_fd.fd_ == -1)
{
return absl::UnknownError(absl::StrCat("memfd(): ", strerror(errno)));
}
if (ftruncate(mem_fd.fd_, content.size()) == -1)
{
return absl::UnknownError(absl::StrCat("ftruncate(): ", strerror(errno)));
}
while (!content.empty())
{
ssize_t written = TEMP_FAILURE_RETRY(
write(mem_fd.fd_, content.data(), content.size()));
if (written <= 0)
{
return absl::UnknownError(absl::StrCat("write(): ", strerror(errno)));
}
content.remove_prefix(written);
}
return mem_fd;
}
MemoryFD(MemoryFD&& other) { *this = std::move(other); }
MemoryFD& operator=(MemoryFD&& other)
{
fd_ = other.fd_;
other.fd_ = 0;
return *this;
}
~MemoryFD()
{
if (fd_ > 0)
{
close(fd_);
};
}
int fd() const { return fd_; }
private:
MemoryFD() = default;
int fd_;
};
class TransactionTest : public ::testing::Test
{
protected:
void SetUp() override
{
SAPI_ASSERT_OK_AND_ASSIGN(
transaction_,
YaraTransaction::Create(YaraTransaction::Options{}
.set_scan_timeout(absl::Minutes(1))
.set_num_workers(16)));
}
::sapi::StatusOr<YaraMatches> ScanString(absl::string_view content)
{
SAPI_ASSIGN_OR_RETURN(
MemoryFD mem_fd, MemoryFD::CreateWithContent(content));
return transaction_->ScanFd(mem_fd.fd());
}
std::unique_ptr<YaraTransaction> transaction_;
};
TEST_F(TransactionTest, BasicFunctionality)
{
ASSERT_THAT(
transaction_
->LoadRules(R"(
rule Number {
strings: $ = "123"
condition: all of them
}
rule Color {
strings: $ = "green"
condition: all of them
}
rule Keyboard {
strings: $ = "dvorak"
condition: all of them
})")
.ValueOrDie(),
Eq(3));
SAPI_ASSERT_OK_AND_ASSIGN(YaraMatches matches, ScanString("qwerty 123"));
EXPECT_THAT(matches.match_size(), Eq(1));
EXPECT_THAT(matches.match(0).id().rule_name(), StrEq("Number"));
SAPI_ASSERT_OK_AND_ASSIGN(matches, ScanString("green dvorak 456"));
EXPECT_THAT(matches.match_size(), Eq(2));
EXPECT_THAT(matches.match(0).id().rule_name(), StrEq("Color"));
EXPECT_THAT(matches.match(1).id().rule_name(), StrEq("Keyboard"));
}
TEST_F(TransactionTest, ConcurrentScanStressTest)
{
ASSERT_THAT(
transaction_
->LoadRules(R"(
rule Simple {
strings: $ = "A"
condition: all of them
})")
.ValueOrDie(),
Eq(1));
// Large number of threads during testing to increase likelihood of exposing
// race conditions in threading code.
constexpr int kThreads = 64;
std::vector<std::thread> bundle;
for (int i = 0; i < kThreads; ++i)
{
bundle.emplace_back([this, i]() {
std::string buf((i + 1) * 102400, 'B');
buf.append("A"); // Force the match to be at the very end
SAPI_ASSERT_OK_AND_ASSIGN(YaraMatches matches, ScanString(buf));
ASSERT_THAT(matches.match_size(), Eq(1));
EXPECT_THAT(matches.match(0).id().rule_name(), StrEq("Simple"));
});
}
for (auto& thread : bundle)
{
thread.join();
}
}
} // namespace
} // namespace yara