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
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/command_line.h"
#include "chrome/browser/policy/policy_test_utils.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/metrics/content/subprocess_metrics_provider.h"
#include "components/network_session_configurator/common/network_switches.h"
#include "components/permissions/permission_request_manager.h"
#include "components/permissions/test/mock_permission_prompt_factory.h"
#include "components/policy/policy_constants.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test_utils.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/test_data_directory.h"
#include "services/network/public/cpp/features.h"
#include "services/network/public/cpp/network_switches.h"
#include "third_party/blink/public/mojom/use_counter/metrics/web_feature.mojom.h"
// Path to a response that passes Local Network Access checks.
constexpr char kLnaPath[] =
"/set-header"
"?Access-Control-Allow-Origin: *";
class LocalNetworkAccessBrowserTest : public policy::PolicyTest {
public:
using WebFeature = blink::mojom::WebFeature;
LocalNetworkAccessBrowserTest()
: https_server_(net::EmbeddedTestServer::TYPE_HTTPS) {
// Some builders run with field_trial disabled, need to enable this
// manually.
base::FieldTrialParams params;
params["LocalNetworkAccessChecksWarn"] = "false";
features_.InitAndEnableFeatureWithParameters(
network::features::kLocalNetworkAccessChecks, params);
}
content::WebContents* web_contents() const {
return browser()->tab_strip_model()->GetActiveWebContents();
}
net::EmbeddedTestServer& https_server() { return https_server_; }
// Fetch the Blink.UseCounter.Features histogram in every renderer process
// until reaching, but not exceeding, |expected_count|.
void CheckCounter(WebFeature feature, int expected_count) {
CheckHistogramCount("Blink.UseCounter.Features", feature, expected_count);
}
// Fetch the |histogram|'s |bucket| in every renderer process until reaching,
// but not exceeding, |expected_count|.
template <typename T>
void CheckHistogramCount(std::string_view histogram,
T bucket,
int expected_count) {
while (true) {
content::FetchHistogramsFromChildProcesses();
metrics::SubprocessMetricsProvider::MergeHistogramDeltasForTesting();
int count = histogram_.GetBucketCount(histogram, bucket);
CHECK_LE(count, expected_count);
if (count == expected_count) {
return;
}
base::RunLoop run_loop;
base::SequencedTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, run_loop.QuitClosure(), base::Milliseconds(1));
run_loop.Run();
}
}
protected:
void SetUpOnMainThread() override {
host_resolver()->AddRule("*", "127.0.0.1");
https_server_.AddDefaultHandlers(GetChromeTestDataDir());
https_server_.SetSSLConfig(net::EmbeddedTestServer::CERT_OK);
ASSERT_TRUE(https_server_.Start());
EXPECT_TRUE(content::NavigateToURL(web_contents(), GURL("about:blank")));
}
private:
void SetUpCommandLine(base::CommandLine* command_line) final {
// Ignore cert errors when connecting to https_server()
command_line->AppendSwitch(switches::kIgnoreCertificateErrors);
// Clear default from InProcessBrowserTest as test doesn't want 127.0.0.1 in
// the public address space
command_line->AppendSwitchASCII(network::switches::kIpAddressSpaceOverrides,
"");
}
net::EmbeddedTestServer https_server_;
base::test::ScopedFeatureList features_;
base::HistogramTester histogram_;
};
IN_PROC_BROWSER_TEST_F(LocalNetworkAccessBrowserTest,
CheckSecurityStateDefaultPolicyDenyPermission) {
ASSERT_TRUE(content::NavigateToURL(
web_contents(),
https_server().GetURL(
"a.com",
"/private_network_access/no-favicon-treat-as-public-address.html")));
permissions::PermissionRequestManager* manager =
permissions::PermissionRequestManager::FromWebContents(web_contents());
std::unique_ptr<permissions::MockPermissionPromptFactory> bubble_factory =
std::make_unique<permissions::MockPermissionPromptFactory>(manager);
// Enable auto-denial of LNA permission request.
bubble_factory->set_response_type(
permissions::PermissionRequestManager::AutoResponseType::DENY_ALL);
// LNA fetch should fail.
EXPECT_THAT(content::EvalJs(
web_contents(),
content::JsReplace("fetch($1).then(response => response.ok)",
https_server().GetURL("b.com", kLnaPath))),
content::EvalJsResult::IsError());
}
IN_PROC_BROWSER_TEST_F(LocalNetworkAccessBrowserTest,
CheckSecurityStateDefaultPolicyAcceptPermission) {
ASSERT_TRUE(content::NavigateToURL(
web_contents(),
https_server().GetURL(
"a.com",
"/private_network_access/no-favicon-treat-as-public-address.html")));
permissions::PermissionRequestManager* manager =
permissions::PermissionRequestManager::FromWebContents(web_contents());
std::unique_ptr<permissions::MockPermissionPromptFactory> bubble_factory =
std::make_unique<permissions::MockPermissionPromptFactory>(manager);
// Enable auto-accept of LNA permission request.
bubble_factory->set_response_type(
permissions::PermissionRequestManager::AutoResponseType::ACCEPT_ALL);
// LNA fetch should succeed.
ASSERT_EQ(true,
content::EvalJs(
web_contents(),
content::JsReplace("fetch($1).then(response => response.ok)",
https_server().GetURL("b.com", kLnaPath))));
}
IN_PROC_BROWSER_TEST_F(LocalNetworkAccessBrowserTest,
CheckSecurityStatePolicySet) {
policy::PolicyMap policies;
SetPolicy(&policies, policy::key::kLocalNetworkAccessRestrictionsEnabled,
std::optional<base::Value>(true));
UpdateProviderPolicy(policies);
ASSERT_TRUE(content::NavigateToURL(
web_contents(),
https_server().GetURL(
"a.com",
"/private_network_access/no-favicon-treat-as-public-address.html")));
permissions::PermissionRequestManager* manager =
permissions::PermissionRequestManager::FromWebContents(web_contents());
std::unique_ptr<permissions::MockPermissionPromptFactory> bubble_factory =
std::make_unique<permissions::MockPermissionPromptFactory>(manager);
// Enable auto-denial of LNA permission request.
bubble_factory->set_response_type(
permissions::PermissionRequestManager::AutoResponseType::DENY_ALL);
// Expect LNA fetch to fail.
EXPECT_THAT(content::EvalJs(
web_contents(),
content::JsReplace("fetch($1).then(response => response.ok)",
https_server().GetURL("b.com", kLnaPath))),
content::EvalJsResult::IsError());
}
IN_PROC_BROWSER_TEST_F(LocalNetworkAccessBrowserTest,
CheckPrivateAliasFeatureCounter) {
ASSERT_TRUE(content::NavigateToURL(
web_contents(),
https_server().GetURL(
"a.com",
"/private_network_access/no-favicon-treat-as-public-address.html")));
// LNA fetch fails due to mismatched targetAddressSpace. Result doesn't matter
// here though, as we're just checking a use counter that doesn't depend on
// fetch success.
EXPECT_THAT(content::EvalJs(web_contents(),
content::JsReplace(
"fetch($1, {targetAddressSpace: "
"'private'}).then(response => response.ok)",
https_server().GetURL("b.com", kLnaPath))),
content::EvalJsResult::IsError());
CheckCounter(WebFeature::kLocalNetworkAccessPrivateAliasUse, 1);
}
IN_PROC_BROWSER_TEST_F(LocalNetworkAccessBrowserTest,
CheckPrivateAliasFeatureCounterLocalNotCounted) {
ASSERT_TRUE(content::NavigateToURL(
web_contents(),
https_server().GetURL(
"a.com",
"/private_network_access/no-favicon-treat-as-public-address.html")));
// LNA fetch fails due to mismatched targetAddressSpace. Result doesn't matter
// here though, as we're just checking a use counter that doesn't depend on
// fetch success.
EXPECT_THAT(content::EvalJs(
web_contents(),
content::JsReplace("fetch($1, {targetAddressSpace: "
"'local'}).then(response => response.ok)",
https_server().GetURL("b.com", kLnaPath))),
content::EvalJsResult::IsError());
CheckCounter(WebFeature::kLocalNetworkAccessPrivateAliasUse, 0);
}
#if !BUILDFLAG(IS_ANDROID)
// TODO(crbug.com/400455013): Add LNA support on Android
IN_PROC_BROWSER_TEST_F(LocalNetworkAccessBrowserTest,
LocalNetworkAccessAllowedForUrlsPolicy) {
policy::PolicyMap policies;
base::Value::List allowlist;
allowlist.Append(base::Value("*"));
SetPolicy(&policies, policy::key::kLocalNetworkAccessAllowedForUrls,
base::Value(std::move(allowlist)));
UpdateProviderPolicy(policies);
ASSERT_TRUE(content::NavigateToURL(
web_contents(),
https_server().GetURL(
"a.com",
"/private_network_access/no-favicon-treat-as-public-address.html")));
// LNA fetch should pass.
ASSERT_EQ(true,
content::EvalJs(
web_contents(),
content::JsReplace("fetch($1).then(response => response.ok)",
https_server().GetURL("b.com", kLnaPath))));
}
IN_PROC_BROWSER_TEST_F(LocalNetworkAccessBrowserTest,
LocalNetworkAccessBlockedForUrlsPolicy) {
// Set both policies. Block should override Allow
policy::PolicyMap policies;
base::Value::List allowlist;
allowlist.Append(base::Value("*"));
SetPolicy(&policies, policy::key::kLocalNetworkAccessAllowedForUrls,
base::Value(std::move(allowlist)));
base::Value::List blocklist;
blocklist.Append(base::Value("*"));
SetPolicy(&policies, policy::key::kLocalNetworkAccessBlockedForUrls,
base::Value(std::move(blocklist)));
UpdateProviderPolicy(policies);
ASSERT_TRUE(content::NavigateToURL(
web_contents(),
https_server().GetURL(
"a.com",
"/private_network_access/no-favicon-treat-as-public-address.html")));
permissions::PermissionRequestManager* manager =
permissions::PermissionRequestManager::FromWebContents(web_contents());
std::unique_ptr<permissions::MockPermissionPromptFactory> bubble_factory =
std::make_unique<permissions::MockPermissionPromptFactory>(manager);
// Enable auto-accept of LNA permission request, although it should not be
// checked.
bubble_factory->set_response_type(
permissions::PermissionRequestManager::AutoResponseType::ACCEPT_ALL);
// LNA fetch should fail.
EXPECT_THAT(content::EvalJs(
web_contents(),
content::JsReplace("fetch($1).then(response => response.ok)",
https_server().GetURL("b.com", kLnaPath))),
content::EvalJsResult::IsError());
}
#endif // !BUILDFLAG(IS_ANDROID)
|