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
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ppapi/proxy/plugin_dispatcher.h"
#include <map>
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "ipc/ipc_message.h"
#include "ipc/ipc_sync_channel.h"
#include "base/debug/trace_event.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/proxy/interface_proxy.h"
#include "ppapi/proxy/plugin_message_filter.h"
#include "ppapi/proxy/plugin_resource_tracker.h"
#include "ppapi/proxy/plugin_var_serialization_rules.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/proxy/ppb_char_set_proxy.h"
#include "ppapi/proxy/ppb_cursor_control_proxy.h"
#include "ppapi/proxy/ppb_font_proxy.h"
#include "ppapi/proxy/ppb_instance_proxy.h"
#include "ppapi/proxy/ppp_class_proxy.h"
#include "ppapi/proxy/resource_creation_proxy.h"
#include "ppapi/shared_impl/resource.h"
#include "ppapi/shared_impl/tracker_base.h"
#if defined(OS_POSIX)
#include "base/eintr_wrapper.h"
#include "ipc/ipc_channel_posix.h"
#endif
namespace ppapi {
namespace proxy {
namespace {
typedef std::map<PP_Instance, PluginDispatcher*> InstanceToDispatcherMap;
InstanceToDispatcherMap* g_instance_to_dispatcher = NULL;
} // namespace
PluginDispatcher::PluginDispatcher(base::ProcessHandle remote_process_handle,
GetInterfaceFunc get_interface)
: Dispatcher(remote_process_handle, get_interface),
plugin_delegate_(NULL),
received_preferences_(false),
plugin_dispatcher_id_(0) {
SetSerializationRules(new PluginVarSerializationRules);
// As a plugin, we always support the PPP_Class interface. There's no
// GetInterface call or name for it, so we insert it into our table now.
target_proxies_[INTERFACE_ID_PPP_CLASS].reset(new PPP_Class_Proxy(this));
TrackerBase::Init(&PluginResourceTracker::GetTrackerBaseInstance);
}
PluginDispatcher::~PluginDispatcher() {
if (plugin_delegate_)
plugin_delegate_->Unregister(plugin_dispatcher_id_);
}
// static
PluginDispatcher* PluginDispatcher::GetForInstance(PP_Instance instance) {
if (!g_instance_to_dispatcher)
return NULL;
InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find(
instance);
if (found == g_instance_to_dispatcher->end())
return NULL;
return found->second;
}
// static
PluginDispatcher* PluginDispatcher::GetForResource(const Resource* resource) {
return GetForInstance(resource->pp_instance());
}
// static
const void* PluginDispatcher::GetInterfaceFromDispatcher(
const char* interface) {
// All interfaces the plugin requests of the browser are "PPB".
const InterfaceProxy::Info* info = GetPPBInterfaceInfo(interface);
if (!info)
return NULL;
return info->interface_ptr;
}
bool PluginDispatcher::InitPluginWithChannel(
PluginDelegate* delegate,
const IPC::ChannelHandle& channel_handle,
bool is_client) {
if (!Dispatcher::InitWithChannel(delegate, channel_handle, is_client))
return false;
plugin_delegate_ = delegate;
plugin_dispatcher_id_ = plugin_delegate_->Register(this);
// The message filter will intercept and process certain messages directly
// on the I/O thread.
channel()->AddFilter(
new PluginMessageFilter(delegate->GetGloballySeenInstanceIDSet()));
return true;
}
bool PluginDispatcher::IsPlugin() const {
return true;
}
bool PluginDispatcher::Send(IPC::Message* msg) {
TRACE_EVENT2("ppapi proxy", "PluginDispatcher::Send",
"Class", IPC_MESSAGE_ID_CLASS(msg->type()),
"Line", IPC_MESSAGE_ID_LINE(msg->type()));
// We always want plugin->renderer messages to arrive in-order. If some sync
// and some async messages are send in response to a synchronous
// renderer->plugin call, the sync reply will be processed before the async
// reply, and everything will be confused.
//
// Allowing all async messages to unblock the renderer means more reentrancy
// there but gives correct ordering.
msg->set_unblock(true);
return Dispatcher::Send(msg);
}
bool PluginDispatcher::OnMessageReceived(const IPC::Message& msg) {
TRACE_EVENT2("ppapi proxy", "PluginDispatcher::OnMessageReceived",
"Class", IPC_MESSAGE_ID_CLASS(msg.type()),
"Line", IPC_MESSAGE_ID_LINE(msg.type()));
// Handle common control messages.
if (Dispatcher::OnMessageReceived(msg))
return true;
if (msg.routing_id() == MSG_ROUTING_CONTROL) {
// Handle some plugin-specific control messages.
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(PluginDispatcher, msg)
IPC_MESSAGE_HANDLER(PpapiMsg_SupportsInterface, OnMsgSupportsInterface)
IPC_MESSAGE_HANDLER(PpapiMsg_SetPreferences, OnMsgSetPreferences)
IPC_END_MESSAGE_MAP()
return handled;
}
if (msg.routing_id() <= 0 || msg.routing_id() >= INTERFACE_ID_COUNT) {
// Host is sending us garbage. Since it's supposed to be trusted, this
// isn't supposed to happen. Crash here in all builds in case the renderer
// is compromised.
CHECK(false);
return true;
}
// There are two cases:
//
// * The first case is that the host is calling a PPP interface. It will
// always do a check for the interface before sending messages, and this
// will create the necessary interface proxy at that time. So when we
// actually receive a message, we know such a proxy will exist.
//
// * The second case is that the host is sending a response to the plugin
// side of a PPB interface (some, like the URL loader, have complex
// response messages). Since the host is trusted and not supposed to be
// doing silly things, we can just create a PPB proxy project on demand the
// first time it's needed.
InterfaceProxy* proxy = target_proxies_[msg.routing_id()].get();
if (!proxy) {
// Handle the first time the host calls a PPB reply interface by
// autocreating it.
const InterfaceProxy::Info* info = GetPPBInterfaceInfo(
static_cast<InterfaceID>(msg.routing_id()));
if (!info) {
NOTREACHED();
return true;
}
proxy = info->create_proxy(this, NULL);
target_proxies_[info->id].reset(proxy);
}
return proxy->OnMessageReceived(msg);
}
void PluginDispatcher::OnChannelError() {
Dispatcher::OnChannelError();
// The renderer has crashed or exited. This channel and all instances
// associated with it are no longer valid.
ForceFreeAllInstances();
// TODO(brettw) free resources too!
delete this;
}
void PluginDispatcher::DidCreateInstance(PP_Instance instance) {
if (!g_instance_to_dispatcher)
g_instance_to_dispatcher = new InstanceToDispatcherMap;
(*g_instance_to_dispatcher)[instance] = this;
instance_map_[instance] = InstanceData();
}
void PluginDispatcher::DidDestroyInstance(PP_Instance instance) {
InstanceDataMap::iterator it = instance_map_.find(instance);
if (it != instance_map_.end())
instance_map_.erase(it);
if (g_instance_to_dispatcher) {
InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find(
instance);
if (found != g_instance_to_dispatcher->end()) {
DCHECK(found->second == this);
g_instance_to_dispatcher->erase(found);
} else {
NOTREACHED();
}
}
}
InstanceData* PluginDispatcher::GetInstanceData(PP_Instance instance) {
InstanceDataMap::iterator it = instance_map_.find(instance);
return (it == instance_map_.end()) ? NULL : &it->second;
}
void PluginDispatcher::PostToWebKitThread(
const tracked_objects::Location& from_here,
const base::Closure& task) {
return plugin_delegate_->PostToWebKitThread(from_here, task);
}
bool PluginDispatcher::SendToBrowser(IPC::Message* msg) {
return plugin_delegate_->SendToBrowser(msg);
}
WebKitForwarding* PluginDispatcher::GetWebKitForwarding() {
return plugin_delegate_->GetWebKitForwarding();
}
FunctionGroupBase* PluginDispatcher::GetFunctionAPI(InterfaceID id) {
scoped_ptr<FunctionGroupBase >& proxy = function_proxies_[id];
if (proxy.get())
return proxy.get();
if (id == INTERFACE_ID_PPB_CHAR_SET)
proxy.reset(new PPB_CharSet_Proxy(this, NULL));
else if(id == INTERFACE_ID_PPB_CURSORCONTROL)
proxy.reset(new PPB_CursorControl_Proxy(this, NULL));
else if (id == INTERFACE_ID_PPB_FONT)
proxy.reset(new PPB_Font_Proxy(this, NULL));
else if (id == INTERFACE_ID_PPB_INSTANCE)
proxy.reset(new PPB_Instance_Proxy(this, NULL));
else if (id == INTERFACE_ID_RESOURCE_CREATION)
proxy.reset(new ResourceCreationProxy(this));
return proxy.get();
}
void PluginDispatcher::ForceFreeAllInstances() {
if (!g_instance_to_dispatcher)
return;
// Iterating will remove each item from the map, so we need to make a copy
// to avoid things changing out from under is.
InstanceToDispatcherMap temp_map = *g_instance_to_dispatcher;
for (InstanceToDispatcherMap::iterator i = temp_map.begin();
i != temp_map.end(); ++i) {
if (i->second == this) {
// Synthesize an "instance destroyed" message, this will notify the
// plugin and also remove it from our list of tracked plugins.
PpapiMsg_PPPInstance_DidDestroy msg(INTERFACE_ID_PPP_INSTANCE, i->first);
OnMessageReceived(msg);
delete msg.GetReplyDeserializer();
}
}
}
void PluginDispatcher::OnMsgSupportsInterface(
const std::string& interface_name,
bool* result) {
*result = false;
// Setup a proxy for receiving the messages from this interface.
const InterfaceProxy::Info* info = GetPPPInterfaceInfo(interface_name);
if (!info)
return; // Interface not supported by proxy.
// Check for a cached result.
if (target_proxies_[info->id].get()) {
*result = true;
return;
}
// Query the plugin & cache the result.
const void* interface_functions = GetLocalInterface(interface_name.c_str());
if (!interface_functions)
return;
target_proxies_[info->id].reset(
info->create_proxy(this, interface_functions));
*result = true;
}
void PluginDispatcher::OnMsgSetPreferences(const Preferences& prefs) {
// The renderer may send us preferences more than once (currently this
// happens every time a new plugin instance is created). Since we don't have
// a way to signal to the plugin that the preferences have changed, changing
// the default fonts and such in the middle of a running plugin could be
// confusing to it. As a result, we never allow the preferences to be changed
// once they're set. The user will have to restart to get new font prefs
// propogated to plugins.
if (!received_preferences_) {
received_preferences_ = true;
preferences_ = prefs;
}
}
} // namespace proxy
} // namespace ppapi
|