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
|
// Copyright 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.
#include "chrome/browser/extensions/extension_util.h"
#include <vector>
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/logging.h"
#include "base/metrics/field_trial.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/banners/app_banner_manager.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_sync_service.h"
#include "chrome/browser/extensions/launch_util.h"
#include "chrome/browser/extensions/permissions_updater.h"
#include "chrome/browser/extensions/scripting_permissions_modifier.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/browser_finder.h"
#include "chrome/browser/ui/webui/extensions/extension_icon_source.h"
#include "chrome/browser/web_applications/extensions/bookmark_app_util.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h"
#include "chrome/common/extensions/sync_helper.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/common/extension.h"
#include "extensions/common/extension_icon_set.h"
#include "extensions/common/manifest.h"
#include "extensions/common/manifest_handlers/app_isolation_info.h"
#include "extensions/common/manifest_handlers/incognito_info.h"
#include "extensions/common/permissions/permissions_data.h"
#include "extensions/grit/extensions_browser_resources.h"
#include "ui/base/resource/resource_bundle.h"
#include "url/gurl.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/file_manager/app_id.h"
#endif
namespace extensions {
namespace util {
namespace {
// The entry into the prefs used to flag an extension as installed by custodian.
// It is relevant only for supervised users.
const char kWasInstalledByCustodianPrefName[] = "was_installed_by_custodian";
// Returns |extension_id|. See note below.
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;
// 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;
}
} // namespace
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 EXTERNAL_COMPONENT).
if (extension->location() == Manifest::COMPONENT) {
// 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 defined(OS_CHROMEOS)
// 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);
}
}
bool CanCrossIncognito(const Extension* extension,
content::BrowserContext* context) {
// We allow the extension to see events and data from another profile iff it
// uses "spanning" behavior and it has incognito access. "split" mode
// extensions only see events for a matching profile.
CHECK(extension);
return IsIncognitoEnabled(extension->id(), context) &&
!IncognitoInfo::IsSplitMode(extension);
}
bool CanLoadInIncognito(const Extension* extension,
content::BrowserContext* context) {
CHECK(extension);
if (extension->is_hosted_app())
return true;
// Packaged apps and regular extensions need to be enabled specifically for
// incognito (and split mode should be set).
return IncognitoInfo::IsSplitMode(extension) &&
IsIncognitoEnabled(extension->id(), context);
}
bool AllowFileAccess(const std::string& extension_id,
content::BrowserContext* context) {
return base::CommandLine::ForCurrentProcess()->HasSwitch(
::switches::kDisableExtensionsFileAccessCheck) ||
ExtensionPrefs::Get(context)->AllowFileAccess(extension_id);
}
void SetAllowFileAccess(const std::string& extension_id,
content::BrowserContext* context,
bool allow) {
// Reload to update browser state. Only bother if the value changed and the
// extension is actually enabled, since there is no UI otherwise.
if (allow == AllowFileAccess(extension_id, context))
return;
ExtensionPrefs::Get(context)->SetAllowFileAccess(extension_id, allow);
ReloadExtensionIfEnabled(extension_id, context);
}
void SetWasInstalledByCustodian(const std::string& extension_id,
content::BrowserContext* context,
bool installed_by_custodian) {
if (installed_by_custodian == WasInstalledByCustodian(extension_id, context))
return;
ExtensionPrefs* prefs = ExtensionPrefs::Get(context);
prefs->UpdateExtensionPref(
extension_id, kWasInstalledByCustodianPrefName,
installed_by_custodian ? std::make_unique<base::Value>(true) : nullptr);
ExtensionService* service =
ExtensionSystem::Get(context)->extension_service();
if (!installed_by_custodian) {
// If installed_by_custodian changes to false, the extension may need to
// be unloaded now.
service->ReloadExtension(extension_id);
return;
}
ExtensionRegistry* registry = ExtensionRegistry::Get(context);
// If it is already enabled, do nothing.
if (registry->enabled_extensions().Contains(extension_id))
return;
// If the extension was disabled due to management policy, try to re-enable
// it. Example is a pre-installed extension that was disabled when a
// supervised user flag has been received.
// Note: EnableExtension will fail if the extension still needs to be disabled
// due to manangement policy.
if (registry->disabled_extensions().Contains(extension_id) &&
prefs->GetDisableReasons(extension_id) ==
disable_reason::DISABLE_BLOCKED_BY_POLICY) {
service->EnableExtension(extension_id);
}
}
bool WasInstalledByCustodian(const std::string& extension_id,
content::BrowserContext* context) {
bool installed_by_custodian = false;
ExtensionPrefs* prefs = ExtensionPrefs::Get(context);
prefs->ReadPrefAsBoolean(extension_id, kWasInstalledByCustodianPrefName,
&installed_by_custodian);
return installed_by_custodian;
}
bool IsAppLaunchable(const std::string& extension_id,
content::BrowserContext* context) {
int reason = ExtensionPrefs::Get(context)->GetDisableReasons(extension_id);
return !((reason & disable_reason::DISABLE_UNSUPPORTED_REQUIREMENT) ||
(reason & disable_reason::DISABLE_CORRUPTED));
}
bool IsAppLaunchableWithoutEnabling(const std::string& extension_id,
content::BrowserContext* context) {
return ExtensionRegistry::Get(context)->GetExtensionById(
extension_id, ExtensionRegistry::ENABLED) != NULL;
}
bool ShouldSync(const Extension* extension,
content::BrowserContext* context) {
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)
->GetExtensionById(extension_id, ExtensionRegistry::ENABLED);
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;
}
std::unique_ptr<base::DictionaryValue> GetExtensionInfo(
const Extension* extension) {
DCHECK(extension);
std::unique_ptr<base::DictionaryValue> dict(new base::DictionaryValue);
dict->SetString("id", extension->id());
dict->SetString("name", extension->name());
GURL icon = extensions::ExtensionIconSource::GetIconURL(
extension, extension_misc::EXTENSION_ICON_SMALLISH,
ExtensionIconSet::MATCH_BIGGER,
false); // Not grayscale.
dict->SetString("icon", icon.spec());
return dict;
}
const gfx::ImageSkia& GetDefaultAppIcon() {
return *ui::ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
IDR_APP_DEFAULT_ICON);
}
const gfx::ImageSkia& GetDefaultExtensionIcon() {
return *ui::ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
IDR_EXTENSION_DEFAULT_ICON);
}
bool IsNewBookmarkAppsEnabled() {
#if defined(OS_MACOSX)
return base::FeatureList::IsEnabled(features::kBookmarkApps) ||
base::FeatureList::IsEnabled(features::kAppBanners) ||
banners::AppBannerManager::IsExperimentalAppBannersEnabled();
#else
return true;
#endif
}
bool CanHostedAppsOpenInWindows() {
#if defined(OS_MACOSX)
return base::CommandLine::ForCurrentProcess()->HasSwitch(
::switches::kEnableHostedAppsInWindows) ||
base::FeatureList::IsEnabled(features::kDesktopPWAWindowing);
#else
return true;
#endif
}
bool IsExtensionSupervised(const Extension* extension, Profile* profile) {
return WasInstalledByCustodian(extension->id(), profile) &&
profile->IsSupervised();
}
const Extension* GetInstalledPwaForUrl(
content::BrowserContext* context,
const GURL& url,
base::Optional<LaunchContainer> launch_container_filter) {
DCHECK(base::FeatureList::IsEnabled(::features::kDesktopPWAWindowing));
const ExtensionPrefs* prefs = ExtensionPrefs::Get(context);
for (scoped_refptr<const Extension> app :
ExtensionRegistry::Get(context)->enabled_extensions()) {
if (!app->from_bookmark())
continue;
if (!BookmarkAppIsLocallyInstalled(prefs, app.get()))
continue;
if (launch_container_filter &&
GetLaunchContainer(prefs, app.get()) != *launch_container_filter) {
continue;
}
if (UrlHandlers::CanBookmarkAppHandleUrl(app.get(), url))
return app.get();
}
return nullptr;
}
const Extension* GetPwaForSecureActiveTab(Browser* browser) {
switch (browser->location_bar_model()->GetSecurityLevel(true)) {
case security_state::SECURITY_LEVEL_COUNT:
NOTREACHED();
FALLTHROUGH;
case security_state::NONE:
case security_state::HTTP_SHOW_WARNING:
case security_state::DANGEROUS:
return nullptr;
case security_state::EV_SECURE:
case security_state::SECURE:
case security_state::SECURE_WITH_POLICY_INSTALLED_CERT:
break;
}
content::WebContents* web_contents =
browser->tab_strip_model()->GetActiveWebContents();
return GetInstalledPwaForUrl(
web_contents->GetBrowserContext(),
web_contents->GetMainFrame()->GetLastCommittedURL());
}
bool IsWebContentsInAppWindow(content::WebContents* web_contents) {
// TODO(loyso): Unify this check as a util (including
// MaybeCreateHostedAppController).
Browser* browser = chrome::FindBrowserWithWebContents(web_contents);
return browser && browser->hosted_app_controller();
}
} // namespace util
} // namespace extensions
|