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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "base/callback.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/memory/ptr_util.h"
#include "base/numerics/safe_conversions.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/strings/stringprintf.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/invalidation/profile_invalidation_provider_factory.h"
#include "chrome/browser/policy/cloud/cloud_policy_test_utils.h"
#include "chrome/browser/policy/profile_policy_connector.h"
#include "chrome/browser/policy/profile_policy_connector_factory.h"
#include "chrome/browser/policy/test/local_policy_test_server.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/invalidation/impl/fake_invalidation_service.h"
#include "components/invalidation/impl/profile_invalidation_provider.h"
#include "components/invalidation/public/invalidation.h"
#include "components/invalidation/public/invalidation_service.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/policy/core/browser/browser_policy_connector.h"
#include "components/policy/core/common/cloud/cloud_policy_client.h"
#include "components/policy/core/common/cloud/cloud_policy_constants.h"
#include "components/policy/core/common/cloud/mock_cloud_policy_client.h"
#include "components/policy/core/common/external_data_fetcher.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_service.h"
#include "components/policy/core/common/policy_switches.h"
#include "components/policy/core/common/policy_test_utils.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/policy_constants.h"
#include "components/policy/proto/chrome_settings.pb.h"
#include "components/policy/proto/cloud_policy.pb.h"
#include "components/policy/proto/device_management_backend.pb.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
#include "content/public/test/test_utils.h"
#include "net/url_request/url_request_context_getter.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h"
#include "chrome/browser/chromeos/policy/user_policy_manager_factory_chromeos.h"
#include "chromeos/chromeos_paths.h"
#include "chromeos/cryptohome/cryptohome_parameters.h"
#include "chromeos/dbus/cryptohome_client.h"
#include "components/signin/core/account_id/account_id.h"
#include "components/user_manager/user_names.h"
#else
#include "chrome/browser/policy/cloud/user_cloud_policy_manager_factory.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "components/policy/core/common/cloud/user_cloud_policy_manager.h"
#include "components/signin/core/browser/signin_manager.h"
#endif
using testing::AnyNumber;
using testing::InvokeWithoutArgs;
using testing::Mock;
using testing::Return;
using testing::_;
namespace content {
class BrowserContext;
}
namespace em = enterprise_management;
namespace policy {
namespace {
std::unique_ptr<KeyedService> BuildFakeProfileInvalidationProvider(
content::BrowserContext* context) {
return base::MakeUnique<invalidation::ProfileInvalidationProvider>(
std::unique_ptr<invalidation::InvalidationService>(
new invalidation::FakeInvalidationService));
}
#if !defined(OS_CHROMEOS)
const char* GetTestGaiaId() {
return "gaia-id-user@example.com";
}
#endif
const char* GetTestUser() {
#if defined(OS_CHROMEOS)
return user_manager::kStubUser;
#else
return "user@example.com";
#endif
}
std::string GetEmptyPolicy() {
const char kEmptyPolicy[] =
"{"
" \"%s\": {"
" \"mandatory\": {},"
" \"recommended\": {}"
" },"
" \"managed_users\": [ \"*\" ],"
" \"policy_user\": \"%s\","
" \"current_key_index\": 0"
"}";
return base::StringPrintf(
kEmptyPolicy, dm_protocol::kChromeUserPolicyType, GetTestUser());
}
std::string GetTestPolicy(const char* homepage, int key_version) {
const char kTestPolicy[] =
"{"
" \"%s\": {"
" \"mandatory\": {"
" \"ShowHomeButton\": true,"
" \"RestoreOnStartup\": 4,"
" \"URLBlacklist\": [ \"dev.chromium.org\", \"youtube.com\" ],"
" \"MaxInvalidationFetchDelay\": 1000"
" },"
" \"recommended\": {"
" \"HomepageLocation\": \"%s\""
" }"
" },"
" \"managed_users\": [ \"*\" ],"
" \"policy_user\": \"%s\","
" \"current_key_index\": %d,"
" \"invalidation_source\": 16,"
" \"invalidation_name\": \"test_policy\""
"}";
return base::StringPrintf(kTestPolicy,
dm_protocol::kChromeUserPolicyType,
homepage,
GetTestUser(),
key_version);
}
void GetExpectedTestPolicy(PolicyMap* expected, const char* homepage) {
GetExpectedDefaultPolicy(expected);
expected->Set(key::kShowHomeButton, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER,
POLICY_SOURCE_CLOUD,
base::MakeUnique<base::FundamentalValue>(true), nullptr);
expected->Set(key::kRestoreOnStartup, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::MakeUnique<base::FundamentalValue>(4), nullptr);
base::ListValue list;
list.AppendString("dev.chromium.org");
list.AppendString("youtube.com");
expected->Set(key::kURLBlacklist, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER,
POLICY_SOURCE_CLOUD, list.CreateDeepCopy(), nullptr);
expected->Set(key::kMaxInvalidationFetchDelay, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::MakeUnique<base::FundamentalValue>(1000), nullptr);
expected->Set(key::kHomepageLocation, POLICY_LEVEL_RECOMMENDED,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::MakeUnique<base::StringValue>(homepage), nullptr);
}
} // namespace
// Tests the cloud policy stack(s).
class CloudPolicyTest : public InProcessBrowserTest,
public PolicyService::Observer {
protected:
CloudPolicyTest() {}
~CloudPolicyTest() override {}
void SetUpInProcessBrowserTestFixture() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
ASSERT_NO_FATAL_FAILURE(SetServerPolicy(GetEmptyPolicy()));
test_server_.reset(new LocalPolicyTestServer(policy_file_path()));
ASSERT_TRUE(test_server_->Start());
std::string url = test_server_->GetServiceURL().spec();
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
command_line->AppendSwitchASCII(switches::kDeviceManagementUrl, url);
invalidation::ProfileInvalidationProviderFactory::GetInstance()->
RegisterTestingFactory(BuildFakeProfileInvalidationProvider);
}
void SetUpOnMainThread() override {
ASSERT_TRUE(PolicyServiceIsEmpty(g_browser_process->policy_service()))
<< "Pre-existing policies in this machine will make this test fail.";
BrowserPolicyConnector* connector =
g_browser_process->browser_policy_connector();
connector->ScheduleServiceInitialization(0);
#if defined(OS_CHROMEOS)
UserCloudPolicyManagerChromeOS* policy_manager =
UserPolicyManagerFactoryChromeOS::GetCloudPolicyManagerForProfile(
browser()->profile());
ASSERT_TRUE(policy_manager);
#else
// Mock a signed-in user. This is used by the UserCloudPolicyStore to pass
// the username to the UserCloudPolicyValidator.
SigninManager* signin_manager =
SigninManagerFactory::GetForProfile(browser()->profile());
ASSERT_TRUE(signin_manager);
signin_manager->SetAuthenticatedAccountInfo(GetTestGaiaId(), GetTestUser());
UserCloudPolicyManager* policy_manager =
UserCloudPolicyManagerFactory::GetForBrowserContext(
browser()->profile());
ASSERT_TRUE(policy_manager);
policy_manager->Connect(g_browser_process->local_state(),
g_browser_process->system_request_context(),
UserCloudPolicyManager::CreateCloudPolicyClient(
connector->device_management_service(),
g_browser_process->system_request_context()));
#endif // defined(OS_CHROMEOS)
ASSERT_TRUE(policy_manager->core()->client());
base::RunLoop run_loop;
MockCloudPolicyClientObserver observer;
EXPECT_CALL(observer, OnRegistrationStateChanged(_)).WillOnce(
InvokeWithoutArgs(&run_loop, &base::RunLoop::Quit));
policy_manager->core()->client()->AddObserver(&observer);
// Give a bogus OAuth token to the |policy_manager|. This should make its
// CloudPolicyClient fetch the DMToken.
ASSERT_FALSE(policy_manager->core()->client()->is_registered());
em::DeviceRegisterRequest::Type registration_type =
#if defined(OS_CHROMEOS)
em::DeviceRegisterRequest::USER;
#else
em::DeviceRegisterRequest::BROWSER;
#endif
policy_manager->core()->client()->Register(
registration_type, em::DeviceRegisterRequest::FLAVOR_USER_REGISTRATION,
"bogus", std::string(), std::string(), std::string());
run_loop.Run();
Mock::VerifyAndClearExpectations(&observer);
policy_manager->core()->client()->RemoveObserver(&observer);
EXPECT_TRUE(policy_manager->core()->client()->is_registered());
#if defined(OS_CHROMEOS)
// Get the path to the user policy key file.
base::FilePath user_policy_key_dir;
ASSERT_TRUE(
PathService::Get(chromeos::DIR_USER_POLICY_KEYS, &user_policy_key_dir));
std::string sanitized_username =
chromeos::CryptohomeClient::GetStubSanitizedUsername(
cryptohome::Identification(
AccountId::FromUserEmail(GetTestUser())));
user_policy_key_file_ = user_policy_key_dir.AppendASCII(sanitized_username)
.AppendASCII("policy.pub");
#endif
}
PolicyService* GetPolicyService() {
ProfilePolicyConnector* profile_connector =
ProfilePolicyConnectorFactory::GetForBrowserContext(
browser()->profile());
return profile_connector->policy_service();
}
invalidation::FakeInvalidationService* GetInvalidationService() {
return static_cast<invalidation::FakeInvalidationService*>(
static_cast<invalidation::ProfileInvalidationProvider*>(
invalidation::ProfileInvalidationProviderFactory::GetInstance()->
GetForProfile(browser()->profile()))->GetInvalidationService());
}
void SetServerPolicy(const std::string& policy) {
int result = base::WriteFile(policy_file_path(), policy.data(),
policy.size());
ASSERT_EQ(base::checked_cast<int>(policy.size()), result);
}
base::FilePath policy_file_path() const {
return temp_dir_.GetPath().AppendASCII("policy.json");
}
void OnPolicyUpdated(const PolicyNamespace& ns,
const PolicyMap& previous,
const PolicyMap& current) override {
if (!on_policy_updated_.is_null()) {
on_policy_updated_.Run();
on_policy_updated_.Reset();
}
}
void OnPolicyServiceInitialized(PolicyDomain domain) override {}
base::ScopedTempDir temp_dir_;
std::unique_ptr<LocalPolicyTestServer> test_server_;
base::FilePath user_policy_key_file_;
base::Closure on_policy_updated_;
};
IN_PROC_BROWSER_TEST_F(CloudPolicyTest, FetchPolicy) {
PolicyService* policy_service = GetPolicyService();
{
base::RunLoop run_loop;
// This does the initial fetch and stores the initial key.
policy_service->RefreshPolicies(run_loop.QuitClosure());
run_loop.Run();
}
PolicyMap default_policy;
GetExpectedDefaultPolicy(&default_policy);
EXPECT_TRUE(default_policy.Equals(policy_service->GetPolicies(
PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))));
ASSERT_NO_FATAL_FAILURE(SetServerPolicy(GetTestPolicy("google.com", 0)));
PolicyMap expected;
GetExpectedTestPolicy(&expected, "google.com");
{
base::RunLoop run_loop;
// This fetches the new policies, using the same key.
policy_service->RefreshPolicies(run_loop.QuitClosure());
run_loop.Run();
}
EXPECT_TRUE(expected.Equals(policy_service->GetPolicies(
PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))));
}
#if defined(OS_CHROMEOS)
// ENTERPRISE_DEFAULT policies only are supported on Chrome OS currently.
IN_PROC_BROWSER_TEST_F(CloudPolicyTest, EnsureDefaultPoliciesSet) {
PolicyService* policy_service = GetPolicyService();
{
base::RunLoop run_loop;
// This does the initial fetch and stores the initial key.
policy_service->RefreshPolicies(run_loop.QuitClosure());
run_loop.Run();
}
PolicyMap default_policy;
GetExpectedDefaultPolicy(&default_policy);
// Make sure the expected policy has at least one of the policies we're
// expecting.
EXPECT_TRUE(default_policy.GetValue(key::kEasyUnlockAllowed));
// Now make sure that these default policies are actually getting injected.
EXPECT_TRUE(default_policy.Equals(policy_service->GetPolicies(
PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))));
}
#endif
IN_PROC_BROWSER_TEST_F(CloudPolicyTest, InvalidatePolicy) {
PolicyService* policy_service = GetPolicyService();
policy_service->AddObserver(POLICY_DOMAIN_CHROME, this);
// Perform the initial fetch.
ASSERT_NO_FATAL_FAILURE(SetServerPolicy(GetTestPolicy("google.com", 0)));
{
base::RunLoop run_loop;
policy_service->RefreshPolicies(run_loop.QuitClosure());
run_loop.Run();
}
// Update the homepage in the policy and trigger an invalidation.
ASSERT_NO_FATAL_FAILURE(SetServerPolicy(GetTestPolicy("youtube.com", 0)));
base::TimeDelta now =
base::Time::NowFromSystemTime() - base::Time::UnixEpoch();
GetInvalidationService()->EmitInvalidationForTest(
syncer::Invalidation::Init(
invalidation::ObjectId(16, "test_policy"),
now.InMicroseconds() /* version */,
"payload"));
{
base::RunLoop run_loop;
on_policy_updated_ = run_loop.QuitClosure();
run_loop.Run();
}
// Check that the updated policy was fetched.
PolicyMap expected;
GetExpectedTestPolicy(&expected, "youtube.com");
EXPECT_TRUE(expected.Equals(policy_service->GetPolicies(
PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))));
policy_service->RemoveObserver(POLICY_DOMAIN_CHROME, this);
}
#if defined(OS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(CloudPolicyTest, FetchPolicyWithRotatedKey) {
PolicyService* policy_service = GetPolicyService();
{
base::RunLoop run_loop;
// This does the initial fetch and stores the initial key.
policy_service->RefreshPolicies(run_loop.QuitClosure());
run_loop.Run();
}
// Read the initial key.
std::string initial_key;
ASSERT_TRUE(base::ReadFileToString(user_policy_key_file_, &initial_key));
PolicyMap default_policy;
GetExpectedDefaultPolicy(&default_policy);
EXPECT_TRUE(default_policy.Equals(policy_service->GetPolicies(
PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))));
// Set the new policies and a new key at the server.
ASSERT_NO_FATAL_FAILURE(SetServerPolicy(GetTestPolicy("google.com", 1)));
PolicyMap expected;
GetExpectedTestPolicy(&expected, "google.com");
{
base::RunLoop run_loop;
// This fetches the new policies and does a key rotation.
policy_service->RefreshPolicies(run_loop.QuitClosure());
run_loop.Run();
}
EXPECT_TRUE(expected.Equals(policy_service->GetPolicies(
PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))));
// Verify that the key was rotated.
std::string rotated_key;
ASSERT_TRUE(base::ReadFileToString(user_policy_key_file_, &rotated_key));
EXPECT_NE(rotated_key, initial_key);
// Another refresh using the same key won't rotate it again.
{
base::RunLoop run_loop;
policy_service->RefreshPolicies(run_loop.QuitClosure());
run_loop.Run();
}
EXPECT_TRUE(expected.Equals(policy_service->GetPolicies(
PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))));
std::string current_key;
ASSERT_TRUE(base::ReadFileToString(user_policy_key_file_, ¤t_key));
EXPECT_EQ(rotated_key, current_key);
}
#endif
TEST(CloudPolicyProtoTest, VerifyProtobufEquivalence) {
// There are 2 protobufs that can be used for user cloud policy:
// cloud_policy.proto and chrome_settings.proto. chrome_settings.proto is the
// version used by the server, but generates one proto message per policy; to
// save binary size on the client, the other version shares proto messages for
// policies of the same type. They generate the same bytes on the wire though,
// so they are compatible. This test verifies that that stays true.
// Build a ChromeSettingsProto message with one policy of each supported type.
em::ChromeSettingsProto chrome_settings;
chrome_settings.mutable_homepagelocation()->set_homepagelocation(
"chromium.org");
chrome_settings.mutable_showhomebutton()->set_showhomebutton(true);
chrome_settings.mutable_restoreonstartup()->set_restoreonstartup(4);
em::StringList* list =
chrome_settings.mutable_disabledschemes()->mutable_disabledschemes();
list->add_entries("ftp");
list->add_entries("mailto");
// Try explicitly setting a policy mode too.
chrome_settings.mutable_searchsuggestenabled()->set_searchsuggestenabled(
false);
chrome_settings.mutable_searchsuggestenabled()
->mutable_policy_options()
->set_mode(em::PolicyOptions::MANDATORY);
chrome_settings.mutable_syncdisabled()->set_syncdisabled(true);
chrome_settings.mutable_syncdisabled()->mutable_policy_options()->set_mode(
em::PolicyOptions::RECOMMENDED);
// Build an equivalent CloudPolicySettings message.
em::CloudPolicySettings cloud_policy;
cloud_policy.mutable_homepagelocation()->set_value("chromium.org");
cloud_policy.mutable_showhomebutton()->set_value(true);
cloud_policy.mutable_restoreonstartup()->set_value(4);
list = cloud_policy.mutable_disabledschemes()->mutable_value();
list->add_entries("ftp");
list->add_entries("mailto");
cloud_policy.mutable_searchsuggestenabled()->set_value(false);
cloud_policy.mutable_searchsuggestenabled()
->mutable_policy_options()
->set_mode(em::PolicyOptions::MANDATORY);
cloud_policy.mutable_syncdisabled()->set_value(true);
cloud_policy.mutable_syncdisabled()->mutable_policy_options()->set_mode(
em::PolicyOptions::RECOMMENDED);
// They should now serialize to the same bytes.
std::string chrome_settings_serialized;
std::string cloud_policy_serialized;
ASSERT_TRUE(chrome_settings.SerializeToString(&chrome_settings_serialized));
ASSERT_TRUE(cloud_policy.SerializeToString(&cloud_policy_serialized));
EXPECT_EQ(chrome_settings_serialized, cloud_policy_serialized);
}
} // namespace policy
|