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
|
// Copyright 2012 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/permissions/active_tab_permission_granter.h"
#include <set>
#include <vector>
#include "base/containers/contains.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "chrome/browser/extensions/extension_action_runner.h"
#include "chrome/browser/extensions/extension_util.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/extension_util.h"
#include "extensions/browser/network_permissions_updater.h"
#include "extensions/browser/permissions_manager.h"
#include "extensions/browser/process_manager.h"
#include "extensions/browser/renderer_startup_helper.h"
#include "extensions/browser/script_injection_tracker.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_id.h"
#include "extensions/common/manifest_handlers/incognito_info.h"
#include "extensions/common/mojom/renderer.mojom.h"
#include "extensions/common/permissions/permission_set.h"
#include "extensions/common/permissions/permissions_data.h"
#include "extensions/common/url_pattern_set.h"
#include "extensions/common/user_script.h"
#include "url/gurl.h"
namespace extensions {
namespace {
using RendererMessageFunction =
base::RepeatingCallback<void(bool, content::RenderProcessHost*)>;
void UpdateTabSpecificPermissions(const ExtensionId& extension_id,
const extensions::URLPatternSet& new_hosts,
int tab_id,
bool update_origin_allowlist,
content::RenderProcessHost* process) {
mojom::Renderer* renderer =
RendererStartupHelperFactory::GetForBrowserContext(
process->GetBrowserContext())
->GetRenderer(process);
if (renderer) {
renderer->UpdateTabSpecificPermissions(extension_id, new_hosts.Clone(),
tab_id, update_origin_allowlist);
}
}
void ClearTabSpecificPermissions(const std::vector<ExtensionId>& extension_ids,
int tab_id,
bool update_origin_allowlist,
content::RenderProcessHost* process) {
mojom::Renderer* renderer =
RendererStartupHelperFactory::GetForBrowserContext(
process->GetBrowserContext())
->GetRenderer(process);
if (renderer) {
renderer->ClearTabSpecificPermissions(extension_ids, tab_id,
update_origin_allowlist);
}
}
// Sends a message exactly once to each render process host owning one of the
// given |frame_hosts| and |tab_process|. If |tab_process| doesn't own any of
// the |frame_hosts|, it will not be signaled to update its origin allowlist.
void SendRendererMessageToProcesses(
const std::set<content::RenderFrameHost*>& frame_hosts,
content::RenderProcessHost* tab_process,
const RendererMessageFunction& renderer_message) {
std::set<content::RenderProcessHost*> sent_to_hosts;
for (content::RenderFrameHost* frame_host : frame_hosts) {
content::RenderProcessHost* process_host = frame_host->GetProcess();
if (!base::Contains(sent_to_hosts, process_host)) {
// Extension processes have to update the origin allowlists.
renderer_message.Run(true, process_host);
sent_to_hosts.insert(frame_host->GetProcess());
}
}
// If the tab wasn't one of those processes already updated (it likely
// wasn't), update it. Tabs don't need to update the origin allowlist.
if (!base::Contains(sent_to_hosts, tab_process)) {
renderer_message.Run(false, tab_process);
}
}
void SetCorsOriginAccessList(content::BrowserContext* browser_context,
const Extension& extension,
base::OnceClosure closure) {
// To limit how far the new permissions reach, we only apply them to the
// ActiveTab's context for split-mode extensions. OTOH, spanning-mode
// extensions need to get the new permissions in all profiles (e.g. if the
// ActiveTab is in an incognito window, than the [single/only/spanning]
// background page in the regular profile also needs to get the new
// permissions).
NetworkPermissionsUpdater::ContextSet context_set =
IncognitoInfo::IsSplitMode(&extension)
? NetworkPermissionsUpdater::ContextSet::kCurrentContextOnly
: NetworkPermissionsUpdater::ContextSet::kAllRelatedContexts;
NetworkPermissionsUpdater::UpdateExtension(*browser_context, extension,
context_set, std::move(closure));
}
} // namespace
ActiveTabPermissionGranter::ActiveTabPermissionGranter(
content::WebContents* web_contents,
int tab_id,
Profile* profile)
: content::WebContentsObserver(web_contents),
content::WebContentsUserData<ActiveTabPermissionGranter>(*web_contents),
tab_id_(tab_id) {
CHECK_NE(tab_id_, extension_misc::kUnknownTabId);
extension_registry_observation_.Observe(ExtensionRegistry::Get(profile));
}
ActiveTabPermissionGranter::~ActiveTabPermissionGranter() = default;
void ActiveTabPermissionGranter::GrantIfRequested(const Extension* extension) {
if (granted_extensions_.Contains(extension->id())) {
return;
}
APIPermissionSet new_apis;
URLPatternSet new_hosts;
const PermissionsData* permissions_data = extension->permissions_data();
// Do not use `RFH::GetLastCommittedOrigin()` because it returns an empty
// origin in case of a frame with CSP sandbox.
const GURL& url = web_contents()->GetLastCommittedURL();
// If the extension requested the host permission to |url| but had it
// withheld, we grant it active tab-style permissions, even if it doesn't have
// the activeTab permission in the manifest. This is necessary for the
// runtime host permissions feature to work.
content::BrowserContext* browser_context =
web_contents()->GetBrowserContext();
if (permissions_data->HasAPIPermission(mojom::APIPermissionID::kActiveTab) ||
permissions_data->withheld_permissions().effective_hosts().MatchesURL(
url)) {
// Gate activeTab for file urls on extensions having explicit access to file
// urls.
int valid_schemes = UserScript::ValidUserScriptSchemes();
if (!util::AllowFileAccess(extension->id(), browser_context)) {
valid_schemes &= ~URLPattern::SCHEME_FILE;
}
new_hosts.AddOrigin(valid_schemes, url);
new_apis.insert(mojom::APIPermissionID::kTab);
if (permissions_data->HasAPIPermission(
mojom::APIPermissionID::kDeclarativeNetRequest) ||
permissions_data->HasAPIPermission(
mojom::APIPermissionID::kDeclarativeNetRequestWithHostAccess)) {
new_apis.insert(mojom::APIPermissionID::kDeclarativeNetRequestFeedback);
}
}
if (permissions_data->HasAPIPermission(mojom::APIPermissionID::kTabCapture)) {
new_apis.insert(mojom::APIPermissionID::kTabCaptureForTab);
}
if (!new_apis.empty() || !new_hosts.is_empty()) {
granted_extensions_.Insert(extension);
PermissionSet new_permissions(std::move(new_apis), ManifestPermissionSet(),
new_hosts.Clone(), new_hosts.Clone());
permissions_data->UpdateTabSpecificPermissions(tab_id_, new_permissions);
SetCorsOriginAccessList(browser_context, *extension, base::DoNothing());
if (web_contents()->GetController().GetVisibleEntry()) {
ProcessManager* process_manager = ProcessManager::Get(browser_context);
content::RenderProcessHost* process =
web_contents()->GetPrimaryMainFrame()->GetProcess();
// Notify ScriptInjectionTracker that scripts may be executed after
// granting active tab.
ScriptInjectionTracker::WillGrantActiveTab(
base::PassKey<ActiveTabPermissionGranter>(), *extension, *process);
// Update all extension render views with the new tab permissions, and
// also the tab itself.
RendererMessageFunction update_message =
base::BindRepeating(&UpdateTabSpecificPermissions, extension->id(),
new_hosts.Clone(), tab_id_);
SendRendererMessageToProcesses(
process_manager->GetRenderFrameHostsForExtension(extension->id()),
process, update_message);
// It's important that this comes after the Mojo message is sent to the
// renderer, so that any tasks executing in the renderer occur after it
// has the updated permissions.
ExtensionActionRunner::GetForWebContents(web_contents())
->OnActiveTabPermissionGranted(extension);
auto* permissions_manager =
PermissionsManager::Get(web_contents()->GetBrowserContext());
permissions_manager->NotifyActiveTabPermisssionGranted(
web_contents(), tab_id_, *extension);
}
}
}
void ActiveTabPermissionGranter::RevokeForTesting() {
ClearGrantedExtensionsAndNotify();
}
void ActiveTabPermissionGranter::DidFinishNavigation(
content::NavigationHandle* navigation_handle) {
// Important: sub-frames don't get granted!
if (!navigation_handle->IsInPrimaryMainFrame() ||
!navigation_handle->HasCommitted() ||
navigation_handle->IsSameDocument()) {
return;
}
// Only clear the granted permissions for cross-origin navigations.
if (navigation_handle->IsSameOrigin()) {
return;
}
ClearGrantedExtensionsAndNotify();
}
void ActiveTabPermissionGranter::WebContentsDestroyed() {
ClearGrantedExtensionsAndNotify();
}
void ActiveTabPermissionGranter::OnExtensionUnloaded(
content::BrowserContext* browser_context,
const Extension* extension,
UnloadedExtensionReason reason) {
// Note: don't need to clear the permissions (nor tell the renderer about it)
// because it's being unloaded anyway.
granted_extensions_.Remove(extension->id());
}
void ActiveTabPermissionGranter::ClearGrantedExtensionsAndNotify() {
ClearGrantedExtensionsAndNotify(granted_extensions_);
}
void ActiveTabPermissionGranter::ClearActiveExtensionAndNotify(
const ExtensionId& id) {
if (!granted_extensions_.Contains(id)) {
return;
}
ExtensionSet granted_to_remove{};
granted_to_remove.Insert(granted_extensions_.GetByID(id));
ClearGrantedExtensionsAndNotify(granted_to_remove);
}
void ActiveTabPermissionGranter::ClearGrantedExtensionsAndNotify(
const ExtensionSet& granted_extensions_to_remove) {
if (granted_extensions_to_remove.empty()) {
return;
}
std::set<content::RenderProcessHost*> extension_processes;
std::vector<ExtensionId> extension_ids;
content::BrowserContext* browser_context =
web_contents()->GetBrowserContext();
ProcessManager* process_manager = ProcessManager::Get(browser_context);
for (const scoped_refptr<const Extension>& extension :
granted_extensions_to_remove) {
extension->permissions_data()->ClearTabSpecificPermissions(tab_id_);
SetCorsOriginAccessList(browser_context, *extension, base::DoNothing());
extension_ids.push_back(extension->id());
for (content::RenderFrameHost* extension_frame_host :
process_manager->GetRenderFrameHostsForExtension(extension->id())) {
extension_processes.insert(extension_frame_host->GetProcess());
}
}
// Notify active renders to clear tab permissions. We need to notify all
// renderers because we notify of tab permissions on renderer creation, and a
// previously-created (spare) renderer may be used for this tab in the future,
// even if it isn't associated with the tab now (b/1923555).
// TODO(b/325307774): only communicate the tab permissions to the renderers
// that run in the given tab.
for (content::RenderProcessHost::iterator host_iterator(
content::RenderProcessHost::AllHostsIterator());
!host_iterator.IsAtEnd(); host_iterator.Advance()) {
// Ignore renderers that are not ready.
content::RenderProcessHost* process = host_iterator.GetCurrentValue();
if (!process->IsInitializedAndNotDead()) {
continue;
}
// Ignore renderers that aren't from the same profile.
if (process->GetBrowserContext() != browser_context) {
continue;
}
// Only extension processes need to update the origin allowlists.
bool update_origin_allowlist = extension_processes.contains(process);
ClearTabSpecificPermissions(extension_ids, tab_id_, update_origin_allowlist,
process);
}
for (const auto& id : extension_ids) {
granted_extensions_.Remove(id);
}
}
WEB_CONTENTS_USER_DATA_KEY_IMPL(ActiveTabPermissionGranter);
} // namespace extensions
|