2015-01-26 08:02:02 +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 <string>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2015-03-13 15:11:08 +00:00
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
|
2015-02-06 17:42:03 +00:00
|
|
|
#include <osquery/flags.h>
|
|
|
|
|
2015-02-19 23:19:00 +00:00
|
|
|
#include "osquery/dispatcher/dispatcher.h"
|
|
|
|
|
2015-06-05 18:20:24 +00:00
|
|
|
/// Define a special debug/testing watchdog level.
|
|
|
|
#define WATCHDOG_LEVEL_DEBUG 3
|
|
|
|
/// Define the default watchdog level, level below are considered permissive.
|
|
|
|
#define WATCHDOG_LEVEL_DEFAULT 1
|
|
|
|
|
2015-01-26 08:02:02 +00:00
|
|
|
namespace osquery {
|
|
|
|
|
2015-02-06 17:42:03 +00:00
|
|
|
DECLARE_bool(disable_watchdog);
|
2015-06-05 18:20:24 +00:00
|
|
|
DECLARE_int32(watchdog_level);
|
2015-02-06 17:42:03 +00:00
|
|
|
|
2015-06-04 18:46:19 +00:00
|
|
|
class WatcherRunner;
|
|
|
|
|
2015-03-13 15:11:08 +00:00
|
|
|
/**
|
|
|
|
* @brief Categories of process performance limitations.
|
|
|
|
*
|
|
|
|
* Performance limits are applied by a watcher thread on autoloaded extensions
|
2015-06-05 18:20:24 +00:00
|
|
|
* and a optional daemon worker process. The performance types are identified
|
2015-03-13 15:11:08 +00:00
|
|
|
* here, and organized into levels. Such that a caller may enforce rigor or
|
|
|
|
* relax the performance expectations of a osquery daemon.
|
|
|
|
*/
|
2015-02-09 00:00:43 +00:00
|
|
|
enum WatchdogLimitType {
|
|
|
|
MEMORY_LIMIT,
|
|
|
|
UTILIZATION_LIMIT,
|
|
|
|
RESPAWN_LIMIT,
|
|
|
|
RESPAWN_DELAY,
|
|
|
|
LATENCY_LIMIT,
|
|
|
|
INTERVAL,
|
|
|
|
};
|
|
|
|
|
2015-03-13 15:11:08 +00:00
|
|
|
/**
|
|
|
|
* @brief A performance state structure for an autoloaded extension or worker.
|
|
|
|
*
|
|
|
|
* A watcher thread will continue to check the performance state, and keep a
|
|
|
|
* last-checked snapshot for each autoloaded extension and worker process.
|
|
|
|
*/
|
|
|
|
struct PerformanceState {
|
|
|
|
/// A counter of how many intervals the process exceeded performance limits.
|
|
|
|
size_t sustained_latency;
|
|
|
|
/// The last checked user CPU time.
|
|
|
|
size_t user_time;
|
|
|
|
/// The last checked system CPU time.
|
|
|
|
size_t system_time;
|
|
|
|
/// A timestamp when the process/worker was last created.
|
|
|
|
size_t last_respawn_time;
|
|
|
|
|
2015-05-04 18:30:25 +00:00
|
|
|
/// The initial (or as close as possible) process image footprint.
|
|
|
|
size_t initial_footprint;
|
|
|
|
|
2015-03-13 15:11:08 +00:00
|
|
|
PerformanceState() {
|
|
|
|
sustained_latency = 0;
|
|
|
|
user_time = 0;
|
|
|
|
system_time = 0;
|
|
|
|
last_respawn_time = 0;
|
2015-05-04 18:30:25 +00:00
|
|
|
initial_footprint = 0;
|
2015-03-13 15:11:08 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Thread-safe watched child process state manager.
|
|
|
|
*
|
|
|
|
* The Watcher instance is separated from the WatcherRunner thread to allow
|
|
|
|
* signals and osquery-introspection to monitor the autoloaded extensions
|
|
|
|
* and optional worker stats. A child-process change signal may indicate an
|
|
|
|
* autoloaded extension ended. Tables may also report on the historic worker
|
|
|
|
* or extension utilizations.
|
|
|
|
*
|
2015-05-04 03:02:01 +00:00
|
|
|
* Though not critical, it is preferred to remove the extension's broadcasted
|
2015-03-13 15:11:08 +00:00
|
|
|
* routes quickly. Locking access to the extensions list between signals and
|
|
|
|
* the WatcherRunner thread allows osquery to tearDown registry changes before
|
|
|
|
* attempting to respawn an extension process.
|
|
|
|
*/
|
|
|
|
class Watcher : private boost::noncopyable {
|
2015-01-26 08:02:02 +00:00
|
|
|
public:
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Instance accessor
|
|
|
|
static Watcher& instance() {
|
|
|
|
static Watcher instance;
|
|
|
|
return instance;
|
2015-01-26 08:02:02 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Reset counters after a worker exits.
|
|
|
|
static void resetWorkerCounters(size_t respawn_time);
|
2015-01-26 08:02:02 +00:00
|
|
|
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Reset counters for an extension path.
|
|
|
|
static void resetExtensionCounters(const std::string& extension,
|
|
|
|
size_t respawn_time);
|
|
|
|
|
|
|
|
/// Lock access to extensions.
|
|
|
|
static void lock() { instance().lock_.lock(); }
|
|
|
|
|
|
|
|
/// Unlock access to extensions.
|
|
|
|
static void unlock() { instance().lock_.unlock(); }
|
|
|
|
|
|
|
|
/// Accessor for autoloadable extension paths.
|
|
|
|
static const std::map<std::string, pid_t>& extensions() {
|
|
|
|
return instance().extensions_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Lookup extension path from pid.
|
|
|
|
static std::string getExtensionPath(pid_t child);
|
|
|
|
|
|
|
|
/// Remove an autoloadable extension path.
|
|
|
|
static void removeExtensionPath(const std::string& extension);
|
|
|
|
|
|
|
|
/// Add extensions autoloadable paths.
|
|
|
|
static void addExtensionPath(const std::string& path);
|
|
|
|
|
|
|
|
/// Get state information for a worker or extension child.
|
|
|
|
static PerformanceState& getState(pid_t child);
|
|
|
|
static PerformanceState& getState(const std::string& extension);
|
|
|
|
|
|
|
|
/// Accessor for the worker process.
|
|
|
|
static pid_t getWorker() { return instance().worker_; }
|
|
|
|
|
|
|
|
/// Setter for worker process.
|
|
|
|
static void setWorker(pid_t child) { instance().worker_ = child; }
|
|
|
|
|
|
|
|
/// Setter for an extension process.
|
|
|
|
static void setExtension(const std::string& extension, pid_t child);
|
|
|
|
|
|
|
|
/// Reset pid and performance counters for a worker or extension process.
|
|
|
|
static void reset(pid_t child);
|
|
|
|
|
2015-06-04 18:46:19 +00:00
|
|
|
/// Count the number of worker restarts.
|
|
|
|
static size_t workerRestartCount() { return instance().worker_restarts_; }
|
|
|
|
|
2015-04-24 08:44:41 +00:00
|
|
|
/**
|
|
|
|
* @brief Return the state of autoloadable extensions.
|
|
|
|
*
|
|
|
|
* Some initialization decisions are made based on waiting for plugins to
|
|
|
|
* broadcast from potentially-loaded extensions. If no extensions are loaded
|
2015-05-04 03:02:01 +00:00
|
|
|
* and an active (selected at command line) plugin is missing, fail quickly.
|
2015-04-24 08:44:41 +00:00
|
|
|
*/
|
2015-03-17 07:29:23 +00:00
|
|
|
static bool hasManagedExtensions();
|
2015-01-26 08:02:02 +00:00
|
|
|
|
|
|
|
private:
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Do not request the lock until extensions are used.
|
2015-06-05 18:20:24 +00:00
|
|
|
Watcher()
|
|
|
|
: worker_(-1), worker_restarts_(0), lock_(mutex_, boost::defer_lock) {}
|
2015-03-13 15:11:08 +00:00
|
|
|
Watcher(Watcher const&);
|
|
|
|
void operator=(Watcher const&);
|
|
|
|
virtual ~Watcher() {}
|
2015-01-26 08:02:02 +00:00
|
|
|
|
2015-06-04 18:46:19 +00:00
|
|
|
private:
|
|
|
|
/// Inform the watcher that the worker restarted without cause.
|
|
|
|
static void workerRestarted() { instance().worker_restarts_++; }
|
|
|
|
|
2015-01-26 08:02:02 +00:00
|
|
|
private:
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Performance state for the worker process.
|
|
|
|
PerformanceState state_;
|
|
|
|
/// Performance states for each autoloadable extension binary.
|
|
|
|
std::map<std::string, PerformanceState> extension_states_;
|
2015-01-26 08:02:02 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// Keep the single worker process/thread ID for inspection.
|
|
|
|
pid_t worker_;
|
2015-06-05 18:20:24 +00:00
|
|
|
/// Number of worker restarts NOT induced by a watchdog process.
|
2015-06-04 18:46:19 +00:00
|
|
|
size_t worker_restarts_;
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Keep a list of resolved extension paths and their managed pids.
|
|
|
|
std::map<std::string, pid_t> extensions_;
|
2015-04-24 08:44:41 +00:00
|
|
|
/// Paths to autoload extensions.
|
2015-03-13 15:11:08 +00:00
|
|
|
std::vector<std::string> extensions_paths_;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Mutex and lock around extensions access.
|
|
|
|
boost::mutex mutex_;
|
|
|
|
/// Mutex and lock around extensions access.
|
|
|
|
boost::unique_lock<boost::mutex> lock_;
|
2015-06-04 18:46:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class WatcherRunner;
|
2015-03-13 15:11:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief A scoped locker for iterating over watcher extensions.
|
|
|
|
*
|
|
|
|
* A lock must be used if any part of osquery wants to enumerate the autoloaded
|
|
|
|
* extensions or autoloadable extension paths a Watcher may be monitoring.
|
|
|
|
* A signal or WatcherRunner thread may stop or start extensions.
|
|
|
|
*/
|
|
|
|
class WatcherLocker {
|
|
|
|
public:
|
|
|
|
/// Construct and gain watcher lock.
|
|
|
|
WatcherLocker() { Watcher::lock(); }
|
|
|
|
/// Destruct and release watcher lock.
|
|
|
|
~WatcherLocker() { Watcher::unlock(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The watchdog thread responsible for spawning/monitoring children.
|
|
|
|
*
|
2015-04-24 08:44:41 +00:00
|
|
|
* The WatcherRunner thread will spawn any autoloaded extensions or optional
|
2015-03-13 15:11:08 +00:00
|
|
|
* osquery daemon worker processes. It will then poll for their performance
|
2015-04-24 08:44:41 +00:00
|
|
|
* state and kill/respawn osquery child processes if they violate limits.
|
2015-03-13 15:11:08 +00:00
|
|
|
*/
|
|
|
|
class WatcherRunner : public InternalRunnable {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @brief Construct a watcher thread.
|
|
|
|
*
|
|
|
|
* @param argc The osquery process argc.
|
|
|
|
* @param argv The osquery process argv.
|
|
|
|
* @param use_worker True if the process should spawn and monitor a worker.
|
|
|
|
*/
|
|
|
|
explicit WatcherRunner(int argc, char** argv, bool use_worker)
|
|
|
|
: argc_(argc), argv_(argv), use_worker_(use_worker) {
|
|
|
|
(void)argc_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-04-24 08:44:41 +00:00
|
|
|
/// Dispatcher (this service thread's) entry point.
|
2015-05-06 00:09:07 +00:00
|
|
|
void start();
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Boilerplate function to sleep for some configured latency
|
|
|
|
bool ok();
|
|
|
|
/// Begin the worker-watcher process.
|
|
|
|
bool watch(pid_t child);
|
|
|
|
/// Inspect into the memory, CPU, and other worker/extension process states.
|
|
|
|
bool isChildSane(pid_t child);
|
|
|
|
|
|
|
|
private:
|
2015-04-24 08:44:41 +00:00
|
|
|
/// Fork and execute a worker process.
|
2015-03-13 15:11:08 +00:00
|
|
|
void createWorker();
|
|
|
|
/// Fork an extension process.
|
|
|
|
bool createExtension(const std::string& extension);
|
|
|
|
/// If a worker/extension has otherwise gone insane, stop it.
|
|
|
|
void stopChild(pid_t child);
|
|
|
|
|
|
|
|
private:
|
2015-01-26 08:02:02 +00:00
|
|
|
/// Keep the invocation daemon's argc to iterate through argv.
|
|
|
|
int argc_;
|
2015-05-04 03:02:01 +00:00
|
|
|
/// When a worker child is spawned the argv will be scrubbed.
|
2015-01-26 08:02:02 +00:00
|
|
|
char** argv_;
|
2015-03-13 15:11:08 +00:00
|
|
|
/// Spawn/monitor a worker process.
|
|
|
|
bool use_worker_;
|
2015-01-26 08:02:02 +00:00
|
|
|
};
|
|
|
|
|
2015-02-06 17:42:03 +00:00
|
|
|
/// The WatcherWatcher is spawned within the worker and watches the watcher.
|
|
|
|
class WatcherWatcherRunner : public InternalRunnable {
|
|
|
|
public:
|
2015-02-24 11:47:12 +00:00
|
|
|
explicit WatcherWatcherRunner(pid_t watcher) : watcher_(watcher) {}
|
2015-06-05 18:20:24 +00:00
|
|
|
|
|
|
|
/// Runnable thread's entry point.
|
2015-05-06 00:09:07 +00:00
|
|
|
void start();
|
2015-02-06 17:42:03 +00:00
|
|
|
|
|
|
|
private:
|
2015-06-05 18:20:24 +00:00
|
|
|
/// Parent, or watchdog, process ID.
|
2015-02-06 17:42:03 +00:00
|
|
|
pid_t watcher_;
|
|
|
|
};
|
|
|
|
|
2015-02-09 00:00:43 +00:00
|
|
|
/// Get a performance limit by name and optional level.
|
|
|
|
size_t getWorkerLimit(WatchdogLimitType limit, int level = -1);
|
2015-01-26 08:02:02 +00:00
|
|
|
}
|