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 | a658a40 | 2015-01-23 09:45:19 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006-2011, ARM Limited, All Rights Reserved |
Paul Bakker | b96f154 | 2010-07-18 20:36:00 +0000 | [diff] [blame] | 7 | * |
Manuel Pégourié-Gonnard | fe44643 | 2015-03-06 13:17:10 +0000 | [diff] [blame] | 8 | * This file is part of mbed TLS (https://tls.mbed.org) |
Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 9 | * |
Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License along |
| 21 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 22 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 23 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 24 | #ifndef MBEDTLS_NET_H |
| 25 | #define MBEDTLS_NET_H |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 26 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 27 | #if !defined(MBEDTLS_CONFIG_FILE) |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 28 | #include "config.h" |
| 29 | #else |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 30 | #include MBEDTLS_CONFIG_FILE |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 31 | #endif |
| 32 | |
Manuel Pégourié-Gonnard | 8836994 | 2015-05-06 16:19:31 +0100 | [diff] [blame] | 33 | #include "ssl.h" |
| 34 | |
Rich Evans | 00ab470 | 2015-02-06 13:43:58 +0000 | [diff] [blame] | 35 | #include <stddef.h> |
Manuel Pégourié-Gonnard | ab22910 | 2015-04-15 11:53:16 +0200 | [diff] [blame] | 36 | #include <stdint.h> |
Manuel Pégourié-Gonnard | c8d8e97 | 2014-10-01 15:01:39 +0200 | [diff] [blame] | 37 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 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. */ |
Manuel Pégourié-Gonnard | 8836994 | 2015-05-06 16:19:31 +0100 | [diff] [blame] | 46 | #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] | 47 | #define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 /**< Buffer is too small to hold the data. */ |
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 | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 59 | * \brief Initiate a connection with host:port in the given protocol |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 60 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 61 | * \param fd Socket to use |
| 62 | * \param host Host to connect to |
| 63 | * \param port Port to connect to |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 64 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 65 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 66 | * \return 0 if successful, or one of: |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 67 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 68 | * MBEDTLS_ERR_NET_UNKNOWN_HOST, |
| 69 | * MBEDTLS_ERR_NET_CONNECT_FAILED |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 70 | * |
| 71 | * \note Sets the socket in connected mode even with UDP. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 72 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 73 | int mbedtls_net_connect( int *fd, const char *host, int port, int proto ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 74 | |
| 75 | /** |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 76 | * \brief Create a receiving socket on bind_ip:port in the chosen |
| 77 | * protocol. If bind_ip == NULL, all interfaces are bound. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 78 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 79 | * \param fd Socket to use |
| 80 | * \param bind_ip IP to bind to, can be NULL |
| 81 | * \param port Port number to use |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 82 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 83 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 84 | * \return 0 if successful, or one of: |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 85 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 86 | * MBEDTLS_ERR_NET_BIND_FAILED, |
| 87 | * MBEDTLS_ERR_NET_LISTEN_FAILED |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 88 | * |
| 89 | * \note Regardless of the protocol, opens the sockets and binds it. |
| 90 | * In addition, make the socket listening if protocol is TCP. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 91 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 92 | int mbedtls_net_bind( int *fd, const char *bind_ip, int port, int proto ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 93 | |
| 94 | /** |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 95 | * \brief Accept a connection from a remote client |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 96 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 97 | * \param bind_fd Relevant socket |
| 98 | * \param client_fd Will contain the connected client socket |
| 99 | * \param client_ip Will contain the client IP address |
Manuel Pégourié-Gonnard | 0b104b0 | 2015-05-14 21:52:40 +0200 | [diff] [blame] | 100 | * \param buf_size Size of the client_ip buffer |
| 101 | * \param ip_len Will receive the size of the client IP written |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 102 | * |
Manuel Pégourié-Gonnard | 0b104b0 | 2015-05-14 21:52:40 +0200 | [diff] [blame] | 103 | * \return 0 if successful, or |
| 104 | * MBEDTLS_ERR_NET_ACCEPT_FAILED, or |
| 105 | * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small, |
| 106 | * 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] | 107 | * non-blocking and accept() would block. |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 108 | * |
| 109 | * \note With UDP, connects the bind_fd to the client and just copy |
| 110 | * its descriptor to client_fd. New clients will not be able |
| 111 | * to connect until you close the socket and bind a new one. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 112 | */ |
Manuel Pégourié-Gonnard | 0b104b0 | 2015-05-14 21:52:40 +0200 | [diff] [blame] | 113 | int mbedtls_net_accept( int bind_fd, int *client_fd, |
| 114 | void *client_ip, size_t buf_size, size_t *ip_len ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 115 | |
| 116 | /** |
| 117 | * \brief Set the socket blocking |
| 118 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 119 | * \param fd Socket to set |
| 120 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 121 | * \return 0 if successful, or a non-zero error code |
| 122 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 123 | int mbedtls_net_set_block( int fd ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 124 | |
| 125 | /** |
| 126 | * \brief Set the socket non-blocking |
| 127 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 128 | * \param fd Socket to set |
| 129 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 130 | * \return 0 if successful, or a non-zero error code |
| 131 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 132 | int mbedtls_net_set_nonblock( int fd ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 133 | |
| 134 | /** |
| 135 | * \brief Portable usleep helper |
| 136 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 137 | * \param usec Amount of microseconds to sleep |
| 138 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 139 | * \note Real amount of time slept will not be less than |
| 140 | * select()'s timeout granularity (typically, 10ms). |
| 141 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 142 | void mbedtls_net_usleep( unsigned long usec ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 143 | |
| 144 | /** |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 145 | * \brief Read at most 'len' characters. If no error occurs, |
| 146 | * the actual amount read is returned. |
| 147 | * |
| 148 | * \param ctx Socket |
| 149 | * \param buf The buffer to write to |
| 150 | * \param len Maximum length of the buffer |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 151 | * |
| 152 | * \return This function returns the number of bytes received, |
Manuel Pégourié-Gonnard | 8836994 | 2015-05-06 16:19:31 +0100 | [diff] [blame] | 153 | * 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] | 154 | * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 155 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 156 | int mbedtls_net_recv( void *ctx, unsigned char *buf, size_t len ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 157 | |
| 158 | /** |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 159 | * \brief Write at most 'len' characters. If no error occurs, |
| 160 | * the actual amount read is returned. |
| 161 | * |
| 162 | * \param ctx Socket |
Paul Bakker | ff60ee6 | 2010-03-16 21:09:09 +0000 | [diff] [blame] | 163 | * \param buf The buffer to read from |
| 164 | * \param len The length of the buffer |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 165 | * |
| 166 | * \return This function returns the number of bytes sent, |
Manuel Pégourié-Gonnard | 8836994 | 2015-05-06 16:19:31 +0100 | [diff] [blame] | 167 | * 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] | 168 | * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 169 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 170 | 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] | 171 | |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 172 | /** |
| 173 | * \brief Read at most 'len' characters, blocking for at most |
| 174 | * 'timeout' seconds. If no error occurs, the actual amount |
| 175 | * read is returned. |
| 176 | * |
| 177 | * \param ctx Socket |
| 178 | * \param buf The buffer to write to |
| 179 | * \param len Maximum length of the buffer |
Manuel Pégourié-Gonnard | c8d8e97 | 2014-10-01 15:01:39 +0200 | [diff] [blame] | 180 | * \param timeout Maximum number of milliseconds to wait for data |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 181 | * |
| 182 | * \return This function returns the number of bytes received, |
| 183 | * or a non-zero error code: |
Manuel Pégourié-Gonnard | 8836994 | 2015-05-06 16:19:31 +0100 | [diff] [blame] | 184 | * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out, |
| 185 | * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal. |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 186 | * |
| 187 | * \note This function will block (until data becomes available or |
| 188 | * timeout is reached) even if the socket is set to |
| 189 | * non-blocking. Handling timeouts with non-blocking reads |
| 190 | * requires a different strategy. |
| 191 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 192 | 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] | 193 | uint32_t timeout ); |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 194 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 195 | /** |
| 196 | * \brief Gracefully shutdown the connection |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 197 | * |
| 198 | * \param fd The socket to close |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 199 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 200 | void mbedtls_net_close( int fd ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 201 | |
| 202 | #ifdef __cplusplus |
| 203 | } |
| 204 | #endif |
| 205 | |
| 206 | #endif /* net.h */ |