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
|
// Copyright (c) 2010 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.
#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_SERVICE_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_SERVICE_H_
#include <map>
#include <set>
#include <string>
#include "base/lock.h"
#include "base/ref_counted.h"
#include "chrome/common/notification_registrar.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/extensions/extension_devtools_manager.h"
#include "ipc/ipc_message.h"
class GURL;
class MessageLoop;
class Profile;
class RenderProcessHost;
class ResourceMessageFilter;
class TabContents;
class URLRequestContext;
// This class manages message and event passing between renderer processes.
// It maintains a list of processes that are listening to events and a set of
// open channels.
//
// Messaging works this way:
// - An extension-owned script context (like a toolstrip or a content script)
// adds an event listener to the "onConnect" event.
// - Another context calls "extension.connect()" to open a channel to the
// extension process, or an extension context calls "tabs.connect(tabId)" to
// open a channel to the content scripts for the given tab. The EMS notifies
// the target process/tab, which then calls the onConnect event in every
// context owned by the connecting extension in that process/tab.
// - Once the channel is established, either side can call postMessage to send
// a message to the opposite side of the channel, which may have multiple
// listeners.
//
// Terminology:
// channel: connection between two ports
// port: an IPC::Message::Sender interface and an optional routing_id (in the
// case that the port is a tab). The Sender is usually either a
// RenderProcessHost or a RenderViewHost.
class ExtensionMessageService
: public base::RefCountedThreadSafe<
ExtensionMessageService, ChromeThread::DeleteOnUIThread>,
public NotificationObserver {
public:
// Javascript function name constants.
static const char kDispatchOnConnect[];
static const char kDispatchOnDisconnect[];
static const char kDispatchOnMessage[];
static const char kDispatchEvent[];
static const char kDispatchError[];
// A messaging channel. Note that the opening port can be the same as the
// receiver, if an extension toolstrip wants to talk to its tab (for example).
struct MessageChannel;
struct MessagePort;
// Returns the event name for an event that is extension-specific.
static std::string GetPerExtensionEventName(const std::string& event_name,
const std::string& extension_id);
// --- UI thread only:
explicit ExtensionMessageService(Profile* profile);
// Notification that our owning profile is going away.
void ProfileDestroyed();
// Add or remove |render_process_pid| as a listener for |event_name|.
void AddEventListener(const std::string& event_name, int render_process_id);
void RemoveEventListener(const std::string& event_name,
int render_process_id);
// Returns true if there is at least one listener for the given event.
bool HasEventListener(const std::string& event_name);
// Closes the message channel associated with the given port, and notifies
// the other side.
void CloseChannel(int port_id);
// Sends a message from a renderer to the given port.
void PostMessageFromRenderer(int port_id, const std::string& message);
// Send an event to every registered extension renderer. If
// |has_incognito_data| is true, the event is only sent to extension with the
// permission to access incognito data. If |event_url| is not empty, the
// event is only sent to extension with host permissions for this url.
virtual void DispatchEventToRenderers(
const std::string& event_name, const std::string& event_args,
bool has_incognito_data, const GURL& event_url);
// Same as above, except use the extension-specific naming scheme for the
// event. This is used by events that are per-extension.
void DispatchEventToExtension(
const std::string& extension_id,
const std::string& event_name, const std::string& event_args,
bool has_incognito_data, const GURL& event_url);
// Given an extension ID, opens a channel between the given
// automation "port" or DevTools service and that extension. the
// channel will be open to the extension process hosting the
// background page and tool strip.
//
// Returns a port ID to be used for posting messages between the
// processes, or -1 if the extension doesn't exist.
int OpenSpecialChannelToExtension(
const std::string& extension_id, const std::string& channel_name,
const std::string& tab_json, IPC::Message::Sender* source);
// Given an extension ID, opens a channel between the given DevTools
// service and the content script for that extension running in the
// designated tab.
//
// Returns a port ID identifying the DevTools end of the channel, to
// be used for posting messages. May return -1 on failure, although
// the code doesn't detect whether the extension actually exists.
int OpenSpecialChannelToTab(
const std::string& extension_id, const std::string& channel_name,
TabContents* target_tab_contents, IPC::Message::Sender* source);
// --- IO thread only:
// Given an extension's ID, opens a channel between the given renderer "port"
// and every listening context owned by that extension. Returns a port ID
// to be used for posting messages between the processes. |channel_name| is
// an optional identifier for use by extension developers.
// This runs on the IO thread so that it can be used in a synchronous IPC
// message.
int OpenChannelToExtension(int routing_id,
const std::string& source_extension_id,
const std::string& target_extension_id,
const std::string& channel_name,
ResourceMessageFilter* source);
// Same as above, but opens a channel to the tab with the given ID. Messages
// are restricted to that tab, so if there are multiple tabs in that process,
// only the targeted tab will receive messages.
int OpenChannelToTab(int routing_id, int tab_id,
const std::string& extension_id,
const std::string& channel_name,
ResourceMessageFilter* source);
private:
friend class ChromeThread;
friend class DeleteTask<ExtensionMessageService>;
friend class MockExtensionMessageService;
// A map of channel ID to its channel object.
typedef std::map<int, MessageChannel*> MessageChannelMap;
virtual ~ExtensionMessageService();
// Allocates a pair of port ids.
// NOTE: this can be called from any thread.
void AllocatePortIdPair(int* port1, int* port2);
void CloseChannelImpl(MessageChannelMap::iterator channel_iter, int port_id,
bool notify_other_port);
// --- UI thread only:
// Handles channel creation and notifies the destinations that a channel was
// opened.
void OpenChannelToExtensionOnUIThread(
int source_process_id, int source_routing_id, int receiver_port_id,
const std::string& source_extension_id,
const std::string& target_extension_id,
const std::string& channel_name);
void OpenChannelToTabOnUIThread(
int source_process_id, int source_routing_id, int receiver_port_id,
int tab_id, const std::string& extension_id,
const std::string& channel_name);
// Common between OpenChannelOnUIThread and OpenSpecialChannelToExtension.
bool OpenChannelOnUIThreadImpl(
IPC::Message::Sender* source,
const std::string& tab_json,
const MessagePort& receiver, int receiver_port_id,
const std::string& source_extension_id,
const std::string& target_extension_id,
const std::string& channel_name);
// NotificationObserver interface.
void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
// An IPC sender that might be in our list of channels has closed.
void OnSenderClosed(IPC::Message::Sender* sender);
Profile* profile_;
NotificationRegistrar registrar_;
MessageChannelMap channels_;
scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_;
// A map between an event name and a set of process id's that are listening
// to that event.
typedef std::map<std::string, std::set<int> > ListenerMap;
ListenerMap listeners_;
// --- UI or IO thread:
// For generating unique channel IDs.
int next_port_id_;
// Protects the next_port_id_ variable, since it can be
// used on the IO thread or the UI thread.
Lock next_port_id_lock_;
DISALLOW_COPY_AND_ASSIGN(ExtensionMessageService);
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_SERVICE_H_
|