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