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.
5 #include "ipc/ipc_message.h"
7 #include "base/atomic_sequence_num.h"
8 #include "base/logging.h"
9 #include "build/build_config.h"
10 #include "ipc/ipc_message_attachment_set.h"
13 #include "base/file_descriptor_posix.h"
18 base::StaticAtomicSequenceNumber g_ref_num
;
20 // Create a reference number for identifying IPC messages in traces. The return
21 // values has the reference number stored in the upper 24 bits, leaving the low
22 // 8 bits set to 0 for use as flags.
23 inline uint32
GetRefNumUpper24() {
24 base::debug::TraceLog
* trace_log
= base::debug::TraceLog::GetInstance();
25 uint32 pid
= trace_log
? trace_log
->process_id() : 0;
26 uint32 count
= g_ref_num
.GetNext();
27 // The 24 bit hash is composed of 14 bits of the count and 10 bits of the
28 // Process ID. With the current trace event buffer cap, the 14-bit count did
29 // not appear to wrap during a trace. Note that it is not a big deal if
30 // collisions occur, as this is only used for debugging and trace analysis.
31 return ((pid
<< 14) | (count
& 0x3fff)) << 8;
38 //------------------------------------------------------------------------------
44 : Pickle(sizeof(Header
)) {
45 header()->routing
= header()->type
= 0;
46 header()->flags
= GetRefNumUpper24();
48 header()->num_fds
= 0;
54 Message::Message(int32 routing_id
, uint32 type
, PriorityValue priority
)
55 : Pickle(sizeof(Header
)) {
56 header()->routing
= routing_id
;
57 header()->type
= type
;
58 DCHECK((priority
& 0xffffff00) == 0);
59 header()->flags
= priority
| GetRefNumUpper24();
61 header()->num_fds
= 0;
67 Message::Message(const char* data
, int data_len
) : Pickle(data
, data_len
) {
71 Message::Message(const Message
& other
) : Pickle(other
) {
74 attachment_set_
= other
.attachment_set_
;
78 void Message::Init() {
79 dispatch_error_
= false;
80 #ifdef IPC_MESSAGE_LOG_ENABLED
87 Message
& Message::operator=(const Message
& other
) {
88 *static_cast<Pickle
*>(this) = other
;
90 attachment_set_
= other
.attachment_set_
;
95 void Message::SetHeaderValues(int32 routing
, uint32 type
, uint32 flags
) {
96 // This should only be called when the message is already empty.
97 DCHECK(payload_size() == 0);
99 header()->routing
= routing
;
100 header()->type
= type
;
101 header()->flags
= flags
;
104 void Message::EnsureMessageAttachmentSet() {
105 if (attachment_set_
.get() == NULL
)
106 attachment_set_
= new MessageAttachmentSet
;
109 #ifdef IPC_MESSAGE_LOG_ENABLED
110 void Message::set_sent_time(int64 time
) {
111 DCHECK((header()->flags
& HAS_SENT_TIME_BIT
) == 0);
112 header()->flags
|= HAS_SENT_TIME_BIT
;
116 int64
Message::sent_time() const {
117 if ((header()->flags
& HAS_SENT_TIME_BIT
) == 0)
120 const char* data
= end_of_payload();
121 data
-= sizeof(int64
);
122 return *(reinterpret_cast<const int64
*>(data
));
125 void Message::set_received_time(int64 time
) const {
126 received_time_
= time
;
130 #if defined(OS_POSIX)
131 bool Message::WriteFile(base::ScopedFD descriptor
) {
132 // We write the index of the descriptor so that we don't have to
133 // keep the current descriptor as extra decoding state when deserialising.
134 WriteInt(attachment_set()->size());
135 return attachment_set()->AddToOwn(descriptor
.Pass());
138 bool Message::WriteBorrowingFile(const base::PlatformFile
& descriptor
) {
139 // We write the index of the descriptor so that we don't have to
140 // keep the current descriptor as extra decoding state when deserialising.
141 WriteInt(attachment_set()->size());
142 return attachment_set()->AddToBorrow(descriptor
);
145 bool Message::ReadFile(PickleIterator
* iter
, base::ScopedFD
* descriptor
) const {
146 int descriptor_index
;
147 if (!iter
->ReadInt(&descriptor_index
))
150 MessageAttachmentSet
* attachment_set
= attachment_set_
.get();
154 base::PlatformFile file
= attachment_set
->TakeDescriptorAt(descriptor_index
);
158 descriptor
->reset(file
);
162 bool Message::HasFileDescriptors() const {
163 return attachment_set_
.get() && !attachment_set_
->empty();