osquery-1/osquery/filesystem/tests/filesystem_tests.cpp
2015-11-01 02:12:07 -08:00

299 lines
9.6 KiB
C++

/*
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include <fstream>
#include <stdio.h>
#include <gtest/gtest.h>
#include <boost/property_tree/ptree.hpp>
#include <osquery/filesystem.h>
#include <osquery/logger.h>
#include "osquery/core/test_util.h"
namespace pt = boost::property_tree;
namespace osquery {
DECLARE_uint64(read_max);
DECLARE_uint64(read_user_max);
class FilesystemTests : public testing::Test {
protected:
void SetUp() { createMockFileStructure(); }
void TearDown() { tearDownMockFileStructure(); }
/// Helper method to check if a path was included in results.
bool contains(const std::vector<std::string>& all, const std::string& n) {
return !(std::find(all.begin(), all.end(), n) == all.end());
}
};
TEST_F(FilesystemTests, test_read_file) {
std::ofstream test_file(kTestWorkingDirectory + "fstests-file");
test_file.write("test123\n", sizeof("test123"));
test_file.close();
std::string content;
auto s = readFile(kTestWorkingDirectory + "fstests-file", content);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(content, "test123\n");
remove(kTestWorkingDirectory + "fstests-file");
}
TEST_F(FilesystemTests, test_read_symlink) {
std::string content;
auto status = readFile(kFakeDirectory + "/root2.txt", content);
EXPECT_TRUE(status.ok());
EXPECT_EQ(content, "root");
}
TEST_F(FilesystemTests, test_read_zero) {
std::string content;
auto status = readFile("/dev/zero", content, 10);
EXPECT_EQ(content.size(), 10U);
for (size_t i = 0; i < 10; i++) {
EXPECT_EQ(content[i], 0);
}
}
TEST_F(FilesystemTests, test_read_urandom) {
std::string first, second;
auto status = readFile("/dev/urandom", first, 10);
EXPECT_TRUE(status.ok());
status = readFile("/dev/urandom", second, 10);
EXPECT_NE(first, second);
}
TEST_F(FilesystemTests, test_read_limit) {
auto max = FLAGS_read_max;
auto user_max = FLAGS_read_user_max;
FLAGS_read_max = 3;
std::string content;
auto status = readFile(kFakeDirectory + "/root.txt", content);
EXPECT_FALSE(status.ok());
FLAGS_read_max = max;
if (getuid() != 0) {
content.erase();
FLAGS_read_user_max = 2;
status = readFile(kFakeDirectory + "/root.txt", content);
EXPECT_FALSE(status.ok());
FLAGS_read_user_max = user_max;
// Make sure non-link files are still readable.
content.erase();
status = readFile(kFakeDirectory + "/root.txt", content);
EXPECT_TRUE(status.ok());
// Any the links are readable too.
status = readFile(kFakeDirectory + "/root2.txt", content);
EXPECT_TRUE(status.ok());
}
}
TEST_F(FilesystemTests, test_list_files_missing_directory) {
std::vector<std::string> results;
auto status = listFilesInDirectory("/foo/bar", results);
EXPECT_FALSE(status.ok());
}
TEST_F(FilesystemTests, test_list_files_invalid_directory) {
std::vector<std::string> results;
auto status = listFilesInDirectory("/etc/hosts", results);
EXPECT_FALSE(status.ok());
}
TEST_F(FilesystemTests, test_list_files_valid_directorty) {
std::vector<std::string> results;
auto s = listFilesInDirectory("/etc", results);
// This directory may be different on OS X or Linux.
std::string hosts_path = "/etc/hosts";
replaceGlobWildcards(hosts_path);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_TRUE(contains(results, hosts_path));
}
TEST_F(FilesystemTests, test_canonicalization) {
std::string complex = kFakeDirectory + "/deep1/../deep1/..";
std::string simple = kFakeDirectory + "/";
// Use the inline wildcard and canonicalization replacement.
// The 'simple' path contains a trailing '/', the replacement method will
// distinguish between file and directory paths.
replaceGlobWildcards(complex);
EXPECT_EQ(simple, complex);
// Now apply the same inline replacement on the simple directory and expect
// no change to the comparison.
replaceGlobWildcards(simple);
EXPECT_EQ(simple, complex);
// Now add a wildcard within the complex pattern. The replacement method
// will not canonicalize past a '*' as the proceeding paths are limiters.
complex = kFakeDirectory + "/*/deep2/../deep2/";
replaceGlobWildcards(complex);
EXPECT_EQ(complex, kFakeDirectory + "/*/deep2/../deep2/");
}
TEST_F(FilesystemTests, test_simple_globs) {
std::vector<std::string> results;
// Test the shell '*', we will support SQL's '%' too.
auto status = resolveFilePattern(kFakeDirectory + "/*", results);
EXPECT_TRUE(status.ok());
EXPECT_EQ(results.size(), 6U);
// Test the csh-style bracket syntax: {}.
results.clear();
resolveFilePattern(kFakeDirectory + "/{root,door}*", results);
EXPECT_EQ(results.size(), 3U);
// Test a tilde, home directory expansion, make no asserts about contents.
results.clear();
resolveFilePattern("~", results);
if (results.size() == 0U) {
LOG(WARNING) << "Tilde expansion failed";
}
}
TEST_F(FilesystemTests, test_wildcard_single_all) {
// Use '%' as a wild card to glob files within the temporarily-created dir.
std::vector<std::string> results;
auto status = resolveFilePattern(kFakeDirectory + "/%", results, GLOB_ALL);
EXPECT_TRUE(status.ok());
EXPECT_EQ(results.size(), 6U);
EXPECT_TRUE(contains(results, kFakeDirectory + "/roto.txt"));
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep11/"));
}
TEST_F(FilesystemTests, test_wildcard_single_files) {
// Now list again with a restriction to only files.
std::vector<std::string> results;
resolveFilePattern(kFakeDirectory + "/%", results, GLOB_FILES);
EXPECT_EQ(results.size(), 4U);
EXPECT_TRUE(contains(results, kFakeDirectory + "/roto.txt"));
}
TEST_F(FilesystemTests, test_wildcard_single_folders) {
std::vector<std::string> results;
resolveFilePattern(kFakeDirectory + "/%", results, GLOB_FOLDERS);
EXPECT_EQ(results.size(), 2U);
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep11/"));
}
TEST_F(FilesystemTests, test_wildcard_dual) {
// Now test two directories deep with a single wildcard for each.
std::vector<std::string> results;
auto status = resolveFilePattern(kFakeDirectory + "/%/%", results);
EXPECT_TRUE(status.ok());
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep1/level1.txt"));
}
TEST_F(FilesystemTests, test_wildcard_double) {
// TODO: this will fail.
std::vector<std::string> results;
auto status = resolveFilePattern(kFakeDirectory + "/%%", results);
EXPECT_TRUE(status.ok());
EXPECT_EQ(results.size(), 15U);
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep1/deep2/level2.txt"));
}
TEST_F(FilesystemTests, test_wildcard_double_folders) {
std::vector<std::string> results;
resolveFilePattern(kFakeDirectory + "/%%", results, GLOB_FOLDERS);
EXPECT_EQ(results.size(), 5U);
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep11/deep2/deep3/"));
}
TEST_F(FilesystemTests, test_wildcard_end_last_component) {
std::vector<std::string> results;
auto status = resolveFilePattern(kFakeDirectory + "/%11/%sh", results);
EXPECT_TRUE(status.ok());
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep11/not_bash"));
}
TEST_F(FilesystemTests, test_wildcard_middle_component) {
std::vector<std::string> results;
auto status = resolveFilePattern(kFakeDirectory + "/deep1%/%", results);
EXPECT_TRUE(status.ok());
EXPECT_EQ(results.size(), 5U);
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep1/level1.txt"));
EXPECT_TRUE(contains(results, kFakeDirectory + "/deep11/level1.txt"));
}
TEST_F(FilesystemTests, test_wildcard_all_types) {
std::vector<std::string> results;
auto status = resolveFilePattern(kFakeDirectory + "/%p11/%/%%", results);
EXPECT_TRUE(status.ok());
EXPECT_TRUE(
contains(results, kFakeDirectory + "/deep11/deep2/deep3/level3.txt"));
}
TEST_F(FilesystemTests, test_wildcard_invalid_path) {
std::vector<std::string> results;
auto status = resolveFilePattern("/not_ther_abcdefz/%%", results);
EXPECT_TRUE(status.ok());
EXPECT_EQ(results.size(), 0U);
}
TEST_F(FilesystemTests, test_wildcard_dotdot_files) {
std::vector<std::string> results;
auto status = resolveFilePattern(
kFakeDirectory + "/deep11/deep2/../../%", results, GLOB_FILES);
EXPECT_TRUE(status.ok());
EXPECT_EQ(results.size(), 4U);
// The response list will contain canonicalized versions: /tmp/<tests>/...
std::string door_path = kFakeDirectory + "/deep11/deep2/../../door.txt";
replaceGlobWildcards(door_path);
EXPECT_TRUE(contains(results, door_path));
}
TEST_F(FilesystemTests, test_dotdot_relative) {
std::vector<std::string> results;
auto status = resolveFilePattern(kTestDataPath + "%", results);
EXPECT_TRUE(status.ok());
bool found = false;
for (const auto& file : results) {
if (file.find("test.config")) {
found = true;
break;
}
}
EXPECT_TRUE(found);
}
TEST_F(FilesystemTests, test_no_wild) {
std::vector<std::string> results;
auto status =
resolveFilePattern(kFakeDirectory + "/roto.txt", results, GLOB_FILES);
EXPECT_TRUE(status.ok());
EXPECT_EQ(results.size(), 1U);
EXPECT_TRUE(contains(results, kFakeDirectory + "/roto.txt"));
}
TEST_F(FilesystemTests, test_safe_permissions) {
// For testing we can request a different directory path.
EXPECT_TRUE(safePermissions("/", kFakeDirectory + "/door.txt"));
// A file with a directory.mode & 0x1000 fails.
EXPECT_FALSE(safePermissions("/tmp", kFakeDirectory + "/door.txt"));
// A directory for a file will fail.
EXPECT_FALSE(safePermissions("/", kFakeDirectory + "/deep11"));
// A root-owned file is appropriate
EXPECT_TRUE(safePermissions("/", "/dev/zero"));
}
}