[email protected] | 3fcbd4b | 2012-06-05 01:54:46 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
avi | 246998d8 | 2015-12-22 02:39:04 | [diff] [blame] | 5 | #include "build/build_config.h" |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 6 | #include "ipc/ipc_platform_file.h" |
| 7 | |
Fabrice de Gans-Riberi | cbce434 | 2018-05-07 20:02:09 | [diff] [blame] | 8 | #if defined(OS_WIN) |
| 9 | #include <windows.h> |
| 10 | #elif defined(OS_POSIX) || defined(OS_FUCHSIA) |
[email protected] | 6fa21d0 | 2011-11-04 00:14:16 | [diff] [blame] | 11 | #include <unistd.h> |
Dale Curtis | fdd81dd | 2017-08-29 21:53:23 | [diff] [blame] | 12 | |
| 13 | #include "base/posix/eintr_wrapper.h" |
[email protected] | 6fa21d0 | 2011-11-04 00:14:16 | [diff] [blame] | 14 | #endif |
| 15 | |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 16 | namespace IPC { |
| 17 | |
erikchen | d804e105 | 2017-04-29 02:24:36 | [diff] [blame] | 18 | #if defined(OS_WIN) |
| 19 | PlatformFileForTransit::PlatformFileForTransit() : handle_(nullptr) {} |
| 20 | |
| 21 | PlatformFileForTransit::PlatformFileForTransit(HANDLE handle) |
| 22 | : handle_(handle) {} |
| 23 | |
| 24 | bool PlatformFileForTransit::operator==( |
| 25 | const PlatformFileForTransit& platform_file) const { |
| 26 | return handle_ == platform_file.handle_; |
| 27 | } |
| 28 | |
| 29 | bool PlatformFileForTransit::operator!=( |
| 30 | const PlatformFileForTransit& platform_file) const { |
| 31 | return !(*this == platform_file); |
| 32 | } |
| 33 | |
| 34 | HANDLE PlatformFileForTransit::GetHandle() const { |
| 35 | return handle_; |
| 36 | } |
| 37 | |
| 38 | bool PlatformFileForTransit::IsValid() const { |
| 39 | return handle_ != nullptr; |
| 40 | } |
| 41 | |
| 42 | #endif // defined(OS_WIN) |
| 43 | |
erikchen | 09b4003 | 2016-04-06 18:51:55 | [diff] [blame] | 44 | PlatformFileForTransit GetPlatformFileForTransit(base::PlatformFile handle, |
| 45 | bool close_source_handle) { |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 46 | #if defined(OS_WIN) |
erikchen | 19e5f69 | 2016-03-29 22:26:42 | [diff] [blame] | 47 | HANDLE raw_handle = INVALID_HANDLE_VALUE; |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 48 | DWORD options = DUPLICATE_SAME_ACCESS; |
| 49 | if (close_source_handle) |
| 50 | options |= DUPLICATE_CLOSE_SOURCE; |
[email protected] | 6f62e3b4 | 2013-05-24 22:36:01 | [diff] [blame] | 51 | if (handle == INVALID_HANDLE_VALUE || |
erikchen | 56c6e5d | 2016-04-05 18:32:48 | [diff] [blame] | 52 | !::DuplicateHandle(::GetCurrentProcess(), handle, ::GetCurrentProcess(), |
| 53 | &raw_handle, 0, FALSE, options)) { |
| 54 | return IPC::InvalidPlatformFileForTransit(); |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 55 | } |
erikchen | 56c6e5d | 2016-04-05 18:32:48 | [diff] [blame] | 56 | |
erikchen | d804e105 | 2017-04-29 02:24:36 | [diff] [blame] | 57 | return IPC::PlatformFileForTransit(raw_handle); |
Fabrice de Gans-Riberi | cbce434 | 2018-05-07 20:02:09 | [diff] [blame] | 58 | #elif defined(OS_POSIX) || defined(OS_FUCHSIA) |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 59 | // If asked to close the source, we can simply re-use the source fd instead of |
| 60 | // dup()ing and close()ing. |
| 61 | // When we're not closing the source, we need to duplicate the handle and take |
| 62 | // ownership of that. The reason is that this function is often used to |
| 63 | // generate IPC messages, and the handle must remain valid until it's sent to |
| 64 | // the other process from the I/O thread. Without the dup, calling code might |
| 65 | // close the source handle before the message is sent, creating a race |
| 66 | // condition. |
Dale Curtis | fdd81dd | 2017-08-29 21:53:23 | [diff] [blame] | 67 | int fd = close_source_handle ? handle : HANDLE_EINTR(::dup(handle)); |
erikchen | 56c6e5d | 2016-04-05 18:32:48 | [diff] [blame] | 68 | return base::FileDescriptor(fd, true); |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 69 | #endif |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 70 | } |
| 71 | |
erikchen | 41e6083 | 2016-04-07 16:35:11 | [diff] [blame] | 72 | PlatformFileForTransit TakePlatformFileForTransit(base::File file) { |
erikchen | 09b4003 | 2016-04-06 18:51:55 | [diff] [blame] | 73 | return GetPlatformFileForTransit(file.TakePlatformFile(), true); |
[email protected] | 8880e70 | 2014-03-05 20:13:49 | [diff] [blame] | 74 | } |
| 75 | |
[email protected] | e7f009d | 2011-06-14 19:35:10 | [diff] [blame] | 76 | } // namespace IPC |