File: user_script_manager.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (310 lines) | stat: -rw-r--r-- 12,268 bytes parent folder | download | duplicates (5)
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
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "extensions/browser/user_script_manager.h"

#include "base/containers/contains.h"
#include "base/feature_list.h"
#include "base/one_shot_event.h"
#include "content/public/browser/browser_context.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/extensions_browser_client.h"
#include "extensions/browser/pref_types.h"
#include "extensions/browser/renderer_startup_helper.h"
#include "extensions/browser/scripting_constants.h"
#include "extensions/browser/scripting_utils.h"
#include "extensions/browser/state_store.h"
#include "extensions/browser/user_script_loader.h"
#include "extensions/common/api/content_scripts.h"
#include "extensions/common/extension_features.h"
#include "extensions/common/features/feature_developer_mode_only.h"
#include "extensions/common/manifest_handlers/content_scripts_handler.h"
#include "extensions/common/manifest_handlers/permissions_parser.h"
#include "extensions/common/mojom/api_permission_id.mojom-shared.h"
#include "extensions/common/mojom/host_id.mojom.h"
#include "extensions/common/mojom/run_location.mojom-shared.h"
#include "extensions/common/permissions/permissions_data.h"
#include "extensions/common/user_scripts_allowed_state.h"
#include "extensions/common/utils/content_script_utils.h"

