1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "extensions/common/user_script.h"
7 #include "base/atomic_sequence_num.h"
8 #include "base/command_line.h"
9 #include "base/pickle.h"
10 #include "base/strings/string_util.h"
11 #include "extensions/common/switches.h"
15 // This cannot be a plain int or int64 because we need to generate unique IDs
16 // from multiple threads.
17 base::StaticAtomicSequenceNumber g_user_script_id_generator
;
19 bool UrlMatchesGlobs(const std::vector
<std::string
>* globs
,
21 for (std::vector
<std::string
>::const_iterator glob
= globs
->begin();
22 glob
!= globs
->end(); ++glob
) {
23 if (MatchPattern(url
.spec(), *glob
))
32 namespace extensions
{
34 // The bitmask for valid user script injectable schemes used by URLPattern.
36 kValidUserScriptSchemes
= URLPattern::SCHEME_CHROMEUI
|
37 URLPattern::SCHEME_HTTP
|
38 URLPattern::SCHEME_HTTPS
|
39 URLPattern::SCHEME_FILE
|
40 URLPattern::SCHEME_FTP
44 const char UserScript::kFileExtension
[] = ".user.js";
48 int UserScript::GenerateUserScriptID() {
49 return g_user_script_id_generator
.GetNext();
52 bool UserScript::IsURLUserScript(const GURL
& url
,
53 const std::string
& mime_type
) {
54 return EndsWith(url
.ExtractFileName(), kFileExtension
, false) &&
55 mime_type
!= "text/html";
59 int UserScript::ValidUserScriptSchemes(bool canExecuteScriptEverywhere
) {
60 if (canExecuteScriptEverywhere
)
61 return URLPattern::SCHEME_ALL
;
62 int valid_schemes
= kValidUserScriptSchemes
;
63 if (!CommandLine::ForCurrentProcess()->HasSwitch(
64 switches::kExtensionsOnChromeURLs
)) {
65 valid_schemes
&= ~URLPattern::SCHEME_CHROMEUI
;
70 UserScript::File::File(const base::FilePath
& extension_root
,
71 const base::FilePath
& relative_path
,
73 : extension_root_(extension_root
),
74 relative_path_(relative_path
),
78 UserScript::File::File() {}
80 UserScript::File::~File() {}
82 UserScript::UserScript()
83 : run_location_(DOCUMENT_IDLE
),
85 emulate_greasemonkey_(false),
86 match_all_frames_(false),
87 match_about_blank_(false),
88 incognito_enabled_(false) {}
90 UserScript::~UserScript() {
93 void UserScript::add_url_pattern(const URLPattern
& pattern
) {
94 url_set_
.AddPattern(pattern
);
97 void UserScript::add_exclude_url_pattern(const URLPattern
& pattern
) {
98 exclude_url_set_
.AddPattern(pattern
);
101 bool UserScript::MatchesURL(const GURL
& url
) const {
102 if (!url_set_
.is_empty()) {
103 if (!url_set_
.MatchesURL(url
))
107 if (!exclude_url_set_
.is_empty()) {
108 if (exclude_url_set_
.MatchesURL(url
))
112 if (!globs_
.empty()) {
113 if (!UrlMatchesGlobs(&globs_
, url
))
117 if (!exclude_globs_
.empty()) {
118 if (UrlMatchesGlobs(&exclude_globs_
, url
))
125 void UserScript::File::Pickle(::Pickle
* pickle
) const {
126 pickle
->WriteString(url_
.spec());
127 // Do not write path. It's not needed in the renderer.
128 // Do not write content. It will be serialized by other means.
131 void UserScript::File::Unpickle(const ::Pickle
& pickle
, PickleIterator
* iter
) {
132 // Read the url from the pickle.
134 CHECK(pickle
.ReadString(iter
, &url
));
138 void UserScript::Pickle(::Pickle
* pickle
) const {
139 // Write the simple types to the pickle.
140 pickle
->WriteInt(run_location());
141 pickle
->WriteString(extension_id());
142 pickle
->WriteInt(user_script_id_
);
143 pickle
->WriteBool(emulate_greasemonkey());
144 pickle
->WriteBool(match_all_frames());
145 pickle
->WriteBool(match_about_blank());
146 pickle
->WriteBool(is_incognito_enabled());
148 PickleGlobs(pickle
, globs_
);
149 PickleGlobs(pickle
, exclude_globs_
);
150 PickleURLPatternSet(pickle
, url_set_
);
151 PickleURLPatternSet(pickle
, exclude_url_set_
);
152 PickleScripts(pickle
, js_scripts_
);
153 PickleScripts(pickle
, css_scripts_
);
156 void UserScript::PickleGlobs(::Pickle
* pickle
,
157 const std::vector
<std::string
>& globs
) const {
158 pickle
->WriteSizeT(globs
.size());
159 for (std::vector
<std::string
>::const_iterator glob
= globs
.begin();
160 glob
!= globs
.end(); ++glob
) {
161 pickle
->WriteString(*glob
);
165 void UserScript::PickleURLPatternSet(::Pickle
* pickle
,
166 const URLPatternSet
& pattern_list
) const {
167 pickle
->WriteSizeT(pattern_list
.patterns().size());
168 for (URLPatternSet::const_iterator pattern
= pattern_list
.begin();
169 pattern
!= pattern_list
.end(); ++pattern
) {
170 pickle
->WriteInt(pattern
->valid_schemes());
171 pickle
->WriteString(pattern
->GetAsString());
175 void UserScript::PickleScripts(::Pickle
* pickle
,
176 const FileList
& scripts
) const {
177 pickle
->WriteSizeT(scripts
.size());
178 for (FileList::const_iterator file
= scripts
.begin();
179 file
!= scripts
.end(); ++file
) {
180 file
->Pickle(pickle
);
184 void UserScript::Unpickle(const ::Pickle
& pickle
, PickleIterator
* iter
) {
185 // Read the run location.
186 int run_location
= 0;
187 CHECK(pickle
.ReadInt(iter
, &run_location
));
188 CHECK(run_location
>= 0 && run_location
< RUN_LOCATION_LAST
);
189 run_location_
= static_cast<RunLocation
>(run_location
);
191 CHECK(pickle
.ReadString(iter
, &extension_id_
));
192 CHECK(pickle
.ReadInt(iter
, &user_script_id_
));
193 CHECK(pickle
.ReadBool(iter
, &emulate_greasemonkey_
));
194 CHECK(pickle
.ReadBool(iter
, &match_all_frames_
));
195 CHECK(pickle
.ReadBool(iter
, &match_about_blank_
));
196 CHECK(pickle
.ReadBool(iter
, &incognito_enabled_
));
198 UnpickleGlobs(pickle
, iter
, &globs_
);
199 UnpickleGlobs(pickle
, iter
, &exclude_globs_
);
200 UnpickleURLPatternSet(pickle
, iter
, &url_set_
);
201 UnpickleURLPatternSet(pickle
, iter
, &exclude_url_set_
);
202 UnpickleScripts(pickle
, iter
, &js_scripts_
);
203 UnpickleScripts(pickle
, iter
, &css_scripts_
);
206 void UserScript::UnpickleGlobs(const ::Pickle
& pickle
, PickleIterator
* iter
,
207 std::vector
<std::string
>* globs
) {
208 size_t num_globs
= 0;
209 CHECK(pickle
.ReadSizeT(iter
, &num_globs
));
211 for (size_t i
= 0; i
< num_globs
; ++i
) {
213 CHECK(pickle
.ReadString(iter
, &glob
));
214 globs
->push_back(glob
);
218 void UserScript::UnpickleURLPatternSet(const ::Pickle
& pickle
,
219 PickleIterator
* iter
,
220 URLPatternSet
* pattern_list
) {
221 size_t num_patterns
= 0;
222 CHECK(pickle
.ReadSizeT(iter
, &num_patterns
));
224 pattern_list
->ClearPatterns();
225 for (size_t i
= 0; i
< num_patterns
; ++i
) {
227 CHECK(pickle
.ReadInt(iter
, &valid_schemes
));
229 std::string pattern_str
;
230 CHECK(pickle
.ReadString(iter
, &pattern_str
));
232 URLPattern
pattern(kValidUserScriptSchemes
);
233 URLPattern::ParseResult result
= pattern
.Parse(pattern_str
);
234 CHECK(URLPattern::PARSE_SUCCESS
== result
) <<
235 URLPattern::GetParseResultString(result
) << " " << pattern_str
.c_str();
237 pattern
.SetValidSchemes(valid_schemes
);
238 pattern_list
->AddPattern(pattern
);
242 void UserScript::UnpickleScripts(const ::Pickle
& pickle
, PickleIterator
* iter
,
244 size_t num_files
= 0;
245 CHECK(pickle
.ReadSizeT(iter
, &num_files
));
247 for (size_t i
= 0; i
< num_files
; ++i
) {
249 file
.Unpickle(pickle
, iter
);
250 scripts
->push_back(file
);
254 bool operator<(const UserScript
& script1
, const UserScript
& script2
) {
255 // The only kind of script that should be compared is the kind that has its
256 // IDs initialized to a meaningful value.
257 DCHECK(script1
.id() != -1 && script2
.id() != -1);
258 return script1
.id() < script2
.id();
261 } // namespace extensions