forked from northpolesec/santa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configurable telemetry event filtering (northpolesec#149)
Adds support for a new `Telemetry` configuration key that allows admins to specify the event types that should be logged. This PR deprecated the `EnableForkAndExitLogging` key.
- Loading branch information
Showing
18 changed files
with
626 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/// Copyright 2024 North Pole Security, Inc. | ||
/// | ||
/// Licensed under the Apache License, Version 2.0 (the "License"); | ||
/// you may not use this file except in compliance with the License. | ||
/// You may obtain a copy of the License at | ||
/// | ||
/// http://www.apache.org/licenses/LICENSE-2.0 | ||
/// | ||
/// Unless required by applicable law or agreed to in writing, software | ||
/// distributed under the License is distributed on an "AS IS" BASIS, | ||
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
/// See the License for the specific language governing permissions and | ||
/// limitations under the License. | ||
|
||
#ifndef SANTA__COMMON__TELEMETRYEVENTMAP_H | ||
#define SANTA__COMMON__TELEMETRYEVENTMAP_H | ||
|
||
#import <EndpointSecurity/ESTypes.h> | ||
#import <Foundation/Foundation.h> | ||
|
||
namespace santa { | ||
|
||
// clang-format off | ||
enum class TelemetryEvent : uint64_t { | ||
kNone = 0, | ||
kExecution = 1 << 0, | ||
kFork = 1 << 1, | ||
kExit = 1 << 2, | ||
kClose = 1 << 3, | ||
kRename = 1 << 4, | ||
kUnlink = 1 << 5, | ||
kLink = 1 << 6, | ||
kExchangeData = 1 << 7, | ||
kDisk = 1 << 8, | ||
kBundle = 1 << 9, | ||
kAllowlist = 1 << 10, | ||
kFileAccess = 1 << 11, | ||
kCodesigningInvalidated = 1 << 12, | ||
kLoginWindowSession = 1 << 13, | ||
kLoginLogout = 1 << 14, | ||
kScreenSharing = 1 << 15, | ||
kOpenSSH = 1 << 16, | ||
kAuthentication = 1 << 17, | ||
kEverything = ~0ULL, | ||
}; | ||
// clang-format on | ||
|
||
inline TelemetryEvent operator|(TelemetryEvent lhs, TelemetryEvent rhs) { | ||
return static_cast<TelemetryEvent>(static_cast<std::underlying_type_t<TelemetryEvent>>(lhs) | | ||
static_cast<std::underlying_type_t<TelemetryEvent>>(rhs)); | ||
} | ||
|
||
inline TelemetryEvent &operator|=(TelemetryEvent &lhs, TelemetryEvent rhs) { | ||
lhs = lhs | rhs; | ||
return lhs; | ||
} | ||
|
||
inline TelemetryEvent operator&(TelemetryEvent lhs, TelemetryEvent rhs) { | ||
return static_cast<TelemetryEvent>(static_cast<std::underlying_type_t<TelemetryEvent>>(lhs) & | ||
static_cast<std::underlying_type_t<TelemetryEvent>>(rhs)); | ||
} | ||
|
||
inline TelemetryEvent &operator&=(TelemetryEvent &lhs, TelemetryEvent rhs) { | ||
lhs = lhs & rhs; | ||
return lhs; | ||
} | ||
|
||
inline TelemetryEvent operator~(TelemetryEvent rhs) { | ||
return static_cast<TelemetryEvent>(~static_cast<std::underlying_type_t<TelemetryEvent>>(rhs)); | ||
} | ||
|
||
// Create a `TelemetryEvent` bitmask based on the `Telemetry` and | ||
// `EnableForkAndExitLogging` configuration values. The `Telemetry` event | ||
// array takes precedence over `EnableForkAndExitLogging`. | ||
// | ||
// If `Telemetry` is set, the events specified will be used. | ||
// If `Telemetry` is not set, `everything` (all events) are assumed. | ||
// When `Telemetry` is not set, `EnableForkAndExitLogging` willbe checked. If | ||
// `false`, the `FORK` and `EXIT` bits will be cleared from the mask. | ||
TelemetryEvent TelemetryConfigToBitmask(NSArray<NSString *> *telemetry, | ||
BOOL enableForkAndExitLogging); | ||
|
||
// Returns the appropriate `TelemetryEvent` enum value for a given ES event | ||
TelemetryEvent ESEventToTelemetryEvent(es_event_type_t event); | ||
|
||
} // namespace santa | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/// Copyright 2024 North Pole Security, Inc. | ||
/// | ||
/// Licensed under the Apache License, Version 2.0 (the "License"); | ||
/// you may not use this file except in compliance with the License. | ||
/// You may obtain a copy of the License at | ||
/// | ||
/// http://www.apache.org/licenses/LICENSE-2.0 | ||
/// | ||
/// Unless required by applicable law or agreed to in writing, software | ||
/// distributed under the License is distributed on an "AS IS" BASIS, | ||
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
/// See the License for the specific language governing permissions and | ||
/// limitations under the License. | ||
|
||
#include "Source/common/TelemetryEventMap.h" | ||
|
||
#include <string_view> | ||
|
||
#include "Source/common/String.h" | ||
#include "absl/container/flat_hash_map.h" | ||
|
||
namespace santa { | ||
|
||
static inline TelemetryEvent EventNameToMask(std::string_view event) { | ||
static absl::flat_hash_map<std::string_view, TelemetryEvent> event_name_to_mask = { | ||
{"execution", TelemetryEvent::kExecution}, | ||
{"fork", TelemetryEvent::kFork}, | ||
{"exit", TelemetryEvent::kExit}, | ||
{"close", TelemetryEvent::kClose}, | ||
{"rename", TelemetryEvent::kRename}, | ||
{"unlink", TelemetryEvent::kUnlink}, | ||
{"link", TelemetryEvent::kLink}, | ||
{"exchangedata", TelemetryEvent::kExchangeData}, | ||
{"disk", TelemetryEvent::kDisk}, | ||
{"bundle", TelemetryEvent::kBundle}, | ||
{"allowlist", TelemetryEvent::kAllowlist}, | ||
{"fileaccess", TelemetryEvent::kFileAccess}, | ||
{"codesigninginvalidated", TelemetryEvent::kCodesigningInvalidated}, | ||
{"loginwindowsession", TelemetryEvent::kLoginWindowSession}, | ||
{"loginlogout", TelemetryEvent::kLoginLogout}, | ||
{"screensharing", TelemetryEvent::kScreenSharing}, | ||
{"openssh", TelemetryEvent::kOpenSSH}, | ||
{"authentication", TelemetryEvent::kAuthentication}, | ||
|
||
// special cases | ||
{"none", TelemetryEvent::kNone}, | ||
{"everything", TelemetryEvent::kEverything}, | ||
}; | ||
|
||
auto search = event_name_to_mask.find(event); | ||
if (search != event_name_to_mask.end()) { | ||
return search->second; | ||
} else { | ||
return TelemetryEvent::kNone; | ||
} | ||
} | ||
|
||
TelemetryEvent TelemetryConfigToBitmask(NSArray<NSString *> *telemetry, | ||
BOOL enableForkAndExitLogging) { | ||
TelemetryEvent mask = TelemetryEvent::kNone; | ||
|
||
if (telemetry) { | ||
for (NSString *event_name in telemetry) { | ||
mask |= EventNameToMask(santa::NSStringToUTF8StringView([event_name lowercaseString])); | ||
} | ||
} else { | ||
mask = TelemetryEvent::kEverything; | ||
|
||
if (enableForkAndExitLogging == false) { | ||
mask &= (~TelemetryEvent::kFork & ~TelemetryEvent::kExit); | ||
} | ||
} | ||
|
||
return mask; | ||
} | ||
|
||
TelemetryEvent ESEventToTelemetryEvent(es_event_type_t event) { | ||
switch (event) { | ||
case ES_EVENT_TYPE_NOTIFY_CLOSE: return TelemetryEvent::kClose; | ||
case ES_EVENT_TYPE_NOTIFY_CS_INVALIDATED: return TelemetryEvent::kCodesigningInvalidated; | ||
case ES_EVENT_TYPE_NOTIFY_EXCHANGEDATA: return TelemetryEvent::kExchangeData; | ||
case ES_EVENT_TYPE_NOTIFY_EXEC: return TelemetryEvent::kExecution; | ||
case ES_EVENT_TYPE_NOTIFY_EXIT: return TelemetryEvent::kExit; | ||
case ES_EVENT_TYPE_NOTIFY_FORK: return TelemetryEvent::kFork; | ||
case ES_EVENT_TYPE_NOTIFY_LINK: return TelemetryEvent::kLink; | ||
case ES_EVENT_TYPE_NOTIFY_RENAME: return TelemetryEvent::kRename; | ||
case ES_EVENT_TYPE_NOTIFY_UNLINK: return TelemetryEvent::kUnlink; | ||
case ES_EVENT_TYPE_NOTIFY_AUTHENTICATION: return TelemetryEvent::kAuthentication; | ||
case ES_EVENT_TYPE_NOTIFY_LOGIN_LOGIN: return TelemetryEvent::kLoginLogout; | ||
case ES_EVENT_TYPE_NOTIFY_LOGIN_LOGOUT: return TelemetryEvent::kLoginLogout; | ||
case ES_EVENT_TYPE_NOTIFY_LW_SESSION_LOGIN: return TelemetryEvent::kLoginWindowSession; | ||
case ES_EVENT_TYPE_NOTIFY_LW_SESSION_LOGOUT: return TelemetryEvent::kLoginWindowSession; | ||
case ES_EVENT_TYPE_NOTIFY_LW_SESSION_LOCK: return TelemetryEvent::kLoginWindowSession; | ||
case ES_EVENT_TYPE_NOTIFY_LW_SESSION_UNLOCK: return TelemetryEvent::kLoginWindowSession; | ||
case ES_EVENT_TYPE_NOTIFY_SCREENSHARING_ATTACH: return TelemetryEvent::kScreenSharing; | ||
case ES_EVENT_TYPE_NOTIFY_SCREENSHARING_DETACH: return TelemetryEvent::kScreenSharing; | ||
case ES_EVENT_TYPE_NOTIFY_OPENSSH_LOGIN: return TelemetryEvent::kOpenSSH; | ||
case ES_EVENT_TYPE_NOTIFY_OPENSSH_LOGOUT: return TelemetryEvent::kOpenSSH; | ||
default: return TelemetryEvent::kNone; | ||
} | ||
} | ||
|
||
} // namespace santa |
Oops, something went wrong.