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 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/enterprise/connectors/common.h"
#include "build/build_config.h"
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_downloads_delegate.h"
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_features.h"
#include "chrome/browser/enterprise/connectors/connectors_service.h"
#include "chrome/browser/enterprise/util/affiliation.h"
#include "chrome/browser/policy/dm_token_utils.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "chrome/browser/ash/profiles/profile_helper.h"
#include "components/user_manager/user.h"
#endif
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
#include "chrome/browser/enterprise/signin/enterprise_signin_prefs.h"
#include "components/prefs/pref_service.h"
#endif
#if BUILDFLAG(SAFE_BROWSING_AVAILABLE)
#include "chrome/browser/safe_browsing/cloud_content_scanning/binary_upload_service.h"
using safe_browsing::BinaryUploadService;
#endif // BUILDFLAG(SAFE_BROWSING_AVAILABLE)
#if BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_dialog_controller.h"
#endif // BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
#if BUILDFLAG(ENABLE_EXTENSIONS)
#include "chrome/browser/enterprise/connectors/reporting/realtime_reporting_client.h"
#include "chrome/browser/enterprise/connectors/reporting/realtime_reporting_client_factory.h"
#include "chrome/browser/extensions/api/safe_browsing_private/safe_browsing_private_event_router.h"
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
namespace enterprise_connectors {
namespace {
#if BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
bool ContentAnalysisActionAllowsDataUse(TriggeredRule::Action action) {
switch (action) {
case TriggeredRule::ACTION_UNSPECIFIED:
case TriggeredRule::REPORT_ONLY:
return true;
case TriggeredRule::WARN:
case TriggeredRule::BLOCK:
return false;
}
}
#if BUILDFLAG(ENABLE_EXTENSIONS)
std::string EventResultToString(
extensions::api::enterprise_reporting_private::EventResult event_result) {
// Make sure the values returned by this function match the names in
// google3/chrome/cros/reporting/api/proto/browser_events.proto
if (event_result ==
extensions::api::enterprise_reporting_private::EventResult::kNone) {
return "EVENT_RESULT_UNKNOWN";
}
return ToString(event_result);
}
std::string DetectorTypeToString(
extensions::api::enterprise_reporting_private::DetectorType detector_type) {
// Make sure the values returned by this function match the names in
// google3/chrome/cros/reporting/api/proto/browser_events.proto
if (detector_type ==
extensions::api::enterprise_reporting_private::DetectorType::kNone) {
return "DETECTOR_TYPE_UNSPECIFIED";
}
return ToString(detector_type);
}
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
#endif // BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
#if BUILDFLAG(SAFE_BROWSING_AVAILABLE)
bool ShouldAllowDeepScanOnLargeOrEncryptedFiles(
BinaryUploadService::Result result,
bool block_large_files,
bool block_password_protected_files) {
return (result == BinaryUploadService::Result::FILE_TOO_LARGE &&
!block_large_files) ||
(result == BinaryUploadService::Result::FILE_ENCRYPTED &&
!block_password_protected_files);
}
#endif // BUILDFLAG(SAFE_BROWSING_AVAILABLE)
} // namespace
#if BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
RequestHandlerResult CalculateRequestHandlerResult(
const AnalysisSettings& settings,
BinaryUploadService::Result upload_result,
const ContentAnalysisResponse& response) {
std::string tag;
auto action = GetHighestPrecedenceAction(response, &tag);
bool file_complies = ResultShouldAllowDataUse(settings, upload_result) &&
ContentAnalysisActionAllowsDataUse(action);
RequestHandlerResult result;
result.complies = file_complies;
result.request_token = response.request_token();
result.tag = tag;
if (file_complies) {
result.final_result = FinalContentAnalysisResult::SUCCESS;
return result;
}
// If file is non-compliant, map it to the specific case.
if (ResultIsFailClosed(upload_result)) {
DVLOG(1) << __func__ << ": result mapped to fail-closed.";
result.final_result = FinalContentAnalysisResult::FAIL_CLOSED;
} else if (upload_result == BinaryUploadService::Result::FILE_TOO_LARGE) {
result.final_result = FinalContentAnalysisResult::LARGE_FILES;
} else if (upload_result == BinaryUploadService::Result::FILE_ENCRYPTED) {
result.final_result = FinalContentAnalysisResult::ENCRYPTED_FILES;
} else if (action == TriggeredRule::WARN) {
result.final_result = FinalContentAnalysisResult::WARNING;
} else {
result.final_result = FinalContentAnalysisResult::FAILURE;
}
for (const auto& response_result : response.results()) {
if (!response_result.has_status() ||
response_result.status() != ContentAnalysisResponse::Result::SUCCESS) {
continue;
}
for (const auto& rule : response_result.triggered_rules()) {
// Ensures that lower precedence actions custom messages are skipped. The
// message shown is arbitrary for rules with the same precedence.
if (rule.action() == action && rule.has_custom_rule_message()) {
result.custom_rule_message = rule.custom_rule_message();
}
}
}
return result;
}
#endif // BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
const char SavePackageScanningData::kKey[] =
"enterprise_connectors.save_package_scanning_key";
SavePackageScanningData::SavePackageScanningData(
content::SavePackageAllowedCallback callback)
: callback(std::move(callback)) {}
SavePackageScanningData::~SavePackageScanningData() = default;
void RunSavePackageScanningCallback(download::DownloadItem* item,
bool allowed) {
DCHECK(item);
auto* data = static_cast<SavePackageScanningData*>(
item->GetUserData(SavePackageScanningData::kKey));
if (data && !data->callback.is_null())
std::move(data->callback).Run(allowed);
}
bool IncludeDeviceInfo(Profile* profile, bool per_profile) {
#if BUILDFLAG(IS_CHROMEOS)
const user_manager::User* user =
ash::ProfileHelper::Get()->GetUserByProfile(profile);
return user && user->IsAffiliated();
#else
// A browser managed through the device can send device info.
if (!per_profile) {
return true;
}
// An unmanaged browser shouldn't share its device info for privacy reasons.
if (!policy::GetDMToken(profile).is_valid()) {
return false;
}
// A managed device can share its info with the profile if they are
// affiliated.
return enterprise_util::IsProfileAffiliated(profile);
#endif
}
std::string GetProfileEmail(Profile* profile) {
if (!profile) {
return std::string();
}
std::string email =
GetProfileEmail(IdentityManagerFactory::GetForProfile(profile));
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
if (email.empty()) {
email = profile->GetPrefs()->GetString(
enterprise_signin::prefs::kProfileUserEmail);
}
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
return email;
}
#if BUILDFLAG(SAFE_BROWSING_AVAILABLE)
#if BUILDFLAG(FULL_SAFE_BROWSING)
bool IsResumableUpload(
const safe_browsing::BinaryUploadService::Request& request) {
// Currently resumable upload doesn't support paste or LBUS. If one day we do,
// we should update the logic here as well.
return !safe_browsing::IsConsumerScanRequest(request) &&
request.cloud_or_local_settings().is_cloud_analysis() &&
request.content_analysis_request().analysis_connector() !=
enterprise_connectors::AnalysisConnector::BULK_DATA_ENTRY;
}
#endif // BUILDFLAG(FULL_SAFE_BROWSING)
bool CloudMultipartResultIsFailure(BinaryUploadService::Result result) {
return result != BinaryUploadService::Result::SUCCESS;
}
bool CloudResumableResultIsFailure(BinaryUploadService::Result result,
bool block_large_files,
bool block_password_protected_files) {
return result != BinaryUploadService::Result::SUCCESS &&
!ShouldAllowDeepScanOnLargeOrEncryptedFiles(
result, block_large_files, block_password_protected_files);
}
bool LocalResultIsFailure(BinaryUploadService::Result result) {
return result != BinaryUploadService::Result::SUCCESS &&
result != BinaryUploadService::Result::FILE_TOO_LARGE &&
result != BinaryUploadService::Result::FILE_ENCRYPTED;
}
bool ResultIsFailClosed(BinaryUploadService::Result result) {
return result == BinaryUploadService::Result::UPLOAD_FAILURE ||
result == BinaryUploadService::Result::TIMEOUT ||
result == BinaryUploadService::Result::FAILED_TO_GET_TOKEN ||
result == BinaryUploadService::Result::TOO_MANY_REQUESTS ||
result == BinaryUploadService::Result::UNKNOWN ||
result == BinaryUploadService::Result::INCOMPLETE_RESPONSE;
}
bool ResultShouldAllowDataUse(const AnalysisSettings& settings,
BinaryUploadService::Result upload_result) {
bool default_action_allow_data_use =
settings.default_action == DefaultAction::kAllow;
// Keep this implemented as a switch instead of a simpler if statement so that
// new values added to BinaryUploadService::Result cause a compiler error.
switch (upload_result) {
case BinaryUploadService::Result::SUCCESS:
// UNAUTHORIZED allows data usage since it's a result only obtained if the
// browser is not authorized to perform deep scanning. It does not make
// sense to block data in this situation since no actual scanning of the
// data was performed, so it's allowed.
case BinaryUploadService::Result::UNAUTHORIZED:
return true;
case BinaryUploadService::Result::UPLOAD_FAILURE:
case BinaryUploadService::Result::TIMEOUT:
case BinaryUploadService::Result::FAILED_TO_GET_TOKEN:
case BinaryUploadService::Result::TOO_MANY_REQUESTS:
case BinaryUploadService::Result::UNKNOWN:
case BinaryUploadService::Result::INCOMPLETE_RESPONSE:
DVLOG(1) << __func__
<< ": handled by fail-closed settings, "
"default_action_allow_data_use="
<< default_action_allow_data_use;
return default_action_allow_data_use;
case BinaryUploadService::Result::FILE_TOO_LARGE:
return !settings.block_large_files;
case BinaryUploadService::Result::FILE_ENCRYPTED:
return !settings.block_password_protected_files;
}
}
EventResult CalculateEventResult(const AnalysisSettings& settings,
bool allowed_by_scan_result,
bool should_warn) {
bool wait_for_verdict =
settings.block_until_verdict == BlockUntilVerdict::kBlock;
return (allowed_by_scan_result || !wait_for_verdict)
? EventResult::ALLOWED
: (should_warn ? EventResult::WARNED : EventResult::BLOCKED);
}
#endif // BUILDFLAG(SAFE_BROWSING_AVAILABLE)
#if BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
bool ShouldPromptReviewForDownload(
Profile* profile,
const download::DownloadItem* download_item) {
// Review dialog only appears if custom UI has been set by the admin or custom
// rule message present in download item.
if (!download_item) {
return false;
}
download::DownloadDangerType danger_type = download_item->GetDangerType();
if (danger_type == download::DOWNLOAD_DANGER_TYPE_SENSITIVE_CONTENT_WARNING ||
danger_type == download::DOWNLOAD_DANGER_TYPE_SENSITIVE_CONTENT_BLOCK) {
return ConnectorsServiceFactory::GetForBrowserContext(profile)
->HasExtraUiToDisplay(AnalysisConnector::FILE_DOWNLOADED,
kDlpTag) ||
GetDownloadsCustomRuleMessage(download_item, danger_type);
} else if (danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_FILE ||
danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_URL ||
danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_CONTENT) {
return ConnectorsServiceFactory::GetForBrowserContext(profile)
->HasExtraUiToDisplay(AnalysisConnector::FILE_DOWNLOADED, kMalwareTag);
}
return false;
}
void ShowDownloadReviewDialog(const std::u16string& filename,
Profile* profile,
download::DownloadItem* download_item,
content::WebContents* web_contents,
base::OnceClosure keep_closure,
base::OnceClosure discard_closure) {
auto state = FinalContentAnalysisResult::FAILURE;
download::DownloadDangerType danger_type = download_item->GetDangerType();
if (danger_type == download::DOWNLOAD_DANGER_TYPE_SENSITIVE_CONTENT_WARNING) {
state = FinalContentAnalysisResult::WARNING;
}
const char* tag =
(danger_type ==
download::DOWNLOAD_DANGER_TYPE_SENSITIVE_CONTENT_WARNING ||
danger_type ==
download::DOWNLOAD_DANGER_TYPE_SENSITIVE_CONTENT_BLOCK
? kDlpTag
: kMalwareTag);
auto* connectors_service =
ConnectorsServiceFactory::GetForBrowserContext(profile);
std::u16string custom_message =
connectors_service
->GetCustomMessage(AnalysisConnector::FILE_DOWNLOADED, tag)
.value_or(u"");
GURL learn_more_url =
connectors_service
->GetLearnMoreUrl(AnalysisConnector::FILE_DOWNLOADED, tag)
.value_or(GURL());
bool bypass_justification_required =
connectors_service->GetBypassJustificationRequired(
AnalysisConnector::FILE_DOWNLOADED, tag);
// This dialog opens itself, and is thereafter owned by constrained window
// code.
new ContentAnalysisDialogController(
std::make_unique<ContentAnalysisDownloadsDelegate>(
filename, custom_message, learn_more_url,
bypass_justification_required, std::move(keep_closure),
std::move(discard_closure), download_item,
GetDownloadsCustomRuleMessage(download_item, danger_type)
.value_or(ContentAnalysisResponse::Result::TriggeredRule::
CustomRuleMessage())),
true, // Downloads are always cloud-based for now.
web_contents, safe_browsing::DeepScanAccessPoint::DOWNLOAD,
/* file_count */ 1, state, download_item);
}
#if BUILDFLAG(ENABLE_EXTENSIONS)
void ReportDataMaskingEvent(
content::BrowserContext* browser_context,
extensions::api::enterprise_reporting_private::DataMaskingEvent
data_masking_event) {
CHECK(browser_context);
auto* reporting_client =
enterprise_connectors::RealtimeReportingClientFactory::GetForProfile(
browser_context);
std::optional<enterprise_connectors::ReportingSettings> settings =
reporting_client->GetReportingSettings();
if (!settings.has_value() ||
!base::Contains(settings->enabled_event_names,
enterprise_connectors::kKeySensitiveDataEvent)) {
return;
}
base::Value::Dict event;
event.Set(extensions::SafeBrowsingPrivateEventRouter::kKeyUrl,
data_masking_event.url);
event.Set(extensions::SafeBrowsingPrivateEventRouter::kKeyTabUrl,
std::move(data_masking_event.url));
event.Set(extensions::SafeBrowsingPrivateEventRouter::kKeyEventResult,
EventResultToString(data_masking_event.event_result));
base::Value::List triggered_rule_info;
triggered_rule_info.reserve(data_masking_event.triggered_rule_info.size());
for (auto& rule : data_masking_event.triggered_rule_info) {
base::Value::Dict triggered_rule;
triggered_rule.Set(
extensions::SafeBrowsingPrivateEventRouter::kKeyTriggeredRuleId,
std::move(rule.rule_id));
triggered_rule.Set(
extensions::SafeBrowsingPrivateEventRouter::kKeyTriggeredRuleName,
std::move(rule.rule_name));
base::Value::List matched_detectors;
for (auto& detector : rule.matched_detectors) {
base::Value::Dict detector_value;
detector_value.Set(kKeyDetectorId, std::move(detector.detector_id));
detector_value.Set(kKeyDisplayName, std::move(detector.display_name));
detector_value.Set(kKeyDetectorType,
DetectorTypeToString(detector.detector_type));
matched_detectors.Append(std::move(detector_value));
}
triggered_rule.Set(kKeyMatchedDetectors, std::move(matched_detectors));
triggered_rule_info.Append(std::move(triggered_rule));
}
event.Set(extensions::SafeBrowsingPrivateEventRouter::kKeyTriggeredRuleInfo,
std::move(triggered_rule_info));
reporting_client->ReportRealtimeEvent(
enterprise_connectors::kKeySensitiveDataEvent,
std::move(settings.value()), std::move(event));
}
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
#endif // BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
} // namespace enterprise_connectors
|