1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_ENTERPRISE_CONNECTORS_CORE_COMMON_H_
#define COMPONENTS_ENTERPRISE_CONNECTORS_CORE_COMMON_H_
#include <map>
#include <optional>
#include <set>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include "base/containers/fixed_flat_map.h"
#include "base/files/file_path.h"
#include "base/supports_user_data.h"
#include "build/blink_buildflags.h"
#include "components/enterprise/common/proto/connectors.pb.h"
#include "components/enterprise/common/proto/synced_from_google3/chrome_reporting_entity.pb.h"
#include "components/enterprise/connectors/core/reporting_constants.h"
#include "ui/gfx/range/range.h"
#include "url/gurl.h"
#if BUILDFLAG(USE_BLINK)
#include "components/download/public/common/download_danger_type.h" // nogncheck
namespace download {
class DownloadItem;
} // namespace download
#endif // BUILDFLAG(USE_BLINK)
namespace signin {
class IdentityManager;
}
namespace enterprise_connectors {
// Alias to reduce verbosity when using TriggeredRule::Actions.
using TriggeredRule = ContentAnalysisResponse::Result::TriggeredRule;
// Pair to specify the source and destination.
using SourceDestinationStringPair = std::pair<std::string, std::string>;
// Alias to reduce verbosity when using Event::EventCase.
using EventCase = ::chrome::cros::reporting::proto::Event::EventCase;
// Keys used to read a connector's policy values.
inline constexpr char kKeyServiceProvider[] = "service_provider";
inline constexpr char kKeyLinuxVerification[] = "verification.linux";
inline constexpr char kKeyMacVerification[] = "verification.mac";
inline constexpr char kKeyWindowsVerification[] = "verification.windows";
inline constexpr char kKeyEnable[] = "enable";
inline constexpr char kKeyDisable[] = "disable";
inline constexpr char kKeyUrlList[] = "url_list";
inline constexpr char kKeySourceDestinationList[] = "source_destination_list";
inline constexpr char kKeyTags[] = "tags";
inline constexpr char kKeyBlockUntilVerdict[] = "block_until_verdict";
inline constexpr char kKeyBlockPasswordProtected[] = "block_password_protected";
inline constexpr char kKeyBlockLargeFiles[] = "block_large_files";
inline constexpr char kKeyMinimumDataSize[] = "minimum_data_size";
inline constexpr char kKeyEnabledEventNames[] = "enabled_event_names";
inline constexpr char kKeyCustomMessages[] = "custom_messages";
inline constexpr char kKeyRequireJustificationTags[] =
"require_justification_tags";
inline constexpr char kKeyCustomMessagesTag[] = "tag";
inline constexpr char kKeyCustomMessagesMessage[] = "message";
inline constexpr char kKeyCustomMessagesLearnMoreUrl[] = "learn_more_url";
inline constexpr char kKeyMimeTypes[] = "mime_types";
inline constexpr char kKeyEnterpriseId[] = "enterprise_id";
inline constexpr char kKeyDefaultAction[] = "default_action";
inline constexpr char kKeyDomain[] = "domain";
inline constexpr char kKeyEnabledOptInEvents[] = "enabled_opt_in_events";
inline constexpr char kKeyOptInEventName[] = "name";
inline constexpr char kKeyOptInEventUrlPatterns[] = "url_patterns";
// Available tags.
inline constexpr char kDlpTag[] = "dlp";
inline constexpr char kMalwareTag[] = "malware";
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused. Keep this enum in sync with
// EnterpriseReportingEventType in enums.xml.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.components.enterprise.connectors
enum class EnterpriseReportingEventType {
kUnknownEvent = 0,
kPasswordReuseEvent = 1,
kPasswordChangedEvent = 2,
kDangerousDownloadEvent = 3,
kInterstitialEvent = 4,
kSensitiveDataEvent = 5,
kUnscannedFileEvent = 6,
kLoginEvent = 7,
kPasswordBreachEvent = 8,
kUrlFilteringInterstitialEvent = 9,
kExtensionInstallEvent = 10,
kBrowserCrashEvent = 11,
kExtensionTelemetryEvent = 12,
kMaxValue = kExtensionTelemetryEvent,
};
// Mapping from event name to UMA enum for logging histogram.
inline constexpr auto kEventNameToUmaEnumMap =
base::MakeFixedFlatMap<std::string_view, EnterpriseReportingEventType>({
{kKeyPasswordReuseEvent,
EnterpriseReportingEventType::kPasswordReuseEvent},
{kKeyPasswordChangedEvent,
EnterpriseReportingEventType::kPasswordChangedEvent},
{kKeyDangerousDownloadEvent,
EnterpriseReportingEventType::kDangerousDownloadEvent},
{kKeyInterstitialEvent,
EnterpriseReportingEventType::kInterstitialEvent},
{kKeySensitiveDataEvent,
EnterpriseReportingEventType::kSensitiveDataEvent},
{kKeyUnscannedFileEvent,
EnterpriseReportingEventType::kUnscannedFileEvent},
{kKeyLoginEvent, EnterpriseReportingEventType::kLoginEvent},
{kKeyPasswordBreachEvent,
EnterpriseReportingEventType::kPasswordBreachEvent},
{kKeyUrlFilteringInterstitialEvent,
EnterpriseReportingEventType::kUrlFilteringInterstitialEvent},
{kExtensionInstallEvent,
EnterpriseReportingEventType::kExtensionInstallEvent},
{kBrowserCrashEvent, EnterpriseReportingEventType::kBrowserCrashEvent},
{kExtensionTelemetryEvent,
EnterpriseReportingEventType::kExtensionTelemetryEvent},
});
// Struct holding the necessary data to tweak the behavior of the reporting
// Connector.
struct ReportingSettings {
ReportingSettings();
ReportingSettings(const std::string& dm_token, bool per_profile);
ReportingSettings(ReportingSettings&&);
ReportingSettings(const ReportingSettings&);
ReportingSettings& operator=(ReportingSettings&&);
~ReportingSettings();
std::set<std::string> enabled_event_names;
std::map<std::string, std::vector<std::string>> enabled_opt_in_events;
std::string dm_token;
// Indicates if the report should be made for the profile, or the browser if
// false.
bool per_profile = false;
};
// Returns the pref path corresponding to an analysis connector.
const char* AnalysisConnectorPref(AnalysisConnector connector);
const char* AnalysisConnectorScopePref(AnalysisConnector connector);
// Returns the highest precedence action in the given parameters. Writes the tag
// field of the result containing the highest precedence action into |tag|.
TriggeredRule::Action GetHighestPrecedenceAction(
const ContentAnalysisResponse& response,
std::string* tag);
TriggeredRule::Action GetHighestPrecedenceAction(
const TriggeredRule::Action& action_1,
const TriggeredRule::Action& action_2);
ContentAnalysisAcknowledgement::FinalAction GetHighestPrecedenceAction(
const ContentAnalysisAcknowledgement::FinalAction& action_1,
const ContentAnalysisAcknowledgement::FinalAction& action_2);
// Struct used to persist metadata about a file in base::SupportsUserData
// through ScanResult.
struct FileMetadata {
FileMetadata(
const std::string& filename,
const std::string& sha256,
const std::string& mime_type,
int64_t size,
const ContentAnalysisResponse& scan_response = ContentAnalysisResponse());
FileMetadata(FileMetadata&&);
FileMetadata(const FileMetadata&);
FileMetadata& operator=(const FileMetadata&);
~FileMetadata();
std::string filename;
std::string sha256;
std::string mime_type;
int64_t size;
ContentAnalysisResponse scan_response;
};
// User data class to persist scanning results for multiple files corresponding
// to a single base::SupportsUserData object.
struct ScanResult : public base::SupportsUserData::Data {
ScanResult();
explicit ScanResult(FileMetadata metadata);
~ScanResult() override;
static const char kKey[];
std::vector<FileMetadata> file_metadata;
std::optional<std::u16string> user_justification;
};
// Enum to identify which message to show once scanning is complete. Ordered
// by precedence for when multiple files have conflicting results.
enum class FinalContentAnalysisResult {
// Show that an issue was found and that the upload is blocked.
FAILURE = 0,
// Show that the scan failed and that the upload is blocked.
FAIL_CLOSED = 1,
// Show that files were not uploaded since they were too large.
LARGE_FILES = 2,
// Show that files were not uploaded since they were encrypted.
ENCRYPTED_FILES = 3,
// Show that DLP checks failed, but that the user can proceed if they want.
WARNING = 4,
// Show that no issue was found and that the user may proceed.
SUCCESS = 5,
};
// Result for a single request of the RequestHandler classes.
struct RequestHandlerResult {
RequestHandlerResult();
~RequestHandlerResult();
RequestHandlerResult(RequestHandlerResult&&);
RequestHandlerResult& operator=(RequestHandlerResult&&);
RequestHandlerResult(const RequestHandlerResult&);
RequestHandlerResult& operator=(const RequestHandlerResult&);
bool complies = false;
FinalContentAnalysisResult final_result = FinalContentAnalysisResult::FAILURE;
std::string tag;
std::string request_token;
ContentAnalysisResponse::Result::TriggeredRule::CustomRuleMessage
custom_rule_message;
};
// Calculates the ContentAnalysisAcknowledgement::FinalAction for an action
// based on the response it got from scanning.
ContentAnalysisAcknowledgement::FinalAction GetAckFinalAction(
const ContentAnalysisResponse& response);
// Extracts the message string from the custom rule message field in the content
// analysis response.
std::u16string GetCustomRuleString(
const ContentAnalysisResponse::Result::TriggeredRule::CustomRuleMessage&
custom_rule_message);
// Extracts the ranges and their corresponding links from the custom rule
// message field in the content analysis response. Used to style the custom rule
// message in the content analysis dialog. `offset` corresponds to its start
// index as we are inserting it in another message.
std::vector<std::pair<gfx::Range, GURL>> GetCustomRuleStyles(
const ContentAnalysisResponse::Result::TriggeredRule::CustomRuleMessage&
custom_rule_message,
size_t offset);
// Simple custom rule message for tests, with one message segment containing the
// text and associated url.
ContentAnalysisResponse::Result::TriggeredRule::CustomRuleMessage
CreateSampleCustomRuleMessage(const std::u16string& msg,
const std::string& url);
#if BUILDFLAG(USE_BLINK)
// Extracts the custom rule message from `download_item`. The rule for that
// message needs to have an action (WARN, BLOCK) corresponding to `danger_type`.
std::optional<ContentAnalysisResponse::Result::TriggeredRule::CustomRuleMessage>
GetDownloadsCustomRuleMessage(const download::DownloadItem* download_item,
download::DownloadDangerType danger_type);
#endif // BUILDFLAG(USE_BLINK)
// Checks if |response| contains a negative malware verdict.
bool ContainsMalwareVerdict(const ContentAnalysisResponse& response);
// Helper enum to get the corresponding regional url in service provider config
// for data region setting policy.
// LINT.IfChange(DataRegion)
enum class DataRegion { NO_PREFERENCE = 0, UNITED_STATES = 1, EUROPE = 2 };
// LINT.ThenChange(//components/enterprise/connectors/core/service_provider_config.cc:DlpRegionEndpoints)
GURL GetRegionalizedEndpoint(base::span<const char* const> region_urls,
DataRegion data_region);
DataRegion ChromeDataRegionSettingToEnum(int chrome_data_region_setting);
EnterpriseReportingEventType GetUmaEnumFromEventName(
std::string_view eventName);
EnterpriseReportingEventType GetUmaEnumFromEventCase(EventCase eventCase);
// The resulting action that chrome performed in response to a scan request.
// This maps to the event result in the real-time reporting.
enum class EventResult {
UNKNOWN,
// The user was allowed to use the data without restriction.
ALLOWED,
// The user was allowed to use the data but was warned that it may violate
// enterprise rules.
WARNED,
// The user was not allowed to use the data.
BLOCKED,
// The user has chosen to use the data even though it violated enterprise
// rules.
BYPASSED,
};
// Helper function to convert a EventResult to a string that. The format of
// string returned is processed by the sever.
std::string EventResultToString(EventResult result);
// Returns the email address of the unconsented account signed in to the profile
// or an empty string if no account is signed in. If `identity_manager` is null
// then the empty string is returned.
std::string GetProfileEmail(signin::IdentityManager* identity_manager);
// Returns the UMA metrics for tracking the successful uploaded event duration.
std::string GetSuccessfulUploadDurationUmaMetricName(
EnterpriseReportingEventType event_type);
// Returns the UMA metrics for tracking the failed-to-upload event duration.
std::string GetFailedUploadDurationUmaMetricName(
EnterpriseReportingEventType event_type);
} // namespace enterprise_connectors
#endif // COMPONENTS_ENTERPRISE_CONNECTORS_CORE_COMMON_H_
|