namespace extensions {

UserScriptManager::UserScriptManager(content::BrowserContext* browser_context)
    : browser_context_(browser_context) {
  extension_registry_observation_.Observe(
      ExtensionRegistry::Get(browser_context_));

  StateStore* store =
      ExtensionSystem::Get(browser_context_)->dynamic_user_scripts_store();
  if (store) {
    store->RegisterKey(scripting::kRegisteredScriptsStorageKey);
  }

  // The preference migrated is for any instance of an extension so we don't
  // need to also migrate for any off the record contexts.
  if (!browser_context_->IsOffTheRecord() &&
      // Additionally only migrate if the feature is enabled and we haven't
      // already completed the one-time migration.
      base::FeatureList::IsEnabled(
          extensions_features::kUserScriptUserExtensionToggle) &&
      !ExtensionPrefs::Get(browser_context_)
           ->GetPrefAsBoolean(kUserScriptsToggleMigratedPref)) {
    ExtensionSystem::Get(browser_context_)
        ->ready()
        .Post(FROM_HERE,
              base::BindOnce(&UserScriptManager::MigrateUserScriptExtensions,
                             weak_factory_.GetWeakPtr()));
  }
}

UserScriptManager::~UserScriptManager() = default;

UserScriptLoader* UserScriptManager::GetUserScriptLoaderByID(
    const mojom::HostID& host_id) {
  switch (host_id.type) {
    case mojom::HostID::HostType::kExtensions:
      return GetUserScriptLoaderForExtension(host_id.id);
    case mojom::HostID::HostType::kControlledFrameEmbedder:
    case mojom::HostID::HostType::kWebUi:
      return GetUserScriptLoaderForEmbedder(host_id);
  }
}

ExtensionUserScriptLoader* UserScriptManager::GetUserScriptLoaderForExtension(
    const ExtensionId& extension_id) {
  const Extension* extension = ExtensionRegistry::Get(browser_context_)
                                   ->enabled_extensions()
                                   .GetByID(extension_id);
  CHECK(extension);

  auto it = extension_script_loaders_.find(extension->id());
  return (it == extension_script_loaders_.end())
             ? CreateExtensionUserScriptLoader(extension)
             : it->second.get();
}

EmbedderUserScriptLoader* UserScriptManager::GetUserScriptLoaderForEmbedder(
    const mojom::HostID& host_id) {
  auto it = embedder_script_loaders_.find(host_id);
  if (it != embedder_script_loaders_.end()) {
    return it->second.get();
  }

  switch (host_id.type) {
    case mojom::HostID::HostType::kControlledFrameEmbedder:
    case mojom::HostID::HostType::kWebUi:
      return CreateEmbedderUserScriptLoader(host_id);
    case mojom::HostID::HostType::kExtensions:
      break;
  }
  NOTREACHED();
}

void UserScriptManager::SetUserScriptSourceEnabledForExtensions(
    UserScript::Source source,
    bool enabled) {
  for (auto& map_entry : extension_script_loaders_) {
    map_entry.second->SetSourceEnabled(source, enabled);
  }
}

void UserScriptManager::InitializeUserScriptState(const Extension& extension) {
  // If the one-time migration for all extensions hasn't completed yet (e.g.
  // this is during startup), migrate this extension.
  if (!ExtensionPrefs::Get(browser_context_)
           ->GetPrefAsBoolean(kUserScriptsToggleMigratedPref)) {
    MigrateUserScriptExtension(extension);
  }

  SetCurrentUserScriptAllowedState(util::GetBrowserContextId(browser_context_),
                                   extension.id(),
                                   IsUserScriptPrefEnabled(extension.id()));
}

bool UserScriptManager::AreUserScriptsAllowed(const Extension& extension) {
  if (!base::FeatureList::IsEnabled(
          extensions_features::kUserScriptUserExtensionToggle)) {
    return GetCurrentDeveloperMode(util::GetBrowserContextId(browser_context_));
  }

  std::optional<bool> allowed_state = GetCurrentUserScriptAllowedState(
      util::GetBrowserContextId(browser_context_), extension.id());
  if (!allowed_state.has_value()) {
    InitializeUserScriptState(extension);
    allowed_state = GetCurrentUserScriptAllowedState(
        util::GetBrowserContextId(browser_context_), extension.id());
  }
  CHECK(allowed_state.has_value());

  return IsUserScriptsAPIPermissionAvailable(extension) &&
         *GetCurrentUserScriptAllowedState(
             util::GetBrowserContextId(browser_context_), extension.id());
}

// static
bool UserScriptManager::IsUserScriptsAPIPermissionAvailable(
    const Extension& extension) {
  return extension.permissions_data()->HasAPIPermission(
             mojom::APIPermissionID::kUserScripts) ||
         PermissionsParser::GetOptionalPermissions(&extension)
             .HasAPIPermission(mojom::APIPermissionID::kUserScripts);
}

void UserScriptManager::SetUserScriptPrefEnabled(
    const ExtensionId& extension_id,
    bool enabled) {
  CHECK(ExtensionRegistry::Get(browser_context_)
            ->GenerateInstalledExtensionsSet()
            .Contains(extension_id));

  if (IsUserScriptPrefEnabled(extension_id) == enabled) {
    // Return early since the pref is already set correctly.
    return;
  }

  ExtensionPrefs::Get(browser_context_)
      ->SetBooleanPref(extension_id, kUserScriptsAllowedPref, enabled);
  SetCurrentUserScriptAllowedState(util::GetBrowserContextId(browser_context_),
                                   extension_id, enabled);

  // If the extension is not enabled, its dynamic user script source will be
  // enabled in OnExtensionLoaded().
  if (!ExtensionRegistry::Get(browser_context_)
           ->enabled_extensions()
           .GetByID(extension_id)) {
    return;
  }

  // If the extension is enabled though we need to enable dynamic user script
  // source now since an extension may immediately register a user script.
  // Also do this before updating the renderer so we ensure the browser has the
  // correct allowed state before we then update the renderer.
  ExtensionUserScriptLoader* loader =
      GetUserScriptLoaderForExtension(extension_id);
  loader->SetSourceEnabled(UserScript::Source::kDynamicUserScript, enabled);

  RendererStartupHelperFactory::GetForBrowserContext(browser_context_)
      ->OnUserScriptsAllowedChanged(extension_id, /*allowed=*/enabled);
}

void UserScriptManager::OnExtensionWillBeInstalled(
    content::BrowserContext* browser_context,
    const Extension* extension,
    bool is_update,
    const std::string& old_name) {
  scripting::ClearPersistentScriptURLPatterns(browser_context, extension->id());
}

void UserScriptManager::OnExtensionLoaded(
    content::BrowserContext* browser_context,
    const Extension* extension) {
  CHECK(extension);
  ExtensionUserScriptLoader* loader =
      GetUserScriptLoaderForExtension(extension->id());

  if (loader->AddScriptsForExtensionLoad(
          *extension,
          base::BindOnce(&UserScriptManager::OnInitialExtensionLoadComplete,
                         weak_factory_.GetWeakPtr()))) {
    pending_initial_extension_loads_.insert(extension->id());
  }
}

void UserScriptManager::OnExtensionUnloaded(
    content::BrowserContext* browser_context,
    const Extension* extension,
    UnloadedExtensionReason reason) {
  // The renderer will clean up its scripts from an IPC message which is sent
  // when the extension is unloaded. All we need to do here is to remove the
  // unloaded extension's loader.
  extension_script_loaders_.erase(extension->id());
  RemovePendingExtensionLoadAndSignal(extension->id());
}

void UserScriptManager::OnInitialExtensionLoadComplete(
    UserScriptLoader* loader,
    const std::optional<std::string>& error) {
  RemovePendingExtensionLoadAndSignal(loader->host_id().id);
}

void UserScriptManager::RemovePendingExtensionLoadAndSignal(
    const ExtensionId& extension_id) {
  int erased = pending_initial_extension_loads_.erase(extension_id);
  if (!erased || !pending_initial_extension_loads_.empty()) {
    return;  // Not a relevant extension, or still waiting on more.
  }

  // All our extensions are loaded!
  ExtensionsBrowserClient::Get()->SignalContentScriptsLoaded(browser_context_);
}

ExtensionUserScriptLoader* UserScriptManager::CreateExtensionUserScriptLoader(
    const Extension* extension) {
  CHECK(!base::Contains(extension_script_loaders_, extension->id()));
  // Inserts a new ExtensionUserScriptLoader and returns a ptr to it.
  ExtensionUserScriptLoader* loader =
      extension_script_loaders_
          .emplace(extension->id(), std::make_unique<ExtensionUserScriptLoader>(
                                        browser_context_, *extension,
                                        ExtensionSystem::Get(browser_context_)
                                            ->dynamic_user_scripts_store()))
          .first->second.get();

  loader->SetSourceEnabled(UserScript::Source::kDynamicUserScript,
                           AreUserScriptsAllowed(*extension));

  return loader;
}

EmbedderUserScriptLoader* UserScriptManager::CreateEmbedderUserScriptLoader(
    const mojom::HostID& host_id) {
  CHECK(!base::Contains(embedder_script_loaders_, host_id));
  // Inserts a new EmbedderUserScriptLoader and returns a ptr to it.
  EmbedderUserScriptLoader* loader =
      embedder_script_loaders_
          .emplace(host_id, std::make_unique<EmbedderUserScriptLoader>(
                                browser_context_, host_id))
          .first->second.get();

  return loader;
}

bool UserScriptManager::IsUserScriptPrefEnabled(
    const ExtensionId& extension_id) const {
  bool user_scripts_pref_allowed = false;
  ExtensionPrefs::Get(browser_context_)
      ->ReadPrefAsBoolean(extension_id, kUserScriptsAllowedPref,
                          &user_scripts_pref_allowed);

  return user_scripts_pref_allowed;
}

void UserScriptManager::MigrateUserScriptExtension(const Extension& extension) {
  // If extension can't use the API, it doesn't need to be migrated.
  if (!IsUserScriptsAPIPermissionAvailable(extension)) {
    return;
  }

  // If the permission is *granted* and dev mode is on then user scripts allowed
  // pref is set to true, otherwise false.
  bool permission_granted = extension.permissions_data()->HasAPIPermission(
      mojom::APIPermissionID::kUserScripts);
  bool dev_mode_on =
      GetCurrentDeveloperMode(util::GetBrowserContextId(browser_context_));
  SetUserScriptPrefEnabled(extension.id(), permission_granted && dev_mode_on);
}

void UserScriptManager::MigrateUserScriptExtensions() {
  for (auto& installed_extension : ExtensionRegistry::Get(browser_context_)
                                       ->GenerateInstalledExtensionsSet()) {
    MigrateUserScriptExtension(*installed_extension);
  }
  ExtensionPrefs::Get(browser_context_)
      ->SetBooleanPref(kUserScriptsToggleMigratedPref, /*value=*/true);
}

}  // namespace extensions