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 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
|
// 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.
#ifndef EXTENSIONS_COMMON_EXTENSION_H_
#define EXTENSIONS_COMMON_EXTENSION_H_
#include <map>
#include <memory>
#include <string>
#include <string_view>
#include <vector>
#include "base/files/file_path.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/threading/thread_checker.h"
#include "base/uuid.h"
#include "base/values.h"
#include "base/version.h"
#include "extensions/buildflags/buildflags.h"
#include "extensions/common/extension_guid.h"
#include "extensions/common/extension_id.h"
#include "extensions/common/extension_resource.h"
#include "extensions/common/install_warning.h"
#include "extensions/common/manifest.h"
#include "extensions/common/mojom/manifest.mojom-shared.h"
#include "extensions/common/url_pattern_set.h"
#include "url/gurl.h"
#include "url/origin.h"
static_assert(BUILDFLAG(ENABLE_EXTENSIONS_CORE));
namespace extensions {
class HashedExtensionId;
class PermissionsData;
class PermissionsParser;
// Represents a Chrome extension.
// Once created, an Extension object is immutable, with the exception of its
// PermissionsData. This makes it safe to use on any thread, since access to the
// PermissionsData is protected by a lock.
class Extension final : public base::RefCountedThreadSafe<Extension> {
public:
// A base class for parsed manifest data that APIs want to store on
// the extension. Related to base::SupportsUserData, but with an immutable
// thread-safe interface to match Extension.
struct ManifestData {
virtual ~ManifestData() = default;
};
// Do not change the order of entries or remove entries in this list
// as this is used in UMA_HISTOGRAM_ENUMERATIONs about extensions.
enum InitFromValueFlags {
NO_FLAGS = 0,
// Usually, the id of an extension is generated by the "key" property of
// its manifest, but if `REQUIRE_KEY` is not set, a temporary ID will be
// generated based on the path.
REQUIRE_KEY = 1 << 0,
// Requires the extension to have an up-to-date manifest version.
// Typically, we'll support multiple manifest versions during a version
// transition. This flag signals that we want to require the most modern
// manifest version that Chrome understands.
REQUIRE_MODERN_MANIFEST_VERSION = 1 << 1,
// `ALLOW_FILE_ACCESS` indicates that the user is allowing this extension
// to have file access. If it's not present, then permissions and content
// scripts that match file:/// URLs will be filtered out.
ALLOW_FILE_ACCESS = 1 << 2,
// `FROM_WEBSTORE` indicates that the extension was installed from the
// Chrome Web Store.
FROM_WEBSTORE = 1 << 3,
// DEPRECATED - `FROM_BOOKMARK` indicates the extension is a bookmark app
// which has been generated from a web page. Bookmark apps have no
// permissions or extent and launch the web page they are created from when
// run.
// FROM_BOOKMARK = 1 << 4,
// `FOLLOW_SYMLINKS_ANYWHERE` means that resources can be symlinks to
// anywhere in the filesystem, rather than being restricted to the
// extension directory.
FOLLOW_SYMLINKS_ANYWHERE = 1 << 5,
// `ERROR_ON_PRIVATE_KEY` means that private keys inside an
// extension should be errors rather than warnings.
ERROR_ON_PRIVATE_KEY = 1 << 6,
// `WAS_INSTALLED_BY_DEFAULT` installed by default when the profile was
// created.
WAS_INSTALLED_BY_DEFAULT = 1 << 7,
// Unused - was part of an abandoned experiment.
REQUIRE_PERMISSIONS_CONSENT = 1 << 8,
// Unused - this flag has been moved to ExtensionPrefs.
IS_EPHEMERAL = 1 << 9,
// `WAS_INSTALLED_BY_OEM` installed by an OEM (e.g on Chrome OS) and should
// be placed in a special OEM folder in the App Launcher. Note: OEM apps are
// also installed by Default (i.e. WAS_INSTALLED_BY_DEFAULT is also true).
WAS_INSTALLED_BY_OEM = 1 << 10,
// DEPRECATED: WAS_INSTALLED_BY_CUSTODIAN is now stored as a pref instead.
// WAS_INSTALLED_BY_CUSTODIAN = 1 << 11,
// `MAY_BE_UNTRUSTED` indicates that this extension came from a potentially
// unsafe source (e.g., sideloaded from a local CRX file via the Windows
// registry). Such extensions may be subjected to additional constraints
// before they are fully installed and enabled.
MAY_BE_UNTRUSTED = 1 << 12,
// `FOR_LOGIN_SCREEN` means that this extension was force-installed through
// policy for the login screen. Extensions created with this flag will have
// type `TYPE_LOGIN_SCREEN_EXTENSION` (with limited API capabilities)
// instead of the usual `TYPE_EXTENSION`.
FOR_LOGIN_SCREEN = 1 << 13,
// `WITHHOLD_PERMISSIONS` indicates that on installation the user indicated
// for permissions to be withheld from the extension by default.
WITHHOLD_PERMISSIONS = 1 << 14,
// When adding new flags, make sure to update kInitFromValueFlagBits.
};
// This is the highest bit index of the flags defined above.
static const int kInitFromValueFlagBits;
Extension(const Extension&) = delete;
Extension& operator=(const Extension&) = delete;
static scoped_refptr<Extension> Create(const base::FilePath& path,
mojom::ManifestLocation location,
const base::Value::Dict& value,
int flags,
std::string* error);
// In a few special circumstances, we want to create an Extension and give it
// an explicit id. Most consumers should just use the other Create() method.
static scoped_refptr<Extension> Create(const base::FilePath& path,
mojom::ManifestLocation location,
const base::Value::Dict& value,
int flags,
const ExtensionId& explicit_id,
std::string* error);
// Valid schemes for web extent URLPatterns.
static const int kValidWebExtentSchemes;
// Valid schemes for host permission URLPatterns.
static const int kValidHostPermissionSchemes;
// The mimetype used for extensions.
static const char kMimeType[];
// See Type definition in Manifest.
Manifest::Type GetType() const;
// Returns an absolute URL to a resource inside of an extension. The
// `extension_url` argument should be the url() from an Extension object. The
// `relative_url` can be untrusted user input. The returned URL will either be
// invalid() or a child of `extension_url`.
//
// Note that `relative_url` is treated as a URL-encoded string, e.g. "%21.txt"
// will refer to the "!.txt" file. Any query or fragment components in
// `relative_url` are included in the returned URL.
//
// `relative_url` may be an absolute URL as long as it is a child of
// `extension_url`.
//
// NOTE: Static so that it can be used from multiple threads.
static GURL ResolveExtensionURL(const GURL& extension_url,
std::string_view relative_url);
GURL ResolveExtensionURL(std::string_view relative_url) const {
return ResolveExtensionURL(url(), relative_url);
}
// Returns true if the resource matches a pattern in the pattern_set.
bool ResourceMatches(const URLPatternSet& pattern_set,
std::string_view resource) const;
// Returns an extension resource object. `relative_path` should be UTF8
// encoded.
ExtensionResource GetResource(std::string_view relative_path) const;
// As above, but with `relative_path` following the file system's encoding.
ExtensionResource GetResource(const base::FilePath& relative_path) const;
// `input` is expected to be the text of an rsa public or private key. It
// tolerates the presence or absence of bracking header/footer like this:
// -----(BEGIN|END) [RSA PUBLIC/PRIVATE] KEY-----
// and may contain newlines.
static bool ParsePEMKeyBytes(std::string_view input, std::string* output);
// Does a simple base64 encoding of `input` into `output`.
static bool ProducePEM(std::string_view input, std::string* output);
// Expects base64 encoded `input` and formats into `output` including
// the appropriate header & footer.
static bool FormatPEMForFileOutput(std::string_view input,
std::string* output,
bool is_public);
// Returns the base extension url for a given `extension_id`.
static GURL GetBaseURLFromExtensionId(const ExtensionId& extension_id);
// Returns the scope for the extension's service worker.
static GURL GetServiceWorkerScopeFromExtensionId(
const ExtensionId& extension_id) {
return GetBaseURLFromExtensionId(extension_id);
}
// Returns the extension origin for a given `extension_id`.
static url::Origin CreateOriginFromExtensionId(
const ExtensionId& extension_id);
// Returns true if this extension or app includes areas within `origin`.
bool OverlapsWithOrigin(const GURL& origin) const;
// Get the manifest data associated with the key, or NULL if there is none.
// Can only be called after InitFromValue is finished.
ManifestData* GetManifestData(std::string_view key) const;
// Sets `data` to be associated with the key.
// Can only be called before InitFromValue is finished. Not thread-safe;
// all SetManifestData calls should be on only one thread.
void SetManifestData(std::string_view key,
std::unique_ptr<ManifestData> data);
// Sets the GUID for this extension. Note: this should *only* be used when
// duplicating an existing extension; otherwise, the GUID will be
// appropriately set during creation (ensuring uniqueness).
void SetGUID(const ExtensionGuid& guid);
// Accessors:
const base::FilePath& path() const { return path_; }
const GURL& url() const { return extension_url_; }
const GURL& dynamic_url() const { return dynamic_url_; }
url::Origin origin() const { return extension_origin_; }
mojom::ManifestLocation location() const;
const ExtensionId& id() const;
const HashedExtensionId& hashed_id() const;
const ExtensionGuid& guid() const;
const base::Version& version() const { return version_; }
const std::string& version_name() const { return version_name_; }
std::string VersionString() const;
std::string DifferentialFingerprint() const;
std::string GetVersionForDisplay() const;
const std::string& name() const { return display_name_; }
const std::string& short_name() const { return short_name_; }
const std::string& non_localized_name() const { return non_localized_name_; }
// Base64-encoded version of the key used to sign this extension.
// In pseudocode, returns
// base::Base64Encode(RSAPrivateKey(pem_file).ExportPublicKey()).
const std::string& public_key() const { return public_key_; }
const std::string& description() const { return description_; }
int manifest_version() const { return manifest_version_; }
bool converted_from_user_script() const {
return converted_from_user_script_;
}
PermissionsParser* permissions_parser() { return permissions_parser_.get(); }
const PermissionsParser* permissions_parser() const {
return permissions_parser_.get();
}
const PermissionsData* permissions_data() const {
return permissions_data_.get();
}
// Appends |new_warning[s]| to install_warnings_.
void AddInstallWarning(InstallWarning new_warning);
void AddInstallWarnings(std::vector<InstallWarning> new_warnings);
const std::vector<InstallWarning>& install_warnings() const {
return install_warnings_;
}
const extensions::Manifest* manifest() const { return manifest_.get(); }
bool wants_file_access() const { return wants_file_access_; }
// TODO(rdevlin.cronin): This is needed for ContentScriptsHandler, and should
// be moved out as part of crbug.com/159265. This should not be used anywhere
// else.
void set_wants_file_access(bool wants_file_access) {
wants_file_access_ = wants_file_access;
}
int creation_flags() const { return creation_flags_; }
bool from_webstore() const { return (creation_flags_ & FROM_WEBSTORE) != 0; }
bool may_be_untrusted() const {
return (creation_flags_ & MAY_BE_UNTRUSTED) != 0;
}
bool was_installed_by_default() const {
return (creation_flags_ & WAS_INSTALLED_BY_DEFAULT) != 0;
}
bool was_installed_by_oem() const {
return (creation_flags_ & WAS_INSTALLED_BY_OEM) != 0;
}
// Type-related queries. These are all mutually exclusive.
//
// The differences between the types of Extension are documented here:
// //extensions/docs/extension_and_app_types.md
bool is_platform_app() const; // aka "V2 app", "V2 packaged app"
bool is_hosted_app() const; // Hosted app (or bookmark app)
bool is_legacy_packaged_app() const; // aka "V1 packaged app"
bool is_extension() const; // Regular browser extension, not an app
bool is_shared_module() const; // Shared module
bool is_theme() const; // Theme
bool is_login_screen_extension() const; // Extension on login screen.
bool is_chromeos_system_extension() const; // ChromeOS System Extension.
// True if this is a platform app, hosted app, or legacy packaged app.
bool is_app() const;
void AddWebExtentPattern(const URLPattern& pattern);
const URLPatternSet& web_extent() const { return extent_; }
// Sets whether to ignore deprecated manifest versions for testing purposes.
// PLEASE DON'T USE THIS. Instead:
// * Ideally, use the current manifest version (V3)! :)
// * Failing that, please instead allow the warning to be emitted by e.g.
// toggling ignore_manifest_warnings on ChromeTestExtensionLoader.
static void set_silence_deprecated_manifest_version_warnings_for_testing(
bool silence);
private:
friend class base::RefCountedThreadSafe<Extension>;
Extension(const base::FilePath& path,
std::unique_ptr<extensions::Manifest> manifest);
~Extension();
// Initialize the extension from a parsed manifest.
// TODO(aa): Rename to just Init()? There's no Value here anymore.
// TODO(aa): It is really weird the way this class essentially contains a copy
// of the underlying base::Value::Dict in its members. We should decide to
// either wrap the base::Value::Dict and go with that only, or we should parse
// into strong types and discard the value. But doing both is bad.
bool InitFromValue(int flags, std::u16string* error);
// The following are helpers for InitFromValue to load various features of the
// extension from the manifest.
bool LoadRequiredFeatures(std::u16string* error);
bool LoadName(std::u16string* error);
bool LoadVersion(std::u16string* error);
bool LoadAppFeatures(std::u16string* error);
bool LoadExtent(const char* key,
URLPatternSet* extent,
const char* list_error,
const char* value_error,
std::u16string* error);
bool LoadSharedFeatures(std::u16string* error);
bool LoadDescription(std::u16string* error);
bool LoadManifestVersion(std::u16string* error);
bool LoadShortName(std::u16string* error);
// The extension's human-readable name. Name is used for display purpose. It
// might be wrapped with unicode bidi control characters so that it is
// displayed correctly in RTL context.
// NOTE: Name is UTF-8 and may contain non-ascii characters.
std::string display_name_;
// A non-localized version of the extension's name. This is useful for
// debug output.
std::string non_localized_name_;
// A short version of the extension's name. This can be used as an alternative
// to the name where there is insufficient space to display the full name. If
// an extension has not explicitly specified a short name, the value of this
// member variable will be the full name rather than an empty string.
std::string short_name_;
// The version of this extension's manifest. We increase the manifest
// version when making breaking changes to the extension system.
// Version 1 was the first manifest version (implied by a lack of a
// manifest_version attribute in the extension's manifest). We initialize
// this member variable to 0 to distinguish the "uninitialized" case from
// the case when we know the manifest version actually is 1.
int manifest_version_;
// The absolute path to the directory the extension is stored in.
base::FilePath path_;
// Defines the set of URLs in the extension's web content.
URLPatternSet extent_;
// The parser for the manifest's permissions. This is NULL anytime not during
// initialization.
// TODO(rdevlin.cronin): This doesn't really belong here.
std::unique_ptr<PermissionsParser> permissions_parser_;
// The active permissions for the extension.
std::unique_ptr<PermissionsData> permissions_data_;
// Any warnings that occurred when trying to create/parse the extension.
std::vector<InstallWarning> install_warnings_;
// The extension origin and base url.
url::Origin extension_origin_;
GURL extension_url_;
// The base extension url for the extension using guid.
GURL dynamic_url_;
// The extension's version.
base::Version version_;
// The extension's user visible version name.
std::string version_name_;
// An optional longer description of the extension.
std::string description_;
// True if the extension was generated from a user script. (We show slightly
// different UI if so).
bool converted_from_user_script_;
// The public key used to sign the contents of the crx package.
std::string public_key_;
// The manifest from which this extension was created.
std::unique_ptr<Manifest> manifest_;
// Stored parsed manifest data.
using ManifestDataMap =
std::map<std::string, std::unique_ptr<ManifestData>, std::less<>>;
ManifestDataMap manifest_data_;
// Set to true at the end of InitFromValue when initialization is finished.
bool finished_parsing_manifest_;
// Ensures that any call to GetManifestData() prior to finishing
// initialization happens from the same thread (this can happen when certain
// parts of the initialization process need information from previous parts).
base::ThreadChecker thread_checker_;
// Whether the extension has host permissions or user script patterns that
// imply access to file:/// scheme URLs (the user may not have actually
// granted it that access).
bool wants_file_access_;
// The flags that were passed to InitFromValue.
int creation_flags_;
// A dynamic ID that can be used when referencing extension resources via URL
// instead of an extension ID.
base::Uuid guid_;
};
using ExtensionList = std::vector<scoped_refptr<const Extension>>;
// Handy struct to pass core extension info around.
struct ExtensionInfo {
ExtensionInfo(const base::Value::Dict* manifest,
const ExtensionId& id,
const base::FilePath& path,
mojom::ManifestLocation location);
ExtensionInfo(ExtensionInfo&&) noexcept;
ExtensionInfo(const ExtensionInfo&) = delete;
ExtensionInfo& operator=(const ExtensionInfo&) = delete;
ExtensionInfo& operator=(ExtensionInfo&&);
~ExtensionInfo();
// Note: This may be null (e.g. for unpacked extensions retrieved from the
// Preferences file).
std::unique_ptr<base::Value::Dict> extension_manifest;
ExtensionId extension_id;
base::FilePath extension_path;
mojom::ManifestLocation extension_location;
};
} // namespace extensions
#endif // EXTENSIONS_COMMON_EXTENSION_H_
|