mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
29f4694df2
Bulk update copyright notices from Facebook to "The osquery authors"
612 lines
18 KiB
C++
612 lines
18 KiB
C++
/**
|
|
* Copyright (c) 2014-present, The osquery authors
|
|
*
|
|
* This source code is licensed as defined by the LICENSE file found in the
|
|
* root directory of this source tree.
|
|
*
|
|
* SPDX-License-Identifier: (Apache-2.0 OR GPL-2.0-only)
|
|
*/
|
|
|
|
#include <sstream>
|
|
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
|
|
#ifndef WIN32
|
|
#include <glob.h>
|
|
#include <pwd.h>
|
|
#include <sys/time.h>
|
|
#endif
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <boost/filesystem/fstream.hpp>
|
|
#include <boost/filesystem/operations.hpp>
|
|
#include <boost/property_tree/json_parser.hpp>
|
|
|
|
#include <osquery/core/flags.h>
|
|
#include <osquery/core/system.h>
|
|
#include <osquery/filesystem/filesystem.h>
|
|
#include <osquery/logger/logger.h>
|
|
#include <osquery/sql/sql.h>
|
|
#if WIN32
|
|
#include <osquery/utils/conversions/windows/strings.h>
|
|
#endif
|
|
#include <osquery/utils/system/system.h>
|
|
|
|
#include <osquery/utils/json/json.h>
|
|
|
|
namespace pt = boost::property_tree;
|
|
namespace fs = boost::filesystem;
|
|
namespace errc = boost::system::errc;
|
|
|
|
namespace osquery {
|
|
|
|
FLAG(uint64, read_max, 50 * 1024 * 1024, "Maximum file read size");
|
|
|
|
/// See reference #1382 for reasons why someone would allow unsafe.
|
|
HIDDEN_FLAG(bool, allow_unsafe, false, "Allow unsafe executable permissions");
|
|
|
|
/// Disable forensics (atime/mtime preserving) file reads.
|
|
HIDDEN_FLAG(bool, disable_forensic, true, "Disable atime/mtime preservation");
|
|
|
|
static const size_t kMaxRecursiveGlobs = 64;
|
|
|
|
Status writeTextFile(const fs::path& path,
|
|
const std::string& content,
|
|
int permissions,
|
|
int mode) {
|
|
// Open the file with the request permissions.
|
|
PlatformFile output_fd(path, mode, permissions);
|
|
if (!output_fd.isValid()) {
|
|
return Status(1, "Could not create file: " + path.string());
|
|
}
|
|
|
|
// If the file existed with different permissions before our open
|
|
// they must be restricted.
|
|
#if WIN32
|
|
const std::string p = wstringToString(path.wstring());
|
|
#else
|
|
const std::string p = path.string();
|
|
#endif
|
|
if (!platformChmod(p, permissions)) {
|
|
// Could not change the file to the requested permissions.
|
|
return Status(1, "Failed to change permissions for file: " + path.string());
|
|
}
|
|
|
|
ssize_t bytes = output_fd.write(content.c_str(), content.size());
|
|
if (static_cast<size_t>(bytes) != content.size()) {
|
|
return Status(1, "Failed to write contents to file: " + path.string());
|
|
}
|
|
|
|
return Status::success();
|
|
}
|
|
|
|
struct OpenReadableFile : private boost::noncopyable {
|
|
public:
|
|
explicit OpenReadableFile(const fs::path& path, bool blocking = false)
|
|
: blocking_io(blocking) {
|
|
int mode = PF_OPEN_EXISTING | PF_READ;
|
|
if (!blocking) {
|
|
mode |= PF_NONBLOCK;
|
|
}
|
|
|
|
// Open the file descriptor and allow caller to perform error checking.
|
|
fd = std::make_unique<PlatformFile>(path, mode);
|
|
|
|
if (!blocking && fd->isSpecialFile()) {
|
|
// A special file cannot be read in non-blocking mode, reopen in blocking
|
|
// mode
|
|
mode &= ~PF_NONBLOCK;
|
|
blocking_io = true;
|
|
fd = std::make_unique<PlatformFile>(path, mode);
|
|
}
|
|
}
|
|
|
|
public:
|
|
std::unique_ptr<PlatformFile> fd{nullptr};
|
|
bool blocking_io;
|
|
};
|
|
|
|
Status readFile(const fs::path& path,
|
|
size_t size,
|
|
size_t block_size,
|
|
bool dry_run,
|
|
bool preserve_time,
|
|
std::function<void(std::string& buffer, size_t size)> predicate,
|
|
bool blocking) {
|
|
OpenReadableFile handle(path, blocking);
|
|
|
|
if (handle.fd == nullptr || !handle.fd->isValid()) {
|
|
return Status::failure("Cannot open file for reading: " + path.string());
|
|
}
|
|
|
|
off_t file_size = static_cast<off_t>(handle.fd->size());
|
|
|
|
if (size > 0 &&
|
|
(handle.fd->isSpecialFile() || static_cast<off_t>(size) < file_size)) {
|
|
file_size = static_cast<off_t>(size);
|
|
}
|
|
|
|
// Apply the max byte-read based on file/link target ownership.
|
|
auto read_max = static_cast<off_t>(FLAGS_read_max);
|
|
if (file_size > read_max) {
|
|
if (!dry_run) {
|
|
LOG(WARNING) << "Cannot read file that exceeds size limit: "
|
|
<< path.string();
|
|
VLOG(1) << "Cannot read " << path.string()
|
|
<< " size exceeds limit: " << file_size << " > " << read_max;
|
|
}
|
|
return Status::failure("File exceeds read limits");
|
|
}
|
|
|
|
if (dry_run) {
|
|
// The caller is only interested in performing file read checks.
|
|
boost::system::error_code ec;
|
|
try {
|
|
return Status(0, fs::canonical(path, ec).string());
|
|
} catch (const boost::filesystem::filesystem_error& err) {
|
|
return Status::failure(err.what());
|
|
}
|
|
}
|
|
|
|
PlatformTime times;
|
|
handle.fd->getFileTimes(times);
|
|
|
|
off_t total_bytes = 0;
|
|
if (handle.blocking_io) {
|
|
// Reset block size to a sane minimum.
|
|
block_size = (block_size < 4096) ? 4096 : block_size;
|
|
ssize_t part_bytes = 0;
|
|
bool overflow = false;
|
|
do {
|
|
std::string part(block_size, '\0');
|
|
part_bytes = handle.fd->read(&part[0], block_size);
|
|
if (part_bytes > 0) {
|
|
total_bytes += static_cast<off_t>(part_bytes);
|
|
if (total_bytes >= read_max) {
|
|
return Status::failure("File exceeds read limits");
|
|
}
|
|
if (file_size > 0 && total_bytes > file_size) {
|
|
overflow = true;
|
|
part_bytes -= (total_bytes - file_size);
|
|
}
|
|
predicate(part, part_bytes);
|
|
}
|
|
} while (part_bytes > 0 && !overflow);
|
|
} else {
|
|
std::string content(file_size, '\0');
|
|
do {
|
|
auto part_bytes =
|
|
handle.fd->read(&content[total_bytes], file_size - total_bytes);
|
|
if (part_bytes > 0) {
|
|
total_bytes += static_cast<off_t>(part_bytes);
|
|
}
|
|
} while (handle.fd->hasPendingIo());
|
|
predicate(content, file_size);
|
|
}
|
|
|
|
// Attempt to restore the atime and mtime before the file read.
|
|
if (preserve_time && !FLAGS_disable_forensic) {
|
|
handle.fd->setFileTimes(times);
|
|
}
|
|
return Status::success();
|
|
} // namespace osquery
|
|
|
|
Status readFile(const fs::path& path,
|
|
std::string& content,
|
|
size_t size,
|
|
bool dry_run,
|
|
bool preserve_time,
|
|
bool blocking) {
|
|
return readFile(path,
|
|
size,
|
|
4096,
|
|
dry_run,
|
|
preserve_time,
|
|
([&content](std::string& buffer, size_t _size) {
|
|
if (buffer.size() == _size) {
|
|
content += std::move(buffer);
|
|
} else {
|
|
content += buffer.substr(0, _size);
|
|
}
|
|
}),
|
|
blocking);
|
|
}
|
|
|
|
Status readFile(const fs::path& path, bool blocking) {
|
|
std::string blank;
|
|
return readFile(path, blank, 0, true, false, blocking);
|
|
}
|
|
|
|
Status forensicReadFile(const fs::path& path,
|
|
std::string& content,
|
|
bool blocking) {
|
|
return readFile(path, content, 0, false, true, blocking);
|
|
}
|
|
|
|
Status isWritable(const fs::path& path, bool effective) {
|
|
auto path_exists = pathExists(path);
|
|
if (!path_exists.ok()) {
|
|
return path_exists;
|
|
}
|
|
|
|
if (effective) {
|
|
PlatformFile fd(path, PF_OPEN_EXISTING | PF_WRITE);
|
|
return Status(fd.isValid() ? 0 : 1);
|
|
} else if (platformAccess(path.string(), W_OK) == 0) {
|
|
return Status::success();
|
|
}
|
|
|
|
return Status(1, "Path is not writable: " + path.string());
|
|
}
|
|
|
|
Status isReadable(const fs::path& path, bool effective) {
|
|
auto path_exists = pathExists(path);
|
|
if (!path_exists.ok()) {
|
|
return path_exists;
|
|
}
|
|
|
|
if (effective) {
|
|
PlatformFile fd(path, PF_OPEN_EXISTING | PF_READ);
|
|
return Status(fd.isValid() ? 0 : 1);
|
|
} else if (platformAccess(path.string(), R_OK) == 0) {
|
|
return Status::success();
|
|
}
|
|
|
|
return Status(1, "Path is not readable: " + path.string());
|
|
}
|
|
|
|
Status pathExists(const fs::path& path) {
|
|
boost::system::error_code ec;
|
|
if (path.empty()) {
|
|
return Status(1, "-1");
|
|
}
|
|
|
|
// A tri-state determination of presence
|
|
if (!fs::exists(path, ec) || ec.value() != errc::success) {
|
|
return Status(1, ec.message());
|
|
}
|
|
return Status::success();
|
|
}
|
|
|
|
Status movePath(const fs::path& from, const fs::path& to) {
|
|
boost::system::error_code ec;
|
|
if (from.empty() || to.empty()) {
|
|
return Status(1, "Cannot copy empty paths");
|
|
}
|
|
|
|
fs::rename(from, to, ec);
|
|
if (ec.value() != errc::success) {
|
|
return Status(1, ec.message());
|
|
}
|
|
return Status(0);
|
|
}
|
|
|
|
Status removePath(const fs::path& path) {
|
|
boost::system::error_code ec;
|
|
auto removed_files = fs::remove_all(path, ec);
|
|
if (ec.value() != errc::success) {
|
|
return Status(1, ec.message());
|
|
}
|
|
return Status(0, std::to_string(removed_files));
|
|
}
|
|
|
|
static bool checkForLoops(std::set<int>& dsym_inos, std::string path) {
|
|
if (path.empty() || path.back() != '/') {
|
|
return false;
|
|
}
|
|
|
|
path.pop_back();
|
|
struct stat d_stat;
|
|
// On Windows systems (lstat not implemented) this immiedately returns
|
|
if (!platformLstat(path, d_stat).ok()) {
|
|
return false;
|
|
}
|
|
|
|
if ((d_stat.st_mode & 0170000) == 0) {
|
|
return false;
|
|
}
|
|
|
|
if (dsym_inos.find(d_stat.st_ino) == dsym_inos.end()) {
|
|
dsym_inos.insert(d_stat.st_ino);
|
|
} else {
|
|
VLOG(1) << "Symlink loop detected. Ignoring: " << path;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static void genGlobs(std::string path,
|
|
std::vector<std::string>& results,
|
|
GlobLimits limits) {
|
|
// Use our helped escape/replace for wildcards.
|
|
replaceGlobWildcards(path, limits);
|
|
// inodes of directory symlinks for loop detection
|
|
std::set<int> dsym_inos;
|
|
|
|
// Generate a glob set and recurse for double star.
|
|
for (size_t glob_index = 0; ++glob_index < kMaxRecursiveGlobs;) {
|
|
auto glob_results = platformGlob(path);
|
|
|
|
for (auto& result_path : glob_results) {
|
|
results.push_back(result_path);
|
|
|
|
if (checkForLoops(dsym_inos, result_path)) {
|
|
glob_index = kMaxRecursiveGlobs;
|
|
}
|
|
}
|
|
|
|
// The end state is a non-recursive ending or empty set of matches.
|
|
size_t wild = path.rfind("**");
|
|
// Allow a trailing slash after the double wild indicator.
|
|
if (glob_results.size() == 0 || wild > path.size() ||
|
|
wild + 3 < path.size()) {
|
|
break;
|
|
}
|
|
|
|
path += "/**";
|
|
}
|
|
|
|
// Prune results based on settings/requested glob limitations.
|
|
auto end = std::remove_if(
|
|
results.begin(), results.end(), [limits](const std::string& found) {
|
|
return !(((found[found.length() - 1] == '/' ||
|
|
found[found.length() - 1] == '\\') &&
|
|
limits & GLOB_FOLDERS) ||
|
|
((found[found.length() - 1] != '/' &&
|
|
found[found.length() - 1] != '\\') &&
|
|
limits & GLOB_FILES));
|
|
});
|
|
results.erase(end, results.end());
|
|
}
|
|
|
|
Status resolveFilePattern(const fs::path& fs_path,
|
|
std::vector<std::string>& results) {
|
|
return resolveFilePattern(fs_path, results, GLOB_ALL);
|
|
}
|
|
|
|
Status resolveFilePattern(const fs::path& fs_path,
|
|
std::vector<std::string>& results,
|
|
GlobLimits setting) {
|
|
genGlobs(fs_path.string(), results, setting);
|
|
return Status::success();
|
|
}
|
|
|
|
inline void replaceGlobWildcards(std::string& pattern, GlobLimits limits) {
|
|
// Replace SQL-wildcard '%' with globbing wildcard '*'.
|
|
if (pattern.find('%') != std::string::npos) {
|
|
boost::replace_all(pattern, "%", "*");
|
|
}
|
|
|
|
// Relative paths are a bad idea, but we try to accommodate.
|
|
if ((pattern.size() == 0 || ((pattern[0] != '/' && pattern[0] != '\\') &&
|
|
(pattern.size() > 3 && pattern[1] != ':' &&
|
|
pattern[2] != '\\' && pattern[2] != '/'))) &&
|
|
pattern[0] != '~') {
|
|
try {
|
|
boost::system::error_code ec;
|
|
pattern = (fs::current_path(ec) / pattern).make_preferred().string();
|
|
} catch (const fs::filesystem_error& /* e */) {
|
|
// There is a bug in versions of current_path that still throw.
|
|
}
|
|
}
|
|
|
|
auto base =
|
|
fs::path(pattern.substr(0, pattern.find('*'))).make_preferred().string();
|
|
|
|
if (base.size() > 0) {
|
|
boost::system::error_code ec;
|
|
auto canonicalized = ((limits & GLOB_NO_CANON) == 0)
|
|
? fs::canonical(base, ec).make_preferred().string()
|
|
: base;
|
|
|
|
if (canonicalized.size() > 0 && canonicalized != base) {
|
|
if (isDirectory(canonicalized)) {
|
|
// Canonicalized directory paths will not include a trailing '/'.
|
|
// However, if the wildcards are applied to files within a directory
|
|
// then the missing '/' changes the wildcard meaning.
|
|
canonicalized += '/';
|
|
}
|
|
// We are unable to canonicalize the meaning of post-wildcard limiters.
|
|
pattern = fs::path(canonicalized + pattern.substr(base.size()))
|
|
.make_preferred()
|
|
.string();
|
|
}
|
|
}
|
|
}
|
|
|
|
inline Status listInAbsoluteDirectory(const fs::path& path,
|
|
std::vector<std::string>& results,
|
|
GlobLimits limits) {
|
|
if (path.filename() == "*" && !pathExists(path.parent_path())) {
|
|
return Status(1, "Directory not found: " + path.parent_path().string());
|
|
}
|
|
|
|
if (path.filename() == "*" && !isDirectory(path.parent_path())) {
|
|
return Status(1, "Path not a directory: " + path.parent_path().string());
|
|
}
|
|
|
|
genGlobs(path.string(), results, limits);
|
|
return Status::success();
|
|
}
|
|
|
|
Status listFilesInDirectory(const fs::path& path,
|
|
std::vector<std::string>& results,
|
|
bool recursive) {
|
|
return listInAbsoluteDirectory(
|
|
(path / ((recursive) ? "**" : "*")), results, GLOB_FILES);
|
|
}
|
|
|
|
Status listDirectoriesInDirectory(const fs::path& path,
|
|
std::vector<std::string>& results,
|
|
bool recursive) {
|
|
return listInAbsoluteDirectory(
|
|
(path / ((recursive) ? "**" : "*")), results, GLOB_FOLDERS);
|
|
}
|
|
|
|
Status isDirectory(const fs::path& path) {
|
|
boost::system::error_code ec;
|
|
if (fs::is_directory(path, ec)) {
|
|
return Status::success();
|
|
}
|
|
|
|
// The success error code is returned for as a failure (undefined error)
|
|
// We need to flip that into an error, a success would have falling through
|
|
// in the above conditional.
|
|
if (ec.value() == errc::success) {
|
|
return Status(1, "Path is not a directory: " + path.string());
|
|
}
|
|
return Status(ec.value(), ec.message());
|
|
}
|
|
|
|
Status createDirectory(const boost::filesystem::path& dir_path,
|
|
bool const recursive,
|
|
bool const ignore_existence) {
|
|
auto err = boost::system::error_code{};
|
|
bool is_created = false;
|
|
if (recursive) {
|
|
is_created = boost::filesystem::create_directories(dir_path, err);
|
|
} else {
|
|
is_created = boost::filesystem::create_directory(dir_path, err);
|
|
}
|
|
if (is_created) {
|
|
return Status::success();
|
|
}
|
|
if (ignore_existence && isDirectory(dir_path).ok()) {
|
|
return Status::success();
|
|
}
|
|
auto msg = std::string{"Could not create directory \""};
|
|
msg += dir_path.string();
|
|
msg += '"';
|
|
if (err) {
|
|
msg += ": ";
|
|
msg += err.message();
|
|
}
|
|
return Status::failure(msg);
|
|
}
|
|
|
|
std::set<fs::path> getHomeDirectories() {
|
|
std::set<fs::path> results;
|
|
|
|
auto users = SQL::selectAllFrom("users");
|
|
for (const auto& user : users) {
|
|
if (user.at("directory").size() > 0) {
|
|
results.insert(user.at("directory"));
|
|
}
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
bool safePermissions(const fs::path& dir,
|
|
const fs::path& path,
|
|
bool executable) {
|
|
if (!platformIsFileAccessible(path).ok()) {
|
|
// Path was not real, had too may links, or could not be accessed.
|
|
return false;
|
|
}
|
|
|
|
if (FLAGS_allow_unsafe) {
|
|
return true;
|
|
}
|
|
|
|
Status result = platformIsTmpDir(dir);
|
|
if (!result.ok() && result.getCode() < 0) {
|
|
// An error has occurred in stat() on dir, most likely because the file path
|
|
// does not exist
|
|
return false;
|
|
} else if (result.ok()) {
|
|
// Do not load modules from /tmp-like directories.
|
|
return false;
|
|
}
|
|
|
|
PlatformFile fd(path, PF_OPEN_EXISTING | PF_READ);
|
|
if (!fd.isValid()) {
|
|
return false;
|
|
}
|
|
|
|
result = isDirectory(path);
|
|
if (!result.ok() && result.getCode() < 0) {
|
|
// Something went wrong when determining the file's directoriness
|
|
return false;
|
|
} else if (result.ok()) {
|
|
// Only load file-like nodes (not directories).
|
|
return false;
|
|
}
|
|
|
|
if (fd.isOwnerRoot().ok() || fd.isOwnerCurrentUser().ok()) {
|
|
result = fd.isExecutable();
|
|
|
|
// Otherwise, require matching or root file ownership.
|
|
if (executable && (result.getCode() > 0 || !fd.hasSafePermissions().ok())) {
|
|
// Require executable, implies by the owner.
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// Do not load modules not owned by the user.
|
|
return false;
|
|
}
|
|
|
|
const std::string& osqueryHomeDirectory() {
|
|
static std::string homedir;
|
|
|
|
if (homedir.size() == 0) {
|
|
// Try to get the caller's home directory
|
|
boost::system::error_code ec;
|
|
auto userdir = getHomeDirectory();
|
|
if (userdir.is_initialized() && isWritable(*userdir).ok()) {
|
|
auto osquery_dir = (fs::path(*userdir) / ".osquery");
|
|
if (isWritable(osquery_dir) ||
|
|
boost::filesystem::create_directories(osquery_dir, ec)) {
|
|
homedir = osquery_dir.make_preferred().string();
|
|
return homedir;
|
|
}
|
|
}
|
|
|
|
// Fail over to a temporary directory (used for the shell).
|
|
auto temp =
|
|
fs::temp_directory_path(ec) /
|
|
(std::string("osquery-") + std::to_string((rand() % 10000) + 20000));
|
|
boost::filesystem::create_directories(temp, ec);
|
|
homedir = temp.make_preferred().string();
|
|
}
|
|
|
|
return homedir;
|
|
}
|
|
|
|
std::string lsperms(int mode) {
|
|
static const char rwx[] = {'0', '1', '2', '3', '4', '5', '6', '7'};
|
|
std::string bits;
|
|
|
|
bits += rwx[(mode >> 9) & 7];
|
|
bits += rwx[(mode >> 6) & 7];
|
|
bits += rwx[(mode >> 3) & 7];
|
|
bits += rwx[(mode >> 0) & 7];
|
|
return bits;
|
|
}
|
|
|
|
Status parseJSON(const fs::path& path, pt::ptree& tree) {
|
|
try {
|
|
pt::read_json(path.string(), tree);
|
|
} catch (const pt::json_parser::json_parser_error& /* e */) {
|
|
return Status(1, "Could not parse JSON from file");
|
|
}
|
|
return Status::success();
|
|
}
|
|
|
|
Status parseJSONContent(const std::string& content, pt::ptree& tree) {
|
|
// Read the extensions data into a JSON blob, then property tree.
|
|
try {
|
|
std::stringstream json_stream;
|
|
json_stream << content;
|
|
pt::read_json(json_stream, tree);
|
|
} catch (const pt::json_parser::json_parser_error& /* e */) {
|
|
return Status(1, "Could not parse JSON from file");
|
|
}
|
|
return Status::success();
|
|
}
|
|
} // namespace osquery
|