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 "base/memory/shared_memory.h"
15 #include "base/logging.h"
19 SharedMemory::SharedMemory()
28 SharedMemory::SharedMemory(SharedMemoryHandle handle
, bool read_only
)
29 : mapped_file_(handle
.fd
),
33 read_only_(read_only
),
37 SharedMemory::SharedMemory(SharedMemoryHandle handle
, bool read_only
,
38 ProcessHandle process
)
39 : mapped_file_(handle
.fd
),
43 read_only_(read_only
),
48 SharedMemory::~SharedMemory() {
54 bool SharedMemory::IsHandleValid(const SharedMemoryHandle
& handle
) {
55 return handle
.fd
>= 0;
59 SharedMemoryHandle
SharedMemory::NULLHandle() {
60 return SharedMemoryHandle();
64 void SharedMemory::CloseHandle(const SharedMemoryHandle
& handle
) {
65 DCHECK_GE(handle
.fd
, 0);
66 if (close(handle
.fd
) < 0)
67 DPLOG(ERROR
) << "close";
70 bool SharedMemory::CreateAndMapAnonymous(size_t size
) {
71 // Untrusted code can't create descriptors or handles.
75 bool SharedMemory::Create(const SharedMemoryCreateOptions
& options
) {
76 // Untrusted code can't create descriptors or handles.
80 bool SharedMemory::Delete(const std::string
& name
) {
84 bool SharedMemory::Open(const std::string
& name
, bool read_only
) {
88 bool SharedMemory::MapAt(off_t offset
, size_t bytes
) {
89 if (mapped_file_
== -1)
92 if (bytes
> static_cast<size_t>(std::numeric_limits
<int>::max()))
98 memory_
= mmap(NULL
, bytes
, PROT_READ
| (read_only_
? 0 : PROT_WRITE
),
99 MAP_SHARED
, mapped_file_
, offset
);
101 bool mmap_succeeded
= memory_
!= MAP_FAILED
&& memory_
!= NULL
;
102 if (mmap_succeeded
) {
103 mapped_size_
= bytes
;
104 DCHECK_EQ(0U, reinterpret_cast<uintptr_t>(memory_
) &
105 (SharedMemory::MAP_MINIMUM_ALIGNMENT
- 1));
110 return mmap_succeeded
;
113 bool SharedMemory::Unmap() {
117 if (munmap(memory_
, mapped_size_
) < 0)
118 DPLOG(ERROR
) << "munmap";
124 SharedMemoryHandle
SharedMemory::handle() const {
125 return FileDescriptor(mapped_file_
, false);
128 void SharedMemory::Close() {
129 if (mapped_file_
> 0) {
130 if (close(mapped_file_
) < 0)
131 DPLOG(ERROR
) << "close";
136 void SharedMemory::LockDeprecated() {
140 void SharedMemory::UnlockDeprecated() {
144 bool SharedMemory::ShareToProcessCommon(ProcessHandle process
,
145 SharedMemoryHandle
*new_handle
,
147 ShareMode share_mode
) {
148 if (share_mode
== SHARE_READONLY
) {
149 // Untrusted code can't create descriptors or handles, which is needed to
153 const int new_fd
= dup(mapped_file_
);
155 DPLOG(ERROR
) << "dup() failed.";
159 new_handle
->fd
= new_fd
;
160 new_handle
->auto_close
= true;