blob: 1096d66d9a1e41c85b74cb40685ad1cde575417c [file] [log] [blame]
Andres AG788aa4a2016-09-14 14:32:09 +01001/**
2 * \file net_sockets.h
3 *
Simon Butcherca33caf2018-07-18 17:52:14 +01004 * \brief Network sockets abstraction layer to integrate Mbed TLS into a
5 * BSD-style sockets API.
6 *
7 * The network sockets module provides an example integration of the
8 * Mbed TLS library into a BSD sockets implementation. The module is
Simon Butcher5cf4d062018-07-23 14:36:40 +01009 * intended to be an example of how Mbed TLS can be integrated into a
10 * networking stack, as well as to be Mbed TLS's network integration
11 * for its supported platforms.
Simon Butcherca33caf2018-07-18 17:52:14 +010012 *
Simon Butcher5cf4d062018-07-23 14:36:40 +010013 * The module is intended only to be used with the Mbed TLS library and
14 * is not intended to be used by third party application software
15 * directly.
Simon Butcherca33caf2018-07-18 17:52:14 +010016 *
17 * The supported platforms are as follows:
18 * * Microsoft Windows and Windows CE
19 * * POSIX/Unix platforms including Linux, OS X
20 *
Darryl Greena40a1012018-01-05 15:33:17 +000021 */
22/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020023 * Copyright The Mbed TLS Contributors
Andres AG788aa4a2016-09-14 14:32:09 +010024 * SPDX-License-Identifier: Apache-2.0
25 *
26 * Licensed under the Apache License, Version 2.0 (the "License"); you may
27 * not use this file except in compliance with the License.
28 * You may obtain a copy of the License at
29 *
30 * http://www.apache.org/licenses/LICENSE-2.0
31 *
32 * Unless required by applicable law or agreed to in writing, software
33 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
34 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35 * See the License for the specific language governing permissions and
36 * limitations under the License.
Andres AG788aa4a2016-09-14 14:32:09 +010037 */
38#ifndef MBEDTLS_NET_SOCKETS_H
39#define MBEDTLS_NET_SOCKETS_H
Mateusz Starzyk846f0212021-05-19 19:44:07 +020040#include "mbedtls/private_access.h"
Andres AG788aa4a2016-09-14 14:32:09 +010041
Bence Szépkútic662b362021-05-27 11:25:03 +020042#include "mbedtls/build_info.h"
Andres AG788aa4a2016-09-14 14:32:09 +010043
Jaeden Amero6609aef2019-07-04 20:01:14 +010044#include "mbedtls/ssl.h"
Andres AG788aa4a2016-09-14 14:32:09 +010045
46#include <stddef.h>
47#include <stdint.h>
48
Gilles Peskined2971572021-07-26 18:48:10 +020049/** Failed to open a socket. */
50#define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042
51/** The connection to the given server / port failed. */
52#define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044
53/** Binding of the socket failed. */
54#define MBEDTLS_ERR_NET_BIND_FAILED -0x0046
55/** Could not listen on the socket. */
56#define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048
57/** Could not accept the incoming connection. */
58#define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A
59/** Reading information from the socket failed. */
60#define MBEDTLS_ERR_NET_RECV_FAILED -0x004C
61/** Sending information through the socket failed. */
62#define MBEDTLS_ERR_NET_SEND_FAILED -0x004E
63/** Connection was reset by peer. */
64#define MBEDTLS_ERR_NET_CONN_RESET -0x0050
65/** Failed to get an IP address for the given hostname. */
66#define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052
67/** Buffer is too small to hold the data. */
68#define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043
69/** The context is invalid, eg because it was free()ed. */
70#define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045
71/** Polling the net context failed. */
72#define MBEDTLS_ERR_NET_POLL_FAILED -0x0047
73/** Input invalid. */
74#define MBEDTLS_ERR_NET_BAD_INPUT_DATA -0x0049
Andres AG788aa4a2016-09-14 14:32:09 +010075
76#define MBEDTLS_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */
77
78#define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */
79#define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */
80
Hanno Beckere09ca3d2017-05-22 15:06:06 +010081#define MBEDTLS_NET_POLL_READ 1 /**< Used in \c mbedtls_net_poll to check for pending data */
82#define MBEDTLS_NET_POLL_WRITE 2 /**< Used in \c mbedtls_net_poll to check if write possible */
83
Andres AG788aa4a2016-09-14 14:32:09 +010084#ifdef __cplusplus
85extern "C" {
86#endif
87
88/**
89 * Wrapper type for sockets.
90 *
91 * Currently backed by just a file descriptor, but might be more in the future
92 * (eg two file descriptors for combined IPv4 + IPv6 support, or additional
93 * structures for hand-made UDP demultiplexing).
94 */
Gilles Peskine449bd832023-01-11 14:50:10 +010095typedef struct mbedtls_net_context {
Gilles Peskineb11d61e2021-08-04 20:38:59 +020096 /** The underlying file descriptor.
97 *
98 * This field is only guaranteed to be present on POSIX/Unix-like platforms.
99 * On other platforms, it may have a different type, have a different
100 * meaning, or be absent altogether.
101 */
102 int fd;
Andres AG788aa4a2016-09-14 14:32:09 +0100103}
104mbedtls_net_context;
105
106/**
107 * \brief Initialize a context
108 * Just makes the context ready to be used or freed safely.
109 *
110 * \param ctx Context to initialize
111 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100112void mbedtls_net_init(mbedtls_net_context *ctx);
Andres AG788aa4a2016-09-14 14:32:09 +0100113
114/**
115 * \brief Initiate a connection with host:port in the given protocol
116 *
117 * \param ctx Socket to use
118 * \param host Host to connect to
119 * \param port Port to connect to
120 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
121 *
122 * \return 0 if successful, or one of:
123 * MBEDTLS_ERR_NET_SOCKET_FAILED,
124 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
125 * MBEDTLS_ERR_NET_CONNECT_FAILED
126 *
127 * \note Sets the socket in connected mode even with UDP.
128 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100129int mbedtls_net_connect(mbedtls_net_context *ctx, const char *host, const char *port, int proto);
Andres AG788aa4a2016-09-14 14:32:09 +0100130
131/**
132 * \brief Create a receiving socket on bind_ip:port in the chosen
133 * protocol. If bind_ip == NULL, all interfaces are bound.
134 *
135 * \param ctx Socket to use
136 * \param bind_ip IP to bind to, can be NULL
137 * \param port Port number to use
138 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
139 *
140 * \return 0 if successful, or one of:
141 * MBEDTLS_ERR_NET_SOCKET_FAILED,
Gilles Peskine9264e012021-03-03 12:25:06 +0100142 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
Andres AG788aa4a2016-09-14 14:32:09 +0100143 * MBEDTLS_ERR_NET_BIND_FAILED,
144 * MBEDTLS_ERR_NET_LISTEN_FAILED
145 *
146 * \note Regardless of the protocol, opens the sockets and binds it.
147 * In addition, make the socket listening if protocol is TCP.
148 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100149int mbedtls_net_bind(mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto);
Andres AG788aa4a2016-09-14 14:32:09 +0100150
151/**
152 * \brief Accept a connection from a remote client
153 *
154 * \param bind_ctx Relevant socket
155 * \param client_ctx Will contain the connected client socket
aitap4dab5512017-01-13 13:22:31 +0400156 * \param client_ip Will contain the client IP address, can be NULL
Andres AG788aa4a2016-09-14 14:32:09 +0100157 * \param buf_size Size of the client_ip buffer
aitap4dab5512017-01-13 13:22:31 +0400158 * \param ip_len Will receive the size of the client IP written,
Ivan Krylov5cb1f092018-03-24 18:48:04 +0300159 * can be NULL if client_ip is null
Andres AG788aa4a2016-09-14 14:32:09 +0100160 *
161 * \return 0 if successful, or
Gilles Peskine9264e012021-03-03 12:25:06 +0100162 * MBEDTLS_ERR_NET_SOCKET_FAILED,
163 * MBEDTLS_ERR_NET_BIND_FAILED,
Andres AG788aa4a2016-09-14 14:32:09 +0100164 * MBEDTLS_ERR_NET_ACCEPT_FAILED, or
165 * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small,
166 * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to
167 * non-blocking and accept() would block.
168 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100169int mbedtls_net_accept(mbedtls_net_context *bind_ctx,
170 mbedtls_net_context *client_ctx,
171 void *client_ip, size_t buf_size, size_t *ip_len);
Andres AG788aa4a2016-09-14 14:32:09 +0100172
173/**
Hanno Beckere09ca3d2017-05-22 15:06:06 +0100174 * \brief Check and wait for the context to be ready for read/write
175 *
Gilles Peskinee28f2362021-02-24 19:51:23 +0100176 * \note The current implementation of this function uses
177 * select() and returns an error if the file descriptor
Gilles Peskinec8dab5b2021-03-01 11:39:21 +0100178 * is \c FD_SETSIZE or greater.
Gilles Peskinee28f2362021-02-24 19:51:23 +0100179 *
Hanno Beckere09ca3d2017-05-22 15:06:06 +0100180 * \param ctx Socket to check
181 * \param rw Bitflag composed of MBEDTLS_NET_POLL_READ and
182 * MBEDTLS_NET_POLL_WRITE specifying the events
183 * to wait for:
184 * - If MBEDTLS_NET_POLL_READ is set, the function
185 * will return as soon as the net context is available
186 * for reading.
187 * - If MBEDTLS_NET_POLL_WRITE is set, the function
188 * will return as soon as the net context is available
189 * for writing.
190 * \param timeout Maximal amount of time to wait before returning,
191 * in milliseconds. If \c timeout is zero, the
192 * function returns immediately. If \c timeout is
193 * -1u, the function blocks potentially indefinitely.
194 *
195 * \return Bitmask composed of MBEDTLS_NET_POLL_READ/WRITE
196 * on success or timeout, or a negative return code otherwise.
197 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100198int mbedtls_net_poll(mbedtls_net_context *ctx, uint32_t rw, uint32_t timeout);
Hanno Beckere09ca3d2017-05-22 15:06:06 +0100199
200/**
Andres AG788aa4a2016-09-14 14:32:09 +0100201 * \brief Set the socket blocking
202 *
203 * \param ctx Socket to set
204 *
205 * \return 0 if successful, or a non-zero error code
206 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100207int mbedtls_net_set_block(mbedtls_net_context *ctx);
Andres AG788aa4a2016-09-14 14:32:09 +0100208
209/**
210 * \brief Set the socket non-blocking
211 *
212 * \param ctx Socket to set
213 *
214 * \return 0 if successful, or a non-zero error code
215 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100216int mbedtls_net_set_nonblock(mbedtls_net_context *ctx);
Andres AG788aa4a2016-09-14 14:32:09 +0100217
218/**
219 * \brief Portable usleep helper
220 *
221 * \param usec Amount of microseconds to sleep
222 *
223 * \note Real amount of time slept will not be less than
224 * select()'s timeout granularity (typically, 10ms).
225 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100226void mbedtls_net_usleep(unsigned long usec);
Andres AG788aa4a2016-09-14 14:32:09 +0100227
228/**
229 * \brief Read at most 'len' characters. If no error occurs,
230 * the actual amount read is returned.
231 *
232 * \param ctx Socket
233 * \param buf The buffer to write to
234 * \param len Maximum length of the buffer
235 *
236 * \return the number of bytes received,
237 * or a non-zero error code; with a non-blocking socket,
238 * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block.
239 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100240int mbedtls_net_recv(void *ctx, unsigned char *buf, size_t len);
Andres AG788aa4a2016-09-14 14:32:09 +0100241
242/**
243 * \brief Write at most 'len' characters. If no error occurs,
244 * the actual amount read is returned.
245 *
246 * \param ctx Socket
247 * \param buf The buffer to read from
248 * \param len The length of the buffer
249 *
250 * \return the number of bytes sent,
251 * or a non-zero error code; with a non-blocking socket,
252 * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block.
253 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100254int mbedtls_net_send(void *ctx, const unsigned char *buf, size_t len);
Andres AG788aa4a2016-09-14 14:32:09 +0100255
256/**
257 * \brief Read at most 'len' characters, blocking for at most
258 * 'timeout' seconds. If no error occurs, the actual amount
259 * read is returned.
260 *
Gilles Peskinee28f2362021-02-24 19:51:23 +0100261 * \note The current implementation of this function uses
262 * select() and returns an error if the file descriptor
Gilles Peskinec8dab5b2021-03-01 11:39:21 +0100263 * is \c FD_SETSIZE or greater.
Gilles Peskinee28f2362021-02-24 19:51:23 +0100264 *
Andres AG788aa4a2016-09-14 14:32:09 +0100265 * \param ctx Socket
266 * \param buf The buffer to write to
267 * \param len Maximum length of the buffer
268 * \param timeout Maximum number of milliseconds to wait for data
269 * 0 means no timeout (wait forever)
270 *
Gilles Peskine9264e012021-03-03 12:25:06 +0100271 * \return The number of bytes received if successful.
272 * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out.
Andres AG788aa4a2016-09-14 14:32:09 +0100273 * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal.
Gilles Peskine9264e012021-03-03 12:25:06 +0100274 * Another negative error code (MBEDTLS_ERR_NET_xxx)
275 * for other failures.
Andres AG788aa4a2016-09-14 14:32:09 +0100276 *
277 * \note This function will block (until data becomes available or
278 * timeout is reached) even if the socket is set to
279 * non-blocking. Handling timeouts with non-blocking reads
280 * requires a different strategy.
281 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100282int mbedtls_net_recv_timeout(void *ctx, unsigned char *buf, size_t len,
283 uint32_t timeout);
Andres AG788aa4a2016-09-14 14:32:09 +0100284
285/**
David Horstmann4506e7d2023-06-27 12:20:32 +0100286 * \brief Closes down the connection and free associated data
Robert Larsendf8e5112019-08-23 10:55:47 +0200287 *
288 * \param ctx The context to close
David Horstmann4506e7d2023-06-27 12:20:32 +0100289 *
290 * \note This function frees and clears data associated with the
291 * context but does not free the memory pointed to by \p ctx.
292 * This memory is the responsibility of the caller.
Robert Larsendf8e5112019-08-23 10:55:47 +0200293 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100294void mbedtls_net_close(mbedtls_net_context *ctx);
Robert Larsendf8e5112019-08-23 10:55:47 +0200295
296/**
David Horstmann4506e7d2023-06-27 12:20:32 +0100297 * \brief Gracefully shutdown the connection and free associated data
Andres AG788aa4a2016-09-14 14:32:09 +0100298 *
David Horstmann4506e7d2023-06-27 12:20:32 +0100299 * \param ctx The context to free
300 *
301 * \note This function frees and clears data associated with the
302 * context but does not free the memory pointed to by \p ctx.
303 * This memory is the responsibility of the caller.
Andres AG788aa4a2016-09-14 14:32:09 +0100304 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100305void mbedtls_net_free(mbedtls_net_context *ctx);
Andres AG788aa4a2016-09-14 14:32:09 +0100306
307#ifdef __cplusplus
308}
309#endif
310
311#endif /* net_sockets.h */