Bitcoin Core  31.0.0
P2P Digital Currency
sock.h
Go to the documentation of this file.
1 // Copyright (c) 2020-present The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_UTIL_SOCK_H
6 #define BITCOIN_UTIL_SOCK_H
7 
8 #include <compat/compat.h>
9 #include <util/threadinterrupt.h>
10 #include <util/time.h>
11 
12 #include <chrono>
13 #include <memory>
14 #include <span>
15 #include <string>
16 #include <unordered_map>
17 
22 static constexpr auto MAX_WAIT_FOR_IO = 1s;
23 
27 class Sock
28 {
29 public:
30  Sock() = delete;
31 
35  explicit Sock(SOCKET s);
36 
40  Sock(const Sock&) = delete;
41 
45  Sock(Sock&& other);
46 
50  virtual ~Sock();
51 
55  Sock& operator=(const Sock&) = delete;
56 
60  virtual Sock& operator=(Sock&& other);
61 
66  [[nodiscard]] virtual ssize_t Send(const void* data, size_t len, int flags) const;
67 
72  [[nodiscard]] virtual ssize_t Recv(void* buf, size_t len, int flags) const;
73 
78  [[nodiscard]] virtual int Connect(const sockaddr* addr, socklen_t addr_len) const;
79 
84  [[nodiscard]] virtual int Bind(const sockaddr* addr, socklen_t addr_len) const;
85 
90  [[nodiscard]] virtual int Listen(int backlog) const;
91 
98  [[nodiscard]] virtual std::unique_ptr<Sock> Accept(sockaddr* addr, socklen_t* addr_len) const;
99 
105  [[nodiscard]] virtual int GetSockOpt(int level,
106  int opt_name,
107  void* opt_val,
108  socklen_t* opt_len) const;
109 
115  [[nodiscard]] virtual int SetSockOpt(int level,
116  int opt_name,
117  const void* opt_val,
118  socklen_t opt_len) const;
119 
125  [[nodiscard]] virtual int GetSockName(sockaddr* name, socklen_t* name_len) const;
126 
131  [[nodiscard]] virtual bool SetNonBlocking() const;
132 
137  [[nodiscard]] virtual bool IsSelectable() const;
138 
139  using Event = uint8_t;
140 
144  static constexpr Event RECV = 0b001;
145 
149  static constexpr Event SEND = 0b010;
150 
155  static constexpr Event ERR = 0b100;
156 
167  [[nodiscard]] virtual bool Wait(std::chrono::milliseconds timeout,
168  Event requested,
169  Event* occurred = nullptr) const;
170 
174  struct Events {
175  explicit Events(Event req) : requested{req} {}
178  };
179 
181  size_t operator()(const std::shared_ptr<const Sock>& s) const
182  {
183  return s ? s->m_socket : std::numeric_limits<SOCKET>::max();
184  }
185  };
186 
188  bool operator()(const std::shared_ptr<const Sock>& lhs,
189  const std::shared_ptr<const Sock>& rhs) const
190  {
191  if (lhs && rhs) {
192  return lhs->m_socket == rhs->m_socket;
193  }
194  if (!lhs && !rhs) {
195  return true;
196  }
197  return false;
198  }
199  };
200 
209  using EventsPerSock = std::unordered_map<std::shared_ptr<const Sock>, Events, HashSharedPtrSock, EqualSharedPtrSock>;
210 
219  [[nodiscard]] virtual bool WaitMany(std::chrono::milliseconds timeout,
220  EventsPerSock& events_per_sock) const;
221 
222  /* Higher level, convenience, methods. These may throw. */
223 
232  virtual void SendComplete(std::span<const unsigned char> data,
233  std::chrono::milliseconds timeout,
234  CThreadInterrupt& interrupt) const;
235 
239  virtual void SendComplete(std::span<const char> data,
240  std::chrono::milliseconds timeout,
241  CThreadInterrupt& interrupt) const;
242 
255  [[nodiscard]] virtual std::string RecvUntilTerminator(uint8_t terminator,
256  std::chrono::milliseconds timeout,
257  CThreadInterrupt& interrupt,
258  size_t max_data) const;
259 
265  [[nodiscard]] virtual bool IsConnected(std::string& errmsg) const;
266 
270  bool operator==(SOCKET s) const;
271 
272 protected:
277 
278 private:
282  void Close();
283 };
284 
286 std::string NetworkErrorString(int err);
287 
288 #endif // BITCOIN_UTIL_SOCK_H
Events(Event req)
Definition: sock.h:175
std::string NetworkErrorString(int err)
Return readable error string for a network error code.
Definition: sock.cpp:426
virtual bool SetNonBlocking() const
Set the non-blocking option on the socket.
Definition: sock.cpp:113
virtual int Bind(const sockaddr *addr, socklen_t addr_len) const
bind(2) wrapper.
Definition: sock.cpp:62
virtual bool WaitMany(std::chrono::milliseconds timeout, EventsPerSock &events_per_sock) const
Same as Wait(), but wait on many sockets within the same timeout.
Definition: sock.cpp:163
SOCKET m_socket
Contained socket.
Definition: sock.h:276
Sock()=delete
virtual std::string RecvUntilTerminator(uint8_t terminator, std::chrono::milliseconds timeout, CThreadInterrupt &interrupt, size_t max_data) const
Read from socket until a terminator character is encountered.
Definition: sock.cpp:297
virtual ssize_t Recv(void *buf, size_t len, int flags) const
recv(2) wrapper.
Definition: sock.cpp:52
void Close()
Close m_socket if it is not INVALID_SOCKET.
Definition: sock.cpp:405
virtual bool Wait(std::chrono::milliseconds timeout, Event requested, Event *occurred=nullptr) const
Wait for readiness for input (recv) or output (send).
Definition: sock.cpp:141
static constexpr Event SEND
If passed to Wait(), then it will wait for readiness to send to the socket.
Definition: sock.h:149
virtual int GetSockOpt(int level, int opt_name, void *opt_val, socklen_t *opt_len) const
getsockopt(2) wrapper.
Definition: sock.cpp:98
virtual std::unique_ptr< Sock > Accept(sockaddr *addr, socklen_t *addr_len) const
accept(2) wrapper.
Definition: sock.cpp:72
std::unordered_map< std::shared_ptr< const Sock >, Events, HashSharedPtrSock, EqualSharedPtrSock > EventsPerSock
On which socket to wait for what events in WaitMany().
Definition: sock.h:209
const char * name
Definition: rest.cpp:48
virtual ssize_t Send(const void *data, size_t len, int flags) const
send(2) wrapper.
Definition: sock.cpp:47
size_t operator()(const std::shared_ptr< const Sock > &s) const
Definition: sock.h:181
virtual int SetSockOpt(int level, int opt_name, const void *opt_val, socklen_t opt_len) const
setsockopt(2) wrapper.
Definition: sock.cpp:103
uint8_t Event
Definition: sock.h:139
A helper class for interruptible sleeps.
static constexpr Event ERR
Ignored if passed to Wait(), but could be set in the occurred events if an exceptional condition has ...
Definition: sock.h:155
unsigned int SOCKET
Definition: compat.h:57
bool operator==(SOCKET s) const
Check if the internal socket is equal to s.
Definition: sock.cpp:421
int flags
Definition: bitcoin-tx.cpp:529
virtual bool IsSelectable() const
Check if the underlying socket can be used for select(2) (or the Wait() method).
Definition: sock.cpp:132
static constexpr Event RECV
If passed to Wait(), then it will wait for readiness to read from the socket.
Definition: sock.h:144
Event requested
Definition: sock.h:176
virtual int Listen(int backlog) const
listen(2) wrapper.
Definition: sock.cpp:67
bool operator()(const std::shared_ptr< const Sock > &lhs, const std::shared_ptr< const Sock > &rhs) const
Definition: sock.h:188
virtual void SendComplete(std::span< const unsigned char > data, std::chrono::milliseconds timeout, CThreadInterrupt &interrupt) const
Send the given data, retrying on transient errors.
Definition: sock.cpp:249
RAII helper class that manages a socket and closes it automatically when it goes out of scope...
Definition: sock.h:27
virtual ~Sock()
Destructor, close the socket or do nothing if empty.
Definition: sock.cpp:37
Event occurred
Definition: sock.h:177
virtual bool IsConnected(std::string &errmsg) const
Check if still connected.
Definition: sock.cpp:380
virtual int GetSockName(sockaddr *name, socklen_t *name_len) const
getsockname(2) wrapper.
Definition: sock.cpp:108
Auxiliary requested/occurred events to wait for in WaitMany().
Definition: sock.h:174
Sock & operator=(const Sock &)=delete
Copy assignment operator, disabled because closing the same socket twice is undesirable.
virtual int Connect(const sockaddr *addr, socklen_t addr_len) const
connect(2) wrapper.
Definition: sock.cpp:57
static constexpr auto MAX_WAIT_FOR_IO
Maximum time to wait for I/O readiness.
Definition: sock.h:22