[email protected] | 774bdcc | 2012-01-19 03:44:38 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [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 | |
| 5 | #include "base/sync_socket.h" |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 6 | |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 7 | #include "base/logging.h" |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 8 | #include "base/threading/thread_restrictions.h" |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 9 | #include "base/win/scoped_handle.h" |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 10 | |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 11 | namespace base { |
| 12 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 13 | using win::ScopedHandle; |
| 14 | |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 15 | namespace { |
[email protected] | 774bdcc | 2012-01-19 03:44:38 | [diff] [blame] | 16 | // IMPORTANT: do not change how this name is generated because it will break |
| 17 | // in sandboxed scenarios as we might have by-name policies that allow pipe |
| 18 | // creation. Also keep the secure random number generation. |
| 19 | const wchar_t kPipeNameFormat[] = L"\\\\.\\pipe\\chrome.sync.%u.%u.%lu"; |
| 20 | const size_t kPipePathMax = arraysize(kPipeNameFormat) + (3 * 10) + 1; |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 21 | |
| 22 | // To avoid users sending negative message lengths to Send/Receive |
| 23 | // we clamp message lengths, which are size_t, to no more than INT_MAX. |
| 24 | const size_t kMaxMessageLength = static_cast<size_t>(INT_MAX); |
| 25 | |
| 26 | const int kOutBufferSize = 4096; |
| 27 | const int kInBufferSize = 4096; |
| 28 | const int kDefaultTimeoutMilliSeconds = 1000; |
| 29 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 30 | bool CreatePairImpl(HANDLE* socket_a, HANDLE* socket_b, bool overlapped) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 31 | DCHECK_NE(socket_a, socket_b); |
| 32 | DCHECK_EQ(*socket_a, SyncSocket::kInvalidHandle); |
| 33 | DCHECK_EQ(*socket_b, SyncSocket::kInvalidHandle); |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 34 | |
| 35 | wchar_t name[kPipePathMax]; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 36 | ScopedHandle handle_a; |
| 37 | DWORD flags = PIPE_ACCESS_DUPLEX | FILE_FLAG_FIRST_PIPE_INSTANCE; |
| 38 | if (overlapped) |
| 39 | flags |= FILE_FLAG_OVERLAPPED; |
| 40 | |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 41 | do { |
| 42 | unsigned int rnd_name; |
| 43 | if (rand_s(&rnd_name) != 0) |
| 44 | return false; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 45 | |
[email protected] | 774bdcc | 2012-01-19 03:44:38 | [diff] [blame] | 46 | swprintf(name, kPipePathMax, |
| 47 | kPipeNameFormat, |
| 48 | GetCurrentProcessId(), |
| 49 | GetCurrentThreadId(), |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 50 | rnd_name); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 51 | |
| 52 | handle_a.Set(CreateNamedPipeW( |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 53 | name, |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 54 | flags, |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 55 | PIPE_TYPE_BYTE | PIPE_READMODE_BYTE, |
| 56 | 1, |
| 57 | kOutBufferSize, |
| 58 | kInBufferSize, |
| 59 | kDefaultTimeoutMilliSeconds, |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 60 | NULL)); |
| 61 | } while (!handle_a.IsValid() && |
[email protected] | 774bdcc | 2012-01-19 03:44:38 | [diff] [blame] | 62 | (GetLastError() == ERROR_PIPE_BUSY)); |
| 63 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 64 | if (!handle_a.IsValid()) { |
[email protected] | 774bdcc | 2012-01-19 03:44:38 | [diff] [blame] | 65 | NOTREACHED(); |
| 66 | return false; |
| 67 | } |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 68 | |
| 69 | // The SECURITY_ANONYMOUS flag means that the server side (handle_a) cannot |
| 70 | // impersonate the client (handle_b). This allows us not to care which side |
[email protected] | 774bdcc | 2012-01-19 03:44:38 | [diff] [blame] | 71 | // ends up in which side of a privilege boundary. |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 72 | flags = SECURITY_SQOS_PRESENT | SECURITY_ANONYMOUS; |
| 73 | if (overlapped) |
| 74 | flags |= FILE_FLAG_OVERLAPPED; |
| 75 | |
| 76 | ScopedHandle handle_b(CreateFileW(name, |
| 77 | GENERIC_READ | GENERIC_WRITE, |
| 78 | 0, // no sharing. |
| 79 | NULL, // default security attributes. |
| 80 | OPEN_EXISTING, // opens existing pipe. |
| 81 | flags, |
| 82 | NULL)); // no template file. |
| 83 | if (!handle_b.IsValid()) { |
| 84 | DPLOG(ERROR) << "CreateFileW failed"; |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 85 | return false; |
| 86 | } |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 87 | |
| 88 | if (!ConnectNamedPipe(handle_a, NULL)) { |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 89 | DWORD error = GetLastError(); |
| 90 | if (error != ERROR_PIPE_CONNECTED) { |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 91 | DPLOG(ERROR) << "ConnectNamedPipe failed"; |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 92 | return false; |
| 93 | } |
| 94 | } |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 95 | |
| 96 | *socket_a = handle_a.Take(); |
| 97 | *socket_b = handle_b.Take(); |
| 98 | |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 99 | return true; |
| 100 | } |
| 101 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 102 | // Inline helper to avoid having the cast everywhere. |
| 103 | DWORD GetNextChunkSize(size_t current_pos, size_t max_size) { |
| 104 | // The following statement is for 64 bit portability. |
| 105 | return static_cast<DWORD>(((max_size - current_pos) <= UINT_MAX) ? |
| 106 | (max_size - current_pos) : UINT_MAX); |
| 107 | } |
| 108 | |
| 109 | // Template function that supports calling ReadFile or WriteFile in an |
| 110 | // overlapped fashion and waits for IO completion. The function also waits |
| 111 | // on an event that can be used to cancel the operation. If the operation |
| 112 | // is cancelled, the function returns and closes the relevant socket object. |
| 113 | template <typename BufferType, typename Function> |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 114 | size_t CancelableFileOperation(Function operation, |
| 115 | HANDLE file, |
| 116 | BufferType* buffer, |
| 117 | size_t length, |
| 118 | WaitableEvent* io_event, |
| 119 | WaitableEvent* cancel_event, |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 120 | CancelableSyncSocket* socket, |
| 121 | DWORD timeout_in_ms) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 122 | ThreadRestrictions::AssertIOAllowed(); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 123 | // The buffer must be byte size or the length check won't make much sense. |
| 124 | COMPILE_ASSERT(sizeof(buffer[0]) == sizeof(char), incorrect_buffer_type); |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 125 | DCHECK_GT(length, 0u); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 126 | DCHECK_LE(length, kMaxMessageLength); |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 127 | DCHECK_NE(file, SyncSocket::kInvalidHandle); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 128 | |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 129 | // Track the finish time so we can calculate the timeout as data is read. |
| 130 | TimeTicks current_time, finish_time; |
| 131 | if (timeout_in_ms != INFINITE) { |
| 132 | current_time = TimeTicks::Now(); |
| 133 | finish_time = |
| 134 | current_time + base::TimeDelta::FromMilliseconds(timeout_in_ms); |
| 135 | } |
| 136 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 137 | size_t count = 0; |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 138 | do { |
| 139 | // The OVERLAPPED structure will be modified by ReadFile or WriteFile. |
| 140 | OVERLAPPED ol = { 0 }; |
| 141 | ol.hEvent = io_event->handle(); |
| 142 | |
| 143 | const DWORD chunk = GetNextChunkSize(count, length); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 144 | // This is either the ReadFile or WriteFile call depending on whether |
| 145 | // we're receiving or sending data. |
[email protected] | 23bf698 | 2012-02-03 12:44:44 | [diff] [blame] | 146 | DWORD len = 0; |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 147 | const BOOL operation_ok = operation( |
| 148 | file, static_cast<BufferType*>(buffer) + count, chunk, &len, &ol); |
| 149 | if (!operation_ok) { |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 150 | if (::GetLastError() == ERROR_IO_PENDING) { |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 151 | HANDLE events[] = { io_event->handle(), cancel_event->handle() }; |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 152 | const int wait_result = WaitForMultipleObjects( |
| 153 | ARRAYSIZE_UNSAFE(events), events, FALSE, |
| 154 | timeout_in_ms == INFINITE |
| 155 | ? timeout_in_ms |
| 156 | : (finish_time - current_time).InMilliseconds()); |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 157 | if (wait_result == (WAIT_OBJECT_0 + 0)) { |
| 158 | GetOverlappedResult(file, &ol, &len, TRUE); |
| 159 | } else if (wait_result == (WAIT_OBJECT_0 + 1)) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 160 | DVLOG(1) << "Shutdown was signaled. Closing socket."; |
[email protected] | 23bf698 | 2012-02-03 12:44:44 | [diff] [blame] | 161 | CancelIo(file); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 162 | socket->Close(); |
[email protected] | 23bf698 | 2012-02-03 12:44:44 | [diff] [blame] | 163 | count = 0; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 164 | break; |
| 165 | } else { |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 166 | // Timeout happened. |
| 167 | DCHECK_EQ(WAIT_TIMEOUT, wait_result); |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 168 | if (!CancelIo(file)) |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 169 | DLOG(WARNING) << "CancelIo() failed"; |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 170 | break; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 171 | } |
| 172 | } else { |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 173 | break; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 174 | } |
| 175 | } |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 176 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 177 | count += len; |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 178 | |
| 179 | // Quit the operation if we can't write/read anymore. |
| 180 | if (len != chunk) |
| 181 | break; |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 182 | |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 183 | // Since TimeTicks::Now() is expensive, only bother updating the time if we |
| 184 | // have more work to do. |
| 185 | if (timeout_in_ms != INFINITE && count < length) |
| 186 | current_time = base::TimeTicks::Now(); |
| 187 | } while (count < length && |
| 188 | (timeout_in_ms == INFINITE || current_time < finish_time)); |
| 189 | |
| 190 | return count; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | } // namespace |
| 194 | |
[email protected] | 0f248ef | 2013-05-23 04:34:11 | [diff] [blame] | 195 | #if defined(COMPONENT_BUILD) |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 196 | const SyncSocket::Handle SyncSocket::kInvalidHandle = INVALID_HANDLE_VALUE; |
[email protected] | 0f248ef | 2013-05-23 04:34:11 | [diff] [blame] | 197 | #endif |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 198 | |
| 199 | SyncSocket::SyncSocket() : handle_(kInvalidHandle) {} |
| 200 | |
| 201 | SyncSocket::~SyncSocket() { |
| 202 | Close(); |
| 203 | } |
| 204 | |
| 205 | // static |
| 206 | bool SyncSocket::CreatePair(SyncSocket* socket_a, SyncSocket* socket_b) { |
| 207 | return CreatePairImpl(&socket_a->handle_, &socket_b->handle_, false); |
| 208 | } |
| 209 | |
burnik | 3d67005 | 2014-09-08 06:58:22 | [diff] [blame^] | 210 | // static |
| 211 | SyncSocket::Handle SyncSocket::UnwrapHandle( |
| 212 | const TransitDescriptor& descriptor) { |
| 213 | return descriptor; |
| 214 | } |
| 215 | |
| 216 | bool SyncSocket::PrepareTransitDescriptor(ProcessHandle peer_process_handle, |
| 217 | TransitDescriptor* descriptor) { |
| 218 | DCHECK(descriptor); |
| 219 | if (!::DuplicateHandle(GetCurrentProcess(), handle(), peer_process_handle, |
| 220 | descriptor, 0, FALSE, DUPLICATE_SAME_ACCESS)) { |
| 221 | DPLOG(ERROR) << "Cannot duplicate socket handle for peer process."; |
| 222 | return false; |
| 223 | } |
| 224 | return true; |
| 225 | } |
| 226 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 227 | bool SyncSocket::Close() { |
| 228 | if (handle_ == kInvalidHandle) |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 229 | return true; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 230 | |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 231 | const BOOL result = CloseHandle(handle_); |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 232 | handle_ = kInvalidHandle; |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 233 | return result == TRUE; |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | size_t SyncSocket::Send(const void* buffer, size_t length) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 237 | ThreadRestrictions::AssertIOAllowed(); |
| 238 | DCHECK_GT(length, 0u); |
[email protected] | d7a93ad | 2011-04-22 13:13:07 | [diff] [blame] | 239 | DCHECK_LE(length, kMaxMessageLength); |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 240 | DCHECK_NE(handle_, kInvalidHandle); |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 241 | size_t count = 0; |
| 242 | while (count < length) { |
| 243 | DWORD len; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 244 | DWORD chunk = GetNextChunkSize(count, length); |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 245 | if (WriteFile(handle_, static_cast<const char*>(buffer) + count, |
| 246 | chunk, &len, NULL) == FALSE) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 247 | return count; |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 248 | } |
| 249 | count += len; |
| 250 | } |
| 251 | return count; |
| 252 | } |
| 253 | |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 254 | size_t SyncSocket::ReceiveWithTimeout(void* buffer, |
| 255 | size_t length, |
| 256 | TimeDelta timeout) { |
| 257 | NOTIMPLEMENTED(); |
| 258 | return 0; |
| 259 | } |
| 260 | |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 261 | size_t SyncSocket::Receive(void* buffer, size_t length) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 262 | ThreadRestrictions::AssertIOAllowed(); |
| 263 | DCHECK_GT(length, 0u); |
[email protected] | d7a93ad | 2011-04-22 13:13:07 | [diff] [blame] | 264 | DCHECK_LE(length, kMaxMessageLength); |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 265 | DCHECK_NE(handle_, kInvalidHandle); |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 266 | size_t count = 0; |
| 267 | while (count < length) { |
| 268 | DWORD len; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 269 | DWORD chunk = GetNextChunkSize(count, length); |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 270 | if (ReadFile(handle_, static_cast<char*>(buffer) + count, |
| 271 | chunk, &len, NULL) == FALSE) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 272 | return count; |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 273 | } |
| 274 | count += len; |
| 275 | } |
| 276 | return count; |
| 277 | } |
| 278 | |
[email protected] | d8b6591 | 2009-12-04 22:53:22 | [diff] [blame] | 279 | size_t SyncSocket::Peek() { |
| 280 | DWORD available = 0; |
| 281 | PeekNamedPipe(handle_, NULL, 0, NULL, &available, NULL); |
| 282 | return available; |
| 283 | } |
| 284 | |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 285 | CancelableSyncSocket::CancelableSyncSocket() |
| 286 | : shutdown_event_(true, false), file_operation_(true, false) { |
| 287 | } |
| 288 | |
| 289 | CancelableSyncSocket::CancelableSyncSocket(Handle handle) |
| 290 | : SyncSocket(handle), shutdown_event_(true, false), |
| 291 | file_operation_(true, false) { |
| 292 | } |
| 293 | |
| 294 | bool CancelableSyncSocket::Shutdown() { |
| 295 | // This doesn't shut down the pipe immediately, but subsequent Receive or Send |
| 296 | // methods will fail straight away. |
| 297 | shutdown_event_.Signal(); |
| 298 | return true; |
| 299 | } |
| 300 | |
| 301 | bool CancelableSyncSocket::Close() { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 302 | const bool result = SyncSocket::Close(); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 303 | shutdown_event_.Reset(); |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 304 | return result; |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | size_t CancelableSyncSocket::Send(const void* buffer, size_t length) { |
[email protected] | 5d27209 | 2012-04-19 10:23:03 | [diff] [blame] | 308 | static const DWORD kWaitTimeOutInMs = 500; |
| 309 | return CancelableFileOperation( |
| 310 | &WriteFile, handle_, reinterpret_cast<const char*>(buffer), |
| 311 | length, &file_operation_, &shutdown_event_, this, kWaitTimeOutInMs); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | size_t CancelableSyncSocket::Receive(void* buffer, size_t length) { |
[email protected] | 62558f1 | 2013-10-19 22:13:19 | [diff] [blame] | 315 | return CancelableFileOperation( |
| 316 | &ReadFile, handle_, reinterpret_cast<char*>(buffer), length, |
| 317 | &file_operation_, &shutdown_event_, this, INFINITE); |
| 318 | } |
| 319 | |
| 320 | size_t CancelableSyncSocket::ReceiveWithTimeout(void* buffer, |
| 321 | size_t length, |
| 322 | TimeDelta timeout) { |
| 323 | return CancelableFileOperation( |
| 324 | &ReadFile, handle_, reinterpret_cast<char*>(buffer), length, |
| 325 | &file_operation_, &shutdown_event_, this, timeout.InMilliseconds()); |
[email protected] | 532e9bd | 2012-01-25 12:04:17 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | // static |
| 329 | bool CancelableSyncSocket::CreatePair(CancelableSyncSocket* socket_a, |
| 330 | CancelableSyncSocket* socket_b) { |
| 331 | return CreatePairImpl(&socket_a->handle_, &socket_b->handle_, true); |
| 332 | } |
| 333 | |
[email protected] | 0840cc7 | 2009-11-24 16:14:53 | [diff] [blame] | 334 | } // namespace base |