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 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
|
// Copyright 2019 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/analysis/content_analysis_delegate.h"
#include <algorithm>
#include <memory>
#include <numeric>
#include <string>
#include <utility>
#include "base/feature_list.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/no_destructor.h"
#include "base/rand_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/enterprise/connectors/analysis/clipboard_analysis_request.h"
#include "chrome/browser/enterprise/connectors/analysis/clipboard_request_handler.h"
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_dialog_controller.h"
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_features.h"
#include "chrome/browser/enterprise/connectors/analysis/files_request_handler.h"
#include "chrome/browser/enterprise/connectors/analysis/page_print_analysis_request.h"
#include "chrome/browser/enterprise/connectors/analysis/page_print_request_handler.h"
#include "chrome/browser/enterprise/connectors/common.h"
#include "chrome/browser/enterprise/connectors/connectors_service.h"
#include "chrome/browser/enterprise/data_controls/reporting_service.h"
#include "chrome/browser/extensions/api/safe_browsing_private/safe_browsing_private_event_router.h"
#include "chrome/browser/file_util_service.h"
#include "chrome/browser/policy/dm_token_utils.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/safe_browsing/chrome_enterprise_url_lookup_service_factory.h"
#include "chrome/browser/safe_browsing/cloud_content_scanning/binary_upload_service.h"
#include "chrome/browser/safe_browsing/cloud_content_scanning/deep_scanning_utils.h"
#include "chrome/browser/safe_browsing/cloud_content_scanning/file_analysis_request.h"
#include "chrome/browser/safe_browsing/download_protection/check_client_download_request.h"
#include "chrome/browser/safe_browsing/safe_browsing_navigation_observer_manager_factory.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/grit/generated_resources.h"
#include "components/enterprise/buildflags/buildflags.h"
#include "components/enterprise/common/files_scan_data.h"
#include "components/enterprise/common/proto/connectors.pb.h"
#include "components/enterprise/connectors/core/analysis_settings.h"
#include "components/enterprise/connectors/core/common.h"
#include "components/enterprise/connectors/core/features.h"
#include "components/enterprise/connectors/core/reporting_utils.h"
#include "components/guest_view/browser/guest_view_base.h"
#include "components/policy/core/common/chrome_schema.h"
#include "components/prefs/pref_service.h"
#include "components/safe_browsing/content/browser/web_ui/safe_browsing_ui.h"
#include "components/safe_browsing/core/browser/realtime/url_lookup_service_base.h"
#include "components/safe_browsing/core/common/features.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/sessions/content/session_tab_helper.h"
#include "components/url_matcher/url_matcher.h"
#include "content/public/browser/web_contents.h"
#include "crypto/secure_hash.h"
#include "crypto/sha2.h"
#include "net/base/mime_util.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/ui_base_types.h"
#if BUILDFLAG(ENTERPRISE_LOCAL_CONTENT_ANALYSIS)
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_sdk_manager.h" // nogncheck
#endif
using safe_browsing::BinaryUploadService;
namespace enterprise_connectors {
namespace {
// URL chain limit for nested iFrames.
constexpr int kMaxFrameUrls = 10;
// Global pointer of factory function (RepeatingCallback) used to create
// instances of ContentAnalysisDelegate in tests. !is_null() only in tests.
ContentAnalysisDelegate::Factory* GetFactoryStorage() {
static base::NoDestructor<ContentAnalysisDelegate::Factory> factory;
return factory.get();
}
bool* UIEnabledStorage() {
static bool enabled = true;
return &enabled;
}
ContentAnalysisDelegate::OnAckAllRequestsCallback* OnAckAllRequestsStorage() {
static base::NoDestructor<ContentAnalysisDelegate::OnAckAllRequestsCallback>
callback;
return callback.get();
}
void OnContentAnalysisComplete(
std::unique_ptr<FilesScanData> files_scan_data,
ContentAnalysisDelegate::ForFilesCompletionCallback callback,
const ContentAnalysisDelegate::Data& data,
ContentAnalysisDelegate::Result& result) {
std::set<size_t> file_indexes_to_block =
files_scan_data->IndexesToBlock(result.paths_results);
std::vector<bool> allowed;
allowed.reserve(files_scan_data->base_paths().size());
for (size_t i = 0; i < files_scan_data->base_paths().size(); ++i) {
allowed.push_back(file_indexes_to_block.count(i) == 0);
}
std::move(callback).Run(files_scan_data->take_base_paths(),
std::move(allowed));
}
void OnPathsExpanded(
base::WeakPtr<content::WebContents> web_contents,
safe_browsing::DeepScanAccessPoint access_point,
ContentAnalysisDelegate::Data data,
std::unique_ptr<FilesScanData> files_scan_data,
ContentAnalysisDelegate::ForFilesCompletionCallback callback) {
if (!web_contents) {
size_t size = files_scan_data->base_paths().size();
std::move(callback).Run(files_scan_data->take_base_paths(),
std::vector<bool>(size, true));
return;
}
data.paths = files_scan_data->expanded_paths();
ContentAnalysisDelegate::CreateForWebContents(
web_contents.get(), std::move(data),
base::BindOnce(&OnContentAnalysisComplete, std::move(files_scan_data),
std::move(callback)),
access_point);
}
// Returns the list of URLs from the current frame all the way to the outermost
// frame URL. Above the `kMaxFrameUrls` limit, we skip the rest of the chain and
// take the outermost URL for performance considerations.
google::protobuf::RepeatedPtrField<std::string> CollectFrameUrls(
content::WebContents* web_contents) {
google::protobuf::RepeatedPtrField<std::string> frame_urls;
if (!web_contents) {
return frame_urls;
}
content::RenderFrameHost* current_frame = web_contents->GetFocusedFrame();
// Traverse upwards and add URLs to the chain.
while (current_frame && frame_urls.size() < kMaxFrameUrls - 1) {
*frame_urls.Add() = current_frame->GetLastCommittedURL().spec();
content::RenderFrameHost* parent = current_frame->GetParent();
if (!parent) {
// Already at outermost frame.
return frame_urls;
}
current_frame = parent;
}
// If we hit the limit, collect the top frame instead.
if (frame_urls.size() == kMaxFrameUrls - 1 && current_frame) {
current_frame = current_frame->GetOutermostMainFrame();
*frame_urls.Add() = current_frame->GetLastCommittedURL().spec();
}
return frame_urls;
}
} // namespace
ContentAnalysisDelegate::Data::Data() = default;
ContentAnalysisDelegate::Data::Data(Data&& other) = default;
ContentAnalysisDelegate::Data& ContentAnalysisDelegate::Data::operator=(
ContentAnalysisDelegate::Data&& other) = default;
ContentAnalysisDelegate::Data::~Data() = default;
void ContentAnalysisDelegate::Data::AddClipboardData(
const content::ClipboardPasteData& clipboard_paste_data) {
if (!clipboard_paste_data.text.empty()) {
text.push_back(base::UTF16ToUTF8(clipboard_paste_data.text));
}
if (!clipboard_paste_data.html.empty()) {
text.push_back(base::UTF16ToUTF8(clipboard_paste_data.html));
}
if (!clipboard_paste_data.svg.empty()) {
text.push_back(base::UTF16ToUTF8(clipboard_paste_data.svg));
}
if (!clipboard_paste_data.rtf.empty()) {
text.push_back(clipboard_paste_data.rtf);
}
if (!clipboard_paste_data.png.empty()) {
// Send image only to local agent for analysis.
if (settings.cloud_or_local_settings.is_local_analysis()) {
image = std::string(clipboard_paste_data.png.begin(),
clipboard_paste_data.png.end());
}
}
if (!clipboard_paste_data.custom_data.empty()) {
for (const auto& entry : clipboard_paste_data.custom_data) {
text.push_back(base::UTF16ToUTF8(entry.second));
}
}
}
ContentAnalysisDelegate::Result::Result() = default;
ContentAnalysisDelegate::Result::Result(Result&& other) = default;
ContentAnalysisDelegate::Result::~Result() = default;
ContentAnalysisDelegate::~ContentAnalysisDelegate() = default;
void ContentAnalysisDelegate::BypassWarnings(
std::optional<std::u16string> user_justification) {
if (callback_.is_null()) {
return;
}
// Mark the full text as complying and report a warning bypass.
if (text_request_result_.final_result ==
FinalContentAnalysisResult::WARNING) {
std::fill(result_.text_results.begin(), result_.text_results.end(), true);
text_request_handler_->ReportWarningBypass(user_justification);
}
// Mark the full image as complying and report a warning bypass.
if (image_request_result_.final_result ==
FinalContentAnalysisResult::WARNING) {
result_.image_result = true;
image_request_handler_->ReportWarningBypass(user_justification);
}
if (!warned_file_indices_.empty()) {
files_request_handler_->ReportWarningBypass(user_justification);
// Mark every warned file as complying.
for (size_t index : warned_file_indices_) {
result_.paths_results[index] = true;
}
}
// Mark the printed page as complying and report a warning bypass.
if (page_warning_) {
result_.page_result = true;
page_print_request_handler_->ReportWarningBypass(user_justification);
}
RunCallback();
}
void ContentAnalysisDelegate::Cancel(bool warning) {
if (callback_.is_null()) {
return;
}
// Don't report this upload as cancelled if the user didn't bypass the
// warning.
if (!warning) {
RecordDeepScanMetrics(
data_.settings.cloud_or_local_settings.is_cloud_analysis(),
access_point_, base::TimeTicks::Now() - upload_start_time_, 0,
"CancelledByUser", false);
}
// Ask the binary upload service to cancel requests if it can.
auto cancel = std::make_unique<BinaryUploadService::CancelRequests>(
data_.settings.cloud_or_local_settings);
cancel->set_user_action_id(user_action_id_);
BinaryUploadService* upload_service = GetBinaryUploadService();
if (upload_service) {
upload_service->MaybeCancelRequests(std::move(cancel));
}
// Make sure to reject everything.
FillAllResultsWith(false);
RunCallback();
}
std::optional<std::u16string> ContentAnalysisDelegate::GetCustomMessage()
const {
// Rule-based custom messages take precedence over policy-based.
std::u16string custom_rule_message =
GetCustomRuleString(custom_rule_message_);
if (!custom_rule_message.empty()) {
return l10n_util::GetStringFUTF16(IDS_DEEP_SCANNING_DIALOG_CUSTOM_MESSAGE,
custom_rule_message);
}
auto element = data_.settings.tags.find(final_result_tag_);
if (element != data_.settings.tags.end() &&
!element->second.custom_message.message.empty()) {
return l10n_util::GetStringFUTF16(IDS_DEEP_SCANNING_DIALOG_CUSTOM_MESSAGE,
element->second.custom_message.message);
}
return std::nullopt;
}
std::optional<GURL> ContentAnalysisDelegate::GetCustomLearnMoreUrl() const {
// Rule-based custom messages which don't have learn more urls take
// precedence over policy-based.
if (custom_rule_message_.message_segments().empty()) {
auto element = data_.settings.tags.find(final_result_tag_);
if (element != data_.settings.tags.end() &&
element->second.custom_message.learn_more_url.is_valid() &&
!element->second.custom_message.learn_more_url.is_empty()) {
return element->second.custom_message.learn_more_url;
}
}
return std::nullopt;
}
std::optional<std::vector<std::pair<gfx::Range, GURL>>>
ContentAnalysisDelegate::GetCustomRuleMessageRanges() const {
size_t offset;
l10n_util::GetStringFUTF16(IDS_DEEP_SCANNING_DIALOG_CUSTOM_MESSAGE,
std::u16string{}, &offset);
std::vector<std::pair<gfx::Range, GURL>> custom_rule_message_ranges =
GetCustomRuleStyles(custom_rule_message_, offset);
if (!custom_rule_message_ranges.empty()) {
return custom_rule_message_ranges;
}
return std::nullopt;
}
bool ContentAnalysisDelegate::BypassRequiresJustification() const {
return data_.settings.tags.count(final_result_tag_) &&
data_.settings.tags.at(final_result_tag_).requires_justification;
}
std::u16string ContentAnalysisDelegate::GetBypassJustificationLabel() const {
int id;
switch (access_point_) {
case safe_browsing::DeepScanAccessPoint::UPLOAD:
case safe_browsing::DeepScanAccessPoint::DRAG_AND_DROP:
case safe_browsing::DeepScanAccessPoint::FILE_TRANSFER:
id = IDS_DEEP_SCANNING_DIALOG_UPLOAD_BYPASS_JUSTIFICATION_LABEL;
break;
case safe_browsing::DeepScanAccessPoint::DOWNLOAD:
id = IDS_DEEP_SCANNING_DIALOG_DOWNLOAD_BYPASS_JUSTIFICATION_LABEL;
break;
case safe_browsing::DeepScanAccessPoint::PASTE:
id = IDS_DEEP_SCANNING_DIALOG_PASTE_BYPASS_JUSTIFICATION_LABEL;
break;
case safe_browsing::DeepScanAccessPoint::PRINT:
id = IDS_DEEP_SCANNING_DIALOG_PRINT_BYPASS_JUSTIFICATION_LABEL;
break;
}
return l10n_util::GetStringUTF16(id);
}
std::optional<std::u16string>
ContentAnalysisDelegate::OverrideCancelButtonText() const {
return std::nullopt;
}
// static
bool ContentAnalysisDelegate::IsEnabled(Profile* profile,
GURL url,
Data* data,
AnalysisConnector connector) {
auto* service = ConnectorsServiceFactory::GetForBrowserContext(profile);
// If the corresponding Connector policy isn't set, don't perform scans.
if (!service || !service->IsConnectorEnabled(connector)) {
return false;
}
// Check that |url| matches the appropriate URL patterns by getting settings.
// No settings means no matches were found.
auto settings = service->GetAnalysisSettings(url, connector);
if (!settings.has_value()) {
return false;
}
data->settings = std::move(settings.value());
if (url.is_valid()) {
data->url = url;
}
return true;
}
// static
void ContentAnalysisDelegate::CreateForWebContents(
content::WebContents* web_contents,
Data data,
CompletionCallback callback,
safe_browsing::DeepScanAccessPoint access_point) {
Factory* testing_factory = GetFactoryStorage();
bool wait_for_verdict =
data.settings.block_until_verdict == BlockUntilVerdict::kBlock;
bool should_allow_by_default =
data.settings.default_action == DefaultAction::kAllow;
DVLOG(1) << __func__
<< ": should_allow_by_default=" << should_allow_by_default;
// Using new instead of std::make_unique<> to access non public constructor.
auto delegate = testing_factory->is_null()
? base::WrapUnique(new ContentAnalysisDelegate(
web_contents, std::move(data), std::move(callback),
access_point))
: testing_factory->Run(web_contents, std::move(data),
std::move(callback));
UploadDataStatus upload_data_status = delegate->UploadData();
// Only show UI if one of the two conditions is met:
// 1. work is ongoing in the background and that the user must wait for a
// verdict.
// 2. work is done and fail-closed conditions are met.
bool show_in_progress_ui =
upload_data_status == UploadDataStatus::kInProgress && wait_for_verdict &&
(*UIEnabledStorage());
bool show_fail_closed_ui =
delegate->IsFailClosed(upload_data_status, should_allow_by_default) &&
(*UIEnabledStorage());
DVLOG(1) << __func__ << ": show_fail_closed_ui=" << show_fail_closed_ui;
// If the UI is enabled, create the modal dialog.
if (show_in_progress_ui || show_fail_closed_ui) {
ContentAnalysisDelegate* delegate_ptr = delegate.get();
int files_count = delegate_ptr->data_.paths.size();
// Update the result early if fail-closed is determined, otherwise set it to
// the default state.
FinalContentAnalysisResult result =
show_fail_closed_ui ? FinalContentAnalysisResult::FAIL_CLOSED
: FinalContentAnalysisResult::SUCCESS;
// This dialog is owned by the constrained_window code.
content::WebContents* top_web_contents =
guest_view::GuestViewBase::GetTopLevelWebContents(
web_contents->GetResponsibleWebContents());
delegate_ptr->dialog_ = new ContentAnalysisDialogController(
std::move(delegate),
delegate_ptr->data_.settings.cloud_or_local_settings
.is_cloud_analysis(),
top_web_contents, access_point, files_count, result);
return;
}
// If local client cannot be found, fail open on all the OS except on Windows
// (available integration should be installed).
if (upload_data_status == UploadDataStatus::kNoLocalClientFound) {
bool should_fail_open =
delegate->ShouldFailOpenWithoutLocalClient(should_allow_by_default);
DVLOG(1) << __func__ << ": no local client found, should_fail_open="
<< should_fail_open;
delegate->FillAllResultsWith(should_fail_open);
delegate->RunCallback();
}
if (!wait_for_verdict || upload_data_status == UploadDataStatus::kComplete) {
// The UI will not be shown but the policy is set to not wait for the
// verdict, or no scans need to be performed. Inform the caller that
// they may proceed.
//
// Supporting "wait for verdict" while not showing a UI makes writing
// tests for callers of this code easier.
DCHECK(delegate->final_result_ != FinalContentAnalysisResult::FAIL_CLOSED);
delegate->FillAllResultsWith(true);
delegate->RunCallback();
}
// If all requests are already done, just let `delegate` go out of scope.
if (delegate->all_work_done_) {
return;
}
// ... otherwise, let the last response from the upload service callback
// delete the delegate when there is no more work.
if (upload_data_status == UploadDataStatus::kInProgress) {
delegate.release();
}
}
// static
void ContentAnalysisDelegate::CreateForFilesInWebContents(
content::WebContents* web_contents,
Data data,
ForFilesCompletionCallback callback,
safe_browsing::DeepScanAccessPoint access_point) {
DCHECK(data.text.empty());
DCHECK(data.image.empty());
DCHECK(!data.page.IsValid());
auto files_scan_data = std::make_unique<FilesScanData>(std::move(data.paths));
auto* files_scan_data_ptr = files_scan_data.get();
files_scan_data_ptr->ExpandPaths(base::BindOnce(
&OnPathsExpanded, web_contents->GetWeakPtr(), access_point,
std::move(data), std::move(files_scan_data), std::move(callback)));
}
// static
void ContentAnalysisDelegate::SetFactoryForTesting(Factory factory) {
*GetFactoryStorage() = factory;
}
// static
void ContentAnalysisDelegate::ResetFactoryForTesting() {
if (GetFactoryStorage()) {
GetFactoryStorage()->Reset();
}
}
// static
void ContentAnalysisDelegate::DisableUIForTesting() {
*UIEnabledStorage() = false;
}
// TODO(b/283067315): Add this to all the test TearDown()s.
// static
void ContentAnalysisDelegate::EnableUIAfterTesting() {
*UIEnabledStorage() = true;
}
// static
void ContentAnalysisDelegate::SetOnAckAllRequestsCallbackForTesting(
OnAckAllRequestsCallback callback) {
*OnAckAllRequestsStorage() = std::move(callback);
}
void ContentAnalysisDelegate::SetPageWarningForTesting() {
page_warning_ = true;
}
ContentAnalysisDelegate::ContentAnalysisDelegate(
content::WebContents* web_contents,
Data data,
CompletionCallback callback,
safe_browsing::DeepScanAccessPoint access_point)
: data_(std::move(data)),
tab_id_(sessions::SessionTabHelper::IdForTab(web_contents)),
callback_(std::move(callback)),
access_point_(access_point) {
DCHECK(web_contents);
profile_ = Profile::FromBrowserContext(web_contents->GetBrowserContext());
url_ = web_contents->GetLastCommittedURL();
if (base::FeatureList::IsEnabled(kEnterpriseIframeDlpRulesSupport)) {
frame_url_chain_ = CollectFrameUrls(web_contents);
base::UmaHistogramCustomCounts(
base::JoinString(
{"Enterprise.IframeDlpRulesSupport",
safe_browsing::DeepScanAccessPointToString(access_point_),
"UrlChainSize"},
"."),
frame_url_chain_.size(), 1, kMaxFrameUrls, 10);
}
title_ = base::UTF16ToUTF8(web_contents->GetTitle());
user_action_id_ = base::HexEncode(base::RandBytesAsVector(128));
page_content_type_ = web_contents->GetContentsMimeType();
result_.text_results.resize(data_.text.size(), false);
result_.image_result = false;
result_.paths_results.resize(data_.paths.size(), false);
result_.page_result = false;
// This setter is technically redundant with other code in the class, but
// is useful to make unit tests behave predictably so the ordering in which
// each type of request is made doesn't matter.
files_request_complete_ = data_.paths.empty();
}
void ContentAnalysisDelegate::TextRequestCallback(RequestHandlerResult result) {
DCHECK(text_request_handler_);
text_request_result_ = std::move(result);
text_request_handler_->AppendFinalActionsTo(&final_actions_);
DVLOG(1) << __func__ << ": string result=" << text_request_result_.complies;
std::fill(result_.text_results.begin(), result_.text_results.end(),
text_request_result_.complies);
UpdateFinalResult(text_request_result_.final_result, text_request_result_.tag,
text_request_result_.custom_rule_message);
text_request_complete_ = true;
MaybeCompleteScanRequest();
}
void ContentAnalysisDelegate::ImageRequestCallback(
RequestHandlerResult result) {
DCHECK(image_request_handler_);
image_request_result_ = std::move(result);
image_request_handler_->AppendFinalActionsTo(&final_actions_);
DVLOG(1) << __func__ << ": image result=" << image_request_result_.complies;
result_.image_result = image_request_result_.complies;
UpdateFinalResult(image_request_result_.final_result,
image_request_result_.tag,
image_request_result_.custom_rule_message);
image_request_complete_ = true;
MaybeCompleteScanRequest();
}
void ContentAnalysisDelegate::FilesRequestCallback(
std::vector<RequestHandlerResult> results) {
// Remember to send acks for any responses.
files_request_handler_->AppendFinalActionsTo(&final_actions_);
// No reporting here, because the MultiFileRequestHandler does that.
DCHECK_EQ(results.size(), result_.paths_results.size());
for (size_t index = 0; index < results.size(); ++index) {
FinalContentAnalysisResult result = results[index].final_result;
result_.paths_results[index] = results[index].complies;
DVLOG(1) << __func__ << ": file index=" << index
<< " result=" << results[index].complies;
if (result == FinalContentAnalysisResult::WARNING) {
warned_file_indices_.push_back(index);
}
UpdateFinalResult(result, results[index].tag,
results[index].custom_rule_message);
}
files_request_results_ = std::move(results);
files_request_complete_ = true;
MaybeCompleteScanRequest();
}
FilesRequestHandler*
ContentAnalysisDelegate::GetFilesRequestHandlerForTesting() {
return files_request_handler_.get();
}
bool ContentAnalysisDelegate::ShowFinalResultInDialog() {
if (!dialog_) {
return false;
}
dialog_->ShowResult(final_result_);
return true;
}
bool ContentAnalysisDelegate::CancelDialog() {
if (!dialog_) {
return false;
}
dialog_->CancelDialogAndDelete();
return true;
}
void ContentAnalysisDelegate::PageRequestCallback(RequestHandlerResult result) {
DCHECK(page_print_request_handler_);
page_print_request_result_ = std::move(result);
page_print_request_handler_->AppendFinalActionsTo(&final_actions_);
result_.page_result = page_print_request_result_.complies;
UpdateFinalResult(page_print_request_result_.final_result,
page_print_request_result_.tag,
page_print_request_result_.custom_rule_message);
page_warning_ = page_print_request_result_.final_result ==
FinalContentAnalysisResult::WARNING;
page_request_complete_ = true;
MaybeCompleteScanRequest();
}
ContentAnalysisDelegate::UploadDataStatus
ContentAnalysisDelegate::UploadData() {
upload_start_time_ = base::TimeTicks::Now();
#if BUILDFLAG(ENTERPRISE_LOCAL_CONTENT_ANALYSIS)
// If this is a local content analysis, check if the local agent is ready.
// If not, abort early. This is to prevent doing a lot of work, like reading
// files into memory or calcuating SHA256 hashes and prevent a flash of the
// in-progress dialog.
const CloudOrLocalAnalysisSettings& cloud_or_local =
data_.settings.cloud_or_local_settings;
if (cloud_or_local.is_local_analysis()) {
auto client = ContentAnalysisSdkManager::Get()->GetClient(
{cloud_or_local.local_path(), cloud_or_local.user_specific()});
if (!client) {
return UploadDataStatus::kNoLocalClientFound;
}
}
#endif
DVLOG(1) << __func__ << ": prepare requests for analysis";
// Create a text request, an image request, a page request and a file request
// for each file.
PrepareTextRequest();
PrepareImageRequest();
PreparePageRequest();
if (!data_.paths.empty()) {
// Passing the settings using a reference is safe here, because
// MultiFileRequestHandler is owned by this class.
files_request_handler_ = FilesRequestHandler::Create(
this, GetBinaryUploadService(), profile_, url_, "", "",
GetContentTransferMethod(), access_point_, data_.paths,
base::BindOnce(&ContentAnalysisDelegate::FilesRequestCallback,
GetWeakPtr()));
files_request_complete_ = !files_request_handler_->UploadData();
} else {
// If no files should be uploaded, the file request is complete.
files_request_complete_ = true;
}
data_uploaded_ = true;
// Do not add code under this comment. The above line should be the last thing
// this function does before the return statement.
return text_request_complete_ && image_request_complete_ &&
files_request_complete_ && page_request_complete_
? UploadDataStatus::kComplete
: UploadDataStatus::kInProgress;
}
bool ContentAnalysisDelegate::IsFailClosed(UploadDataStatus upload_data_status,
bool should_allow_by_default) {
// Fail-closed can be triggered in two cases:
// 1. The final scan result is already updated to fail-closed (when LBUS or
// CBUS cannot upload data and exceed max retry).
// 2. LCAC cannot connect to the local agent on Windows.
return final_result_ == FinalContentAnalysisResult::FAIL_CLOSED ||
(upload_data_status == UploadDataStatus::kNoLocalClientFound &&
!ShouldFailOpenWithoutLocalClient(should_allow_by_default));
}
bool ContentAnalysisDelegate::ShouldFailOpenWithoutLocalClient(
bool should_allow_by_default) {
// Fail-closed settings should only be applied to Windows, otherwise it should
// fail open.
#if BUILDFLAG(IS_WIN)
return should_allow_by_default;
#else
return true;
#endif
}
void ContentAnalysisDelegate::PrepareTextRequest() {
std::string full_text;
for (const std::string& text : data_.text) {
full_text.append(text);
}
text_request_complete_ = !text_request_required();
if (!full_text.empty()) {
base::UmaHistogramCustomCounts("Enterprise.OnBulkDataEntry.DataSize",
full_text.size(),
/*min=*/1,
/*max=*/51 * 1024 * 1024,
/*buckets=*/50);
}
if (!text_request_complete_) {
text_request_handler_ = ClipboardRequestHandler::Create(
this, GetBinaryUploadService(), profile_, url_,
ClipboardRequestHandler::Type::kText, access_point_,
data_.clipboard_source, GetContentTransferMethod(),
std::move(full_text),
base::BindOnce(&ContentAnalysisDelegate::TextRequestCallback,
weak_ptr_factory_.GetWeakPtr()));
text_request_handler_->UploadData();
}
}
bool ContentAnalysisDelegate::ShouldNotUploadLargePage(size_t page_size) {
return data_.settings.cloud_or_local_settings.is_cloud_analysis() &&
page_size > BinaryUploadService::kMaxUploadSizeBytes &&
data_.settings.block_large_files;
}
void ContentAnalysisDelegate::PrepareImageRequest() {
image_request_complete_ = !image_request_required();
if (!data_.image.empty()) {
base::UmaHistogramCustomCounts("Enterprise.OnBulkDataEntry.DataSize",
data_.image.size(),
/*min=*/1,
/*max=*/51 * 1024 * 1024,
/*buckets=*/50);
}
if (!image_request_complete_) {
image_request_handler_ = ClipboardRequestHandler::Create(
this, GetBinaryUploadService(), profile_, url_,
ClipboardRequestHandler::Type::kImage, access_point_,
data_.clipboard_source, GetContentTransferMethod(), data_.image,
base::BindOnce(&ContentAnalysisDelegate::ImageRequestCallback,
weak_ptr_factory_.GetWeakPtr()));
image_request_handler_->UploadData();
}
}
void ContentAnalysisDelegate::PreparePageRequest() {
// The request is considered complete if the mapped region is invalid since it
// prevents scanning.
page_request_complete_ = !data_.page.IsValid();
if (!page_request_complete_) {
page_print_request_handler_ = PagePrintRequestHandler::Create(
this, GetBinaryUploadService(), profile_, url_, data_.printer_name,
page_content_type_, std::move(data_.page),
base::BindOnce(&ContentAnalysisDelegate::PageRequestCallback,
weak_ptr_factory_.GetWeakPtr()));
page_print_request_handler_->UploadData();
}
}
void ContentAnalysisDelegate::FillAllResultsWith(bool status) {
std::fill(result_.text_results.begin(), result_.text_results.end(), status);
result_.image_result = status;
std::fill(result_.paths_results.begin(), result_.paths_results.end(), status);
result_.page_result = status;
}
BinaryUploadService* ContentAnalysisDelegate::GetBinaryUploadService() {
return safe_browsing::BinaryUploadService::GetForProfile(profile_,
data_.settings);
}
safe_browsing::SafeBrowsingNavigationObserverManager*
ContentAnalysisDelegate::GetNavigationObserverManager() const {
return safe_browsing::SafeBrowsingNavigationObserverManagerFactory::
GetForBrowserContext(profile_);
}
bool ContentAnalysisDelegate::UpdateDialog() {
// In the case of fail-closed, show the final result UI regardless of cloud or
// local analysis. Otherwise, only show the result for cloud analysis.
bool show_ui = final_result_ == FinalContentAnalysisResult::FAIL_CLOSED ||
data_.settings.cloud_or_local_settings.is_cloud_analysis();
DVLOG(1) << __func__ << ": show_ui=" << show_ui;
return show_ui ? ShowFinalResultInDialog() : CancelDialog();
}
void ContentAnalysisDelegate::MaybeCompleteScanRequest() {
if (!text_request_complete_ || !image_request_complete_ ||
!files_request_complete_ || !page_request_complete_) {
DVLOG(1) << __func__ << ": scan request is incomplete.";
return;
}
// If showing the warning message, wait before running the callback. The
// callback will be called either in BypassWarnings or Cancel.
if (final_result_ != FinalContentAnalysisResult::WARNING) {
DVLOG(1) << __func__ << ": calling RunCallback()";
RunCallback();
}
AckAllRequests();
if (callback_running_ && !dialog_ && *UIEnabledStorage()) {
// This code path implies that RunCallback has already been called,
// and that we are racing against a non-blocking scan. In such a
// case, we let the other caller handle deletion of `this`, and let
// them know no more work is needed.
all_work_done_ = true;
return;
}
if (!UpdateDialog() && data_uploaded_) {
// No UI was shown. Delete |this| to cleanup, unless UploadData isn't done
// yet.
DVLOG(1) << __func__ << ": about to delete `this` to clean up.";
delete this;
}
}
void ContentAnalysisDelegate::RunCallback() {
DCHECK(!callback_running_);
if (callback_.is_null()) {
return;
}
callback_running_ = true;
std::move(callback_).Run(data_, result_);
callback_running_ = false;
// Since `result_` might have been tweaked by `callback_`, `final_actions_`
// need to be updated before Acks are sent.
for (size_t i = 0; i < result_.paths_results.size(); ++i) {
if (!result_.paths_results[i] && files_request_results_.size() > i &&
final_actions_.count(files_request_results_[i].request_token) &&
final_actions_[files_request_results_[i].request_token] ==
ContentAnalysisAcknowledgement::ALLOW) {
final_actions_[files_request_results_[i].request_token] =
ContentAnalysisAcknowledgement::BLOCK;
}
}
// If both image and text are present, synchronize their ack statuses if
// needed.
if (!text_request_result_.request_token.empty() &&
!image_request_result_.request_token.empty()) {
if (!result_.image_result) {
final_actions_[text_request_result_.request_token] =
ContentAnalysisAcknowledgement::BLOCK;
}
// text_results is uniformly updated in StringRequestCallback(), so the
// values should be consistent.
if (!result_.text_results[0]) {
final_actions_[image_request_result_.request_token] =
ContentAnalysisAcknowledgement::BLOCK;
}
}
}
void ContentAnalysisDelegate::UpdateFinalResult(
FinalContentAnalysisResult result,
const std::string& tag,
const ContentAnalysisResponse::Result::TriggeredRule::CustomRuleMessage&
custom_rule_message) {
if (result < final_result_) {
final_result_ = result;
final_result_tag_ = tag;
custom_rule_message_ = custom_rule_message;
}
}
void ContentAnalysisDelegate::AckAllRequests() {
if (!OnAckAllRequestsStorage()->is_null()) {
std::move(*OnAckAllRequestsStorage()).Run(final_actions_);
}
BinaryUploadService* upload_service = GetBinaryUploadService();
if (!upload_service) {
return;
}
for (const auto& token_and_action : final_actions_) {
// Only have files that have a request token. Not having one implies that
// the agent never received the request for some reason (size, encryption,
// etc.) so it doesn't make sense to send an ack.
if (!token_and_action.first.empty()) {
auto ack = std::make_unique<safe_browsing::BinaryUploadService::Ack>(
data_.settings.cloud_or_local_settings);
ack->set_request_token(token_and_action.first);
ack->set_status(ContentAnalysisAcknowledgement::SUCCESS);
ack->set_final_action(token_and_action.second);
upload_service->MaybeAcknowledge(std::move(ack));
}
}
}
std::string ContentAnalysisDelegate::GetContentTransferMethod() const {
switch (data_.reason) {
case enterprise_connectors::ContentAnalysisRequest::UNKNOWN:
case enterprise_connectors::ContentAnalysisRequest::PRINT_PREVIEW_PRINT:
case enterprise_connectors::ContentAnalysisRequest::SYSTEM_DIALOG_PRINT:
case enterprise_connectors::ContentAnalysisRequest::NORMAL_DOWNLOAD:
case enterprise_connectors::ContentAnalysisRequest::SAVE_AS_DOWNLOAD:
return "";
case enterprise_connectors::ContentAnalysisRequest::CLIPBOARD_PASTE:
if (!data_.paths.empty()) {
return "CONTENT_TRANSFER_METHOD_FILE_PASTE";
}
break;
case enterprise_connectors::ContentAnalysisRequest::DRAG_AND_DROP:
return "CONTENT_TRANSFER_METHOD_DRAG_AND_DROP";
case enterprise_connectors::ContentAnalysisRequest::FILE_PICKER_DIALOG:
return "CONTENT_TRANSFER_METHOD_FILE_PICKER";
}
return "";
}
bool ContentAnalysisDelegate::text_request_required() const {
size_t total = 0;
for (const std::string& text : data_.text) {
total += text.size();
}
return total != 0 && total >= data_.settings.minimum_data_size;
}
bool ContentAnalysisDelegate::image_request_required() const {
return !data_.image.empty() &&
data_.image.size() <=
data_.settings.cloud_or_local_settings.max_file_size();
}
const AnalysisSettings& ContentAnalysisDelegate::settings() const {
return data_.settings;
}
signin::IdentityManager* ContentAnalysisDelegate::identity_manager() const {
return IdentityManagerFactory::GetForProfile(profile_);
}
int ContentAnalysisDelegate::user_action_requests_count() const {
int count = data_.paths.size();
if (data_.page.IsValid()) {
++count;
}
if (image_request_required()) {
++count;
}
if (text_request_required()) {
++count;
}
return count;
}
std::string ContentAnalysisDelegate::tab_title() const {
return title_;
}
std::string ContentAnalysisDelegate::user_action_id() const {
return user_action_id_;
}
std::string ContentAnalysisDelegate::email() const {
return GetProfileEmail(profile_);
}
std::string ContentAnalysisDelegate::url() const {
return url_.spec();
}
const GURL& ContentAnalysisDelegate::tab_url() const {
return url_;
}
ContentAnalysisRequest::Reason ContentAnalysisDelegate::reason() const {
return data_.reason;
}
google::protobuf::RepeatedPtrField<safe_browsing::ReferrerChainEntry>
ContentAnalysisDelegate::referrer_chain() const {
ReferrerChain referrers;
GetNavigationObserverManager()->IdentifyReferrerChainByEventURL(
url_, tab_id_, enterprise_connectors::kReferrerUserGestureLimit,
&referrers);
return referrers;
}
google::protobuf::RepeatedPtrField<std::string>
ContentAnalysisDelegate::frame_url_chain() const {
return frame_url_chain_;
}
} // namespace enterprise_connectors
|