OLD | NEW |
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 #include "ipc/handle_attachment_win.h" | 5 #include "ipc/handle_attachment_win.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include "crypto/random.h" | |
10 | |
11 namespace IPC { | 9 namespace IPC { |
12 namespace internal { | 10 namespace internal { |
13 | 11 |
14 namespace { | |
15 | |
16 // In order to prevent mutually untrusted processes from stealing resources from | |
17 // one another, the nonce must be secret. This generates a 128-bit, | |
18 // cryptographicaly-strong random number. | |
19 BrokerableAttachment::AttachmentId GenerateAttachementId() { | |
20 BrokerableAttachment::AttachmentId result; | |
21 crypto::RandBytes(result.nonce, BrokerableAttachment::kNonceSize); | |
22 return result; | |
23 } | |
24 | |
25 } // namespace | |
26 | |
27 HandleAttachmentWin::HandleAttachmentWin(const HANDLE& handle, | 12 HandleAttachmentWin::HandleAttachmentWin(const HANDLE& handle, |
28 HandleWin::Permissions permissions) | 13 HandleWin::Permissions permissions) |
29 : BrokerableAttachment(GenerateAttachementId(), true), | 14 : handle_(handle), permissions_(permissions) {} |
30 handle_(handle), | |
31 permissions_(permissions) {} | |
32 | 15 |
33 HandleAttachmentWin::HandleAttachmentWin(const WireFormat& wire_format) | 16 HandleAttachmentWin::HandleAttachmentWin(const WireFormat& wire_format) |
34 : BrokerableAttachment(wire_format.attachment_id, false), | 17 : BrokerableAttachment(wire_format.attachment_id, false), |
35 handle_(LongToHandle(wire_format.handle)), | 18 handle_(LongToHandle(wire_format.handle)), |
36 permissions_(wire_format.permissions) {} | 19 permissions_(wire_format.permissions) {} |
37 | 20 |
38 HandleAttachmentWin::HandleAttachmentWin( | 21 HandleAttachmentWin::HandleAttachmentWin( |
39 const BrokerableAttachment::AttachmentId& id) | 22 const BrokerableAttachment::AttachmentId& id) |
40 : BrokerableAttachment(id, true), | 23 : BrokerableAttachment(id, true), |
41 handle_(INVALID_HANDLE_VALUE), | 24 handle_(INVALID_HANDLE_VALUE), |
(...skipping 25 matching lines...) Expand all Loading... |
67 WireFormat format; | 50 WireFormat format; |
68 format.handle = HandleToLong(handle_); | 51 format.handle = HandleToLong(handle_); |
69 format.attachment_id = GetIdentifier(); | 52 format.attachment_id = GetIdentifier(); |
70 format.destination_process = destination; | 53 format.destination_process = destination; |
71 format.permissions = permissions_; | 54 format.permissions = permissions_; |
72 return format; | 55 return format; |
73 } | 56 } |
74 | 57 |
75 } // namespace internal | 58 } // namespace internal |
76 } // namespace IPC | 59 } // namespace IPC |
OLD | NEW |