Bitcoin Core 31.99.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/time.h>
10
11#include <cstdint>
12#include <limits>
13#include <memory>
14#include <span>
15#include <string>
16#include <unordered_map>
17
19
24static constexpr auto MAX_WAIT_FOR_IO = 1s;
25
29class Sock
30{
31public:
32 Sock() = delete;
33
37 explicit Sock(SOCKET s);
38
42 Sock(const Sock&) = delete;
43
47 Sock(Sock&& other);
48
52 virtual ~Sock();
53
57 Sock& operator=(const Sock&) = delete;
58
62 virtual Sock& operator=(Sock&& other);
63
68 [[nodiscard]] virtual ssize_t Send(const void* data, size_t len, int flags) const;
69
74 [[nodiscard]] virtual ssize_t Recv(void* buf, size_t len, int flags) const;
75
80 [[nodiscard]] virtual int Connect(const sockaddr* addr, socklen_t addr_len) const;
81
86 [[nodiscard]] virtual int Bind(const sockaddr* addr, socklen_t addr_len) const;
87
92 [[nodiscard]] virtual int Listen(int backlog) const;
93
100 [[nodiscard]] virtual std::unique_ptr<Sock> Accept(sockaddr* addr, socklen_t* addr_len) const;
101
107 [[nodiscard]] virtual int GetSockOpt(int level,
108 int opt_name,
109 void* opt_val,
110 socklen_t* opt_len) const;
111
117 [[nodiscard]] virtual int SetSockOpt(int level,
118 int opt_name,
119 const void* opt_val,
120 socklen_t opt_len) const;
121
127 [[nodiscard]] virtual int GetSockName(sockaddr* name, socklen_t* name_len) const;
128
133 [[nodiscard]] virtual bool SetNonBlocking() const;
134
139 [[nodiscard]] virtual bool IsSelectable() const;
140
141 using Event = uint8_t;
142
146 static constexpr Event RECV = 0b001;
147
151 static constexpr Event SEND = 0b010;
152
157 static constexpr Event ERR = 0b100;
158
169 [[nodiscard]] virtual bool Wait(std::chrono::milliseconds timeout,
170 Event requested,
171 Event* occurred = nullptr) const;
172
176 struct Events {
177 explicit Events(Event req) : requested{req} {}
180 };
181
183 size_t operator()(const std::shared_ptr<const Sock>& s) const
184 {
185 return s ? s->m_socket : std::numeric_limits<SOCKET>::max();
186 }
187 };
188
190 bool operator()(const std::shared_ptr<const Sock>& lhs,
191 const std::shared_ptr<const Sock>& rhs) const
192 {
193 if (lhs && rhs) {
194 return lhs->m_socket == rhs->m_socket;
195 }
196 if (!lhs && !rhs) {
197 return true;
198 }
199 return false;
200 }
201 };
202
211 using EventsPerSock = std::unordered_map<std::shared_ptr<const Sock>, Events, HashSharedPtrSock, EqualSharedPtrSock>;
212
221 [[nodiscard]] virtual bool WaitMany(std::chrono::milliseconds timeout,
222 EventsPerSock& events_per_sock) const;
223
224 /* Higher level, convenience, methods. These may throw. */
225
234 virtual void SendComplete(std::span<const unsigned char> data,
235 std::chrono::milliseconds timeout,
236 CThreadInterrupt& interrupt) const;
237
241 virtual void SendComplete(std::span<const char> data,
242 std::chrono::milliseconds timeout,
243 CThreadInterrupt& interrupt) const;
244
257 [[nodiscard]] virtual std::string RecvUntilTerminator(uint8_t terminator,
258 std::chrono::milliseconds timeout,
259 CThreadInterrupt& interrupt,
260 size_t max_data) const;
261
267 [[nodiscard]] virtual bool IsConnected(std::string& errmsg) const;
268
272 bool operator==(SOCKET s) const;
273
274protected:
279
280private:
284 void Close();
285};
286
288std::string NetworkErrorString(int err);
289
290#endif // BITCOIN_UTIL_SOCK_H
int flags
Definition: bitcoin-tx.cpp:530
A helper class for interruptible sleeps.
RAII helper class that manages a socket and closes it automatically when it goes out of scope.
Definition: sock.h:30
virtual std::unique_ptr< Sock > Accept(sockaddr *addr, socklen_t *addr_len) const
accept(2) wrapper.
Definition: sock.cpp:77
virtual ssize_t Send(const void *data, size_t len, int flags) const
send(2) wrapper.
Definition: sock.cpp:52
static constexpr Event SEND
If passed to Wait(), then it will wait for readiness to send to the socket.
Definition: sock.h:151
SOCKET m_socket
Contained socket.
Definition: sock.h:278
Sock & operator=(const Sock &)=delete
Copy assignment operator, disabled because closing the same socket twice is undesirable.
virtual int Bind(const sockaddr *addr, socklen_t addr_len) const
bind(2) wrapper.
Definition: sock.cpp:67
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:146
virtual ~Sock()
Destructor, close the socket or do nothing if empty.
Definition: sock.cpp:42
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:254
uint8_t Event
Definition: sock.h:141
Sock(const Sock &)=delete
Copy constructor, disabled because closing the same socket twice is undesirable.
virtual int GetSockName(sockaddr *name, socklen_t *name_len) const
getsockname(2) wrapper.
Definition: sock.cpp:113
void Close()
Close m_socket if it is not INVALID_SOCKET.
Definition: sock.cpp:410
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:168
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:157
virtual bool IsConnected(std::string &errmsg) const
Check if still connected.
Definition: sock.cpp:385
virtual int SetSockOpt(int level, int opt_name, const void *opt_val, socklen_t opt_len) const
setsockopt(2) wrapper.
Definition: sock.cpp:108
static constexpr Event RECV
If passed to Wait(), then it will wait for readiness to read from the socket.
Definition: sock.h:146
virtual int GetSockOpt(int level, int opt_name, void *opt_val, socklen_t *opt_len) const
getsockopt(2) wrapper.
Definition: sock.cpp:103
virtual int Connect(const sockaddr *addr, socklen_t addr_len) const
connect(2) wrapper.
Definition: sock.cpp:62
virtual ssize_t Recv(void *buf, size_t len, int flags) const
recv(2) wrapper.
Definition: sock.cpp:57
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:302
virtual int Listen(int backlog) const
listen(2) wrapper.
Definition: sock.cpp:72
virtual bool SetNonBlocking() const
Set the non-blocking option on the socket.
Definition: sock.cpp:118
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:211
virtual bool IsSelectable() const
Check if the underlying socket can be used for select(2) (or the Wait() method).
Definition: sock.cpp:137
bool operator==(SOCKET s) const
Check if the internal socket is equal to s.
Definition: sock.cpp:426
unsigned int SOCKET
Definition: compat.h:57
const char * name
Definition: rest.cpp:49
static constexpr auto MAX_WAIT_FOR_IO
Maximum time to wait for I/O readiness.
Definition: sock.h:24
std::string NetworkErrorString(int err)
Return readable error string for a network error code.
Definition: sock.cpp:431
bool operator()(const std::shared_ptr< const Sock > &lhs, const std::shared_ptr< const Sock > &rhs) const
Definition: sock.h:190
Auxiliary requested/occurred events to wait for in WaitMany().
Definition: sock.h:176
Event requested
Definition: sock.h:178
Events(Event req)
Definition: sock.h:177
Event occurred
Definition: sock.h:179
size_t operator()(const std::shared_ptr< const Sock > &s) const
Definition: sock.h:183