blob: 244014ed724baa01378db17a38b933753cb09636 (
plain)
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
|
// Copyright 2015 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 IPC_MACH_PORT_ATTACHMENT_MAC_H_
#define IPC_MACH_PORT_ATTACHMENT_MAC_H_
#include <mach/mach.h>
#include <stdint.h>
#include "base/macros.h"
#include "base/process/process_handle.h"
#include "ipc/brokerable_attachment.h"
#include "ipc/ipc_export.h"
#include "ipc/mach_port_mac.h"
namespace IPC {
namespace internal {
// This class represents an OSX mach_port_t attached to a Chrome IPC message.
class IPC_EXPORT MachPortAttachmentMac : public BrokerableAttachment {
public:
struct IPC_EXPORT WireFormat {
// IPC translation requires that classes passed through IPC have a default
// constructor.
WireFormat() : mach_port(0), destination_process(0) {}
WireFormat(uint32_t mach_port,
const base::ProcessId& destination_process,
const AttachmentId& attachment_id)
: mach_port(mach_port),
destination_process(destination_process),
attachment_id(attachment_id) {}
// The mach port that is intended for duplication, or the mach port that has
// been duplicated, depending on context.
// The type is uint32_t instead of mach_port_t to ensure that the wire
// format stays consistent.
uint32_t mach_port;
static_assert(sizeof(mach_port_t) <= sizeof(uint32_t),
"mach_port_t must be smaller than uint32_t");
// The id of the destination process that the handle is duplicated into.
base::ProcessId destination_process;
AttachmentId attachment_id;
};
// This constructor increments the ref count of |mach_port_| and takes
// ownership of the result. Should only be called by the sender of a Chrome
// IPC message.
explicit MachPortAttachmentMac(mach_port_t mach_port);
// This constructor takes ownership of |wire_format.mach_port|, but does not
// modify its ref count. Should only be called by the receiver of a Chrome IPC
// message.
explicit MachPortAttachmentMac(const WireFormat& wire_format);
BrokerableType GetBrokerableType() const override;
// Returns the wire format of this attachment.
WireFormat GetWireFormat(const base::ProcessId& destination) const;
mach_port_t get_mach_port() const { return mach_port_; }
// The caller of this method has taken ownership of |mach_port_|.
void reset_mach_port_ownership() { owns_mach_port_ = false; }
private:
~MachPortAttachmentMac() override;
const mach_port_t mach_port_;
// In the sender process, the attachment owns the Mach port of a newly created
// message. The attachment broker will eventually take ownership of
// |mach_port_|.
// In the destination process, the attachment owns |mach_port_| until
// ParamTraits<MachPortMac>::Read() is called, which takes ownership.
bool owns_mach_port_;
DISALLOW_COPY_AND_ASSIGN(MachPortAttachmentMac);
};
} // namespace internal
} // namespace IPC
#endif // IPC_MACH_PORT_ATTACHMENT_MAC_H_
|