blob: dc70fdcf21b6e46f6a48780c123e1586b7120115 [file] [log] [blame]
// Copyright 2013 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/extensions/extension_util.h"
#include <vector>
#include "base/check_is_test.h"
#include "base/check_op.h"
#include "base/command_line.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_sync_service.h"
#include "chrome/browser/extensions/permissions/permissions_updater.h"
#include "chrome/browser/extensions/shared_module_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/webui/extensions/extension_icon_source.h"
#include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h"
#include "chrome/common/extensions/sync_helper.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"
#include "components/variations/variations_associated_data.h"
#include "content/public/browser/site_instance.h"
#include "extensions/browser/disable_reason.h"
#include "extensions/browser/extension_prefs.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/extension_util.h"
#include "extensions/browser/pref_names.h"
#include "extensions/browser/renderer_startup_helper.h"
#include "extensions/browser/user_script_manager.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_icon_set.h"
#include "extensions/common/extension_urls.h"
#include "extensions/common/features/feature_developer_mode_only.h"
#include "extensions/common/manifest_handlers/incognito_info.h"
#include "extensions/common/manifest_handlers/permissions_parser.h"
#include "extensions/common/permissions/permissions_data.h"
#include "url/gurl.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "chrome/browser/ash/file_manager/app_id.h"
#include "chrome/browser/ash/profiles/profile_helper.h"
#endif
namespace extensions {
namespace util {
namespace {
// Returns |extension_id|. See note below.
std::string ReloadExtension(const std::string& extension_id,
content::BrowserContext* context) {
// When we reload the extension the ID may be invalidated if we've passed it
// by const ref everywhere. Make a copy to be safe. http://crbug.com/103762
std::string id = extension_id;
ExtensionService* service =
ExtensionSystem::Get(context)->extension_service();
CHECK(service);
service->ReloadExtension(id);
return id;
}
std::string ReloadExtensionIfEnabled(const std::string& extension_id,
content::BrowserContext* context) {
ExtensionRegistry* registry = ExtensionRegistry::Get(context);
bool extension_is_enabled =
registry->enabled_extensions().Contains(extension_id);
if (!extension_is_enabled) {
return extension_id;
}
return ReloadExtension(extension_id, context);
}
#if BUILDFLAG(IS_CHROMEOS_ASH)
// Returns true if the extension ID is found in the InstallForceList policy. Is
// checked by HasIsolatedStorage() when the extension is not found in the
// registry.
bool IsForceInstalledExtension(const ExtensionId& extension_id,
content::BrowserContext* context) {
ExtensionPrefs* extension_prefs = ExtensionPrefs::Get(context);
const PrefService::Preference* const pref =
extension_prefs->pref_service()->FindPreference(
pref_names::kInstallForceList);
if (!pref || !pref->IsManaged() ||
pref->GetType() != base::Value::Type::DICT) {
return false;
}
for (const auto item : pref->GetValue()->GetDict()) {
if (extension_id == item.first) {
return true;
}
}
return false;
}
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
// Returns true if the profile is a sign-in profile and the extension is policy
// installed. `is_policy_installed` can be passed to the method if its value is
// known (i.e. the extension was found in the registry and the extension
// location was checked). If no value is passed for `is_policy_installed`, the
// force-installed list will be queried for the extension ID.
bool IsLoginScreenExtension(
ExtensionId extension_id,
content::BrowserContext* context,
std::optional<bool> is_policy_installed = std::nullopt) {
#if BUILDFLAG(IS_CHROMEOS_ASH)
// Verify the force-installed extension list if no value for
// `is_policy_installed` was passed.
if (is_policy_installed == std::nullopt) {
is_policy_installed = IsForceInstalledExtension(extension_id, context);
}
Profile* profile = Profile::FromBrowserContext(context);
return profile && ash::ProfileHelper::IsSigninProfile(profile) &&
is_policy_installed.value();
#else
return false;
#endif
}
} // namespace
bool HasIsolatedStorage(const ExtensionId& extension_id,
content::BrowserContext* context) {
const Extension* extension =
ExtensionRegistry::Get(context)->GetInstalledExtension(extension_id);
// Extension is null when the extension is cleaned up after it's unloaded and
// won't be present in the ExtensionRegistry.
return extension ? HasIsolatedStorage(*extension, context)
: IsLoginScreenExtension(extension_id, context);
}
bool HasIsolatedStorage(const Extension& extension,
content::BrowserContext* context) {
#if BUILDFLAG(IS_CHROMEOS_ASH)
const bool is_policy_extension =
Manifest::IsPolicyLocation(extension.location());
if (IsLoginScreenExtension(extension.id(), context, is_policy_extension)) {
return true;
}
#endif
return extension.is_platform_app();
}
void SetIsIncognitoEnabled(const std::string& extension_id,
content::BrowserContext* context,
bool enabled) {
ExtensionRegistry* registry = ExtensionRegistry::Get(context);
const Extension* extension =
registry->GetExtensionById(extension_id, ExtensionRegistry::EVERYTHING);
if (extension) {
if (!util::CanBeIncognitoEnabled(extension))
return;
// TODO(treib,kalman): Should this be Manifest::IsComponentLocation(..)?
// (which also checks for kExternalComponent).
if (extension->location() == mojom::ManifestLocation::kComponent) {
// This shouldn't be called for component extensions unless it is called
// by sync, for syncable component extensions.
// See http://crbug.com/112290 and associated CLs for the sordid history.
bool syncable = sync_helper::IsSyncableComponentExtension(extension);
#if BUILDFLAG(IS_CHROMEOS_ASH)
// For some users, the file manager app somehow ended up being synced even
// though it's supposed to be unsyncable; see crbug.com/576964. If the bad
// data ever gets cleaned up, this hack should be removed.
syncable = syncable || extension->id() == file_manager::kFileManagerAppId;
#endif
DCHECK(syncable);
// If we are here, make sure the we aren't trying to change the value.
DCHECK_EQ(enabled, IsIncognitoEnabled(extension_id, context));
return;
}
}
ExtensionPrefs* extension_prefs = ExtensionPrefs::Get(context);
// Broadcast unloaded and loaded events to update browser state. Only bother
// if the value changed and the extension is actually enabled, since there is
// no UI otherwise.
bool old_enabled = extension_prefs->IsIncognitoEnabled(extension_id);
if (enabled == old_enabled)
return;
extension_prefs->SetIsIncognitoEnabled(extension_id, enabled);
std::string id = ReloadExtensionIfEnabled(extension_id, context);
// Reloading the extension invalidates the |extension| pointer.
extension = registry->GetExtensionById(id, ExtensionRegistry::EVERYTHING);
if (extension) {
Profile* profile = Profile::FromBrowserContext(context);
ExtensionSyncService::Get(profile)->SyncExtensionChangeIfNeeded(*extension);
}
}
void SetAllowFileAccess(const std::string& extension_id,
content::BrowserContext* context,
bool allow) {
// Reload to update browser state if the value changed. We need to reload even
// if the extension is disabled, in order to make sure file access is
// reinitialized correctly.
if (allow == util::AllowFileAccess(extension_id, context)) {
return;
}
ExtensionPrefs::Get(context)->SetAllowFileAccess(extension_id, allow);
ReloadExtension(extension_id, context);
}
bool ShouldSync(const Extension* extension,
content::BrowserContext* context) {
ExtensionManagement* extension_management =
ExtensionManagementFactory::GetForBrowserContext(context);
// Update URL is overridden only for non webstore extensions and offstore
// extensions should not be synced.
if (extension_management->IsUpdateUrlOverridden(extension->id())) {
const GURL update_url =
extension_management->GetEffectiveUpdateURL(*extension);
DCHECK(!extension_urls::IsWebstoreUpdateUrl(update_url))
<< "Update URL cannot be overridden to be the webstore URL!";
return false;
}
return sync_helper::IsSyncable(extension) &&
!ExtensionPrefs::Get(context)->DoNotSync(extension->id());
}
bool IsExtensionIdle(const std::string& extension_id,
content::BrowserContext* context) {
std::vector<std::string> ids_to_check;
ids_to_check.push_back(extension_id);
const Extension* extension =
ExtensionRegistry::Get(context)->enabled_extensions().GetByID(
extension_id);
if (extension && extension->is_shared_module()) {
// We have to check all the extensions that use this shared module for idle
// to tell whether it is really 'idle'.
SharedModuleService* service = ExtensionSystem::Get(context)
->extension_service()
->shared_module_service();
std::unique_ptr<ExtensionSet> dependents =
service->GetDependentExtensions(extension);
for (ExtensionSet::const_iterator i = dependents->begin();
i != dependents->end();
i++) {
ids_to_check.push_back((*i)->id());
}
}
ProcessManager* process_manager = ProcessManager::Get(context);
for (std::vector<std::string>::const_iterator i = ids_to_check.begin();
i != ids_to_check.end();
i++) {
const std::string id = (*i);
ExtensionHost* host = process_manager->GetBackgroundHostForExtension(id);
if (host)
return false;
scoped_refptr<content::SiteInstance> site_instance =
process_manager->GetSiteInstanceForURL(
Extension::GetBaseURLFromExtensionId(id));
if (site_instance && site_instance->HasProcess())
return false;
if (!process_manager->GetRenderFrameHostsForExtension(id).empty())
return false;
}
return true;
}
base::Value::Dict GetExtensionInfo(const Extension* extension) {
DCHECK(extension);
base::Value::Dict dict;
dict.Set("id", extension->id());
dict.Set("name", extension->name());
GURL icon = extensions::ExtensionIconSource::GetIconURL(
extension, extension_misc::EXTENSION_ICON_SMALLISH,
ExtensionIconSet::MATCH_BIGGER,
false); // Not grayscale.
dict.Set("icon", icon.spec());
return dict;
}
std::unique_ptr<const PermissionSet> GetInstallPromptPermissionSetForExtension(
const Extension* extension,
Profile* profile,
bool include_optional_permissions) {
// Initialize permissions if they have not already been set so that
// any transformations are correctly reflected in the install prompt.
PermissionsUpdater(profile, PermissionsUpdater::INIT_FLAG_TRANSIENT)
.InitializePermissions(extension);
std::unique_ptr<const PermissionSet> permissions_to_display =
extension->permissions_data()->active_permissions().Clone();
if (include_optional_permissions) {
const PermissionSet& optional_permissions =
PermissionsParser::GetOptionalPermissions(extension);
permissions_to_display = PermissionSet::CreateUnion(*permissions_to_display,
optional_permissions);
}
return permissions_to_display;
}
std::vector<content::BrowserContext*> GetAllRelatedProfiles(
Profile* profile,
const Extension& extension) {
std::vector<content::BrowserContext*> related_contexts;
related_contexts.push_back(profile->GetOriginalProfile());
// The returned `related_contexts` should include all the related incognito
// profiles if the extension is globally allowed in incognito (this is a
// global, rather than per-profile toggle - this is why we it can be checked
// globally here, rather than once for every incognito profile looped over
// below).
if (IsIncognitoEnabled(extension.id(), profile)) {
std::vector<Profile*> off_the_record_profiles =
profile->GetAllOffTheRecordProfiles();
related_contexts.reserve(related_contexts.size() +
off_the_record_profiles.size());
for (Profile* off_the_record_profile : off_the_record_profiles)
related_contexts.push_back(off_the_record_profile);
}
return related_contexts;
}
void SetDeveloperModeForProfile(Profile* profile, bool in_developer_mode) {
profile->GetPrefs()->SetBoolean(prefs::kExtensionsUIDeveloperMode,
in_developer_mode);
SetCurrentDeveloperMode(util::GetBrowserContextId(profile),
in_developer_mode);
RendererStartupHelperFactory::GetForBrowserContext(profile)
->OnDeveloperModeChanged(in_developer_mode);
// kDynamicUserScript scripts are allowed if and only if the user is in dev
// mode (since they allow raw code execution). Notify the user script manager
// to properly enable or disable any scripts.
UserScriptManager* user_script_manager =
ExtensionSystem::Get(profile)->user_script_manager();
if (!user_script_manager) {
CHECK_IS_TEST(); // `user_script_manager` can be null in unit tests.
return;
}
user_script_manager->SetUserScriptSourceEnabledForExtensions(
UserScript::Source::kDynamicUserScript, in_developer_mode);
}
} // namespace util
} // namespace extensions