osquery-1/osquery/config/config.cpp

358 lines
11 KiB
C++
Raw Normal View History

/*
* 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.
*
*/
2014-07-31 00:35:19 +00:00
2015-01-02 05:55:10 +00:00
#include <mutex>
#include <random>
2014-07-31 00:35:19 +00:00
#include <sstream>
#include <osquery/config.h>
#include <osquery/flags.h>
#include <osquery/hash.h>
#include <osquery/filesystem.h>
#include <osquery/logger.h>
#include <osquery/registry.h>
2014-12-11 01:35:21 +00:00
2014-07-31 00:35:19 +00:00
namespace pt = boost::property_tree;
typedef pt::ptree::value_type tree_node;
typedef std::map<std::string, std::vector<std::string> > EventFileMap_t;
2014-08-15 07:25:30 +00:00
namespace osquery {
2014-07-31 00:35:19 +00:00
2015-03-03 23:03:14 +00:00
CLI_FLAG(string, config_plugin, "filesystem", "Config plugin name");
2014-07-31 00:35:19 +00:00
FLAG(int32, schedule_splay_percent, 10, "Percent to splay config times");
2015-01-02 05:55:10 +00:00
Status Config::load() {
auto& config_plugin = Registry::getActive("config");
if (!Registry::exists("config", config_plugin)) {
return Status(1, "Missing config plugin " + config_plugin);
}
return genConfig();
}
Status Config::update(const std::map<std::string, std::string>& config) {
// A config plugin may call update from an extension. This will update
// the config instance within the extension process and the update must be
// reflected in the core.
if (Registry::external()) {
for (const auto& source : config) {
PluginRequest request = {
{"action", "update"},
{"source", source.first},
{"data", source.second},
};
// A "update" registry item within core should call the core's update
// method. The config plugin call action handling must also know to
// update.
Registry::call("config", "update", request);
}
}
// Request a unique write lock when updating config.
boost::unique_lock<boost::shared_mutex> unique_lock(getInstance().mutex_);
2015-01-02 05:55:10 +00:00
ConfigData conf;
for (const auto& source : config) {
if (Registry::external()) {
2015-04-27 21:57:04 +00:00
VLOG(1) << "Updating extension config with source: " << source.first;
} else {
2015-04-27 21:57:04 +00:00
VLOG(1) << "Updating config with source: " << source.first;
}
getInstance().raw_[source.first] = source.second;
2014-12-01 09:05:46 +00:00
}
// Now merge all sources together.
for (const auto& source : getInstance().raw_) {
mergeConfig(source.second, conf);
2014-07-31 00:35:19 +00:00
}
// Call each parser with the optionally-empty, requested, top level keys.
for (const auto& plugin : Registry::all("config_parser")) {
auto parser = std::static_pointer_cast<ConfigParserPlugin>(plugin.second);
if (parser == nullptr || parser.get() == nullptr) {
continue;
}
// For each key requested by the parser, add a property tree reference.
std::map<std::string, ConfigTree> parser_config;
for (const auto& key : parser->keys()) {
if (conf.all_data.count(key) > 0) {
parser_config[key] = conf.all_data.get_child(key);
} else {
parser_config[key] = pt::ptree();
}
}
parser->update(parser_config);
}
getInstance().data_ = conf;
return Status(0, "OK");
2014-07-31 00:35:19 +00:00
}
Status Config::genConfig() {
2015-01-30 18:44:25 +00:00
PluginResponse response;
auto status = Registry::call("config", {{"action", "genConfig"}}, response);
2015-01-30 18:44:25 +00:00
if (!status.ok()) {
return status;
2014-07-31 00:35:19 +00:00
}
if (response.size() > 0) {
return update(response[0]);
}
2014-12-11 01:35:21 +00:00
return Status(0, "OK");
}
inline void mergeOption(const tree_node& option, ConfigData& conf) {
2015-04-24 08:44:41 +00:00
std::string key = option.first.data();
std::string value = option.second.data();
Flag::updateValue(key, value);
// There is a special case for supported Gflags-reserved switches.
if (key == "verbose" || key == "verbose_debug" || key == "debug") {
setVerboseLevel();
if (Flag::getValue("verbose") == "true") {
VLOG(1) << "Verbose logging enabled by config option";
}
}
2015-04-24 08:44:41 +00:00
conf.options[key] = value;
if (conf.all_data.count("options") > 0) {
2015-04-24 08:44:41 +00:00
conf.all_data.get_child("options").erase(key);
}
2015-04-24 08:44:41 +00:00
conf.all_data.add_child("options." + key, option.second);
}
inline void mergeScheduledQuery(const std::string& name,
const tree_node& node,
ConfigData& conf) {
// Read tree/JSON into a query structure.
ScheduledQuery query;
query.query = node.second.get<std::string>("query", "");
query.interval = node.second.get<int>("interval", 0);
2015-04-27 21:57:04 +00:00
// This is a candidate for a catch-all iterator with a catch for boolean type.
query.options["snapshot"] = node.second.get<bool>("snapshot", false);
// Check if this query exists, if so, check if it was changed.
if (conf.schedule.count(name) > 0) {
if (query == conf.schedule.at(name)) {
return;
}
}
// This is a new or updated scheduled query, update the splay.
query.splayed_interval =
splayValue(query.interval, FLAGS_schedule_splay_percent);
// Update the schedule map and replace the all_data node record.
conf.schedule[name] = query;
if (conf.all_data.count("schedule") > 0) {
conf.all_data.get_child("schedule").erase(name);
}
conf.all_data.add_child("schedule." + name, node.second);
}
inline void mergeExtraKey(const std::string& name,
const tree_node& node,
ConfigData& conf) {
// Automatically merge extra list/dict top level keys.
for (const auto& subitem : node.second) {
if (node.second.count("") == 0 && conf.all_data.count(name) > 0) {
conf.all_data.get_child(name).erase(subitem.first);
}
2015-05-06 00:09:07 +00:00
if (subitem.first.size() == 0) {
if (conf.all_data.count(name) == 0) {
conf.all_data.add_child(name, subitem.second);
}
conf.all_data.get_child(name).push_back(subitem);
} else {
conf.all_data.add_child(name + "." + subitem.first, subitem.second);
}
}
}
inline void mergeFilePath(const std::string& name,
const tree_node& node,
ConfigData& conf) {
for (const auto& path : node.second) {
resolveFilePattern(path.second.data(),
conf.files[node.first],
REC_LIST_FOLDERS | REC_EVENT_OPT);
}
conf.all_data.add_child(name + "." + node.first, node.second);
}
void Config::mergeConfig(const std::string& source, ConfigData& conf) {
pt::ptree tree;
try {
2015-05-03 20:37:11 +00:00
std::stringstream json_data;
json_data << source;
pt::read_json(json_data, tree);
2015-05-03 20:37:11 +00:00
} catch (const pt::json_parser::json_parser_error& e) {
VLOG(1) << "Error parsing config JSON: " << e.what();
return;
}
if (tree.count("additional_monitoring") > 0) {
LOG(INFO) << RLOG(903) << "config 'additional_monitoring' is deprecated";
for (const auto& node : tree.get_child("additional_monitoring")) {
tree.add_child(node.first, node.second);
}
tree.erase("additional_monitoring");
}
for (const auto& item : tree) {
// Iterate over each top-level configuration key.
auto key = std::string(item.first.data());
if (key == "scheduledQueries") {
LOG(INFO) << RLOG(903) << "config 'scheduledQueries' is deprecated";
for (const auto& node : item.second) {
auto query_name = node.second.get<std::string>("name", "");
mergeScheduledQuery(query_name, node, conf);
}
} else if (key == "schedule") {
for (const auto& node : item.second) {
mergeScheduledQuery(node.first.data(), node, conf);
}
} else if (key == "options") {
for (const auto& option : item.second) {
mergeOption(option, conf);
}
} else if (key == "file_paths") {
for (const auto& category : item.second) {
mergeFilePath(key, category, conf);
}
} else {
mergeExtraKey(key, item, conf);
2014-12-01 09:05:46 +00:00
}
}
}
const pt::ptree& Config::getParsedData(const std::string& key) {
if (!Registry::exists("config_parser", key)) {
return getInstance().empty_data_;
}
2014-07-31 00:35:19 +00:00
const auto& item = Registry::get("config_parser", key);
auto parser = std::static_pointer_cast<ConfigParserPlugin>(item);
if (parser == nullptr || parser.get() == nullptr) {
return getInstance().empty_data_;
}
return parser->data_;
2015-04-01 08:10:28 +00:00
}
2014-07-31 00:35:19 +00:00
Major YARA refactor and enhancements 1. Rename yara_matches to yara_events. 2. Add support for Config::getParser(). - This returns a ConfigPluginRef, which is the ConfigParser for the given key. - Being able to get the parser is useful because the YARAConfigParserPlugin uses it to store the compiled rules as an attribute. 3. Finish rename and use ConfigParserPlugin. - Finish the table rename to yara_events. - Use the new ConfigParserPlugin interface to parse the YARA configuration. The file_paths and signatures are stored in the ConfigParserPlugin named "yara" under the key "yara". The rules are compiled and stored as a private attribute of the same ConfigParserPlugin object. Here is an example config using this new structure: { // Description of the YARA feature. "yara": { "signatures": { // Each key is an arbitrary group name to give the signatures listed "sig_group_1": [ "/Users/wxs/foo.sig", "/Users/wxs//bar.sig" ], "sig_group_2": [ "/Users/wxs/baz.sig" ] }, "file_paths": { // Each key is a key from file_paths // The value is a list of signature groups to run when an event fires // These will be watched for and scanned when the event framework // fire off an event to yara_events table "system_binaries": [ "sig_group_1" ], "tmp": [ "sig_group_1", "sig_group_2" ] } }, // Paths to watch for filesystem events "file_paths": { "system_binaries": [ "/usr/bin/%", "/usr/sbin/%" ], "tmp": [ "/Users/wxs/tmp/%%" ] } } - Currently the signature file must be an absolute path. 3. Move common YARA code to yara_utils. - In preparation for the yara table (different from yara_events) I'm moving the common YARA code into a separate place which is shared between the two tables. 4. Add yara table. - This allows you to do things like: ```sql select * from yara where path="/bin/ls" and sigfile="/tmp/foo.sig"; select * from yara where path="/bin/ls" and sig_group="sig_group_1"; ``` - The latter will use the signature grouping from the config. 5. Check for keys not existing.
2015-04-17 20:03:43 +00:00
const ConfigPluginRef Config::getParser(const std::string& key) {
if (!Registry::exists("config_parser", key)) {
return ConfigPluginRef();
}
const auto& item = Registry::get("config_parser", key);
const auto parser = std::static_pointer_cast<ConfigParserPlugin>(item);
if (parser == nullptr || parser.get() == nullptr) {
return ConfigPluginRef();
}
return parser;
}
2015-01-16 20:03:23 +00:00
Status Config::getMD5(std::string& hash_string) {
// Request an accessor to our own config, outside of an update.
ConfigDataInstance config;
std::stringstream out;
pt::write_json(out, config.data());
2014-12-11 01:35:21 +00:00
2015-01-20 22:05:01 +00:00
hash_string = osquery::hashFromBuffer(
HASH_TYPE_MD5, (void*)out.str().c_str(), out.str().length());
2014-12-11 01:35:21 +00:00
return Status(0, "OK");
}
Status Config::checkConfig() { return load(); }
2015-01-30 18:44:25 +00:00
void Config::recordQueryPerformance(const std::string& name,
size_t delay,
size_t size,
const Row& r0,
const Row& r1) {
// Grab a lock on the schedule structure and check the name.
ConfigDataInstance config;
if (config.schedule().count(name) == 0) {
// Unknown query schedule name.
return;
}
// Grab access to the non-const schedule item.
auto& query = getInstance().data_.schedule.at(name);
auto diff = strtol(r1.at("user_time").c_str(), nullptr, 10) -
strtol(r0.at("user_time").c_str(), nullptr, 10);
query.user_time += diff;
diff = strtol(r1.at("system_time").c_str(), nullptr, 10) -
strtol(r0.at("system_time").c_str(), nullptr, 10);
query.system_time += diff;
diff = strtol(r1.at("resident_size").c_str(), nullptr, 10) -
strtol(r0.at("resident_size").c_str(), nullptr, 10);
// Memory is stored as an average of BSS changes between query executions.
query.memory =
(query.memory * query.executions + diff) / (query.executions + 1);
query.wall_time += delay;
query.output_size += size;
query.executions += 1;
}
2015-01-30 18:44:25 +00:00
Status ConfigPlugin::call(const PluginRequest& request,
PluginResponse& response) {
if (request.count("action") == 0) {
return Status(1, "Config plugins require an action in PluginRequest");
}
if (request.at("action") == "genConfig") {
std::map<std::string, std::string> config;
auto stat = genConfig(config);
response.push_back(config);
return stat;
} else if (request.at("action") == "update") {
if (request.count("source") == 0 || request.count("data") == 0) {
return Status(1, "Missing source or data");
}
return Config::update({{request.at("source"), request.at("data")}});
2015-01-30 18:44:25 +00:00
}
return Status(1, "Config plugin action unknown: " + request.at("action"));
}
Status ConfigParserPlugin::setUp() {
for (const auto& key : keys()) {
data_.put(key, "");
}
return Status(0, "OK");
}
int splayValue(int original, int splayPercent) {
if (splayPercent <= 0 || splayPercent > 100) {
return original;
}
float percent_to_modify_by = (float)splayPercent / 100;
int possible_difference = original * percent_to_modify_by;
int max_value = original + possible_difference;
int min_value = original - possible_difference;
if (max_value == min_value) {
return max_value;
}
std::default_random_engine generator;
std::uniform_int_distribution<int> distribution(min_value, max_value);
return distribution(generator);
}
2014-08-15 07:25:30 +00:00
}