blob: 201fb1c1553dea6c4aa265fe28860e912219566d [file] [log] [blame]
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
sehr@google.com4f325aa2009-11-25 01:14:53 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_SYNC_SOCKET_H_
6#define BASE_SYNC_SOCKET_H_
7
8// A socket abstraction used for sending and receiving plain
xians@chromium.orgf7d9af82012-04-19 19:23:03 +09009// data. Because the receiving is blocking, they can be used to perform
sehr@google.com4f325aa2009-11-25 01:14:53 +090010// rudimentary cross-process synchronization with low latency.
11
12#include "base/basictypes.h"
13#if defined(OS_WIN)
14#include <windows.h>
15#endif
16#include <sys/types.h>
17
darin@chromium.orge585bed2011-08-06 00:34:00 +090018#include "base/base_export.h"
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090019#include "base/compiler_specific.h"
burnik81ab7622014-09-08 15:58:22 +090020#include "base/process/process_handle.h"
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090021#include "base/synchronization/waitable_event.h"
dalecurtis@chromium.org96b19df2013-10-20 07:13:19 +090022#include "base/time/time.h"
rvargas@google.comc3b65182011-03-29 08:48:44 +090023
burnik81ab7622014-09-08 15:58:22 +090024#if defined(OS_POSIX)
25#include "base/file_descriptor_posix.h"
26#endif
27
sehr@google.com4f325aa2009-11-25 01:14:53 +090028namespace base {
29
darin@chromium.orge585bed2011-08-06 00:34:00 +090030class BASE_EXPORT SyncSocket {
sehr@google.com4f325aa2009-11-25 01:14:53 +090031 public:
32#if defined(OS_WIN)
33 typedef HANDLE Handle;
burnik81ab7622014-09-08 15:58:22 +090034 typedef Handle TransitDescriptor;
sehr@google.com4f325aa2009-11-25 01:14:53 +090035#else
36 typedef int Handle;
burnik81ab7622014-09-08 15:58:22 +090037 typedef FileDescriptor TransitDescriptor;
sehr@google.com4f325aa2009-11-25 01:14:53 +090038#endif
groby@chromium.orge870b642011-12-23 04:33:27 +090039 static const Handle kInvalidHandle;
sehr@google.com4f325aa2009-11-25 01:14:53 +090040
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090041 SyncSocket();
sehr@google.com4f325aa2009-11-25 01:14:53 +090042
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090043 // Creates a SyncSocket from a Handle. Used in transport.
44 explicit SyncSocket(Handle handle) : handle_(handle) {}
45 virtual ~SyncSocket();
46
47 // Initializes and connects a pair of sockets.
48 // |socket_a| and |socket_b| must not hold a valid handle. Upon successful
49 // return, the sockets will both be valid and connected.
50 static bool CreatePair(SyncSocket* socket_a, SyncSocket* socket_b);
sehr@google.com4f325aa2009-11-25 01:14:53 +090051
burnik81ab7622014-09-08 15:58:22 +090052 // Returns |Handle| wrapped in a |TransitDescriptor|.
53 static Handle UnwrapHandle(const TransitDescriptor& descriptor);
54
55 // Prepares a |TransitDescriptor| which wraps |Handle| used for transit.
56 // This is used to prepare the underlying shared resource before passing back
57 // the handle to be used by the peer process.
58 bool PrepareTransitDescriptor(ProcessHandle peer_process_handle,
59 TransitDescriptor* descriptor);
60
sehr@google.com4f325aa2009-11-25 01:14:53 +090061 // Closes the SyncSocket. Returns true on success, false on failure.
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090062 virtual bool Close();
sehr@google.com4f325aa2009-11-25 01:14:53 +090063
64 // Sends the message to the remote peer of the SyncSocket.
65 // Note it is not safe to send messages from the same socket handle by
66 // multiple threads simultaneously.
67 // buffer is a pointer to the data to send.
68 // length is the length of the data to send (must be non-zero).
69 // Returns the number of bytes sent, or 0 upon failure.
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090070 virtual size_t Send(const void* buffer, size_t length);
sehr@google.com4f325aa2009-11-25 01:14:53 +090071
72 // Receives a message from an SyncSocket.
73 // buffer is a pointer to the buffer to receive data.
74 // length is the number of bytes of data to receive (must be non-zero).
75 // Returns the number of bytes received, or 0 upon failure.
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090076 virtual size_t Receive(void* buffer, size_t length);
sehr@google.com4f325aa2009-11-25 01:14:53 +090077
dalecurtis@chromium.org96b19df2013-10-20 07:13:19 +090078 // Same as Receive() but only blocks for data until |timeout| has elapsed or
79 // |buffer| |length| is exhausted. Currently only timeouts less than one
80 // second are allowed. Return the amount of data read.
81 virtual size_t ReceiveWithTimeout(void* buffer,
82 size_t length,
83 TimeDelta timeout);
84
cpu@chromium.org750392c2009-12-05 07:53:22 +090085 // Returns the number of bytes available. If non-zero, Receive() will not
grunellc128ba52015-09-11 00:24:42 +090086 // not block when called.
87 virtual size_t Peek();
cpu@chromium.org750392c2009-12-05 07:53:22 +090088
sehr@google.com4f325aa2009-11-25 01:14:53 +090089 // Extracts the contained handle. Used for transferring between
90 // processes.
91 Handle handle() const { return handle_; }
92
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090093 protected:
sehr@google.com4f325aa2009-11-25 01:14:53 +090094 Handle handle_;
95
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +090096 private:
sehr@google.com4f325aa2009-11-25 01:14:53 +090097 DISALLOW_COPY_AND_ASSIGN(SyncSocket);
98};
99
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +0900100// Derives from SyncSocket and adds support for shutting down the socket from
xians@chromium.orgf7d9af82012-04-19 19:23:03 +0900101// another thread while a blocking Receive or Send is being done from the
102// thread that owns the socket.
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +0900103class BASE_EXPORT CancelableSyncSocket : public SyncSocket {
104 public:
105 CancelableSyncSocket();
106 explicit CancelableSyncSocket(Handle handle);
dcheng7dc8df52014-10-21 19:54:51 +0900107 ~CancelableSyncSocket() override {}
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +0900108
109 // Initializes a pair of cancelable sockets. See documentation for
110 // SyncSocket::CreatePair for more details.
111 static bool CreatePair(CancelableSyncSocket* socket_a,
112 CancelableSyncSocket* socket_b);
113
114 // A way to shut down a socket even if another thread is currently performing
115 // a blocking Receive or Send.
116 bool Shutdown();
117
118#if defined(OS_WIN)
119 // Since the Linux and Mac implementations actually use a socket, shutting
120 // them down from another thread is pretty simple - we can just call
121 // shutdown(). However, the Windows implementation relies on named pipes
122 // and there isn't a way to cancel a blocking synchronous Read that is
123 // supported on <Vista. So, for Windows only, we override these
124 // SyncSocket methods in order to support shutting down the 'socket'.
dcheng21f84402015-04-17 16:35:46 +0900125 bool Close() override;
126 size_t Receive(void* buffer, size_t length) override;
127 size_t ReceiveWithTimeout(void* buffer,
128 size_t length,
129 TimeDelta timeout) override;
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +0900130#endif
131
xians@chromium.orgf7d9af82012-04-19 19:23:03 +0900132 // Send() is overridden to catch cases where the remote end is not responding
133 // and we fill the local socket buffer. When the buffer is full, this
134 // implementation of Send() will not block indefinitely as
135 // SyncSocket::Send will, but instead return 0, as no bytes could be sent.
136 // Note that the socket will not be closed in this case.
dcheng7dc8df52014-10-21 19:54:51 +0900137 size_t Send(const void* buffer, size_t length) override;
xians@chromium.orgf7d9af82012-04-19 19:23:03 +0900138
tommi@chromium.orgd5f359a2012-01-25 21:04:17 +0900139 private:
140#if defined(OS_WIN)
141 WaitableEvent shutdown_event_;
142 WaitableEvent file_operation_;
143#endif
144 DISALLOW_COPY_AND_ASSIGN(CancelableSyncSocket);
145};
146
cpu@chromium.org434a48c2013-05-23 13:34:11 +0900147#if defined(OS_WIN) && !defined(COMPONENT_BUILD)
148// TODO(cpu): remove this once chrome is split in two dlls.
149__declspec(selectany)
150 const SyncSocket::Handle SyncSocket::kInvalidHandle = INVALID_HANDLE_VALUE;
151#endif
152
sehr@google.com4f325aa2009-11-25 01:14:53 +0900153} // namespace base
154
155#endif // BASE_SYNC_SOCKET_H_