Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(407)

Side by Side Diff: chrome/browser/nacl_host/nacl_process_host.h

Issue 75463005: Move more files from chrome/browser/nacl_host/ to components/nacl/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_
6 #define CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_
7
8 #include "build/build_config.h"
9
10 #include "base/files/file_path.h"
11 #include "base/files/file_util_proxy.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/weak_ptr.h"
14 #include "base/message_loop/message_loop.h"
15 #include "base/process/process.h"
16 #include "components/nacl/common/nacl_types.h"
17 #include "content/public/browser/browser_child_process_host_delegate.h"
18 #include "content/public/browser/browser_child_process_host_iterator.h"
19 #include "ipc/ipc_channel_handle.h"
20 #include "net/socket/socket_descriptor.h"
21 #include "ppapi/shared_impl/ppapi_permissions.h"
22 #include "url/gurl.h"
23
24 class CommandLine;
25 class NaClHostMessageFilter;
26
27 namespace content {
28 class BrowserChildProcessHost;
29 class BrowserPpapiHost;
30 }
31
32 namespace IPC {
33 class ChannelProxy;
34 }
35
36 namespace nacl {
37 void* AllocateAddressSpaceASLR(base::ProcessHandle process, size_t size);
38 }
39
40 // Represents the browser side of the browser <--> NaCl communication
41 // channel. There will be one NaClProcessHost per NaCl process
42 // The browser is responsible for starting the NaCl process
43 // when requested by the renderer.
44 // After that, most of the communication is directly between NaCl plugin
45 // running in the renderer and NaCl processes.
46 class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
47 public:
48 // manifest_url: the URL of the manifest of the Native Client plugin being
49 // executed.
50 // render_view_id: RenderView routing id, to control access to private APIs.
51 // permission_bits: controls which interfaces the NaCl plugin can use.
52 // uses_irt: whether the launched process should use the IRT.
53 // enable_dyncode_syscalls: whether the launched process should allow dyncode
54 // and mmap with PROT_EXEC.
55 // enable_exception_handling: whether the launched process should allow
56 // hardware exception handling.
57 // enable_crash_throttling: whether a crash of this process contributes
58 // to the crash throttling statistics, and also
59 // whether this process should not start when too
60 // many crashes have been observed.
61 // off_the_record: was the process launched from an incognito renderer?
62 // profile_directory: is the path of current profile directory.
63 NaClProcessHost(const GURL& manifest_url,
64 int render_view_id,
65 uint32 permission_bits,
66 bool uses_irt,
67 bool enable_dyncode_syscalls,
68 bool enable_exception_handling,
69 bool enable_crash_throttling,
70 bool off_the_record,
71 const base::FilePath& profile_directory);
72 virtual ~NaClProcessHost();
73
74 virtual void OnProcessCrashed(int exit_status) OVERRIDE;
75
76 // Do any minimal work that must be done at browser startup.
77 static void EarlyStartup();
78
79 // Initialize the new NaCl process. Result is returned by sending ipc
80 // message reply_msg.
81 void Launch(NaClHostMessageFilter* nacl_host_message_filter,
82 IPC::Message* reply_msg,
83 const base::FilePath& manifest_path);
84
85 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
86
87 #if defined(OS_WIN)
88 void OnProcessLaunchedByBroker(base::ProcessHandle handle);
89 void OnDebugExceptionHandlerLaunchedByBroker(bool success);
90 #endif
91
92 bool Send(IPC::Message* msg);
93
94 content::BrowserChildProcessHost* process() { return process_.get(); }
95 content::BrowserPpapiHost* browser_ppapi_host() { return ppapi_host_.get(); }
96
97 private:
98 friend class PluginListener;
99
100 // Internal class that holds the NaClHandle objecs so that
101 // nacl_process_host.h doesn't include NaCl headers. Needed since it's
102 // included by src\content, which can't depend on the NaCl gyp file because it
103 // depends on chrome.gyp (circular dependency).
104 struct NaClInternal;
105
106 // PluginListener that forwards any messages from untrusted code that aren't
107 // handled by the PepperMessageFilter to us.
108 class PluginListener : public IPC::Listener {
109 public:
110 explicit PluginListener(NaClProcessHost* host);
111 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
112 private:
113 // Non-owning pointer so we can forward messages to the host.
114 NaClProcessHost* host_;
115 };
116
117 bool LaunchNaClGdb();
118
119 #if defined(OS_POSIX)
120 // Create bound TCP socket in the browser process so that the NaCl GDB debug
121 // stub can use it to accept incoming connections even when the Chrome sandbox
122 // is enabled.
123 net::SocketDescriptor GetDebugStubSocketHandle();
124 #endif
125 bool LaunchSelLdr();
126
127 // BrowserChildProcessHostDelegate implementation:
128 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
129 virtual void OnProcessLaunched() OVERRIDE;
130
131 void OnResourcesReady();
132
133 // Enable the PPAPI proxy only for NaCl processes corresponding to a renderer.
134 bool enable_ppapi_proxy() { return render_view_id_ != 0; }
135
136 // Sends the reply message to the renderer who is waiting for the plugin
137 // to load. Returns true on success.
138 bool ReplyToRenderer(const IPC::ChannelHandle& channel_handle);
139
140 // Sends the reply with error message to the renderer.
141 void SendErrorToRenderer(const std::string& error_message);
142
143 // Sends the reply message to the renderer. Either result or
144 // error message must be empty.
145 void SendMessageToRenderer(const nacl::NaClLaunchResult& result,
146 const std::string& error_message);
147
148 // Sends the message to the NaCl process to load the plugin. Returns true
149 // on success.
150 bool StartNaClExecution();
151
152 // Called once all initialization is complete and the NaCl process is
153 // ready to go. Returns true on success.
154 bool SendStart();
155
156 // Does post-process-launching tasks for starting the NaCl process once
157 // we have a connection.
158 //
159 // Returns false on failure.
160 bool StartWithLaunchedProcess();
161
162 // Message handlers for validation caching.
163 void OnQueryKnownToValidate(const std::string& signature, bool* result);
164 void OnSetKnownToValidate(const std::string& signature);
165 void OnResolveFileToken(uint64 file_token_lo, uint64 file_token_hi,
166 IPC::Message* reply_msg);
167 void FileResolved(base::PlatformFile* file, const base::FilePath& file_path,
168 IPC::Message* reply_msg);
169
170 #if defined(OS_WIN)
171 // Message handler for Windows hardware exception handling.
172 void OnAttachDebugExceptionHandler(const std::string& info,
173 IPC::Message* reply_msg);
174 bool AttachDebugExceptionHandler(const std::string& info,
175 IPC::Message* reply_msg);
176 #endif
177
178 // Called when a PPAPI IPC channel has been created.
179 void OnPpapiChannelCreated(const IPC::ChannelHandle& channel_handle);
180 // Called by PluginListener, so messages from the untrusted side of
181 // the IPC proxy can be handled.
182 bool OnUntrustedMessageForwarded(const IPC::Message& msg);
183
184 GURL manifest_url_;
185 ppapi::PpapiPermissions permissions_;
186
187 #if defined(OS_WIN)
188 // This field becomes true when the broker successfully launched
189 // the NaCl loader.
190 bool process_launched_by_broker_;
191 #endif
192 // The NaClHostMessageFilter that requested this NaCl process. We use
193 // this for sending the reply once the process has started.
194 scoped_refptr<NaClHostMessageFilter> nacl_host_message_filter_;
195
196 // The reply message to send. We must always send this message when the
197 // sub-process either succeeds or fails to unblock the renderer waiting for
198 // the reply. NULL when there is no reply to send.
199 IPC::Message* reply_msg_;
200 #if defined(OS_WIN)
201 bool debug_exception_handler_requested_;
202 scoped_ptr<IPC::Message> attach_debug_exception_handler_reply_msg_;
203 #endif
204
205 // The file path to the manifest is passed to nacl-gdb when it is used to
206 // debug the NaCl loader.
207 base::FilePath manifest_path_;
208
209 // Socket pairs for the NaCl process and renderer.
210 scoped_ptr<NaClInternal> internal_;
211
212 base::WeakPtrFactory<NaClProcessHost> weak_factory_;
213
214 scoped_ptr<content::BrowserChildProcessHost> process_;
215
216 bool uses_irt_;
217
218 bool enable_debug_stub_;
219 bool enable_dyncode_syscalls_;
220 bool enable_exception_handling_;
221 bool enable_crash_throttling_;
222
223 bool off_the_record_;
224
225 const base::FilePath profile_directory_;
226
227 // Channel proxy to terminate the NaCl-Browser PPAPI channel.
228 scoped_ptr<IPC::ChannelProxy> ipc_proxy_channel_;
229 // Plugin listener, to forward browser channel messages to us.
230 PluginListener ipc_plugin_listener_;
231 // Browser host for plugin process.
232 scoped_ptr<content::BrowserPpapiHost> ppapi_host_;
233
234 int render_view_id_;
235
236 DISALLOW_COPY_AND_ASSIGN(NaClProcessHost);
237 };
238
239 #endif // CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698