blob: 088662e2680dfe0830b5a25beca4c2517938bcb5 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file net.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakkercce9d772011-11-18 14:26:47 +00004 * \brief Network communication functions
Paul Bakker37ca75d2011-01-06 12:28:03 +00005 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00006 * Copyright (C) 2006-2011, ARM Limited, All Rights Reserved
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +00008 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00009 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000010 * 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 Bakker5121ce52009-01-03 21:22:43 +000023 */
Paul Bakker40e46942009-01-03 21:51:57 +000024#ifndef POLARSSL_NET_H
25#define POLARSSL_NET_H
Paul Bakker5121ce52009-01-03 21:22:43 +000026
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +020027#if !defined(POLARSSL_CONFIG_FILE)
28#include "config.h"
29#else
30#include POLARSSL_CONFIG_FILE
31#endif
32
Rich Evans00ab4702015-02-06 13:43:58 +000033#include <stddef.h>
Paul Bakker23986e52011-04-24 08:57:21 +000034
Manuel Pégourié-Gonnardc8d8e972014-10-01 15:01:39 +020035#if defined(POLARSSL_HAVE_TIME)
36#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
37#include <basetsd.h>
38typedef UINT32 uint32_t;
39#else
40#include <inttypes.h>
41#endif
42#endif /* POLARSSL_HAVE_TIME */
43
Paul Bakker9d781402011-05-09 16:17:09 +000044#define POLARSSL_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */
45#define POLARSSL_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */
46#define POLARSSL_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */
47#define POLARSSL_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */
48#define POLARSSL_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */
49#define POLARSSL_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */
50#define POLARSSL_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */
51#define POLARSSL_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */
Paul Bakker831a7552011-05-18 13:32:51 +000052#define POLARSSL_ERR_NET_WANT_READ -0x0052 /**< Connection requires a read call. */
53#define POLARSSL_ERR_NET_WANT_WRITE -0x0054 /**< Connection requires a write call. */
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +020054#define POLARSSL_ERR_NET_UNKNOWN_HOST -0x0056 /**< Failed to get an IP address for the given hostname. */
55#define POLARSSL_ERR_NET_TIMEOUT -0x0011 /**< The operation timed out. */
Paul Bakker5121ce52009-01-03 21:22:43 +000056
Paul Bakker192381a2011-05-20 12:31:31 +000057#define POLARSSL_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */
58
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010059#define NET_PROTO_TCP 0 /**< The TCP transport protocol */
60#define NET_PROTO_UDP 1 /**< The UDP transport protocol */
61
Paul Bakker5121ce52009-01-03 21:22:43 +000062#ifdef __cplusplus
63extern "C" {
64#endif
65
66/**
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010067 * \brief Initiate a connection with host:port in the given protocol
Paul Bakker5121ce52009-01-03 21:22:43 +000068 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +000069 * \param fd Socket to use
70 * \param host Host to connect to
71 * \param port Port to connect to
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010072 * \param proto Protocol: NET_PROTO_TCP or NET_PROTO_UDP
Paul Bakker13e2dfe2009-07-28 07:18:38 +000073 *
Paul Bakker5121ce52009-01-03 21:22:43 +000074 * \return 0 if successful, or one of:
Paul Bakker40e46942009-01-03 21:51:57 +000075 * POLARSSL_ERR_NET_SOCKET_FAILED,
76 * POLARSSL_ERR_NET_UNKNOWN_HOST,
77 * POLARSSL_ERR_NET_CONNECT_FAILED
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010078 *
79 * \note Sets the socket in connected mode even with UDP.
Paul Bakker5121ce52009-01-03 21:22:43 +000080 */
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010081int net_connect( int *fd, const char *host, int port, int proto );
Paul Bakker5121ce52009-01-03 21:22:43 +000082
83/**
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010084 * \brief Create a receiving socket on bind_ip:port in the chosen
85 * protocol. If bind_ip == NULL, all interfaces are bound.
Paul Bakker5121ce52009-01-03 21:22:43 +000086 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +000087 * \param fd Socket to use
88 * \param bind_ip IP to bind to, can be NULL
89 * \param port Port number to use
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010090 * \param proto Protocol: NET_PROTO_TCP or NET_PROTO_UDP
Paul Bakker13e2dfe2009-07-28 07:18:38 +000091 *
Paul Bakker5121ce52009-01-03 21:22:43 +000092 * \return 0 if successful, or one of:
Paul Bakker40e46942009-01-03 21:51:57 +000093 * POLARSSL_ERR_NET_SOCKET_FAILED,
94 * POLARSSL_ERR_NET_BIND_FAILED,
95 * POLARSSL_ERR_NET_LISTEN_FAILED
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010096 *
97 * \note Regardless of the protocol, opens the sockets and binds it.
98 * In addition, make the socket listening if protocol is TCP.
Paul Bakker5121ce52009-01-03 21:22:43 +000099 */
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +0100100int net_bind( int *fd, const char *bind_ip, int port, int proto );
Paul Bakker5121ce52009-01-03 21:22:43 +0000101
102/**
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000103 * \brief Accept a connection from a remote client
Paul Bakker5121ce52009-01-03 21:22:43 +0000104 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000105 * \param bind_fd Relevant socket
106 * \param client_fd Will contain the connected client socket
107 * \param client_ip Will contain the client IP address
Manuel Pégourié-Gonnard6e315a92013-12-13 16:21:25 +0100108 * Must be at least 4 bytes, or 16 if IPv6 is supported
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000109 *
110 * \return 0 if successful, POLARSSL_ERR_NET_ACCEPT_FAILED, or
Manuel Pégourié-Gonnard6e315a92013-12-13 16:21:25 +0100111 * POLARSSL_ERR_NET_WANT_READ is bind_fd was set to
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000112 * non-blocking and accept() is blocking.
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +0100113 *
114 * \note With UDP, connects the bind_fd to the client and just copy
115 * its descriptor to client_fd. New clients will not be able
116 * to connect until you close the socket and bind a new one.
Paul Bakker5121ce52009-01-03 21:22:43 +0000117 */
118int net_accept( int bind_fd, int *client_fd, void *client_ip );
119
120/**
121 * \brief Set the socket blocking
122 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000123 * \param fd Socket to set
124 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000125 * \return 0 if successful, or a non-zero error code
126 */
127int net_set_block( int fd );
128
129/**
130 * \brief Set the socket non-blocking
131 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000132 * \param fd Socket to set
133 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000134 * \return 0 if successful, or a non-zero error code
135 */
136int net_set_nonblock( int fd );
137
Manuel Pégourié-Gonnard57fa3142014-09-18 11:43:18 +0200138#if defined(POLARSSL_HAVE_TIME)
Paul Bakker5121ce52009-01-03 21:22:43 +0000139/**
140 * \brief Portable usleep helper
141 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000142 * \param usec Amount of microseconds to sleep
143 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000144 * \note Real amount of time slept will not be less than
145 * select()'s timeout granularity (typically, 10ms).
146 */
147void net_usleep( unsigned long usec );
Manuel Pégourié-Gonnard57fa3142014-09-18 11:43:18 +0200148#endif
Paul Bakker5121ce52009-01-03 21:22:43 +0000149
150/**
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000151 * \brief Read at most 'len' characters. If no error occurs,
152 * the actual amount read is returned.
153 *
154 * \param ctx Socket
155 * \param buf The buffer to write to
156 * \param len Maximum length of the buffer
Paul Bakker5121ce52009-01-03 21:22:43 +0000157 *
158 * \return This function returns the number of bytes received,
Paul Bakker831a7552011-05-18 13:32:51 +0000159 * or a non-zero error code; POLARSSL_ERR_NET_WANT_READ
Paul Bakker5121ce52009-01-03 21:22:43 +0000160 * indicates read() is blocking.
161 */
Paul Bakker23986e52011-04-24 08:57:21 +0000162int net_recv( void *ctx, unsigned char *buf, size_t len );
Paul Bakker5121ce52009-01-03 21:22:43 +0000163
164/**
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000165 * \brief Write at most 'len' characters. If no error occurs,
166 * the actual amount read is returned.
167 *
168 * \param ctx Socket
Paul Bakkerff60ee62010-03-16 21:09:09 +0000169 * \param buf The buffer to read from
170 * \param len The length of the buffer
Paul Bakker5121ce52009-01-03 21:22:43 +0000171 *
172 * \return This function returns the number of bytes sent,
Paul Bakker831a7552011-05-18 13:32:51 +0000173 * or a non-zero error code; POLARSSL_ERR_NET_WANT_WRITE
Paul Bakker5121ce52009-01-03 21:22:43 +0000174 * indicates write() is blocking.
175 */
Paul Bakker39bb4182011-06-21 07:36:43 +0000176int net_send( void *ctx, const unsigned char *buf, size_t len );
Paul Bakker5121ce52009-01-03 21:22:43 +0000177
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +0200178#if defined(POLARSSL_HAVE_TIME)
179/**
180 * \brief Read at most 'len' characters, blocking for at most
181 * 'timeout' seconds. If no error occurs, the actual amount
182 * read is returned.
183 *
184 * \param ctx Socket
185 * \param buf The buffer to write to
186 * \param len Maximum length of the buffer
Manuel Pégourié-Gonnardc8d8e972014-10-01 15:01:39 +0200187 * \param timeout Maximum number of milliseconds to wait for data
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +0200188 *
189 * \return This function returns the number of bytes received,
190 * or a non-zero error code:
191 * POLARSSL_ERR_NET_TIMEOUT if the operation timed out,
192 * POLARSSL_ERR_NET_WANT_READ if interrupted by a signal.
193 *
194 * \note This function will block (until data becomes available or
195 * timeout is reached) even if the socket is set to
196 * non-blocking. Handling timeouts with non-blocking reads
197 * requires a different strategy.
198 */
199int net_recv_timeout( void *ctx, unsigned char *buf, size_t len,
Manuel Pégourié-Gonnardc8d8e972014-10-01 15:01:39 +0200200 uint32_t timeout );
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +0200201#endif /* POLARSSL_HAVE_TIME */
202
Paul Bakker5121ce52009-01-03 21:22:43 +0000203/**
204 * \brief Gracefully shutdown the connection
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000205 *
206 * \param fd The socket to close
Paul Bakker5121ce52009-01-03 21:22:43 +0000207 */
208void net_close( int fd );
209
210#ifdef __cplusplus
211}
212#endif
213
214#endif /* net.h */