osquery-1/osquery/events/darwin/fsevents.h

190 lines
5.8 KiB
C++

/**
* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under both the Apache 2.0 license (found in the
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
* in the COPYING file in the root directory of this source tree).
* You may select, at your option, one of the above-listed licenses.
*/
#pragma once
#include <map>
#include <string>
#include <vector>
#include <boost/make_shared.hpp>
#include <CoreServices/CoreServices.h>
#include <osquery/events.h>
#include <osquery/status.h>
#include "osquery/events/pathset.h"
namespace osquery {
struct FSEventsSubscriptionContext : public SubscriptionContext {
public:
/// Subscription the following filesystem path.
std::string path;
/// Limit the FSEvents actions to the subscriptioned mask (if not 0).
FSEventStreamEventFlags mask{0};
/// A pattern with a recursive match was provided.
bool recursive{false};
/// Save the category this path originated form within the config.
std::string category;
/// Append an action.
void requireAction(const std::string& action);
private:
/**
* @brief The existing configure-time discovered path.
*
* The FSEvents publisher expects paths from a configuration to contain
* filesystem globbing wildcards, as opposed to SQL wildcards. It also expects
* paths to be canonicalized up to the first wildcard. To FSEvents a double
* wildcard, meaning recursive, is a watch on the base path string. A single
* wildcard means the same watch but a preserved globbing pattern, which is
* applied at event-fire time to limit subscriber results.
*
* This backup will allow post-fire subscriptions to match. It will also allow
* faster reconfigures by not performing string manipulation twice.
*/
std::string discovered_;
/// A configure-time pattern was expanded to match absolute paths.
bool recursive_match{false};
private:
friend class FSEventsEventPublisher;
};
struct FSEventsEventContext : public EventContext {
public:
ConstFSEventStreamRef fsevent_stream{nullptr};
FSEventStreamEventFlags fsevent_flags{0};
FSEventStreamEventId transaction_id{0};
std::string path;
std::string action;
};
using FSEventsEventContextRef = std::shared_ptr<FSEventsEventContext>;
using FSEventsSubscriptionContextRef =
std::shared_ptr<FSEventsSubscriptionContext>;
using ExcludePathSet = PathSet<patternedPath>;
/**
* @brief An osquery EventPublisher for the Apple FSEvents notification API.
*
* This exposes a lightweight filesystem eventing type by wrapping Apple's
* preferred implementation of FSEvents handling.
*
*/
class FSEventsEventPublisher
: public EventPublisher<FSEventsSubscriptionContext, FSEventsEventContext> {
DECLARE_PUBLISHER("fsevents");
public:
/// Called when configuration is loaded or updates occur.
void configure() override;
/// Another alias for `::end` or `::stop`.
void tearDown() override;
/// Entrypoint to the run loop
Status run() override;
public:
/// FSEvents registers a client callback instead of using a select/poll loop.
static void Callback(ConstFSEventStreamRef fsevent_stream,
void* callback_info,
size_t num_events,
void* event_paths,
const FSEventStreamEventFlags fsevent_flags[],
const FSEventStreamEventId fsevent_ids[]);
public:
bool shouldFire(const FSEventsSubscriptionContextRef& sc,
const FSEventsEventContextRef& ec) const override;
private:
/// Restart the run loop.
void restart();
/// Stop the stream and the run loop.
void stop() override;
/// Cause the FSEvents to flush kernel-buffered events.
void flush(bool async = false);
/**
* @brief Each subscription is 'parsed' during configuration.
*
* For each subscription, FSEvents will 'parse' the requested path and
* options. Requests for recursion or path globbing will be resolved.
* The input subscription will be modified such that 'fire'-matching can
* backtrace event paths to requested subscriptions.
*
* @params subscription The mutable subscription.
* @return A set of output paths to monitor.
*/
std::set<std::string> transformSubscription(
FSEventsSubscriptionContextRef& sc) const;
/// Build the set of excluded paths for which events are not to be propogated.
void buildExcludePathsSet();
private:
/// Check if the stream (and run loop) are running.
bool isStreamRunning() const;
/// Count the number of subscriptioned paths.
size_t numSubscriptionedPaths() const;
private:
/// Local reference to the start, stop, restart event stream.
FSEventStreamRef stream_{nullptr};
/// Has the FSEvents run loop and stream been started.
std::atomic<bool> stream_started_{false};
/// Set of paths to monitor, determined by a configure step.
std::set<std::string> paths_;
/// Events pertaining to these paths not to be propagated.
ExcludePathSet exclude_paths_;
/// Reference to the run loop for this thread.
CFRunLoopRef run_loop_{nullptr};
private:
/// For testing only, ask the event stream to publish events immediately.
bool no_defer_{false};
/// For testing only, allow the event stream to publish its own events.
bool no_self_{true};
/// Access to watched path set.
mutable Mutex mutex_;
private:
friend class FSEventsTests;
FRIEND_TEST(FSEventsTests, test_register_event_pub);
FRIEND_TEST(FSEventsTests, test_fsevents_add_subscription_missing_path);
FRIEND_TEST(FSEventsTests, test_fsevents_add_subscription_success);
FRIEND_TEST(FSEventsTests, test_fsevents_run);
FRIEND_TEST(FSEventsTests, test_fsevents_fire_event);
FRIEND_TEST(FSEventsTests, test_fsevents_event_action);
FRIEND_TEST(FSEventsTests, test_fsevents_embedded_wildcards);
FRIEND_TEST(FSEventsTests, test_fsevents_match_subscription);
};
}