blob: 198e6c0a9e59eeb4274cdae838577b909e3ab797 [file] [log] [blame]
thakis@chromium.orgfead1e62012-02-22 01:04:50 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
darin@chromium.org80e4c5e2011-08-16 05:41:46 +09005#ifndef IPC_IPC_MESSAGE_H_
6#define IPC_IPC_MESSAGE_H_
agl@chromium.org1c6dcf22009-07-23 08:57:21 +09007
8#include <string>
9
10#include "base/basictypes.h"
jbates@chromium.org4b8271c2012-09-05 08:08:09 +090011#include "base/debug/trace_event.h"
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090012#include "base/pickle.h"
darin@chromium.org80e4c5e2011-08-16 05:41:46 +090013#include "ipc/ipc_export.h"
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090014
jochen@chromium.org15866bf2012-11-28 23:35:59 +090015#if !defined(NDEBUG)
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090016#define IPC_MESSAGE_LOG_ENABLED
17#endif
18
19#if defined(OS_POSIX)
levin@chromium.org5c528682011-03-28 10:54:15 +090020#include "base/memory/ref_counted.h"
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090021#endif
22
23namespace base {
evan@chromium.orgc16fa4f2010-02-02 10:24:49 +090024struct FileDescriptor;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090025}
26
27class FileDescriptorSet;
28
29namespace IPC {
30
31//------------------------------------------------------------------------------
32
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090033struct LogData;
34
darin@chromium.org80e4c5e2011-08-16 05:41:46 +090035class IPC_EXPORT Message : public Pickle {
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090036 public:
bbudge@chromium.orgab4c6bc2013-11-05 07:28:12 +090037 enum PriorityValue {
38 PRIORITY_LOW = 1,
39 PRIORITY_NORMAL,
40 PRIORITY_HIGH
41 };
42
brettw@chromium.org6471c932012-03-31 07:35:27 +090043 // Bit values used in the flags field.
jbates@chromium.org4b8271c2012-09-05 08:08:09 +090044 // Upper 24 bits of flags store a reference number, so this enum is limited to
45 // 8 bits.
brettw@chromium.org6471c932012-03-31 07:35:27 +090046 enum {
bbudge@chromium.orgab4c6bc2013-11-05 07:28:12 +090047 PRIORITY_MASK = 0x03, // Low 2 bits of store the priority value.
jbates@chromium.org4b8271c2012-09-05 08:08:09 +090048 SYNC_BIT = 0x04,
49 REPLY_BIT = 0x08,
50 REPLY_ERROR_BIT = 0x10,
51 UNBLOCK_BIT = 0x20,
52 PUMPING_MSGS_BIT = 0x40,
53 HAS_SENT_TIME_BIT = 0x80,
brettw@chromium.org6471c932012-03-31 07:35:27 +090054 };
55
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090056 virtual ~Message();
57
58 Message();
59
bbudge@chromium.orgab4c6bc2013-11-05 07:28:12 +090060 // Initialize a message with a user-defined type, priority value, and
61 // destination WebView ID.
62 Message(int32 routing_id, uint32 type, PriorityValue priority);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090063
64 // Initializes a message from a const block of data. The data is not copied;
65 // instead the data is merely referenced by this message. Only const methods
66 // should be used on the message when initialized this way.
bbudge@chromium.orgab4c6bc2013-11-05 07:28:12 +090067 Message(const char* data, int data_len);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090068
69 Message(const Message& other);
70 Message& operator=(const Message& other);
71
bbudge@chromium.orgab4c6bc2013-11-05 07:28:12 +090072 PriorityValue priority() const {
73 return static_cast<PriorityValue>(header()->flags & PRIORITY_MASK);
74 }
75
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090076 // True if this is a synchronous message.
brettw@chromium.org6471c932012-03-31 07:35:27 +090077 void set_sync() {
78 header()->flags |= SYNC_BIT;
79 }
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090080 bool is_sync() const {
81 return (header()->flags & SYNC_BIT) != 0;
82 }
83
84 // Set this on a reply to a synchronous message.
85 void set_reply() {
86 header()->flags |= REPLY_BIT;
87 }
88
89 bool is_reply() const {
90 return (header()->flags & REPLY_BIT) != 0;
91 }
92
93 // Set this on a reply to a synchronous message to indicate that no receiver
94 // was found.
95 void set_reply_error() {
96 header()->flags |= REPLY_ERROR_BIT;
97 }
98
99 bool is_reply_error() const {
100 return (header()->flags & REPLY_ERROR_BIT) != 0;
101 }
102
103 // Normally when a receiver gets a message and they're blocked on a
104 // synchronous message Send, they buffer a message. Setting this flag causes
105 // the receiver to be unblocked and the message to be dispatched immediately.
106 void set_unblock(bool unblock) {
107 if (unblock) {
108 header()->flags |= UNBLOCK_BIT;
109 } else {
110 header()->flags &= ~UNBLOCK_BIT;
111 }
112 }
113
114 bool should_unblock() const {
115 return (header()->flags & UNBLOCK_BIT) != 0;
116 }
117
118 // Tells the receiver that the caller is pumping messages while waiting
119 // for the result.
120 bool is_caller_pumping_messages() const {
121 return (header()->flags & PUMPING_MSGS_BIT) != 0;
122 }
123
jam@chromium.org822f1fb2014-05-16 08:06:07 +0900124 void set_dispatch_error() const {
125 dispatch_error_ = true;
126 }
127
128 bool dispatch_error() const {
129 return dispatch_error_;
130 }
131
apatrick@google.coma2406772009-12-05 03:08:45 +0900132 uint32 type() const {
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900133 return header()->type;
134 }
135
136 int32 routing_id() const {
137 return header()->routing;
138 }
139
140 void set_routing_id(int32 new_id) {
141 header()->routing = new_id;
142 }
143
brettw@chromium.org6471c932012-03-31 07:35:27 +0900144 uint32 flags() const {
145 return header()->flags;
146 }
147
brettw@chromium.orgf48910a2012-06-29 09:05:04 +0900148 // Sets all the given header values. The message should be empty at this
149 // call.
150 void SetHeaderValues(int32 routing, uint32 type, uint32 flags);
151
jam@chromium.orgf6370182014-05-14 08:19:10 +0900152 template<class T, class S, class P>
153 static bool Dispatch(const Message* msg, T* obj, S* sender, P* parameter,
jam@chromium.org82f52f82010-12-22 05:03:24 +0900154 void (T::*func)()) {
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900155 (obj->*func)();
156 return true;
157 }
158
jam@chromium.orgf6370182014-05-14 08:19:10 +0900159 template<class T, class S, class P>
160 static bool Dispatch(const Message* msg, T* obj, S* sender, P* parameter,
161 void (T::*func)(P*)) {
162 (obj->*func)(parameter);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900163 return true;
164 }
165
166 // Used for async messages with no parameters.
jam@chromium.org86a8de12010-12-09 08:34:16 +0900167 static void Log(std::string* name, const Message* msg, std::string* l) {
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900168 }
169
170 // Find the end of the message data that starts at range_start. Returns NULL
171 // if the entire message is not found in the given data range.
172 static const char* FindNext(const char* range_start, const char* range_end) {
173 return Pickle::FindNext(sizeof(Header), range_start, range_end);
174 }
175
176#if defined(OS_POSIX)
177 // On POSIX, a message supports reading / writing FileDescriptor objects.
178 // This is used to pass a file descriptor to the peer of an IPC channel.
179
brettw@chromium.orgf48910a2012-06-29 09:05:04 +0900180 // Add a descriptor to the end of the set. Returns false if the set is full.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900181 bool WriteFileDescriptor(const base::FileDescriptor& descriptor);
brettw@chromium.orgf48910a2012-06-29 09:05:04 +0900182
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900183 // Get a file descriptor from the message. Returns false on error.
184 // iter: a Pickle iterator to the current location in the message.
jbates@chromium.org0fc87362012-03-08 05:42:56 +0900185 bool ReadFileDescriptor(PickleIterator* iter,
186 base::FileDescriptor* descriptor) const;
brettw@chromium.orgf48910a2012-06-29 09:05:04 +0900187
188 // Returns true if there are any file descriptors in this message.
189 bool HasFileDescriptors() const;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900190#endif
191
192#ifdef IPC_MESSAGE_LOG_ENABLED
193 // Adds the outgoing time from Time::Now() at the end of the message and sets
194 // a bit to indicate that it's been added.
195 void set_sent_time(int64 time);
196 int64 sent_time() const;
197
198 void set_received_time(int64 time) const;
199 int64 received_time() const { return received_time_; }
erg@google.com8aca7272010-08-19 03:33:57 +0900200 void set_output_params(const std::string& op) const { output_params_ = op; }
201 const std::string& output_params() const { return output_params_; }
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900202 // The following four functions are needed so we can log sync messages with
203 // delayed replies. We stick the log data from the sent message into the
204 // reply message, so that when it's sent and we have the output parameters
205 // we can log it. As such, we set a flag on the sent message to not log it.
206 void set_sync_log_data(LogData* data) const { log_data_ = data; }
207 LogData* sync_log_data() const { return log_data_; }
208 void set_dont_log() const { dont_log_ = true; }
209 bool dont_log() const { return dont_log_; }
210#endif
211
jbates@chromium.org7cc80332012-09-18 12:41:29 +0900212 // Called to trace when message is sent.
213 void TraceMessageBegin() {
epenner@chromium.org24f2bea2014-05-03 06:29:24 +0900214 TRACE_EVENT_FLOW_BEGIN0(TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC",
fmeawad@chromium.org4529a9d2014-02-07 03:28:53 +0900215 header()->flags);
jbates@chromium.org7cc80332012-09-18 12:41:29 +0900216 }
217 // Called to trace when message is received.
218 void TraceMessageEnd() {
epenner@chromium.org24f2bea2014-05-03 06:29:24 +0900219 TRACE_EVENT_FLOW_END0(TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC",
fmeawad@chromium.org4529a9d2014-02-07 03:28:53 +0900220 header()->flags);
jbates@chromium.org4b8271c2012-09-05 08:08:09 +0900221 }
222
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900223 protected:
224 friend class Channel;
morrita@chromium.org15996aa2014-08-05 08:44:17 +0900225 friend class ChannelMojo;
morrita@chromium.orgfde2b6b2014-06-07 05:13:51 +0900226 friend class ChannelNacl;
227 friend class ChannelPosix;
228 friend class ChannelWin;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900229 friend class MessageReplyDeserializer;
230 friend class SyncMessage;
231
apatrick@google.coma2406772009-12-05 03:08:45 +0900232#pragma pack(push, 4)
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900233 struct Header : Pickle::Header {
234 int32 routing; // ID of the view that this message is destined for
apatrick@google.coma2406772009-12-05 03:08:45 +0900235 uint32 type; // specifies the user-defined message type
236 uint32 flags; // specifies control flags for the message
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900237#if defined(OS_POSIX)
apatrick@google.coma2406772009-12-05 03:08:45 +0900238 uint16 num_fds; // the number of descriptors included with this message
apatrick@google.comb2bde432009-12-05 09:00:58 +0900239 uint16 pad; // explicitly initialize this to appease valgrind
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900240#endif
241 };
242#pragma pack(pop)
243
244 Header* header() {
245 return headerT<Header>();
246 }
247 const Header* header() const {
248 return headerT<Header>();
249 }
250
jam@chromium.org822f1fb2014-05-16 08:06:07 +0900251 void Init();
252
253 // Used internally to support IPC::Listener::OnBadMessageReceived.
254 mutable bool dispatch_error_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900255
256#if defined(OS_POSIX)
257 // The set of file descriptors associated with this message.
258 scoped_refptr<FileDescriptorSet> file_descriptor_set_;
259
260 // Ensure that a FileDescriptorSet is allocated
261 void EnsureFileDescriptorSet();
262
263 FileDescriptorSet* file_descriptor_set() {
264 EnsureFileDescriptorSet();
265 return file_descriptor_set_.get();
266 }
267 const FileDescriptorSet* file_descriptor_set() const {
268 return file_descriptor_set_.get();
269 }
270#endif
271
272#ifdef IPC_MESSAGE_LOG_ENABLED
273 // Used for logging.
274 mutable int64 received_time_;
erg@google.com8aca7272010-08-19 03:33:57 +0900275 mutable std::string output_params_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900276 mutable LogData* log_data_;
277 mutable bool dont_log_;
278#endif
279};
280
281//------------------------------------------------------------------------------
282
283} // namespace IPC
284
285enum SpecialRoutingIDs {
286 // indicates that we don't have a routing ID yet.
287 MSG_ROUTING_NONE = -2,
288
289 // indicates a general message not sent to a particular tab.
290 MSG_ROUTING_CONTROL = kint32max,
291};
292
apatrick@google.coma2406772009-12-05 03:08:45 +0900293#define IPC_REPLY_ID 0xFFFFFFF0 // Special message id for replies
294#define IPC_LOGGING_ID 0xFFFFFFF1 // Special message id for logging
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900295
darin@chromium.org80e4c5e2011-08-16 05:41:46 +0900296#endif // IPC_IPC_MESSAGE_H_