osquery-1/osquery/tables/events/yara_events.cpp

181 lines
5.5 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 <map>
#include <string>
#include <osquery/config.h>
#include <osquery/logger.h>
/// The file change event publishers are slightly different in OS X and Linux.
#ifdef __APPLE__
#include "osquery/events/darwin/fsevents.h"
#elif __linux__
#include "osquery/events/linux/inotify.h"
#endif
#include "osquery/tables/other/yara_utils.h"
#ifdef CONCAT
#undef CONCAT
#endif
#include <yara.h>
namespace osquery {
namespace tables {
/// The file change event publishers are slightly different in OS X and Linux.
#ifdef __APPLE__
using FileEventSubscriber = EventSubscriber<FSEventsEventPublisher>;
using FileEventContextRef = FSEventsEventContextRef;
using FileSubscriptionContextRef = FSEventsSubscriptionContextRef;
#define FILE_CHANGE_MASK \
kFSEventStreamEventFlagItemCreated | kFSEventStreamEventFlagItemModified
#elif __linux__
using FileEventSubscriber = EventSubscriber<INotifyEventPublisher>;
using FileEventContextRef = INotifyEventContextRef;
using FileSubscriptionContextRef = INotifySubscriptionContextRef;
#define FILE_CHANGE_MASK ((IN_CREATE) | (IN_CLOSE_WRITE) | (IN_MODIFY))
#endif
/**
* @brief Track YARA matches to files.
*/
class YARAEventSubscriber : public FileEventSubscriber {
public:
Status init() override;
private:
/**
* @brief This exports a single Callback for FSEventsEventPublisher events.
*
* @param ec The Callback type receives an EventContextRef substruct
* for the FSEventsEventPublisher declared in this EventSubscriber subclass.
*
* @return Status
*/
Status Callback(const FileEventContextRef& ec,
const FileSubscriptionContextRef& sc);
};
/**
* @brief Each EventSubscriber must register itself so the init method is
* called.
*
* This registers YARAEventSubscriber into the osquery EventSubscriber
* pseudo-plugin registry.
*/
REGISTER(YARAEventSubscriber, "event_subscriber", "yara_events");
Status YARAEventSubscriber::init() {
Status status;
auto plugin = Config::getParser("yara");
if (plugin == nullptr || plugin.get() == nullptr) {
return Status(1, "Could not get yara config parser");
}
const auto& yara_config = plugin->getData();
if (yara_config.count("file_paths") == 0) {
return Status(0, "OK");
}
const auto& yara_paths = yara_config.get_child("file_paths");
std::map<std::string, std::vector<std::string> > file_map;
Config::getInstance().files([&file_map](
const std::string& category,
const std::vector<std::string>& files) { file_map[category] = files; });
for (const auto& yara_path_element : yara_paths) {
// Subscribe to each file for the given key (category).
if (file_map.count(yara_path_element.first) == 0) {
VLOG(1) << "Key in yara::file_paths not found in file_paths: "
<< yara_path_element.first;
continue;
}
for (const auto& file : file_map.at(yara_path_element.first)) {
VLOG(1) << "Added YARA listener to: " << file;
auto sc = createSubscriptionContext();
sc->path = file;
sc->mask = FILE_CHANGE_MASK;
sc->recursive = true;
sc->category = yara_path_element.first;
subscribe(&YARAEventSubscriber::Callback, sc);
}
}
return Status(0, "OK");
}
Status YARAEventSubscriber::Callback(const FileEventContextRef& ec,
const FileSubscriptionContextRef& sc) {
if (ec->action != "UPDATED" && ec->action != "CREATED") {
return Status(1, "Invalid action");
}
Row r;
r["action"] = ec->action;
r["target_path"] = ec->path;
r["category"] = sc->category;
// Only FSEvents transactions updates (inotify is a no-op).
r["transaction_id"] = INTEGER(ec->transaction_id);
// These are default values, to be updated in YARACallback.
r["count"] = INTEGER(0);
r["matches"] = std::string("");
r["strings"] = std::string("");
r["tags"] = std::string("");
auto parser = Config::getParser("yara");
if (parser == nullptr || parser.get() == nullptr) {
return Status(1, "ConfigParser unknown.");
}
std::shared_ptr<YARAConfigParserPlugin> yaraParser;
try {
yaraParser = std::dynamic_pointer_cast<YARAConfigParserPlugin>(parser);
} catch (const std::bad_cast& e) {
return Status(1, "Error casting yara config parser plugin");
}
if (yaraParser == nullptr || yaraParser.get() == nullptr) {
return Status(1, "Yara parser unknown.");
}
auto rules = yaraParser->rules();
// Use the category as a lookup into the yara file_paths. The value will be
// a list of signature groups to scan with.
auto category = r.at("category");
const auto& yara_config = parser->getData();
const auto& yara_paths = yara_config.get_child("file_paths");
const auto& sig_groups = yara_paths.find(category);
for (const auto& rule : sig_groups->second) {
const std::string group = rule.second.data();
int result = yr_rules_scan_file(rules[group],
ec->path.c_str(),
SCAN_FLAGS_FAST_MODE,
YARACallback,
(void*)&r,
0);
if (result != ERROR_SUCCESS) {
return Status(1, "YARA error: " + std::to_string(result));
}
}
if (ec->action != "" && r.at("matches").size() > 0) {
add(r, ec->time);
}
return Status(0, "OK");
}
}
}