osquery-1/include/osquery/extensions.h

170 lines
5.6 KiB
C
Raw Normal View History

2015-02-04 03:55:16 +00:00
/*
* 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.
*
*/
#pragma once
#include <osquery/core.h>
#include <osquery/flags.h>
2015-02-19 01:19:45 +00:00
#include <osquery/sql.h>
2015-02-04 03:55:16 +00:00
namespace osquery {
2015-02-19 23:19:00 +00:00
DECLARE_int32(worker_threads);
DECLARE_string(extensions_socket);
DECLARE_string(extensions_autoload);
DECLARE_string(extensions_timeout);
DECLARE_bool(disable_extensions);
/// A millisecond internal applied to extension initialization.
extern const size_t kExtensionInitializeLatencyUS;
2015-02-04 03:55:16 +00:00
/**
* @brief Helper struct for managing extenion metadata.
*
* This structure should match the members of Thrift's InternalExtensionInfo.
*/
struct ExtensionInfo {
std::string name;
std::string version;
2015-02-19 23:19:00 +00:00
std::string min_sdk_version;
2015-02-04 03:55:16 +00:00
std::string sdk_version;
};
2015-02-10 20:50:07 +00:00
typedef std::map<RouteUUID, ExtensionInfo> ExtensionList;
inline std::string getExtensionSocket(
RouteUUID uuid, const std::string& path = FLAGS_extensions_socket) {
if (uuid == 0) {
return path;
} else {
return path + "." + std::to_string(uuid);
}
2015-02-10 20:50:07 +00:00
}
2015-02-19 23:19:00 +00:00
/// External (extensions) SQL implementation of the osquery query API.
Status queryExternal(const std::string& query, QueryData& results);
2015-02-19 01:19:45 +00:00
2015-02-19 23:19:00 +00:00
/// External (extensions) SQL implementation of the osquery getQueryColumns API.
Status getQueryColumnsExternal(const std::string& q, TableColumns& columns);
2015-02-19 01:19:45 +00:00
2015-02-19 23:19:00 +00:00
/// External (extensions) SQL implementation plugin provider for "sql" registry.
class ExternalSQLPlugin : SQLPlugin {
2015-02-04 03:55:16 +00:00
public:
2015-02-19 23:19:00 +00:00
Status query(const std::string& q, QueryData& results) const {
return queryExternal(q, results);
2015-02-04 03:55:16 +00:00
}
Status getQueryColumns(const std::string& q, TableColumns& columns) const {
2015-02-19 23:19:00 +00:00
return getQueryColumnsExternal(q, columns);
2015-02-04 03:55:16 +00:00
}
};
2015-02-10 20:50:07 +00:00
/// 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);
2015-02-10 20:00:03 +00:00
/// Ping an extension manager or extension.
Status pingExtension(const std::string& path);
2015-03-03 23:03:14 +00:00
/**
* @brief Request the extensions API to autoload any appropriate extensions.
*
* 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 equivilent or greater (root) than the osquery
* process requesting autoload.
2015-03-04 16:45:21 +00:00
*/
void loadExtensions();
/**
* @brief Load extensions from a delimited search path string.
2015-03-03 23:03:14 +00:00
*
* @param paths A colon-delimited path variable, e.g: '/path1:/path2'.
*/
Status loadExtensions(const std::string& loadfile);
2015-03-03 23:03:14 +00:00
2015-03-04 16:45:21 +00:00
/**
* @brief Request the extensions API to autoload any appropriate modules.
*
* Extension modules are shared libraries that add Plugins to the osquery
* core's registry at runtime.
*/
void loadModules();
/**
* @brief Load extenion modules from a delimited search path string.
*
* @param paths A colon-delimited path variable, e.g: '/path1:/path2'.
*/
Status loadModules(const std::string& loadfile);
2015-03-04 16:45:21 +00:00
/// Load all modules in a direcotry.
Status loadModuleFile(const std::string& path);
2015-03-04 16:45:21 +00:00
2015-02-04 03:55:16 +00:00
/**
* @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.
2015-02-19 01:19:45 +00:00
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);
2015-02-04 03:55:16 +00:00
/// Internal startExtension implementation using a UNIX domain socket path.
Status startExtension(const std::string& manager_path,
const std::string& name,
const std::string& version,
2015-02-19 01:19:45 +00:00
const std::string& min_sdk_version,
2015-02-04 03:55:16 +00:00
const std::string& sdk_version);
/// Start an ExtensionWatcher thread.
Status startExtensionWatcher(const std::string& manager_path,
size_t interval,
bool fatal);
/// Start an ExtensionManagerRunner thread.
Status startExtensionManager();
/// Internal startExtensionManager implementation.
Status startExtensionManager(const std::string& manager_path);
}