[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 1 | // Copyright 2014 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. |
| 4 | |
| 5 | #ifndef EXTENSIONS_RENDERER_SCRIPT_CONTEXT_H_ |
| 6 | #define EXTENSIONS_RENDERER_SCRIPT_CONTEXT_H_ |
| 7 | |
| 8 | #include <string> |
kalman | b0c1c50 | 2015-04-15 00:25:06 | [diff] [blame] | 9 | #include <vector> |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 10 | |
| 11 | #include "base/basictypes.h" |
kalman | b0c1c50 | 2015-04-15 00:25:06 | [diff] [blame] | 12 | #include "base/callback.h" |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 13 | #include "base/compiler_specific.h" |
| 14 | #include "extensions/common/features/feature.h" |
rockot | e261b16 | 2014-12-12 01:59:47 | [diff] [blame] | 15 | #include "extensions/common/permissions/api_permission_set.h" |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 16 | #include "extensions/renderer/module_system.h" |
| 17 | #include "extensions/renderer/request_sender.h" |
| 18 | #include "extensions/renderer/safe_builtins.h" |
[email protected] | d9f51dad | 2014-07-09 05:39:38 | [diff] [blame] | 19 | #include "gin/runner.h" |
Sadrul Habib Chowdhury | 0d7ef9f | 2014-12-03 20:07:30 | [diff] [blame] | 20 | #include "url/gurl.h" |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 21 | #include "v8/include/v8.h" |
| 22 | |
| 23 | namespace blink { |
| 24 | class WebFrame; |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 25 | class WebLocalFrame; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | namespace content { |
[email protected] | 2101c4c | 2014-08-22 00:16:16 | [diff] [blame] | 29 | class RenderFrame; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 30 | class RenderView; |
| 31 | } |
| 32 | |
| 33 | namespace extensions { |
| 34 | class Extension; |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 35 | class ExtensionSet; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 36 | |
| 37 | // Extensions wrapper for a v8 context. |
sammc | de54a47e | 2015-01-13 23:16:34 | [diff] [blame] | 38 | class ScriptContext : public RequestSender::Source { |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 39 | public: |
tfarina | f85316f | 2015-04-29 17:03:40 | [diff] [blame^] | 40 | ScriptContext(const v8::Local<v8::Context>& context, |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 41 | blink::WebLocalFrame* frame, |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 42 | const Extension* extension, |
mek | 7e1d745 | 2014-09-08 23:55:57 | [diff] [blame] | 43 | Feature::Context context_type, |
| 44 | const Extension* effective_extension, |
| 45 | Feature::Context effective_context_type); |
dcheng | 9168b2f | 2014-10-21 12:38:24 | [diff] [blame] | 46 | ~ScriptContext() override; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 47 | |
kalman | c81508d | 2015-04-23 17:14:02 | [diff] [blame] | 48 | // Returns whether |url| from any Extension in |extension_set| is sandboxed, |
| 49 | // as declared in each Extension's manifest. |
| 50 | // TODO(kalman): Delete this when crbug.com/466373 is fixed. |
| 51 | // See comment in HasAccessOrThrowError. |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 52 | static bool IsSandboxedPage(const ExtensionSet& extension_set, |
| 53 | const GURL& url); |
| 54 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 55 | // Clears the WebFrame for this contexts and invalidates the associated |
| 56 | // ModuleSystem. |
| 57 | void Invalidate(); |
| 58 | |
kalman | b0c1c50 | 2015-04-15 00:25:06 | [diff] [blame] | 59 | // Registers |observer| to be run when this context is invalidated. Closures |
| 60 | // are run immediately when Invalidate() is called, not in a message loop. |
| 61 | void AddInvalidationObserver(const base::Closure& observer); |
| 62 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 63 | // Returns true if this context is still valid, false if it isn't. |
| 64 | // A context becomes invalid via Invalidate(). |
kalman | b0c1c50 | 2015-04-15 00:25:06 | [diff] [blame] | 65 | bool is_valid() const { return is_valid_; } |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 66 | |
tfarina | f85316f | 2015-04-29 17:03:40 | [diff] [blame^] | 67 | v8::Local<v8::Context> v8_context() const { |
kalman | 078a219 | 2015-03-09 18:19:39 | [diff] [blame] | 68 | return v8::Local<v8::Context>::New(isolate_, v8_context_); |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | const Extension* extension() const { return extension_.get(); } |
| 72 | |
mek | 7e1d745 | 2014-09-08 23:55:57 | [diff] [blame] | 73 | const Extension* effective_extension() const { |
| 74 | return effective_extension_.get(); |
| 75 | } |
| 76 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 77 | blink::WebLocalFrame* web_frame() const { return web_frame_; } |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 78 | |
| 79 | Feature::Context context_type() const { return context_type_; } |
| 80 | |
mek | 7e1d745 | 2014-09-08 23:55:57 | [diff] [blame] | 81 | Feature::Context effective_context_type() const { |
| 82 | return effective_context_type_; |
| 83 | } |
| 84 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 85 | void set_module_system(scoped_ptr<ModuleSystem> module_system) { |
| 86 | module_system_ = module_system.Pass(); |
| 87 | } |
| 88 | |
| 89 | ModuleSystem* module_system() { return module_system_.get(); } |
| 90 | |
| 91 | SafeBuiltins* safe_builtins() { return &safe_builtins_; } |
| 92 | |
| 93 | const SafeBuiltins* safe_builtins() const { return &safe_builtins_; } |
| 94 | |
| 95 | // Returns the ID of the extension associated with this context, or empty |
| 96 | // string if there is no such extension. |
[email protected] | 800f987 | 2014-06-12 04:12:51 | [diff] [blame] | 97 | const std::string& GetExtensionID() const; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 98 | |
| 99 | // Returns the RenderView associated with this context. Can return NULL if the |
| 100 | // context is in the process of being destroyed. |
| 101 | content::RenderView* GetRenderView() const; |
| 102 | |
[email protected] | 2101c4c | 2014-08-22 00:16:16 | [diff] [blame] | 103 | // Returns the RenderFrame associated with this context. Can return NULL if |
| 104 | // the context is in the process of being destroyed. |
| 105 | content::RenderFrame* GetRenderFrame() const; |
| 106 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 107 | // Runs |function| with appropriate scopes. Doesn't catch exceptions, callers |
| 108 | // must do that if they want. |
| 109 | // |
| 110 | // USE THIS METHOD RATHER THAN v8::Function::Call WHEREVER POSSIBLE. |
tfarina | f85316f | 2015-04-29 17:03:40 | [diff] [blame^] | 111 | v8::Local<v8::Value> CallFunction(v8::Local<v8::Function> function, |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 112 | int argc, |
tfarina | f85316f | 2015-04-29 17:03:40 | [diff] [blame^] | 113 | v8::Local<v8::Value> argv[]) const; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 114 | |
tfarina | f85316f | 2015-04-29 17:03:40 | [diff] [blame^] | 115 | void DispatchEvent(const char* event_name, v8::Local<v8::Array> args) const; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 116 | |
| 117 | // Fires the onunload event on the unload_event module. |
| 118 | void DispatchOnUnloadEvent(); |
| 119 | |
| 120 | // Returns the availability of the API |api_name|. |
| 121 | Feature::Availability GetAvailability(const std::string& api_name); |
| 122 | |
| 123 | // Returns a string description of the type of context this is. |
| 124 | std::string GetContextTypeDescription(); |
| 125 | |
mek | 7e1d745 | 2014-09-08 23:55:57 | [diff] [blame] | 126 | // Returns a string description of the effective type of context this is. |
| 127 | std::string GetEffectiveContextTypeDescription(); |
| 128 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 129 | v8::Isolate* isolate() const { return isolate_; } |
| 130 | |
| 131 | // Get the URL of this context's web frame. |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 132 | // |
| 133 | // TODO(kalman): Remove this and replace with a GetOrigin() call which reads |
| 134 | // of WebDocument::securityOrigin(): |
| 135 | // - The URL can change (e.g. pushState) but the origin cannot. Luckily it |
| 136 | // appears as though callers don't make security decisions based on the |
| 137 | // result of GetURL() so it's not a problem... yet. |
| 138 | // - Origin is the correct check to be making. |
| 139 | // - It might let us remove the about:blank resolving? |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 140 | GURL GetURL() const; |
| 141 | |
| 142 | // Returns whether the API |api| or any part of the API could be |
| 143 | // available in this context without taking into account the context's |
| 144 | // extension. |
| 145 | bool IsAnyFeatureAvailableToContext(const extensions::Feature& api); |
| 146 | |
| 147 | // Utility to get the URL we will match against for a frame. If the frame has |
| 148 | // committed, this is the commited URL. Otherwise it is the provisional URL. |
[email protected] | c1abb323 | 2014-07-30 18:28:39 | [diff] [blame] | 149 | // The returned URL may be invalid. |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 150 | static GURL GetDataSourceURLForFrame(const blink::WebFrame* frame); |
| 151 | |
[email protected] | ae26b28 | 2014-05-15 16:40:16 | [diff] [blame] | 152 | // Returns the first non-about:-URL in the document hierarchy above and |
| 153 | // including |frame|. The document hierarchy is only traversed if |
| 154 | // |document_url| is an about:-URL and if |match_about_blank| is true. |
| 155 | static GURL GetEffectiveDocumentURL(const blink::WebFrame* frame, |
| 156 | const GURL& document_url, |
| 157 | bool match_about_blank); |
| 158 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 159 | // RequestSender::Source implementation. |
dcheng | 9168b2f | 2014-10-21 12:38:24 | [diff] [blame] | 160 | ScriptContext* GetContext() override; |
| 161 | void OnResponseReceived(const std::string& name, |
| 162 | int request_id, |
| 163 | bool success, |
| 164 | const base::ListValue& response, |
| 165 | const std::string& error) override; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 166 | |
rockot | e261b16 | 2014-12-12 01:59:47 | [diff] [blame] | 167 | // Grants a set of content capabilities to this context. |
| 168 | void SetContentCapabilities(const APIPermissionSet& permissions); |
| 169 | |
| 170 | // Indicates if this context has an effective API permission either by being |
| 171 | // a context for an extension which has that permission, or by being a web |
| 172 | // context which has been granted the corresponding capability by an |
| 173 | // extension. |
| 174 | bool HasAPIPermission(APIPermission::ID permission) const; |
| 175 | |
kalman | c81508d | 2015-04-23 17:14:02 | [diff] [blame] | 176 | // Throws an Error in this context's JavaScript context, if this context does |
| 177 | // not have access to |name|. Returns true if this context has access (i.e. |
| 178 | // no exception thrown), false if it does not (i.e. an exception was thrown). |
| 179 | bool HasAccessOrThrowError(const std::string& name); |
| 180 | |
mlamouri | 60a2857d | 2015-04-14 15:22:36 | [diff] [blame] | 181 | private: |
| 182 | class Runner; |
| 183 | |
kalman | b0c1c50 | 2015-04-15 00:25:06 | [diff] [blame] | 184 | // Whether this context is valid. |
| 185 | bool is_valid_; |
| 186 | |
| 187 | // The v8 context the bindings are accessible to. |
| 188 | v8::Global<v8::Context> v8_context_; |
| 189 | |
kalman | f91cb89 | 2015-04-15 19:20:48 | [diff] [blame] | 190 | // The WebLocalFrame associated with this context. This can be NULL because |
| 191 | // this object can outlive is destroyed asynchronously. |
| 192 | blink::WebLocalFrame* web_frame_; |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 193 | |
| 194 | // The extension associated with this context, or NULL if there is none. This |
| 195 | // might be a hosted app in the case that this context is hosting a web URL. |
| 196 | scoped_refptr<const Extension> extension_; |
| 197 | |
| 198 | // The type of context. |
| 199 | Feature::Context context_type_; |
| 200 | |
mek | 7e1d745 | 2014-09-08 23:55:57 | [diff] [blame] | 201 | // The effective extension associated with this context, or NULL if there is |
| 202 | // none. This is different from the above extension if this context is in an |
| 203 | // about:blank iframe for example. |
| 204 | scoped_refptr<const Extension> effective_extension_; |
| 205 | |
| 206 | // The type of context. |
| 207 | Feature::Context effective_context_type_; |
| 208 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 209 | // Owns and structures the JS that is injected to set up extension bindings. |
| 210 | scoped_ptr<ModuleSystem> module_system_; |
| 211 | |
| 212 | // Contains safe copies of builtin objects like Function.prototype. |
| 213 | SafeBuiltins safe_builtins_; |
| 214 | |
rockot | e261b16 | 2014-12-12 01:59:47 | [diff] [blame] | 215 | // The set of capabilities granted to this context by extensions. |
| 216 | APIPermissionSet content_capabilities_; |
| 217 | |
kalman | b0c1c50 | 2015-04-15 00:25:06 | [diff] [blame] | 218 | // A list of base::Closure instances as an observer interface for |
| 219 | // invalidation. |
| 220 | std::vector<base::Closure> invalidate_observers_; |
| 221 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 222 | v8::Isolate* isolate_; |
| 223 | |
Sadrul Habib Chowdhury | 0d7ef9f | 2014-12-03 20:07:30 | [diff] [blame] | 224 | GURL url_; |
| 225 | |
sammc | de54a47e | 2015-01-13 23:16:34 | [diff] [blame] | 226 | scoped_ptr<Runner> runner_; |
| 227 | |
[email protected] | f55c90ee6 | 2014-04-12 00:50:03 | [diff] [blame] | 228 | DISALLOW_COPY_AND_ASSIGN(ScriptContext); |
| 229 | }; |
| 230 | |
| 231 | } // namespace extensions |
| 232 | |
| 233 | #endif // EXTENSIONS_RENDERER_SCRIPT_CONTEXT_H_ |