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

Side by Side Diff: base/memory/shared_memory_win.cc

Issue 2859843002: Add a GUID to base::SharedMemoryHandle. (Closed)
Patch Set: Check validity before writing handle. Created 3 years, 7 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "base/memory/shared_memory.h" 5 #include "base/memory/shared_memory.h"
6 6
7 #include <aclapi.h> 7 #include <aclapi.h>
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/metrics/histogram_macros.h" 12 #include "base/metrics/histogram_macros.h"
13 #include "base/rand_util.h" 13 #include "base/rand_util.h"
14 #include "base/strings/stringprintf.h" 14 #include "base/strings/stringprintf.h"
15 #include "base/strings/utf_string_conversions.h" 15 #include "base/strings/utf_string_conversions.h"
16 #include "base/unguessable_token.h"
16 17
17 namespace { 18 namespace {
18 19
19 // Errors that can occur during Shared Memory construction. 20 // Errors that can occur during Shared Memory construction.
20 // These match tools/metrics/histograms/histograms.xml. 21 // These match tools/metrics/histograms/histograms.xml.
21 // This enum is append-only. 22 // This enum is append-only.
22 enum CreateError { 23 enum CreateError {
23 SUCCESS = 0, 24 SUCCESS = 0,
24 SIZE_ZERO = 1, 25 SIZE_ZERO = 1,
25 SIZE_TOO_LARGE = 2, 26 SIZE_TOO_LARGE = 2,
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 234
234 // Windows ignores DACLs on certain unnamed objects (like shared sections). 235 // Windows ignores DACLs on certain unnamed objects (like shared sections).
235 // So, we generate a random name when we need to enforce read-only. 236 // So, we generate a random name when we need to enforce read-only.
236 uint64_t rand_values[4]; 237 uint64_t rand_values[4];
237 RandBytes(&rand_values, sizeof(rand_values)); 238 RandBytes(&rand_values, sizeof(rand_values));
238 name_ = StringPrintf(L"CrSharedMem_%016llx%016llx%016llx%016llx", 239 name_ = StringPrintf(L"CrSharedMem_%016llx%016llx%016llx%016llx",
239 rand_values[0], rand_values[1], 240 rand_values[0], rand_values[1],
240 rand_values[2], rand_values[3]); 241 rand_values[2], rand_values[3]);
241 } 242 }
242 DCHECK(!name_.empty()); 243 DCHECK(!name_.empty());
243 shm_ = SharedMemoryHandle(CreateFileMappingWithReducedPermissions( 244 shm_ = SharedMemoryHandle(
244 &sa, rounded_size, name_.c_str())); 245 CreateFileMappingWithReducedPermissions(&sa, rounded_size, name_.c_str()),
246 UnguessableToken::Create());
245 if (!shm_.IsValid()) { 247 if (!shm_.IsValid()) {
246 // The error is logged within CreateFileMappingWithReducedPermissions(). 248 // The error is logged within CreateFileMappingWithReducedPermissions().
247 return false; 249 return false;
248 } 250 }
249 251
250 requested_size_ = options.size; 252 requested_size_ = options.size;
251 253
252 // Check if the shared memory pre-exists. 254 // Check if the shared memory pre-exists.
253 if (GetLastError() == ERROR_ALREADY_EXISTS) { 255 if (GetLastError() == ERROR_ALREADY_EXISTS) {
254 // If the file already existed, set requested_size_ to 0 to show that 256 // If the file already existed, set requested_size_ to 0 to show that
(...skipping 17 matching lines...) Expand all
272 return true; 274 return true;
273 } 275 }
274 276
275 bool SharedMemory::Open(const std::string& name, bool read_only) { 277 bool SharedMemory::Open(const std::string& name, bool read_only) {
276 DCHECK(!shm_.IsValid()); 278 DCHECK(!shm_.IsValid());
277 DWORD access = FILE_MAP_READ | SECTION_QUERY; 279 DWORD access = FILE_MAP_READ | SECTION_QUERY;
278 if (!read_only) 280 if (!read_only)
279 access |= FILE_MAP_WRITE; 281 access |= FILE_MAP_WRITE;
280 name_ = ASCIIToUTF16(name); 282 name_ = ASCIIToUTF16(name);
281 read_only_ = read_only; 283 read_only_ = read_only;
284
285 // This form of sharing shared memory is deprecated. https://crbug.com/345734.
286 // Technically, we should also pass the GUID from the original shared memory
287 // region. Instead, we should just remove all instances of this.
Nico 2017/05/05 18:34:36 Likewise? What's the failure case if someone call
erikchen 2017/05/05 19:29:33 Done.
282 shm_ = SharedMemoryHandle( 288 shm_ = SharedMemoryHandle(
283 OpenFileMapping(access, false, name_.empty() ? nullptr : name_.c_str())); 289 OpenFileMapping(access, false, name_.empty() ? nullptr : name_.c_str()),
290 UnguessableToken::Create());
284 if (!shm_.IsValid()) 291 if (!shm_.IsValid())
285 return false; 292 return false;
286 // If a name specified assume it's an external section. 293 // If a name specified assume it's an external section.
287 if (!name_.empty()) 294 if (!name_.empty())
288 external_section_ = true; 295 external_section_ = true;
289 // Note: size_ is not set in this case. 296 // Note: size_ is not set in this case.
290 return true; 297 return true;
291 } 298 }
292 299
293 bool SharedMemory::MapAt(off_t offset, size_t bytes) { 300 bool SharedMemory::MapAt(off_t offset, size_t bytes) {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 return true; 332 return true;
326 } 333 }
327 334
328 SharedMemoryHandle SharedMemory::GetReadOnlyHandle() { 335 SharedMemoryHandle SharedMemory::GetReadOnlyHandle() {
329 HANDLE result; 336 HANDLE result;
330 ProcessHandle process = GetCurrentProcess(); 337 ProcessHandle process = GetCurrentProcess();
331 if (!::DuplicateHandle(process, shm_.GetHandle(), process, &result, 338 if (!::DuplicateHandle(process, shm_.GetHandle(), process, &result,
332 FILE_MAP_READ | SECTION_QUERY, FALSE, 0)) { 339 FILE_MAP_READ | SECTION_QUERY, FALSE, 0)) {
333 return SharedMemoryHandle(); 340 return SharedMemoryHandle();
334 } 341 }
335 SharedMemoryHandle handle = SharedMemoryHandle(result); 342 SharedMemoryHandle handle = SharedMemoryHandle(result, shm_.GetGUID());
336 handle.SetOwnershipPassesToIPC(true); 343 handle.SetOwnershipPassesToIPC(true);
337 return handle; 344 return handle;
338 } 345 }
339 346
340 void SharedMemory::Close() { 347 void SharedMemory::Close() {
341 if (shm_.IsValid()) { 348 if (shm_.IsValid()) {
342 shm_.Close(); 349 shm_.Close();
343 shm_ = SharedMemoryHandle(); 350 shm_ = SharedMemoryHandle();
344 } 351 }
345 } 352 }
346 353
347 SharedMemoryHandle SharedMemory::handle() const { 354 SharedMemoryHandle SharedMemory::handle() const {
348 return shm_; 355 return shm_;
349 } 356 }
350 357
351 SharedMemoryHandle SharedMemory::TakeHandle() { 358 SharedMemoryHandle SharedMemory::TakeHandle() {
352 SharedMemoryHandle handle(shm_); 359 SharedMemoryHandle handle(shm_);
353 handle.SetOwnershipPassesToIPC(true); 360 handle.SetOwnershipPassesToIPC(true);
354 shm_ = SharedMemoryHandle(); 361 shm_ = SharedMemoryHandle();
355 memory_ = nullptr; 362 memory_ = nullptr;
356 mapped_size_ = 0; 363 mapped_size_ = 0;
357 return handle; 364 return handle;
358 } 365 }
359 366
360 } // namespace base 367 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698