[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 1 | // Copyright 2014 The Chromium Authors. All rights reserved. |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 5 | #include "extensions/renderer/script_context_set.h" |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 6 | |
[email protected] | 6827510 | 2013-07-17 23:54:20 | [diff] [blame] | 7 | #include "base/message_loop/message_loop.h" |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 8 | #include "content/public/common/url_constants.h" |
rdevlin.cronin | c5d9a0ea | 2015-06-23 21:29:10 | [diff] [blame^] | 9 | #include "content/public/renderer/render_frame.h" |
[email protected] | e4452d3 | 2013-11-15 23:07:41 | [diff] [blame] | 10 | #include "extensions/common/extension.h" |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 11 | #include "extensions/renderer/extension_groups.h" |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 12 | #include "extensions/renderer/script_context.h" |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 13 | #include "extensions/renderer/script_injection.h" |
| 14 | #include "third_party/WebKit/public/web/WebDocument.h" |
| 15 | #include "third_party/WebKit/public/web/WebLocalFrame.h" |
[email protected] | 885c0e9 | 2012-11-13 20:27:42 | [diff] [blame] | 16 | #include "v8/include/v8.h" |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 17 | |
[email protected] | 8fe74bf | 2012-08-07 21:08:42 | [diff] [blame] | 18 | namespace extensions { |
| 19 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 20 | ScriptContextSet::ScriptContextSet(ExtensionSet* extensions, |
| 21 | ExtensionIdSet* active_extension_ids) |
| 22 | : extensions_(extensions), active_extension_ids_(active_extension_ids) { |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 23 | } |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 24 | |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 25 | ScriptContextSet::~ScriptContextSet() { |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 26 | } |
| 27 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 28 | ScriptContext* ScriptContextSet::Register( |
| 29 | blink::WebLocalFrame* frame, |
tfarina | f85316f | 2015-04-29 17:03:40 | [diff] [blame] | 30 | const v8::Local<v8::Context>& v8_context, |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 31 | int extension_group, |
| 32 | int world_id) { |
| 33 | const Extension* extension = |
| 34 | GetExtensionFromFrameAndWorld(frame, world_id, false); |
| 35 | const Extension* effective_extension = |
| 36 | GetExtensionFromFrameAndWorld(frame, world_id, true); |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 37 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 38 | GURL frame_url = ScriptContext::GetDataSourceURLForFrame(frame); |
| 39 | Feature::Context context_type = |
| 40 | ClassifyJavaScriptContext(extension, extension_group, frame_url, |
| 41 | frame->document().securityOrigin()); |
| 42 | Feature::Context effective_context_type = ClassifyJavaScriptContext( |
| 43 | effective_extension, extension_group, |
| 44 | ScriptContext::GetEffectiveDocumentURL(frame, frame_url, true), |
| 45 | frame->document().securityOrigin()); |
| 46 | |
| 47 | ScriptContext* context = |
| 48 | new ScriptContext(v8_context, frame, extension, context_type, |
| 49 | effective_extension, effective_context_type); |
| 50 | contexts_.insert(context); // takes ownership |
| 51 | return context; |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 52 | } |
| 53 | |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 54 | void ScriptContextSet::Remove(ScriptContext* context) { |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 55 | if (contexts_.erase(context)) { |
[email protected] | 4f1633f | 2013-03-09 14:26:24 | [diff] [blame] | 56 | context->Invalidate(); |
kalman | 62b5911d | 2015-04-04 02:33:09 | [diff] [blame] | 57 | base::MessageLoop::current()->DeleteSoon(FROM_HERE, context); |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 58 | } |
| 59 | } |
| 60 | |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 61 | ScriptContext* ScriptContextSet::GetCurrent() const { |
[email protected] | 95c6b301 | 2013-12-02 14:30:31 | [diff] [blame] | 62 | v8::Isolate* isolate = v8::Isolate::GetCurrent(); |
| 63 | return isolate->InContext() ? GetByV8Context(isolate->GetCurrentContext()) |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 64 | : nullptr; |
[email protected] | ad6aa8f9 | 2013-06-22 15:34:16 | [diff] [blame] | 65 | } |
| 66 | |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 67 | ScriptContext* ScriptContextSet::GetCalling() const { |
[email protected] | 95c6b301 | 2013-12-02 14:30:31 | [diff] [blame] | 68 | v8::Isolate* isolate = v8::Isolate::GetCurrent(); |
| 69 | v8::Local<v8::Context> calling = isolate->GetCallingContext(); |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 70 | return calling.IsEmpty() ? nullptr : GetByV8Context(calling); |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 71 | } |
| 72 | |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 73 | ScriptContext* ScriptContextSet::GetByV8Context( |
tfarina | f85316f | 2015-04-29 17:03:40 | [diff] [blame] | 74 | const v8::Local<v8::Context>& v8_context) const { |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 75 | for (ScriptContext* script_context : contexts_) { |
| 76 | if (script_context->v8_context() == v8_context) |
| 77 | return script_context; |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 78 | } |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 79 | return nullptr; |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 80 | } |
| 81 | |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 82 | void ScriptContextSet::ForEach( |
[email protected] | 2ee1e3a | 2011-10-04 15:04:04 | [diff] [blame] | 83 | const std::string& extension_id, |
rdevlin.cronin | c5d9a0ea | 2015-06-23 21:29:10 | [diff] [blame^] | 84 | content::RenderFrame* render_frame, |
[email protected] | bcd9580f | 2014-04-17 19:17:59 | [diff] [blame] | 85 | const base::Callback<void(ScriptContext*)>& callback) const { |
kozyatinskiy | 441ece5 | 2015-04-01 23:46:32 | [diff] [blame] | 86 | // We copy the context list, because calling into javascript may modify it |
| 87 | // out from under us. |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 88 | std::set<ScriptContext*> contexts_copy = contexts_; |
kalman | 62b5911d | 2015-04-04 02:33:09 | [diff] [blame] | 89 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 90 | for (ScriptContext* context : contexts_copy) { |
kozyatinskiy | 441ece5 | 2015-04-01 23:46:32 | [diff] [blame] | 91 | // For the same reason as above, contexts may become invalid while we run. |
| 92 | if (!context->is_valid()) |
| 93 | continue; |
| 94 | |
| 95 | if (!extension_id.empty()) { |
| 96 | const Extension* extension = context->extension(); |
| 97 | if (!extension || (extension_id != extension->id())) |
| 98 | continue; |
| 99 | } |
| 100 | |
rdevlin.cronin | c5d9a0ea | 2015-06-23 21:29:10 | [diff] [blame^] | 101 | content::RenderFrame* context_render_frame = context->GetRenderFrame(); |
| 102 | if (!context_render_frame) |
kozyatinskiy | 441ece5 | 2015-04-01 23:46:32 | [diff] [blame] | 103 | continue; |
| 104 | |
rdevlin.cronin | c5d9a0ea | 2015-06-23 21:29:10 | [diff] [blame^] | 105 | if (render_frame && render_frame != context_render_frame) |
kozyatinskiy | 441ece5 | 2015-04-01 23:46:32 | [diff] [blame] | 106 | continue; |
| 107 | |
kalman | 62b5911d | 2015-04-04 02:33:09 | [diff] [blame] | 108 | callback.Run(context); |
| 109 | } |
| 110 | } |
kozyatinskiy | 441ece5 | 2015-04-01 23:46:32 | [diff] [blame] | 111 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 112 | std::set<ScriptContext*> ScriptContextSet::OnExtensionUnloaded( |
kalman | 62b5911d | 2015-04-04 02:33:09 | [diff] [blame] | 113 | const std::string& extension_id) { |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 114 | std::set<ScriptContext*> removed; |
| 115 | ForEach(extension_id, |
| 116 | base::Bind(&ScriptContextSet::DispatchOnUnloadEventAndRemove, |
| 117 | base::Unretained(this), &removed)); |
| 118 | return removed; |
| 119 | } |
kalman | 62b5911d | 2015-04-04 02:33:09 | [diff] [blame] | 120 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 121 | const Extension* ScriptContextSet::GetExtensionFromFrameAndWorld( |
| 122 | const blink::WebLocalFrame* frame, |
| 123 | int world_id, |
| 124 | bool use_effective_url) { |
| 125 | std::string extension_id; |
| 126 | if (world_id != 0) { |
| 127 | // Isolated worlds (content script). |
| 128 | extension_id = ScriptInjection::GetHostIdForIsolatedWorld(world_id); |
| 129 | } else if (!frame->document().securityOrigin().isUnique()) { |
| 130 | // TODO(kalman): Delete the above check. |
| 131 | // Extension pages (chrome-extension:// URLs). |
| 132 | GURL frame_url = ScriptContext::GetDataSourceURLForFrame(frame); |
| 133 | frame_url = ScriptContext::GetEffectiveDocumentURL(frame, frame_url, |
| 134 | use_effective_url); |
| 135 | extension_id = extensions_->GetExtensionOrAppIDByURL(frame_url); |
kozyatinskiy | 441ece5 | 2015-04-01 23:46:32 | [diff] [blame] | 136 | } |
kalman | 62b5911d | 2015-04-04 02:33:09 | [diff] [blame] | 137 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 138 | // There are conditions where despite a context being associated with an |
| 139 | // extension, no extension actually gets found. Ignore "invalid" because CSP |
| 140 | // blocks extension page loading by switching the extension ID to "invalid". |
| 141 | const Extension* extension = extensions_->GetByID(extension_id); |
| 142 | if (!extension && !extension_id.empty() && extension_id != "invalid") { |
| 143 | // TODO(kalman): Do something here? |
| 144 | } |
| 145 | return extension; |
| 146 | } |
| 147 | |
| 148 | Feature::Context ScriptContextSet::ClassifyJavaScriptContext( |
| 149 | const Extension* extension, |
| 150 | int extension_group, |
| 151 | const GURL& url, |
| 152 | const blink::WebSecurityOrigin& origin) { |
| 153 | // WARNING: This logic must match ProcessMap::GetContextType, as much as |
| 154 | // possible. |
| 155 | |
| 156 | DCHECK_GE(extension_group, 0); |
| 157 | if (extension_group == EXTENSION_GROUP_CONTENT_SCRIPTS) { |
| 158 | return extension ? // TODO(kalman): when does this happen? |
| 159 | Feature::CONTENT_SCRIPT_CONTEXT |
| 160 | : Feature::UNSPECIFIED_CONTEXT; |
| 161 | } |
| 162 | |
| 163 | // We have an explicit check for sandboxed pages before checking whether the |
| 164 | // extension is active in this process because: |
| 165 | // 1. Sandboxed pages run in the same process as regular extension pages, so |
| 166 | // the extension is considered active. |
| 167 | // 2. ScriptContext creation (which triggers bindings injection) happens |
| 168 | // before the SecurityContext is updated with the sandbox flags (after |
| 169 | // reading the CSP header), so the caller can't check if the context's |
| 170 | // security origin is unique yet. |
| 171 | if (ScriptContext::IsSandboxedPage(*extensions_, url)) |
| 172 | return Feature::WEB_PAGE_CONTEXT; |
| 173 | |
| 174 | if (extension && active_extension_ids_->count(extension->id()) > 0) { |
| 175 | // |extension| is active in this process, but it could be either a true |
| 176 | // extension process or within the extent of a hosted app. In the latter |
| 177 | // case this would usually be considered a (blessed) web page context, |
| 178 | // unless the extension in question is a component extension, in which case |
| 179 | // we cheat and call it blessed. |
| 180 | return (extension->is_hosted_app() && |
| 181 | extension->location() != Manifest::COMPONENT) |
| 182 | ? Feature::BLESSED_WEB_PAGE_CONTEXT |
| 183 | : Feature::BLESSED_EXTENSION_CONTEXT; |
| 184 | } |
| 185 | |
| 186 | // TODO(kalman): This isUnique() check is wrong, it should be performed as |
| 187 | // part of ScriptContext::IsSandboxedPage(). |
| 188 | if (!origin.isUnique() && extensions_->ExtensionBindingsAllowed(url)) { |
| 189 | if (!extension) // TODO(kalman): when does this happen? |
| 190 | return Feature::UNSPECIFIED_CONTEXT; |
| 191 | return extension->is_hosted_app() ? Feature::BLESSED_WEB_PAGE_CONTEXT |
| 192 | : Feature::UNBLESSED_EXTENSION_CONTEXT; |
| 193 | } |
| 194 | |
| 195 | if (!url.is_valid()) |
| 196 | return Feature::UNSPECIFIED_CONTEXT; |
| 197 | |
| 198 | if (url.SchemeIs(content::kChromeUIScheme)) |
| 199 | return Feature::WEBUI_CONTEXT; |
| 200 | |
| 201 | return Feature::WEB_PAGE_CONTEXT; |
| 202 | } |
| 203 | |
| 204 | void ScriptContextSet::DispatchOnUnloadEventAndRemove( |
| 205 | std::set<ScriptContext*>* out, |
| 206 | ScriptContext* context) { |
| 207 | context->DispatchOnUnloadEvent(); |
| 208 | Remove(context); // deleted asynchronously |
| 209 | out->insert(context); |
kozyatinskiy | 441ece5 | 2015-04-01 23:46:32 | [diff] [blame] | 210 | } |
| 211 | |
[email protected] | 8fe74bf | 2012-08-07 21:08:42 | [diff] [blame] | 212 | } // namespace extensions |