blob: 53a60842b8b289d8dc04d325c88c0381d8ae9de7 [file] [log] [blame]
// Copyright (c) 2013 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.
#ifndef CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_H_
#define CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_H_
#include <memory>
#include <string>
#include <vector>
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "build/build_config.h"
namespace user_manager {
class User;
}
namespace policy {
#if defined(OS_CHROMEOS)
namespace internal {
class ProxiedPoliciesPropagatedWatcher;
}
#endif // defined(OS_CHROMEOS)
class CloudPolicyStore;
class ConfigurationPolicyProvider;
class PolicyMigrator;
class PolicyService;
class PolicyServiceImpl;
class SchemaRegistry;
class ChromeBrowserPolicyConnector;
// The ProfilePolicyConnector creates and manages the per-Profile policy
// components. Since the ProfilePolicyConnector instance is accessed from
// Profile, not from a KeyedServiceFactory anymore, the ProfilePolicyConnector
// no longer needs to be a KeyedService.
class ProfilePolicyConnector final {
public:
ProfilePolicyConnector();
~ProfilePolicyConnector();
// |user| is only used in Chrome OS builds and should be set to nullptr
// otherwise. |configuration_policy_provider| and |policy_store| are nullptr
// for non-regular users.
// If |force_immediate_load| is true, DeviceLocalAccountPolicy is loaded
// synchronously.
void Init(const user_manager::User* user,
SchemaRegistry* schema_registry,
ConfigurationPolicyProvider* configuration_policy_provider,
const CloudPolicyStore* policy_store,
policy::ChromeBrowserPolicyConnector* browser_policy_connector,
bool force_immediate_load);
void InitForTesting(std::unique_ptr<PolicyService> service);
void OverrideIsManagedForTesting(bool is_managed);
void SetPlatformPolicyProviderForTesting(
ConfigurationPolicyProvider* platform_policy_provider_for_testing);
void Shutdown();
// This is never NULL.
PolicyService* policy_service() const { return policy_service_.get(); }
// Returns true if this Profile is under any kind of policy management. You
// must call this method only when the policies system is fully initialized.
bool IsManaged() const;
// Returns true if the |policy_key| user policy is currently set via the
// |configuration_policy_provider_| and isn't being overridden by a
// higher-level provider.
bool IsProfilePolicy(const char* policy_key) const;
#if defined(OS_CHROMEOS)
// Triggers the time out handling of waiting for the proxied primary user
// policies to propagate. May be only called form tests.
void TriggerProxiedPoliciesWaitTimeoutForTesting();
#endif // defined(OS_CHROMEOS)
private:
// Returns the policy store which is actually used.
const CloudPolicyStore* GetActualPolicyStore() const;
// Find the policy provider that provides the |policy_key| policy, if any. In
// case of multiple providers sharing the same policy, the one with the
// highest priority will be returned.
const ConfigurationPolicyProvider* DeterminePolicyProviderForPolicy(
const char* policy_key) const;
// Returns the platform policy provider, which will be used as the highest
// priority policy provider in PolicyService created by this
// ProfilePolicyConnector.
ConfigurationPolicyProvider* GetPlatformProvider(
policy::ChromeBrowserPolicyConnector* browser_policy_connector);
#if defined(OS_CHROMEOS)
// On Chrome OS, primary Profile user policies are forwarded to the
// device-global PolicyService[1] using a ProxyPolicyProvider.
// When that is done, signaling that |policy_service_| is initialized should
// be delayed until the policies provided by |user_policy_delegate| have
// propagated to the device-wide PolicyService[1]. This is done so that code
// that runs early on Profile initialization can rely on the device-wide
// PolicyService[1] and local state Preferences[2] respecting the proxied
// primary user policies.
//
// This function starts watching for the propagation to happen by creating a
// |ProxiedPoliciesPropagatedWatcher| and creates a PolicyService that
// only signals that it is initilalized when the
// |proxied_policies_propagated_watcher_| has fired.
//
// [1] i.e. g_browser_process->policy_service()
// [2] i.e. g_browser_process->local_state()
std::unique_ptr<PolicyService> CreatePolicyServiceWithInitializationThrottled(
const std::vector<ConfigurationPolicyProvider*>& policy_providers,
std::vector<std::unique_ptr<PolicyMigrator>> migrators,
ConfigurationPolicyProvider* user_policy_delegate);
// Called when primary user policies that are proxied to the device-wide
// PolicyService have propagated.
// |policy_service| is passed here because UnthrottleInitialization is
// implemented on PolicyServiceImpl, but the |policy_service_| class member is
// a PolicyService for testability.
void OnProxiedPoliciesPropagated(PolicyServiceImpl* policy_service);
// Some of the user policy configuration affects browser global state, and
// can only come from one Profile. |is_primary_user_| is true if this
// connector belongs to the first signed-in Profile, and in that case that
// Profile's policy is the one that affects global policy settings in
// local state.
bool is_primary_user_ = false;
std::unique_ptr<ConfigurationPolicyProvider> special_user_policy_provider_;
// If the user associated with the Profile for this ProfilePolicyConnector is
// the primary user, the user policies will be proxied into the device-wide
// PolicyService. This object allows calling a callback when that is finished
// so it is possible to delay signaling that |policy_service_| is initialized
// until the policies have been reflected in the device-wide PolicyService.
std::unique_ptr<internal::ProxiedPoliciesPropagatedWatcher>
proxied_policies_propagated_watcher_;
#endif // defined(OS_CHROMEOS)
std::unique_ptr<ConfigurationPolicyProvider>
wrapped_platform_policy_provider_;
const ConfigurationPolicyProvider* configuration_policy_provider_ = nullptr;
const CloudPolicyStore* policy_store_ = nullptr;
// If this is not nullptr, this provider will be used as (highest priority)
// platform policy provider.
ConfigurationPolicyProvider* platform_policy_provider_for_testing_ = nullptr;
// |policy_providers_| contains a list of the policy providers available for
// the PolicyService of this connector, in decreasing order of priority.
//
// Note: All the providers appended to this vector must eventually become
// initialized for every policy domain, otherwise some subsystems will never
// use the policies exposed by the PolicyService!
// The default ConfigurationPolicyProvider::IsInitializationComplete()
// result is true, so take care if a provider overrides that.
std::vector<ConfigurationPolicyProvider*> policy_providers_;
std::unique_ptr<PolicyService> policy_service_;
std::unique_ptr<bool> is_managed_override_;
DISALLOW_COPY_AND_ASSIGN(ProfilePolicyConnector);
};
} // namespace policy
#endif // CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_H_