osquery-1/tests/integration/tables/helper.cpp

279 lines
7.1 KiB
C++
Raw Normal View History

/**
* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed in accordance with the terms specified in
* the LICENSE file found in the root directory of this source tree.
*/
#include <osquery/tests/integration/tables/helper.h>
#include <osquery/database.h>
#include <osquery/registry.h>
#include <osquery/system.h>
#include <osquery/utils/conversions/tryto.h>
#include <gtest/gtest.h>
#include <boost/algorithm/string.hpp>
#include <boost/asio.hpp>
#include <boost/filesystem.hpp>
#include <boost/io/detail/quoted_manip.hpp>
#include <boost/regex.hpp>
#include <boost/uuid/string_generator.hpp>
#include <unordered_set>
namespace osquery {
DECLARE_bool(disable_database);
namespace table_tests {
namespace fs = boost::filesystem;
bool CronValuesCheck::operator()(const std::string& string) const {
2018-08-29 15:16:23 +00:00
// Fast asterisk check, its most common
if (string == "*") {
return true;
}
// In case of special values like @reboot or @yearly time columns are empty
if (string.empty()) {
return true;
}
2018-08-29 15:16:23 +00:00
// Specific value check
auto cast_result = tryTo<int64_t>(string);
if (cast_result) {
// its int, so we can do easy validation
int64_t int_value = cast_result.get();
return (int_value >= min_ && int_value <= max_);
}
// Check */3 format
if (boost::starts_with(string, "*/")) {
std::string subvalue = string.substr(2);
auto subvalue_int = tryTo<int64_t>(subvalue);
return subvalue_int.isValue();
}
std::vector<std::string> components;
boost::split(components, string, boost::is_any_of(","));
for (auto component : components) {
// Predefined value check like: sun, mon
boost::algorithm::to_lower(component);
if (values_.find(component) != values_.end()) {
continue;
}
// just number
if (tryTo<int64_t>(component)) {
continue;
}
std::vector<std::string> sub_components;
boost::split(sub_components, component, boost::is_any_of("-"));
if (sub_components.size() == 2) {
if (tryTo<int64_t>(sub_components[0]) &&
tryTo<int64_t>(sub_components[1])) {
continue;
}
}
// sub_components.size() > 2 || sub_components.size() == 1
return false;
}
return true;
}
bool IntMinMaxCheck::operator()(const std::string& string) const {
auto cast_result = tryTo<int64_t>(string);
if (!cast_result) {
return false;
}
auto const value = cast_result.get();
return value >= min_ && value <= max_;
}
bool SpecificValuesCheck::operator()(const std::string& string) const {
return set_.find(string) != set_.end();
}
bool verifyIpAddress(std::string const& value) {
auto err = boost::system::error_code{};
boost::asio::ip::make_address(value, err);
return !err;
}
bool verifyEmptyStringOrIpAddress(std::string const& value) {
return value.empty() ? true : verifyIpAddress(value);
}
bool verifyMacAddress(std::string const& value) {
if (value == "incomplete") {
return true;
} else {
boost::smatch match;
// IEEE 802: six groups of two hexadecimal digits, separated by '-' or ':'
boost::regex rxMacAddress("^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$");
return boost::regex_match(value, match, rxMacAddress);
}
}
bool verifyUidGid(std::string const& value) {
auto const id_exp = tryTo<int64_t>(value);
if (!id_exp) {
return false;
}
return id_exp.get() >= -2;
}
QueryData execute_query(std::string query) {
auto instance = SQLiteDBManager::get();
QueryData rows;
Status status = queryInternal(query, rows, instance);
EXPECT_TRUE(status.ok()) << "Query execution failed with error: "
<< boost::io::quoted(status.what());
return rows;
}
void validate_row(const Row& row, const ValidatatioMap& validation_map) {
for (auto const& rec : row) {
EXPECT_NE(validation_map.count(rec.first), std::size_t{0})
<< "Unexpected column " << boost::io::quoted(rec.first) << " in a row";
}
2018-08-29 19:16:00 +00:00
for (auto iter : validation_map) {
std::string key = iter.first;
auto row_data_iter = row.find(key);
ASSERT_NE(row_data_iter, row.end())
<< "Could not find column " << boost::io::quoted(key)
<< " in the generated columns";
2018-08-29 19:16:00 +00:00
std::string value = row_data_iter->second;
ValidatatioDataType validator = iter.second;
if (validator.type() == typeid(int)) {
int flags = boost::get<int>(validator);
ASSERT_TRUE(validate_value_using_flags(value, flags))
<< "Standard validator of the column " << boost::io::quoted(key)
<< " with value " << boost::io::quoted(value) << " failed";
2018-08-29 19:16:00 +00:00
} else {
ASSERT_TRUE(boost::get<CustomCheckerType>(validator)(value))
<< "Custom validator of the column " << boost::io::quoted(key)
<< " with value " << boost::io::quoted(value) << " failed";
2018-08-29 19:16:00 +00:00
}
}
}
void validate_rows(const std::vector<Row>& rows,
const ValidatatioMap& validation_map) {
for (auto row : rows) {
2018-08-29 19:16:00 +00:00
validate_row(row, validation_map);
}
}
bool is_valid_hex(const std::string& value) {
for (auto ch : value) {
if (!std::isxdigit(ch)) {
return false;
}
}
return true;
}
bool validate_value_using_flags(const std::string& value,
int flags) {
if ((flags & NonEmpty) > 0) {
if (value.length() == 0) {
return false;
}
}
if ((flags & NonNull)) {
if (value == "null") {
return false;
}
}
if ((flags & NonZero)) {
if (value == "0") {
return false;
}
}
if ((flags & IntType) > 0) {
auto cast_result = tryTo<int64_t>(value);
if (!cast_result) {
return false;
}
auto intValue = cast_result.get();
if ((flags & NonNegativeInt) == NonNegativeInt) {
if (intValue < 0) {
return false;
}
}
if ((flags & NonNegativeOrErrorInt) == NonNegativeOrErrorInt) {
if (intValue < -1) {
return false;
}
}
}
if ((flags & FileOnDisk) > 0) {
auto path = fs::path(value);
auto status = fs::status(path);
if (!fs::exists(status) || !fs::is_regular_file(status)) {
return false;
}
}
if ((flags & DirectoryOnDisk) > 0) {
auto path = fs::path(value);
auto status = fs::status(path);
if (!fs::exists(status) || !fs::is_directory(status)) {
return false;
}
}
if ((flags & MD5) > 0) {
if (!is_valid_hex(value) || value.size() != 32) {
return false;
}
}
if ((flags & SHA1) > 0) {
if (!is_valid_hex(value) || value.size() != 40) {
return false;
}
}
if ((flags & SHA256) > 0) {
if (!is_valid_hex(value) || value.size() != 64) {
return false;
}
}
if ((flags & Bool) > 0) {
if (value.length() != 1 || (value != "1" && value != "0")) {
return false;
}
}
if ((flags & ValidUUID) > 0) {
try {
boost::uuids::string_generator()(value);
} catch (...) {
return false;
}
}
return true;
}
void setUpEnvironment() {
Initializer::platformSetup();
registryAndPluginInit();
FLAGS_disable_database = true;
DatabasePlugin::setAllowOpen(true);
DatabasePlugin::initPlugin();
}
} // namespace table_tests
} // namespace osquery