Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file net_sockets.h |
| 3 | * |
Simon Butcher | ca33caf | 2018-07-18 17:52:14 +0100 | [diff] [blame] | 4 | * \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 Butcher | 5cf4d06 | 2018-07-23 14:36:40 +0100 | [diff] [blame] | 9 | * 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 Butcher | ca33caf | 2018-07-18 17:52:14 +0100 | [diff] [blame] | 12 | * |
Simon Butcher | 5cf4d06 | 2018-07-23 14:36:40 +0100 | [diff] [blame] | 13 | * 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 Butcher | ca33caf | 2018-07-18 17:52:14 +0100 | [diff] [blame] | 16 | * |
| 17 | * The supported platforms are as follows: |
| 18 | * * Microsoft Windows and Windows CE |
| 19 | * * POSIX/Unix platforms including Linux, OS X |
| 20 | * |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 21 | */ |
| 22 | /* |
Bence Szépkúti | a2947ac | 2020-08-19 16:37:36 +0200 | [diff] [blame] | 23 | * Copyright The Mbed TLS Contributors |
Bence Szépkúti | f744bd7 | 2020-06-05 13:02:18 +0200 | [diff] [blame] | 24 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
| 25 | * |
| 26 | * This file is provided under the Apache License 2.0, or the |
| 27 | * GNU General Public License v2.0 or later. |
| 28 | * |
| 29 | * ********** |
| 30 | * Apache License 2.0: |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 31 | * |
| 32 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 33 | * not use this file except in compliance with the License. |
| 34 | * You may obtain a copy of the License at |
| 35 | * |
| 36 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 37 | * |
| 38 | * Unless required by applicable law or agreed to in writing, software |
| 39 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 40 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 41 | * See the License for the specific language governing permissions and |
| 42 | * limitations under the License. |
| 43 | * |
Bence Szépkúti | f744bd7 | 2020-06-05 13:02:18 +0200 | [diff] [blame] | 44 | * ********** |
| 45 | * |
| 46 | * ********** |
| 47 | * GNU General Public License v2.0 or later: |
| 48 | * |
| 49 | * This program is free software; you can redistribute it and/or modify |
| 50 | * it under the terms of the GNU General Public License as published by |
| 51 | * the Free Software Foundation; either version 2 of the License, or |
| 52 | * (at your option) any later version. |
| 53 | * |
| 54 | * This program is distributed in the hope that it will be useful, |
| 55 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 56 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 57 | * GNU General Public License for more details. |
| 58 | * |
| 59 | * You should have received a copy of the GNU General Public License along |
| 60 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 61 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 62 | * |
| 63 | * ********** |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 64 | */ |
| 65 | #ifndef MBEDTLS_NET_SOCKETS_H |
| 66 | #define MBEDTLS_NET_SOCKETS_H |
| 67 | |
| 68 | #if !defined(MBEDTLS_CONFIG_FILE) |
| 69 | #include "config.h" |
| 70 | #else |
| 71 | #include MBEDTLS_CONFIG_FILE |
| 72 | #endif |
| 73 | |
| 74 | #include "ssl.h" |
| 75 | |
| 76 | #include <stddef.h> |
| 77 | #include <stdint.h> |
| 78 | |
Gilles Peskine | 1990fab | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 79 | /** Failed to open a socket. */ |
| 80 | #define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042 |
| 81 | /** The connection to the given server / port failed. */ |
| 82 | #define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044 |
| 83 | /** Binding of the socket failed. */ |
| 84 | #define MBEDTLS_ERR_NET_BIND_FAILED -0x0046 |
| 85 | /** Could not listen on the socket. */ |
| 86 | #define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048 |
| 87 | /** Could not accept the incoming connection. */ |
| 88 | #define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A |
| 89 | /** Reading information from the socket failed. */ |
| 90 | #define MBEDTLS_ERR_NET_RECV_FAILED -0x004C |
| 91 | /** Sending information through the socket failed. */ |
| 92 | #define MBEDTLS_ERR_NET_SEND_FAILED -0x004E |
| 93 | /** Connection was reset by peer. */ |
| 94 | #define MBEDTLS_ERR_NET_CONN_RESET -0x0050 |
| 95 | /** Failed to get an IP address for the given hostname. */ |
| 96 | #define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052 |
| 97 | /** Buffer is too small to hold the data. */ |
| 98 | #define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 |
| 99 | /** The context is invalid, eg because it was free()ed. */ |
| 100 | #define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045 |
| 101 | /** Polling the net context failed. */ |
| 102 | #define MBEDTLS_ERR_NET_POLL_FAILED -0x0047 |
| 103 | /** Input invalid. */ |
| 104 | #define MBEDTLS_ERR_NET_BAD_INPUT_DATA -0x0049 |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 105 | |
| 106 | #define MBEDTLS_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */ |
| 107 | |
| 108 | #define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */ |
| 109 | #define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */ |
| 110 | |
Hanno Becker | e09ca3d | 2017-05-22 15:06:06 +0100 | [diff] [blame] | 111 | #define MBEDTLS_NET_POLL_READ 1 /**< Used in \c mbedtls_net_poll to check for pending data */ |
| 112 | #define MBEDTLS_NET_POLL_WRITE 2 /**< Used in \c mbedtls_net_poll to check if write possible */ |
| 113 | |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 114 | #ifdef __cplusplus |
| 115 | extern "C" { |
| 116 | #endif |
| 117 | |
| 118 | /** |
| 119 | * Wrapper type for sockets. |
| 120 | * |
| 121 | * Currently backed by just a file descriptor, but might be more in the future |
| 122 | * (eg two file descriptors for combined IPv4 + IPv6 support, or additional |
| 123 | * structures for hand-made UDP demultiplexing). |
| 124 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 125 | typedef struct mbedtls_net_context |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 126 | { |
| 127 | int fd; /**< The underlying file descriptor */ |
| 128 | } |
| 129 | mbedtls_net_context; |
| 130 | |
| 131 | /** |
| 132 | * \brief Initialize a context |
| 133 | * Just makes the context ready to be used or freed safely. |
| 134 | * |
| 135 | * \param ctx Context to initialize |
| 136 | */ |
| 137 | void mbedtls_net_init( mbedtls_net_context *ctx ); |
| 138 | |
| 139 | /** |
| 140 | * \brief Initiate a connection with host:port in the given protocol |
| 141 | * |
| 142 | * \param ctx Socket to use |
| 143 | * \param host Host to connect to |
| 144 | * \param port Port to connect to |
| 145 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
| 146 | * |
| 147 | * \return 0 if successful, or one of: |
| 148 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 149 | * MBEDTLS_ERR_NET_UNKNOWN_HOST, |
| 150 | * MBEDTLS_ERR_NET_CONNECT_FAILED |
| 151 | * |
| 152 | * \note Sets the socket in connected mode even with UDP. |
| 153 | */ |
| 154 | int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto ); |
| 155 | |
| 156 | /** |
| 157 | * \brief Create a receiving socket on bind_ip:port in the chosen |
| 158 | * protocol. If bind_ip == NULL, all interfaces are bound. |
| 159 | * |
| 160 | * \param ctx Socket to use |
| 161 | * \param bind_ip IP to bind to, can be NULL |
| 162 | * \param port Port number to use |
| 163 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
| 164 | * |
| 165 | * \return 0 if successful, or one of: |
| 166 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
Gilles Peskine | 388a9d3 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 167 | * MBEDTLS_ERR_NET_UNKNOWN_HOST, |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 168 | * MBEDTLS_ERR_NET_BIND_FAILED, |
| 169 | * MBEDTLS_ERR_NET_LISTEN_FAILED |
| 170 | * |
| 171 | * \note Regardless of the protocol, opens the sockets and binds it. |
| 172 | * In addition, make the socket listening if protocol is TCP. |
| 173 | */ |
| 174 | int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto ); |
| 175 | |
| 176 | /** |
| 177 | * \brief Accept a connection from a remote client |
| 178 | * |
| 179 | * \param bind_ctx Relevant socket |
| 180 | * \param client_ctx Will contain the connected client socket |
aitap | 4dab551 | 2017-01-13 13:22:31 +0400 | [diff] [blame] | 181 | * \param client_ip Will contain the client IP address, can be NULL |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 182 | * \param buf_size Size of the client_ip buffer |
aitap | 4dab551 | 2017-01-13 13:22:31 +0400 | [diff] [blame] | 183 | * \param ip_len Will receive the size of the client IP written, |
Ivan Krylov | 5cb1f09 | 2018-03-24 18:48:04 +0300 | [diff] [blame] | 184 | * can be NULL if client_ip is null |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 185 | * |
| 186 | * \return 0 if successful, or |
Gilles Peskine | 388a9d3 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 187 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 188 | * MBEDTLS_ERR_NET_BIND_FAILED, |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 189 | * MBEDTLS_ERR_NET_ACCEPT_FAILED, or |
| 190 | * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small, |
| 191 | * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to |
| 192 | * non-blocking and accept() would block. |
| 193 | */ |
| 194 | int mbedtls_net_accept( mbedtls_net_context *bind_ctx, |
| 195 | mbedtls_net_context *client_ctx, |
| 196 | void *client_ip, size_t buf_size, size_t *ip_len ); |
| 197 | |
| 198 | /** |
Hanno Becker | e09ca3d | 2017-05-22 15:06:06 +0100 | [diff] [blame] | 199 | * \brief Check and wait for the context to be ready for read/write |
| 200 | * |
Gilles Peskine | 58ec378 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 201 | * \note The current implementation of this function uses |
| 202 | * select() and returns an error if the file descriptor |
Gilles Peskine | 121d7c7 | 2021-03-01 11:39:21 +0100 | [diff] [blame] | 203 | * is \c FD_SETSIZE or greater. |
Gilles Peskine | 58ec378 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 204 | * |
Hanno Becker | e09ca3d | 2017-05-22 15:06:06 +0100 | [diff] [blame] | 205 | * \param ctx Socket to check |
| 206 | * \param rw Bitflag composed of MBEDTLS_NET_POLL_READ and |
| 207 | * MBEDTLS_NET_POLL_WRITE specifying the events |
| 208 | * to wait for: |
| 209 | * - If MBEDTLS_NET_POLL_READ is set, the function |
| 210 | * will return as soon as the net context is available |
| 211 | * for reading. |
| 212 | * - If MBEDTLS_NET_POLL_WRITE is set, the function |
| 213 | * will return as soon as the net context is available |
| 214 | * for writing. |
| 215 | * \param timeout Maximal amount of time to wait before returning, |
| 216 | * in milliseconds. If \c timeout is zero, the |
| 217 | * function returns immediately. If \c timeout is |
| 218 | * -1u, the function blocks potentially indefinitely. |
| 219 | * |
| 220 | * \return Bitmask composed of MBEDTLS_NET_POLL_READ/WRITE |
| 221 | * on success or timeout, or a negative return code otherwise. |
| 222 | */ |
| 223 | int mbedtls_net_poll( mbedtls_net_context *ctx, uint32_t rw, uint32_t timeout ); |
| 224 | |
| 225 | /** |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 226 | * \brief Set the socket blocking |
| 227 | * |
| 228 | * \param ctx Socket to set |
| 229 | * |
| 230 | * \return 0 if successful, or a non-zero error code |
| 231 | */ |
| 232 | int mbedtls_net_set_block( mbedtls_net_context *ctx ); |
| 233 | |
| 234 | /** |
| 235 | * \brief Set the socket non-blocking |
| 236 | * |
| 237 | * \param ctx Socket to set |
| 238 | * |
| 239 | * \return 0 if successful, or a non-zero error code |
| 240 | */ |
| 241 | int mbedtls_net_set_nonblock( mbedtls_net_context *ctx ); |
| 242 | |
| 243 | /** |
| 244 | * \brief Portable usleep helper |
| 245 | * |
| 246 | * \param usec Amount of microseconds to sleep |
| 247 | * |
| 248 | * \note Real amount of time slept will not be less than |
| 249 | * select()'s timeout granularity (typically, 10ms). |
| 250 | */ |
| 251 | void mbedtls_net_usleep( unsigned long usec ); |
| 252 | |
| 253 | /** |
| 254 | * \brief Read at most 'len' characters. If no error occurs, |
| 255 | * the actual amount read is returned. |
| 256 | * |
| 257 | * \param ctx Socket |
| 258 | * \param buf The buffer to write to |
| 259 | * \param len Maximum length of the buffer |
| 260 | * |
| 261 | * \return the number of bytes received, |
| 262 | * or a non-zero error code; with a non-blocking socket, |
| 263 | * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block. |
| 264 | */ |
| 265 | int mbedtls_net_recv( void *ctx, unsigned char *buf, size_t len ); |
| 266 | |
| 267 | /** |
| 268 | * \brief Write at most 'len' characters. If no error occurs, |
| 269 | * the actual amount read is returned. |
| 270 | * |
| 271 | * \param ctx Socket |
| 272 | * \param buf The buffer to read from |
| 273 | * \param len The length of the buffer |
| 274 | * |
| 275 | * \return the number of bytes sent, |
| 276 | * or a non-zero error code; with a non-blocking socket, |
| 277 | * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block. |
| 278 | */ |
| 279 | int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len ); |
| 280 | |
| 281 | /** |
| 282 | * \brief Read at most 'len' characters, blocking for at most |
| 283 | * 'timeout' seconds. If no error occurs, the actual amount |
| 284 | * read is returned. |
| 285 | * |
Gilles Peskine | 58ec378 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 286 | * \note The current implementation of this function uses |
| 287 | * select() and returns an error if the file descriptor |
Gilles Peskine | 121d7c7 | 2021-03-01 11:39:21 +0100 | [diff] [blame] | 288 | * is \c FD_SETSIZE or greater. |
Gilles Peskine | 58ec378 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 289 | * |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 290 | * \param ctx Socket |
| 291 | * \param buf The buffer to write to |
| 292 | * \param len Maximum length of the buffer |
| 293 | * \param timeout Maximum number of milliseconds to wait for data |
| 294 | * 0 means no timeout (wait forever) |
| 295 | * |
Gilles Peskine | 388a9d3 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 296 | * \return The number of bytes received if successful. |
| 297 | * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out. |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 298 | * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal. |
Gilles Peskine | 388a9d3 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 299 | * Another negative error code (MBEDTLS_ERR_NET_xxx) |
| 300 | * for other failures. |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 301 | * |
| 302 | * \note This function will block (until data becomes available or |
| 303 | * timeout is reached) even if the socket is set to |
| 304 | * non-blocking. Handling timeouts with non-blocking reads |
| 305 | * requires a different strategy. |
| 306 | */ |
| 307 | int mbedtls_net_recv_timeout( void *ctx, unsigned char *buf, size_t len, |
| 308 | uint32_t timeout ); |
| 309 | |
| 310 | /** |
| 311 | * \brief Gracefully shutdown the connection and free associated data |
| 312 | * |
| 313 | * \param ctx The context to free |
| 314 | */ |
| 315 | void mbedtls_net_free( mbedtls_net_context *ctx ); |
| 316 | |
| 317 | #ifdef __cplusplus |
| 318 | } |
| 319 | #endif |
| 320 | |
| 321 | #endif /* net_sockets.h */ |