blob: 502b9f453d98edab0f18a5762a511cf9c99e0ee4 [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
42#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Amero6609aef2019-07-04 20:01:14 +010043#include "mbedtls/config.h"
Andres AG788aa4a2016-09-14 14:32:09 +010044#else
45#include MBEDTLS_CONFIG_FILE
46#endif
47
Jaeden Amero6609aef2019-07-04 20:01:14 +010048#include "mbedtls/ssl.h"
Andres AG788aa4a2016-09-14 14:32:09 +010049
50#include <stddef.h>
51#include <stdint.h>
52
53#define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */
54#define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */
55#define MBEDTLS_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */
56#define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */
57#define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */
58#define MBEDTLS_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */
59#define MBEDTLS_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */
60#define MBEDTLS_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */
61#define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052 /**< Failed to get an IP address for the given hostname. */
62#define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 /**< Buffer is too small to hold the data. */
63#define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045 /**< The context is invalid, eg because it was free()ed. */
Hanno Beckere09ca3d2017-05-22 15:06:06 +010064#define MBEDTLS_ERR_NET_POLL_FAILED -0x0047 /**< Polling the net context failed. */
65#define MBEDTLS_ERR_NET_BAD_INPUT_DATA -0x0049 /**< Input invalid. */
Andres AG788aa4a2016-09-14 14:32:09 +010066
67#define MBEDTLS_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */
68
69#define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */
70#define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */
71
Hanno Beckere09ca3d2017-05-22 15:06:06 +010072#define MBEDTLS_NET_POLL_READ 1 /**< Used in \c mbedtls_net_poll to check for pending data */
73#define MBEDTLS_NET_POLL_WRITE 2 /**< Used in \c mbedtls_net_poll to check if write possible */
74
Andres AG788aa4a2016-09-14 14:32:09 +010075#ifdef __cplusplus
76extern "C" {
77#endif
78
79/**
80 * Wrapper type for sockets.
81 *
82 * Currently backed by just a file descriptor, but might be more in the future
83 * (eg two file descriptors for combined IPv4 + IPv6 support, or additional
84 * structures for hand-made UDP demultiplexing).
85 */
Dawid Drozd428cc522018-07-24 10:02:47 +020086typedef struct mbedtls_net_context
Andres AG788aa4a2016-09-14 14:32:09 +010087{
Mateusz Starzyk846f0212021-05-19 19:44:07 +020088 int MBEDTLS_PRIVATE(fd); /**< The underlying file descriptor */
Andres AG788aa4a2016-09-14 14:32:09 +010089}
90mbedtls_net_context;
91
92/**
93 * \brief Initialize a context
94 * Just makes the context ready to be used or freed safely.
95 *
96 * \param ctx Context to initialize
97 */
98void mbedtls_net_init( mbedtls_net_context *ctx );
99
100/**
101 * \brief Initiate a connection with host:port in the given protocol
102 *
103 * \param ctx Socket to use
104 * \param host Host to connect to
105 * \param port Port to connect to
106 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
107 *
108 * \return 0 if successful, or one of:
109 * MBEDTLS_ERR_NET_SOCKET_FAILED,
110 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
111 * MBEDTLS_ERR_NET_CONNECT_FAILED
112 *
113 * \note Sets the socket in connected mode even with UDP.
114 */
115int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto );
116
117/**
118 * \brief Create a receiving socket on bind_ip:port in the chosen
119 * protocol. If bind_ip == NULL, all interfaces are bound.
120 *
121 * \param ctx Socket to use
122 * \param bind_ip IP to bind to, can be NULL
123 * \param port Port number to use
124 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
125 *
126 * \return 0 if successful, or one of:
127 * MBEDTLS_ERR_NET_SOCKET_FAILED,
Gilles Peskine9264e012021-03-03 12:25:06 +0100128 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
Andres AG788aa4a2016-09-14 14:32:09 +0100129 * MBEDTLS_ERR_NET_BIND_FAILED,
130 * MBEDTLS_ERR_NET_LISTEN_FAILED
131 *
132 * \note Regardless of the protocol, opens the sockets and binds it.
133 * In addition, make the socket listening if protocol is TCP.
134 */
135int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto );
136
137/**
138 * \brief Accept a connection from a remote client
139 *
140 * \param bind_ctx Relevant socket
141 * \param client_ctx Will contain the connected client socket
aitap4dab5512017-01-13 13:22:31 +0400142 * \param client_ip Will contain the client IP address, can be NULL
Andres AG788aa4a2016-09-14 14:32:09 +0100143 * \param buf_size Size of the client_ip buffer
aitap4dab5512017-01-13 13:22:31 +0400144 * \param ip_len Will receive the size of the client IP written,
Ivan Krylov5cb1f092018-03-24 18:48:04 +0300145 * can be NULL if client_ip is null
Andres AG788aa4a2016-09-14 14:32:09 +0100146 *
147 * \return 0 if successful, or
Gilles Peskine9264e012021-03-03 12:25:06 +0100148 * MBEDTLS_ERR_NET_SOCKET_FAILED,
149 * MBEDTLS_ERR_NET_BIND_FAILED,
Andres AG788aa4a2016-09-14 14:32:09 +0100150 * MBEDTLS_ERR_NET_ACCEPT_FAILED, or
151 * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small,
152 * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to
153 * non-blocking and accept() would block.
154 */
155int mbedtls_net_accept( mbedtls_net_context *bind_ctx,
156 mbedtls_net_context *client_ctx,
157 void *client_ip, size_t buf_size, size_t *ip_len );
158
159/**
Hanno Beckere09ca3d2017-05-22 15:06:06 +0100160 * \brief Check and wait for the context to be ready for read/write
161 *
Gilles Peskinee28f2362021-02-24 19:51:23 +0100162 * \note The current implementation of this function uses
163 * select() and returns an error if the file descriptor
Gilles Peskinec8dab5b2021-03-01 11:39:21 +0100164 * is \c FD_SETSIZE or greater.
Gilles Peskinee28f2362021-02-24 19:51:23 +0100165 *
Hanno Beckere09ca3d2017-05-22 15:06:06 +0100166 * \param ctx Socket to check
167 * \param rw Bitflag composed of MBEDTLS_NET_POLL_READ and
168 * MBEDTLS_NET_POLL_WRITE specifying the events
169 * to wait for:
170 * - If MBEDTLS_NET_POLL_READ is set, the function
171 * will return as soon as the net context is available
172 * for reading.
173 * - If MBEDTLS_NET_POLL_WRITE is set, the function
174 * will return as soon as the net context is available
175 * for writing.
176 * \param timeout Maximal amount of time to wait before returning,
177 * in milliseconds. If \c timeout is zero, the
178 * function returns immediately. If \c timeout is
179 * -1u, the function blocks potentially indefinitely.
180 *
181 * \return Bitmask composed of MBEDTLS_NET_POLL_READ/WRITE
182 * on success or timeout, or a negative return code otherwise.
183 */
184int mbedtls_net_poll( mbedtls_net_context *ctx, uint32_t rw, uint32_t timeout );
185
186/**
Andres AG788aa4a2016-09-14 14:32:09 +0100187 * \brief Set the socket blocking
188 *
189 * \param ctx Socket to set
190 *
191 * \return 0 if successful, or a non-zero error code
192 */
193int mbedtls_net_set_block( mbedtls_net_context *ctx );
194
195/**
196 * \brief Set the socket non-blocking
197 *
198 * \param ctx Socket to set
199 *
200 * \return 0 if successful, or a non-zero error code
201 */
202int mbedtls_net_set_nonblock( mbedtls_net_context *ctx );
203
204/**
205 * \brief Portable usleep helper
206 *
207 * \param usec Amount of microseconds to sleep
208 *
209 * \note Real amount of time slept will not be less than
210 * select()'s timeout granularity (typically, 10ms).
211 */
212void mbedtls_net_usleep( unsigned long usec );
213
214/**
215 * \brief Read at most 'len' characters. If no error occurs,
216 * the actual amount read is returned.
217 *
218 * \param ctx Socket
219 * \param buf The buffer to write to
220 * \param len Maximum length of the buffer
221 *
222 * \return the number of bytes received,
223 * or a non-zero error code; with a non-blocking socket,
224 * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block.
225 */
226int mbedtls_net_recv( void *ctx, unsigned char *buf, size_t len );
227
228/**
229 * \brief Write 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 read from
234 * \param len The length of the buffer
235 *
236 * \return the number of bytes sent,
237 * or a non-zero error code; with a non-blocking socket,
238 * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block.
239 */
240int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len );
241
242/**
243 * \brief Read at most 'len' characters, blocking for at most
244 * 'timeout' seconds. If no error occurs, the actual amount
245 * read is returned.
246 *
Gilles Peskinee28f2362021-02-24 19:51:23 +0100247 * \note The current implementation of this function uses
248 * select() and returns an error if the file descriptor
Gilles Peskinec8dab5b2021-03-01 11:39:21 +0100249 * is \c FD_SETSIZE or greater.
Gilles Peskinee28f2362021-02-24 19:51:23 +0100250 *
Andres AG788aa4a2016-09-14 14:32:09 +0100251 * \param ctx Socket
252 * \param buf The buffer to write to
253 * \param len Maximum length of the buffer
254 * \param timeout Maximum number of milliseconds to wait for data
255 * 0 means no timeout (wait forever)
256 *
Gilles Peskine9264e012021-03-03 12:25:06 +0100257 * \return The number of bytes received if successful.
258 * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out.
Andres AG788aa4a2016-09-14 14:32:09 +0100259 * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal.
Gilles Peskine9264e012021-03-03 12:25:06 +0100260 * Another negative error code (MBEDTLS_ERR_NET_xxx)
261 * for other failures.
Andres AG788aa4a2016-09-14 14:32:09 +0100262 *
263 * \note This function will block (until data becomes available or
264 * timeout is reached) even if the socket is set to
265 * non-blocking. Handling timeouts with non-blocking reads
266 * requires a different strategy.
267 */
268int mbedtls_net_recv_timeout( void *ctx, unsigned char *buf, size_t len,
269 uint32_t timeout );
270
271/**
Robert Larsendf8e5112019-08-23 10:55:47 +0200272 * \brief Closes down the connection and free associated data
273 *
274 * \param ctx The context to close
275 */
276void mbedtls_net_close( mbedtls_net_context *ctx );
277
278/**
Andres AG788aa4a2016-09-14 14:32:09 +0100279 * \brief Gracefully shutdown the connection and free associated data
280 *
281 * \param ctx The context to free
282 */
283void mbedtls_net_free( mbedtls_net_context *ctx );
284
285#ifdef __cplusplus
286}
287#endif
288
289#endif /* net_sockets.h */