osquery-1/osquery/filesystem/filesystem.cpp

129 lines
3.2 KiB
C++
Raw Normal View History

2014-08-04 18:06:45 +00:00
// Copyright 2004-present Facebook. All Rights Reserved.
#include "osquery/filesystem.h"
#include <fstream>
#include <sstream>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
2014-08-04 18:06:45 +00:00
#include <gflags/gflags.h>
#include <glog/logging.h>
using osquery::Status;
2014-08-04 18:06:45 +00:00
namespace pt = boost::property_tree;
2014-08-15 07:25:30 +00:00
namespace osquery {
2014-08-04 18:06:45 +00:00
Status readFile(const std::string& path, std::string& content) {
if (!boost::filesystem::exists(path)) {
return Status(1, "File not found");
}
int statusCode = 0;
std::string statusMessage = "OK";
char* buffer;
2014-08-04 18:06:45 +00:00
std::ifstream file_h(path);
if (file_h) {
2014-08-15 07:25:30 +00:00
file_h.seekg(0, file_h.end);
int len = file_h.tellg();
file_h.seekg(0, file_h.beg);
buffer = new char[len];
2014-08-15 07:25:30 +00:00
file_h.read(buffer, len);
if (!file_h) {
statusCode = 1;
statusMessage = "Could not read file";
goto cleanup_buffer;
2014-08-15 07:25:30 +00:00
}
content.assign(buffer, len);
2014-08-04 18:06:45 +00:00
} else {
statusCode = 1;
statusMessage = "Could not open file for reading";
goto cleanup;
2014-08-04 18:06:45 +00:00
}
cleanup_buffer:
2014-08-26 23:27:33 +00:00
delete[] buffer;
cleanup:
if (file_h) {
file_h.close();
}
return Status(statusCode, statusMessage);
2014-08-04 18:06:45 +00:00
}
Status pathExists(const std::string& path) {
if (path.length() == 0) {
return Status(0, "-1");
}
// A tri-state determination of presence
if (!boost::filesystem::exists(path)) {
return Status(0, "0");
}
return Status(0, "1");
}
2014-08-14 23:27:20 +00:00
Status listFilesInDirectory(const std::string& path,
2014-08-15 07:25:30 +00:00
std::vector<std::string>& results) {
2014-08-14 23:27:20 +00:00
try {
if (!boost::filesystem::exists(path)) {
return Status(1, "Directory not found");
}
if (!boost::filesystem::is_directory(path)) {
return Status(1, "Supplied path is not a directory");
}
boost::filesystem::directory_iterator begin_iter(path);
boost::filesystem::directory_iterator end_iter;
for (; begin_iter != end_iter; begin_iter++) {
results.push_back(begin_iter->path().string());
}
return Status(0, "OK");
2014-09-21 21:29:28 +00:00
} catch (const boost::filesystem::filesystem_error& e) {
2014-08-14 23:27:20 +00:00
return Status(1, e.what());
}
}
Status parseTomcatUserConfig(
const std::string& content,
std::vector<std::pair<std::string, std::string>>& credentials) {
std::stringstream ss;
ss << content;
pt::ptree tree;
try {
pt::xml_parser::read_xml(ss, tree);
} catch (const pt::xml_parser_error& e) {
return Status(1, e.what());
}
try {
for (const auto& i : tree.get_child("tomcat-users")) {
if (i.first == "user") {
try {
std::pair<std::string, std::string> user;
user.first = i.second.get<std::string>("<xmlattr>.username");
user.second = i.second.get<std::string>("<xmlattr>.password");
credentials.push_back(user);
} catch (const std::exception& e) {
LOG(ERROR)
<< "An error occured parsing the tomcat users xml: " << e.what();
return Status(1, e.what());
}
}
}
} catch (const std::exception& e) {
LOG(ERROR) << "An error occured while trying to access the tomcat-users"
<< " key in the XML content: " << e.what();
return Status(1, e.what());
}
return Status(0, "OK");
}
2014-08-15 07:25:30 +00:00
}