mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
167 lines
5.8 KiB
C++
167 lines
5.8 KiB
C++
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed in accordance with the terms specified in
|
|
* the LICENSE file found in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <osquery/core/core.h>
|
|
#include <osquery/core/flags.h>
|
|
#include <osquery/plugins/sql.h>
|
|
#include <osquery/registry/registry_interface.h>
|
|
|
|
namespace osquery {
|
|
|
|
DECLARE_string(extensions_socket);
|
|
DECLARE_string(extensions_autoload);
|
|
DECLARE_string(extensions_timeout);
|
|
DECLARE_bool(disable_extensions);
|
|
|
|
/**
|
|
* @brief Helper struct for managing extension metadata.
|
|
*
|
|
* This structure should match the members of Thrift's InternalExtensionInfo.
|
|
*/
|
|
struct ExtensionInfo {
|
|
std::string name;
|
|
std::string version;
|
|
std::string sdk_version;
|
|
std::string min_sdk_version;
|
|
};
|
|
|
|
typedef std::map<RouteUUID, ExtensionInfo> ExtensionList;
|
|
|
|
inline std::string getExtensionSocket(
|
|
RouteUUID uuid, const std::string& path = FLAGS_extensions_socket) {
|
|
return (uuid == 0) ? path : path + "." + std::to_string(uuid);
|
|
}
|
|
|
|
/// External (extensions) SQL implementation plugin provider for "sql" registry.
|
|
class ExternalSQLPlugin : public SQLPlugin {
|
|
public:
|
|
Status query(const std::string& query,
|
|
QueryData& results,
|
|
bool use_cache = false) const override;
|
|
|
|
Status getQueryTables(const std::string& query,
|
|
std::vector<std::string>& tables) const override {
|
|
static_cast<void>(query);
|
|
static_cast<void>(tables);
|
|
return Status::success();
|
|
}
|
|
|
|
Status getQueryColumns(const std::string& query,
|
|
TableColumns& columns) const override;
|
|
};
|
|
|
|
/// Status get a list of active extenions.
|
|
Status getExtensions(ExtensionList& extensions);
|
|
|
|
/// Internal getExtensions using a UNIX domain socket path.
|
|
Status getExtensions(const std::string& manager_path,
|
|
ExtensionList& extensions);
|
|
|
|
/// Ping an extension manager or extension.
|
|
Status pingExtension(const std::string& path);
|
|
|
|
/**
|
|
* @brief Perform an action while waiting for an the extension timeout.
|
|
*
|
|
* We define a 'global' extension timeout using CLI flags.
|
|
* There are several locations where code may act assuming an extension has
|
|
* loaded or broadcasted a registry.
|
|
*
|
|
* @param predicate return true or set stop to end the timeout loop.
|
|
* @return the last status from the predicate.
|
|
*/
|
|
Status applyExtensionDelay(std::function<Status(bool& stop)> predicate);
|
|
|
|
/**
|
|
* @brief Read the autoload flags and return a set of autoload paths.
|
|
*
|
|
* Extensions may be 'autoloaded' using the `extensions_autoload` command line
|
|
* argument. loadExtensions should be called before any plugin or registry item
|
|
* is used. This allows appropriate extensions to expose plugin requirements.
|
|
*
|
|
* An 'appropriate' extension is one within the `extensions_autoload` search
|
|
* path with file ownership equivalent or greater (root) than the osquery
|
|
* process requesting autoload.
|
|
*/
|
|
std::set<std::string> loadExtensions();
|
|
|
|
/**
|
|
* @brief Load extensions from a specific search path.
|
|
*
|
|
* @param loadfile Path to file containing newline delimited file paths.
|
|
*/
|
|
std::set<std::string> loadExtensions(const std::string& loadfile);
|
|
|
|
/**
|
|
* @brief Initialize the extensions socket path variable for osqueryi.
|
|
*
|
|
* If the shell is invoked with a default extensions_socket flag there is a
|
|
* chance the path is 'overloaded' by multiple shells, use this method to
|
|
* determine a unique user-local path.
|
|
*
|
|
* @param home to user's home directory.
|
|
*/
|
|
void initShellSocket(const std::string& home);
|
|
|
|
/**
|
|
* @brief Call a Plugin exposed by an Extension Registry route.
|
|
*
|
|
* This is mostly a Registry%-internal method used to call an ExtensionHandler
|
|
* call API if a Plugin is requested and had matched an Extension route.
|
|
*
|
|
* @param uuid Route UUID of the matched Extension
|
|
* @param registry The string name for the registry.
|
|
* @param item A string identifier for this registry item.
|
|
* @param request The plugin request input.
|
|
* @param response The plugin response output.
|
|
* @return Success indicates Extension API call success and Extension's
|
|
* Registry::call success.
|
|
*/
|
|
Status callExtension(const RouteUUID uuid,
|
|
const std::string& registry,
|
|
const std::string& item,
|
|
const PluginRequest& request,
|
|
PluginResponse& response);
|
|
|
|
/// Internal callExtension implementation using a UNIX domain socket path.
|
|
Status callExtension(const std::string& extension_path,
|
|
const std::string& registry,
|
|
const std::string& item,
|
|
const PluginRequest& request,
|
|
PluginResponse& response);
|
|
|
|
/// The main runloop entered by an Extension, start an ExtensionRunner thread.
|
|
Status startExtension(const std::string& name, const std::string& version);
|
|
|
|
/// The main runloop entered by an Extension, start an ExtensionRunner thread.
|
|
Status startExtension(const std::string& name,
|
|
const std::string& version,
|
|
const std::string& min_sdk_version);
|
|
|
|
/// Internal startExtension implementation using a UNIX domain socket path.
|
|
Status startExtension(const std::string& manager_path,
|
|
const std::string& name,
|
|
const std::string& version,
|
|
const std::string& min_sdk_version,
|
|
const std::string& sdk_version);
|
|
|
|
/// Start an ExtensionWatcher thread.
|
|
Status startExtensionWatcher(const std::string& manager_path,
|
|
size_t interval,
|
|
bool fatal,
|
|
RouteUUID uuid);
|
|
|
|
/// Start an ExtensionManagerRunner thread.
|
|
Status startExtensionManager();
|
|
|
|
/// Internal startExtensionManager implementation.
|
|
Status startExtensionManager(const std::string& manager_path);
|
|
} // namespace osquery
|