Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: ipc/brokerable_attachment.h

Issue 1286253002: IPC: Add attachment brokering support to the message header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile error. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ipc/attachment_broker_privileged_win_unittest.cc ('k') | ipc/brokerable_attachment.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IPC_BROKERABLE_ATTACHMENT_H_ 5 #ifndef IPC_BROKERABLE_ATTACHMENT_H_
6 #define IPC_BROKERABLE_ATTACHMENT_H_ 6 #define IPC_BROKERABLE_ATTACHMENT_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "ipc/ipc_export.h" 11 #include "ipc/ipc_export.h"
12 #include "ipc/ipc_message_attachment.h" 12 #include "ipc/ipc_message_attachment.h"
13 13
14 namespace IPC { 14 namespace IPC {
15 15
16 // This subclass of MessageAttachment requires an AttachmentBroker to be 16 // This subclass of MessageAttachment requires an AttachmentBroker to be
17 // attached to a Chrome IPC message. 17 // attached to a Chrome IPC message.
18 class IPC_EXPORT BrokerableAttachment : public MessageAttachment { 18 class IPC_EXPORT BrokerableAttachment : public MessageAttachment {
19 public: 19 public:
20 static const size_t kNonceSize = 16; 20 static const size_t kNonceSize = 16;
21 // An id uniquely identifies an attachment sent via a broker. 21 // An id uniquely identifies an attachment sent via a broker.
22 struct IPC_EXPORT AttachmentId { 22 struct IPC_EXPORT AttachmentId {
23 uint8_t nonce[kNonceSize]; 23 uint8_t nonce[kNonceSize];
24 24
25 // Default constructor returns a random nonce.
26 AttachmentId();
27
28 // Constructs an AttachmentId from a buffer.
29 AttachmentId(const char* start_address, size_t size);
30
31 // Writes the nonce into a buffer.
32 void SerializeToBuffer(char* start_address, size_t size);
33
25 bool operator==(const AttachmentId& rhs) const { 34 bool operator==(const AttachmentId& rhs) const {
26 for (size_t i = 0; i < kNonceSize; ++i) { 35 for (size_t i = 0; i < kNonceSize; ++i) {
27 if (nonce[i] != rhs.nonce[i]) 36 if (nonce[i] != rhs.nonce[i])
28 return false; 37 return false;
29 } 38 }
30 return true; 39 return true;
31 } 40 }
32 41
33 bool operator<(const AttachmentId& rhs) const { 42 bool operator<(const AttachmentId& rhs) const {
34 for (size_t i = 0; i < kNonceSize; ++i) { 43 for (size_t i = 0; i < kNonceSize; ++i) {
35 if (nonce[i] < rhs.nonce[i]) 44 if (nonce[i] < rhs.nonce[i])
36 return true; 45 return true;
37 if (nonce[i] > rhs.nonce[i]) 46 if (nonce[i] > rhs.nonce[i])
38 return false; 47 return false;
39 } 48 }
40 return false; 49 return false;
41 } 50 }
42 }; 51 };
43 52
44 enum BrokerableType { 53 enum BrokerableType {
54 PLACEHOLDER,
45 WIN_HANDLE, 55 WIN_HANDLE,
46 }; 56 };
47 57
48 // The identifier is unique across all Chrome processes. 58 // The identifier is unique across all Chrome processes.
49 AttachmentId GetIdentifier() const; 59 AttachmentId GetIdentifier() const;
50 60
51 // Whether the attachment still needs information from the broker before it 61 // Whether the attachment still needs information from the broker before it
52 // can be used. 62 // can be used.
53 bool NeedsBrokering() const; 63 bool NeedsBrokering() const;
54 64
55 // Fills in the data of this instance with the data from |attachment|.
56 // This instance must require brokering, |attachment| must be brokered, and
57 // both instances must have the same identifier.
58 virtual void PopulateWithAttachment(
59 const BrokerableAttachment* attachment) = 0;
60
61 // Returns TYPE_BROKERABLE_ATTACHMENT 65 // Returns TYPE_BROKERABLE_ATTACHMENT
62 Type GetType() const override; 66 Type GetType() const override;
63 67
64 virtual BrokerableType GetBrokerableType() const = 0; 68 virtual BrokerableType GetBrokerableType() const = 0;
65 69
70 // MessageAttachment override.
71 #if defined(OS_POSIX)
72 base::PlatformFile TakePlatformFile() override;
73 #endif // OS_POSIX
74
66 protected: 75 protected:
67 BrokerableAttachment(); 76 BrokerableAttachment();
68 BrokerableAttachment(const AttachmentId& id, bool needs_brokering); 77 BrokerableAttachment(const AttachmentId& id);
69 ~BrokerableAttachment() override; 78 ~BrokerableAttachment() override;
70 79
71 void SetNeedsBrokering(bool needs_brokering);
72
73 private: 80 private:
74 // This member uniquely identifies a BrokerableAttachment across all Chrome 81 // This member uniquely identifies a BrokerableAttachment across all Chrome
75 // processes. 82 // processes.
76 const AttachmentId id_; 83 const AttachmentId id_;
77 84
78 // Whether the attachment still needs to be filled in by an AttachmentBroker.
79 bool needs_brokering_;
80 DISALLOW_COPY_AND_ASSIGN(BrokerableAttachment); 85 DISALLOW_COPY_AND_ASSIGN(BrokerableAttachment);
81 }; 86 };
82 87
83 } // namespace IPC 88 } // namespace IPC
84 89
85 #endif // IPC_BROKERABLE_ATTACHMENT_H_ 90 #endif // IPC_BROKERABLE_ATTACHMENT_H_
OLDNEW
« no previous file with comments | « ipc/attachment_broker_privileged_win_unittest.cc ('k') | ipc/brokerable_attachment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698