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
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Glue to pass Safe Browsing API requests between Chrome and GMSCore.
#ifndef COMPONENTS_SAFE_BROWSING_ANDROID_SAFE_BROWSING_API_HANDLER_BRIDGE_H_
#define COMPONENTS_SAFE_BROWSING_ANDROID_SAFE_BROWSING_API_HANDLER_BRIDGE_H_
#include <jni.h>
#include "base/android/jni_android.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "components/safe_browsing/android/safe_browsing_api_handler_util.h"
#include "components/safe_browsing/core/browser/db/v4_protocol_manager_util.h"
class GURL;
namespace safe_browsing {
class UrlCheckInterceptor;
struct ThreatMetadata;
class SafeBrowsingApiHandlerBridge {
public:
using ResponseCallback =
base::OnceCallback<void(SBThreatType, const ThreatMetadata&)>;
using VerifyAppsResponseCallback =
base::OnceCallback<void(VerifyAppsEnabledResult)>;
SafeBrowsingApiHandlerBridge();
~SafeBrowsingApiHandlerBridge();
SafeBrowsingApiHandlerBridge(const SafeBrowsingApiHandlerBridge&) = delete;
SafeBrowsingApiHandlerBridge& operator=(const SafeBrowsingApiHandlerBridge&) =
delete;
// Returns a reference to the singleton.
static SafeBrowsingApiHandlerBridge& GetInstance();
// Clear any URLs retained from the command-line.
void ClearArtificialDatabase();
// Populates any URLs specified at the command-line.
void PopulateArtificialDatabase();
// Makes Native-to-Java call to perform the hash-prefix database check.
void StartHashDatabaseUrlCheck(ResponseCallback callback,
const GURL& url,
const SBThreatTypeSet& threat_types);
// Makes Native-to-Java call to perform the privacy-preserving hash real-time
// check.
void StartHashRealTimeUrlCheck(ResponseCallback callback,
const GURL& url,
const SBThreatTypeSet& threat_types);
bool StartCSDAllowlistCheck(const GURL& url);
// Query whether app verification is enabled. Will run `callback` with
// the result of the query.
void StartIsVerifyAppsEnabled(VerifyAppsResponseCallback callback);
// Prompt the user to enable app verification. Will run `callback`
// with the result of the query.
void StartEnableVerifyApps(VerifyAppsResponseCallback callback);
// Called when a non-recoverable failure is encountered from SafeBrowsing API.
void OnSafeBrowsingApiNonRecoverableFailure();
void SetInterceptorForTesting(UrlCheckInterceptor* interceptor) {
interceptor_for_testing_ = interceptor;
}
void ResetSafeBrowsingApiAvailableForTesting() {
is_safe_browsing_api_available_ = true;
}
void SetVerifyAppsEnableResultForTesting(VerifyAppsEnabledResult result) {
verify_apps_enabled_for_testing_ = result;
}
private:
// Makes Native-to-Java call to check the URL through GMSCore SafeBrowsing
// API.
void StartUrlCheckBySafeBrowsing(ResponseCallback callback,
const GURL& url,
const SBThreatTypeSet& threat_types,
const SafeBrowsingJavaProtocol& protocol);
// Used as a key to identify unique requests sent to Java to get Safe Browsing
// reputation from GmsCore SafeBrowsing API.
jlong next_safe_browsing_callback_id_ = 0;
// Used as a key to identify unique requests sent to Java related to
// SafetyNet app verification.
jlong next_verify_apps_callback_id_ = 0;
// Whether SafeBrowsing API is available. Set to false if previous call to
// SafeBrowsing API has encountered a non-recoverable failure. If set to
// false, future calls to SafeBrowsing API will return safe immediately.
// Once set to false, it will remain false until browser restarts.
bool is_safe_browsing_api_available_ = true;
raw_ptr<UrlCheckInterceptor> interceptor_for_testing_ = nullptr;
std::optional<VerifyAppsEnabledResult> verify_apps_enabled_for_testing_ =
std::nullopt;
// Set of URLs specified at the command-line to be enforced on as phishing.
std::set<GURL> artificially_marked_phishing_urls_;
};
// Interface allowing simplified interception of calls to
// SafeBrowsingApiHandlerBridge. Intended for use only in tests.
class UrlCheckInterceptor {
public:
virtual ~UrlCheckInterceptor() = default;
virtual void CheckBySafeBrowsing(
SafeBrowsingApiHandlerBridge::ResponseCallback callback,
const GURL& url) = 0;
};
} // namespace safe_browsing
#endif // COMPONENTS_SAFE_BROWSING_ANDROID_SAFE_BROWSING_API_HANDLER_BRIDGE_H_
|