Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file net_sockets.h |
| 3 | * |
| 4 | * \brief Network communication functions |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame^] | 5 | */ |
| 6 | /* |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 7 | * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved |
| 8 | * SPDX-License-Identifier: Apache-2.0 |
| 9 | * |
| 10 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 11 | * not use this file except in compliance with the License. |
| 12 | * You may obtain a copy of the License at |
| 13 | * |
| 14 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | * |
| 16 | * Unless required by applicable law or agreed to in writing, software |
| 17 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 18 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | * See the License for the specific language governing permissions and |
| 20 | * limitations under the License. |
| 21 | * |
| 22 | * This file is part of mbed TLS (https://tls.mbed.org) |
| 23 | */ |
| 24 | #ifndef MBEDTLS_NET_SOCKETS_H |
| 25 | #define MBEDTLS_NET_SOCKETS_H |
| 26 | |
| 27 | #if !defined(MBEDTLS_CONFIG_FILE) |
| 28 | #include "config.h" |
| 29 | #else |
| 30 | #include MBEDTLS_CONFIG_FILE |
| 31 | #endif |
| 32 | |
| 33 | #include "ssl.h" |
| 34 | |
| 35 | #include <stddef.h> |
| 36 | #include <stdint.h> |
| 37 | |
| 38 | #define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */ |
| 39 | #define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */ |
| 40 | #define MBEDTLS_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */ |
| 41 | #define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */ |
| 42 | #define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */ |
| 43 | #define MBEDTLS_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */ |
| 44 | #define MBEDTLS_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */ |
| 45 | #define MBEDTLS_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */ |
| 46 | #define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052 /**< Failed to get an IP address for the given hostname. */ |
| 47 | #define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 /**< Buffer is too small to hold the data. */ |
| 48 | #define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045 /**< The context is invalid, eg because it was free()ed. */ |
| 49 | |
| 50 | #define MBEDTLS_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */ |
| 51 | |
| 52 | #define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */ |
| 53 | #define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */ |
| 54 | |
| 55 | #ifdef __cplusplus |
| 56 | extern "C" { |
| 57 | #endif |
| 58 | |
| 59 | /** |
| 60 | * Wrapper type for sockets. |
| 61 | * |
| 62 | * Currently backed by just a file descriptor, but might be more in the future |
| 63 | * (eg two file descriptors for combined IPv4 + IPv6 support, or additional |
| 64 | * structures for hand-made UDP demultiplexing). |
| 65 | */ |
| 66 | typedef struct |
| 67 | { |
| 68 | int fd; /**< The underlying file descriptor */ |
| 69 | } |
| 70 | mbedtls_net_context; |
| 71 | |
| 72 | /** |
| 73 | * \brief Initialize a context |
| 74 | * Just makes the context ready to be used or freed safely. |
| 75 | * |
| 76 | * \param ctx Context to initialize |
| 77 | */ |
| 78 | void mbedtls_net_init( mbedtls_net_context *ctx ); |
| 79 | |
| 80 | /** |
| 81 | * \brief Initiate a connection with host:port in the given protocol |
| 82 | * |
| 83 | * \param ctx Socket to use |
| 84 | * \param host Host to connect to |
| 85 | * \param port Port to connect to |
| 86 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
| 87 | * |
| 88 | * \return 0 if successful, or one of: |
| 89 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 90 | * MBEDTLS_ERR_NET_UNKNOWN_HOST, |
| 91 | * MBEDTLS_ERR_NET_CONNECT_FAILED |
| 92 | * |
| 93 | * \note Sets the socket in connected mode even with UDP. |
| 94 | */ |
| 95 | int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto ); |
| 96 | |
| 97 | /** |
| 98 | * \brief Create a receiving socket on bind_ip:port in the chosen |
| 99 | * protocol. If bind_ip == NULL, all interfaces are bound. |
| 100 | * |
| 101 | * \param ctx Socket to use |
| 102 | * \param bind_ip IP to bind to, can be NULL |
| 103 | * \param port Port number to use |
| 104 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
| 105 | * |
| 106 | * \return 0 if successful, or one of: |
| 107 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 108 | * MBEDTLS_ERR_NET_BIND_FAILED, |
| 109 | * MBEDTLS_ERR_NET_LISTEN_FAILED |
| 110 | * |
| 111 | * \note Regardless of the protocol, opens the sockets and binds it. |
| 112 | * In addition, make the socket listening if protocol is TCP. |
| 113 | */ |
| 114 | int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto ); |
| 115 | |
| 116 | /** |
| 117 | * \brief Accept a connection from a remote client |
| 118 | * |
| 119 | * \param bind_ctx Relevant socket |
| 120 | * \param client_ctx Will contain the connected client socket |
| 121 | * \param client_ip Will contain the client IP address |
| 122 | * \param buf_size Size of the client_ip buffer |
| 123 | * \param ip_len Will receive the size of the client IP written |
| 124 | * |
| 125 | * \return 0 if successful, or |
| 126 | * MBEDTLS_ERR_NET_ACCEPT_FAILED, or |
| 127 | * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small, |
| 128 | * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to |
| 129 | * non-blocking and accept() would block. |
| 130 | */ |
| 131 | int mbedtls_net_accept( mbedtls_net_context *bind_ctx, |
| 132 | mbedtls_net_context *client_ctx, |
| 133 | void *client_ip, size_t buf_size, size_t *ip_len ); |
| 134 | |
| 135 | /** |
| 136 | * \brief Set the socket blocking |
| 137 | * |
| 138 | * \param ctx Socket to set |
| 139 | * |
| 140 | * \return 0 if successful, or a non-zero error code |
| 141 | */ |
| 142 | int mbedtls_net_set_block( mbedtls_net_context *ctx ); |
| 143 | |
| 144 | /** |
| 145 | * \brief Set the socket non-blocking |
| 146 | * |
| 147 | * \param ctx Socket to set |
| 148 | * |
| 149 | * \return 0 if successful, or a non-zero error code |
| 150 | */ |
| 151 | int mbedtls_net_set_nonblock( mbedtls_net_context *ctx ); |
| 152 | |
| 153 | /** |
| 154 | * \brief Portable usleep helper |
| 155 | * |
| 156 | * \param usec Amount of microseconds to sleep |
| 157 | * |
| 158 | * \note Real amount of time slept will not be less than |
| 159 | * select()'s timeout granularity (typically, 10ms). |
| 160 | */ |
| 161 | void mbedtls_net_usleep( unsigned long usec ); |
| 162 | |
| 163 | /** |
| 164 | * \brief Read at most 'len' characters. If no error occurs, |
| 165 | * the actual amount read is returned. |
| 166 | * |
| 167 | * \param ctx Socket |
| 168 | * \param buf The buffer to write to |
| 169 | * \param len Maximum length of the buffer |
| 170 | * |
| 171 | * \return the number of bytes received, |
| 172 | * or a non-zero error code; with a non-blocking socket, |
| 173 | * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block. |
| 174 | */ |
| 175 | int mbedtls_net_recv( void *ctx, unsigned char *buf, size_t len ); |
| 176 | |
| 177 | /** |
| 178 | * \brief Write at most 'len' characters. If no error occurs, |
| 179 | * the actual amount read is returned. |
| 180 | * |
| 181 | * \param ctx Socket |
| 182 | * \param buf The buffer to read from |
| 183 | * \param len The length of the buffer |
| 184 | * |
| 185 | * \return the number of bytes sent, |
| 186 | * or a non-zero error code; with a non-blocking socket, |
| 187 | * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block. |
| 188 | */ |
| 189 | int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len ); |
| 190 | |
| 191 | /** |
| 192 | * \brief Read at most 'len' characters, blocking for at most |
| 193 | * 'timeout' seconds. If no error occurs, the actual amount |
| 194 | * read is returned. |
| 195 | * |
| 196 | * \param ctx Socket |
| 197 | * \param buf The buffer to write to |
| 198 | * \param len Maximum length of the buffer |
| 199 | * \param timeout Maximum number of milliseconds to wait for data |
| 200 | * 0 means no timeout (wait forever) |
| 201 | * |
| 202 | * \return the number of bytes received, |
| 203 | * or a non-zero error code: |
| 204 | * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out, |
| 205 | * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal. |
| 206 | * |
| 207 | * \note This function will block (until data becomes available or |
| 208 | * timeout is reached) even if the socket is set to |
| 209 | * non-blocking. Handling timeouts with non-blocking reads |
| 210 | * requires a different strategy. |
| 211 | */ |
| 212 | int mbedtls_net_recv_timeout( void *ctx, unsigned char *buf, size_t len, |
| 213 | uint32_t timeout ); |
| 214 | |
| 215 | /** |
| 216 | * \brief Gracefully shutdown the connection and free associated data |
| 217 | * |
| 218 | * \param ctx The context to free |
| 219 | */ |
| 220 | void mbedtls_net_free( mbedtls_net_context *ctx ); |
| 221 | |
| 222 | #ifdef __cplusplus |
| 223 | } |
| 224 | #endif |
| 225 | |
| 226 | #endif /* net_sockets.h */ |