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 | * |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006-2011, Brainspark B.V. |
Paul Bakker | b96f154 | 2010-07-18 20:36:00 +0000 | [diff] [blame] | 7 | * |
| 8 | * This file is part of PolarSSL (http://www.polarssl.org) |
Paul Bakker | 84f12b7 | 2010-07-18 10:13:04 +0000 | [diff] [blame] | 9 | * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org> |
Paul Bakker | b96f154 | 2010-07-18 20:36:00 +0000 | [diff] [blame] | 10 | * |
Paul Bakker | 77b385e | 2009-07-28 17:23:11 +0000 | [diff] [blame] | 11 | * All rights reserved. |
Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 12 | * |
Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | * GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License along |
| 24 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 25 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 26 | */ |
Paul Bakker | 40e4694 | 2009-01-03 21:51:57 +0000 | [diff] [blame] | 27 | #ifndef POLARSSL_NET_H |
| 28 | #define POLARSSL_NET_H |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 29 | |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 30 | #if !defined(POLARSSL_CONFIG_FILE) |
| 31 | #include "config.h" |
| 32 | #else |
| 33 | #include POLARSSL_CONFIG_FILE |
| 34 | #endif |
| 35 | |
Paul Bakker | 23986e5 | 2011-04-24 08:57:21 +0000 | [diff] [blame] | 36 | #include <string.h> |
| 37 | |
Manuel Pégourié-Gonnard | c8d8e97 | 2014-10-01 15:01:39 +0200 | [diff] [blame^] | 38 | #if defined(POLARSSL_HAVE_TIME) |
| 39 | #if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32) |
| 40 | #include <basetsd.h> |
| 41 | typedef UINT32 uint32_t; |
| 42 | #else |
| 43 | #include <inttypes.h> |
| 44 | #endif |
| 45 | #endif /* POLARSSL_HAVE_TIME */ |
| 46 | |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 47 | #define POLARSSL_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */ |
| 48 | #define POLARSSL_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */ |
| 49 | #define POLARSSL_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */ |
| 50 | #define POLARSSL_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */ |
| 51 | #define POLARSSL_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */ |
| 52 | #define POLARSSL_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */ |
| 53 | #define POLARSSL_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */ |
| 54 | #define POLARSSL_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */ |
Paul Bakker | 831a755 | 2011-05-18 13:32:51 +0000 | [diff] [blame] | 55 | #define POLARSSL_ERR_NET_WANT_READ -0x0052 /**< Connection requires a read call. */ |
| 56 | #define POLARSSL_ERR_NET_WANT_WRITE -0x0054 /**< Connection requires a write call. */ |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 57 | #define POLARSSL_ERR_NET_UNKNOWN_HOST -0x0056 /**< Failed to get an IP address for the given hostname. */ |
| 58 | #define POLARSSL_ERR_NET_TIMEOUT -0x0011 /**< The operation timed out. */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 59 | |
Paul Bakker | 192381a | 2011-05-20 12:31:31 +0000 | [diff] [blame] | 60 | #define POLARSSL_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */ |
| 61 | |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 62 | #define NET_PROTO_TCP 0 /**< The TCP transport protocol */ |
| 63 | #define NET_PROTO_UDP 1 /**< The UDP transport protocol */ |
| 64 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 65 | #ifdef __cplusplus |
| 66 | extern "C" { |
| 67 | #endif |
| 68 | |
| 69 | /** |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 70 | * \brief Initiate a connection with host:port in the given protocol |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 71 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 72 | * \param fd Socket to use |
| 73 | * \param host Host to connect to |
| 74 | * \param port Port to connect to |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 75 | * \param proto Protocol: NET_PROTO_TCP or NET_PROTO_UDP |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 76 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 77 | * \return 0 if successful, or one of: |
Paul Bakker | 40e4694 | 2009-01-03 21:51:57 +0000 | [diff] [blame] | 78 | * POLARSSL_ERR_NET_SOCKET_FAILED, |
| 79 | * POLARSSL_ERR_NET_UNKNOWN_HOST, |
| 80 | * POLARSSL_ERR_NET_CONNECT_FAILED |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 81 | * |
| 82 | * \note Sets the socket in connected mode even with UDP. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 83 | */ |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 84 | int net_connect( int *fd, const char *host, int port, int proto ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 85 | |
| 86 | /** |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 87 | * \brief Create a receiving socket on bind_ip:port in the chosen |
| 88 | * protocol. If bind_ip == NULL, all interfaces are bound. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 89 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 90 | * \param fd Socket to use |
| 91 | * \param bind_ip IP to bind to, can be NULL |
| 92 | * \param port Port number to use |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 93 | * \param proto Protocol: NET_PROTO_TCP or NET_PROTO_UDP |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 94 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 95 | * \return 0 if successful, or one of: |
Paul Bakker | 40e4694 | 2009-01-03 21:51:57 +0000 | [diff] [blame] | 96 | * POLARSSL_ERR_NET_SOCKET_FAILED, |
| 97 | * POLARSSL_ERR_NET_BIND_FAILED, |
| 98 | * POLARSSL_ERR_NET_LISTEN_FAILED |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 99 | * |
| 100 | * \note Regardless of the protocol, opens the sockets and binds it. |
| 101 | * In addition, make the socket listening if protocol is TCP. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 102 | */ |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 103 | int net_bind( int *fd, const char *bind_ip, int port, int proto ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 104 | |
| 105 | /** |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 106 | * \brief Accept a connection from a remote client |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 107 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 108 | * \param bind_fd Relevant socket |
| 109 | * \param client_fd Will contain the connected client socket |
| 110 | * \param client_ip Will contain the client IP address |
Manuel Pégourié-Gonnard | 6e315a9 | 2013-12-13 16:21:25 +0100 | [diff] [blame] | 111 | * Must be at least 4 bytes, or 16 if IPv6 is supported |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 112 | * |
| 113 | * \return 0 if successful, POLARSSL_ERR_NET_ACCEPT_FAILED, or |
Manuel Pégourié-Gonnard | 6e315a9 | 2013-12-13 16:21:25 +0100 | [diff] [blame] | 114 | * POLARSSL_ERR_NET_WANT_READ is bind_fd was set to |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 115 | * non-blocking and accept() is blocking. |
Manuel Pégourié-Gonnard | f5a1312 | 2014-03-23 17:38:16 +0100 | [diff] [blame] | 116 | * |
| 117 | * \note With UDP, connects the bind_fd to the client and just copy |
| 118 | * its descriptor to client_fd. New clients will not be able |
| 119 | * to connect until you close the socket and bind a new one. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 120 | */ |
| 121 | int net_accept( int bind_fd, int *client_fd, void *client_ip ); |
| 122 | |
| 123 | /** |
| 124 | * \brief Set the socket blocking |
| 125 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 126 | * \param fd Socket to set |
| 127 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 128 | * \return 0 if successful, or a non-zero error code |
| 129 | */ |
| 130 | int net_set_block( int fd ); |
| 131 | |
| 132 | /** |
| 133 | * \brief Set the socket non-blocking |
| 134 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 135 | * \param fd Socket to set |
| 136 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 137 | * \return 0 if successful, or a non-zero error code |
| 138 | */ |
| 139 | int net_set_nonblock( int fd ); |
| 140 | |
Manuel Pégourié-Gonnard | 57fa314 | 2014-09-18 11:43:18 +0200 | [diff] [blame] | 141 | #if defined(POLARSSL_HAVE_TIME) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 142 | /** |
| 143 | * \brief Portable usleep helper |
| 144 | * |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 145 | * \param usec Amount of microseconds to sleep |
| 146 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 147 | * \note Real amount of time slept will not be less than |
| 148 | * select()'s timeout granularity (typically, 10ms). |
| 149 | */ |
| 150 | void net_usleep( unsigned long usec ); |
Manuel Pégourié-Gonnard | 57fa314 | 2014-09-18 11:43:18 +0200 | [diff] [blame] | 151 | #endif |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 152 | |
| 153 | /** |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 154 | * \brief Read at most 'len' characters. If no error occurs, |
| 155 | * the actual amount read is returned. |
| 156 | * |
| 157 | * \param ctx Socket |
| 158 | * \param buf The buffer to write to |
| 159 | * \param len Maximum length of the buffer |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 160 | * |
| 161 | * \return This function returns the number of bytes received, |
Paul Bakker | 831a755 | 2011-05-18 13:32:51 +0000 | [diff] [blame] | 162 | * or a non-zero error code; POLARSSL_ERR_NET_WANT_READ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 163 | * indicates read() is blocking. |
| 164 | */ |
Paul Bakker | 23986e5 | 2011-04-24 08:57:21 +0000 | [diff] [blame] | 165 | int net_recv( void *ctx, unsigned char *buf, size_t len ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 166 | |
| 167 | /** |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 168 | * \brief Write at most 'len' characters. If no error occurs, |
| 169 | * the actual amount read is returned. |
| 170 | * |
| 171 | * \param ctx Socket |
Paul Bakker | ff60ee6 | 2010-03-16 21:09:09 +0000 | [diff] [blame] | 172 | * \param buf The buffer to read from |
| 173 | * \param len The length of the buffer |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 174 | * |
| 175 | * \return This function returns the number of bytes sent, |
Paul Bakker | 831a755 | 2011-05-18 13:32:51 +0000 | [diff] [blame] | 176 | * or a non-zero error code; POLARSSL_ERR_NET_WANT_WRITE |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 177 | * indicates write() is blocking. |
| 178 | */ |
Paul Bakker | 39bb418 | 2011-06-21 07:36:43 +0000 | [diff] [blame] | 179 | int net_send( void *ctx, const unsigned char *buf, size_t len ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 180 | |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 181 | #if defined(POLARSSL_HAVE_TIME) |
| 182 | /** |
| 183 | * \brief Read at most 'len' characters, blocking for at most |
| 184 | * 'timeout' seconds. If no error occurs, the actual amount |
| 185 | * read is returned. |
| 186 | * |
| 187 | * \param ctx Socket |
| 188 | * \param buf The buffer to write to |
| 189 | * \param len Maximum length of the buffer |
Manuel Pégourié-Gonnard | c8d8e97 | 2014-10-01 15:01:39 +0200 | [diff] [blame^] | 190 | * \param timeout Maximum number of milliseconds to wait for data |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 191 | * |
| 192 | * \return This function returns the number of bytes received, |
| 193 | * or a non-zero error code: |
| 194 | * POLARSSL_ERR_NET_TIMEOUT if the operation timed out, |
| 195 | * POLARSSL_ERR_NET_WANT_READ if interrupted by a signal. |
| 196 | * |
| 197 | * \note This function will block (until data becomes available or |
| 198 | * timeout is reached) even if the socket is set to |
| 199 | * non-blocking. Handling timeouts with non-blocking reads |
| 200 | * requires a different strategy. |
| 201 | */ |
| 202 | int 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^] | 203 | uint32_t timeout ); |
Manuel Pégourié-Gonnard | 9d9b003 | 2014-09-18 11:22:45 +0200 | [diff] [blame] | 204 | #endif /* POLARSSL_HAVE_TIME */ |
| 205 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 206 | /** |
| 207 | * \brief Gracefully shutdown the connection |
Paul Bakker | 13e2dfe | 2009-07-28 07:18:38 +0000 | [diff] [blame] | 208 | * |
| 209 | * \param fd The socket to close |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 210 | */ |
| 211 | void net_close( int fd ); |
| 212 | |
| 213 | #ifdef __cplusplus |
| 214 | } |
| 215 | #endif |
| 216 | |
| 217 | #endif /* net.h */ |