blob: d0c7366034bcfe456bff65b826b95297306db66d [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 *
Paul Bakkercce9d772011-11-18 14:26:47 +00006 * Copyright (C) 2006-2011, Brainspark B.V.
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
8 * This file is part of PolarSSL (http://www.polarssl.org)
Paul Bakker84f12b72010-07-18 10:13:04 +00009 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
Paul Bakkerb96f1542010-07-18 20:36:00 +000010 *
Paul Bakker77b385e2009-07-28 17:23:11 +000011 * All rights reserved.
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000012 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000013 * 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 Bakker5121ce52009-01-03 21:22:43 +000026 */
Paul Bakker40e46942009-01-03 21:51:57 +000027#ifndef POLARSSL_NET_H
28#define POLARSSL_NET_H
Paul Bakker5121ce52009-01-03 21:22:43 +000029
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +020030#if !defined(POLARSSL_CONFIG_FILE)
31#include "config.h"
32#else
33#include POLARSSL_CONFIG_FILE
34#endif
35
Paul Bakker23986e52011-04-24 08:57:21 +000036#include <string.h>
37
Paul Bakker9d781402011-05-09 16:17:09 +000038#define POLARSSL_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */
39#define POLARSSL_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */
40#define POLARSSL_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */
41#define POLARSSL_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */
42#define POLARSSL_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */
43#define POLARSSL_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */
44#define POLARSSL_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */
45#define POLARSSL_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */
Paul Bakker831a7552011-05-18 13:32:51 +000046#define POLARSSL_ERR_NET_WANT_READ -0x0052 /**< Connection requires a read call. */
47#define POLARSSL_ERR_NET_WANT_WRITE -0x0054 /**< Connection requires a write call. */
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +020048#define POLARSSL_ERR_NET_UNKNOWN_HOST -0x0056 /**< Failed to get an IP address for the given hostname. */
49#define POLARSSL_ERR_NET_TIMEOUT -0x0011 /**< The operation timed out. */
Paul Bakker5121ce52009-01-03 21:22:43 +000050
Paul Bakker192381a2011-05-20 12:31:31 +000051#define POLARSSL_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */
52
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010053#define NET_PROTO_TCP 0 /**< The TCP transport protocol */
54#define NET_PROTO_UDP 1 /**< The UDP transport protocol */
55
Paul Bakker5121ce52009-01-03 21:22:43 +000056#ifdef __cplusplus
57extern "C" {
58#endif
59
60/**
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010061 * \brief Initiate a connection with host:port in the given protocol
Paul Bakker5121ce52009-01-03 21:22:43 +000062 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +000063 * \param fd Socket to use
64 * \param host Host to connect to
65 * \param port Port to connect to
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010066 * \param proto Protocol: NET_PROTO_TCP or NET_PROTO_UDP
Paul Bakker13e2dfe2009-07-28 07:18:38 +000067 *
Paul Bakker5121ce52009-01-03 21:22:43 +000068 * \return 0 if successful, or one of:
Paul Bakker40e46942009-01-03 21:51:57 +000069 * POLARSSL_ERR_NET_SOCKET_FAILED,
70 * POLARSSL_ERR_NET_UNKNOWN_HOST,
71 * POLARSSL_ERR_NET_CONNECT_FAILED
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010072 *
73 * \note Sets the socket in connected mode even with UDP.
Paul Bakker5121ce52009-01-03 21:22:43 +000074 */
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010075int net_connect( int *fd, const char *host, int port, int proto );
Paul Bakker5121ce52009-01-03 21:22:43 +000076
77/**
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010078 * \brief Create a receiving socket on bind_ip:port in the chosen
79 * protocol. If bind_ip == NULL, all interfaces are bound.
Paul Bakker5121ce52009-01-03 21:22:43 +000080 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +000081 * \param fd Socket to use
82 * \param bind_ip IP to bind to, can be NULL
83 * \param port Port number to use
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010084 * \param proto Protocol: NET_PROTO_TCP or NET_PROTO_UDP
Paul Bakker13e2dfe2009-07-28 07:18:38 +000085 *
Paul Bakker5121ce52009-01-03 21:22:43 +000086 * \return 0 if successful, or one of:
Paul Bakker40e46942009-01-03 21:51:57 +000087 * POLARSSL_ERR_NET_SOCKET_FAILED,
88 * POLARSSL_ERR_NET_BIND_FAILED,
89 * POLARSSL_ERR_NET_LISTEN_FAILED
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010090 *
91 * \note Regardless of the protocol, opens the sockets and binds it.
92 * In addition, make the socket listening if protocol is TCP.
Paul Bakker5121ce52009-01-03 21:22:43 +000093 */
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +010094int net_bind( int *fd, const char *bind_ip, int port, int proto );
Paul Bakker5121ce52009-01-03 21:22:43 +000095
96/**
Paul Bakker13e2dfe2009-07-28 07:18:38 +000097 * \brief Accept a connection from a remote client
Paul Bakker5121ce52009-01-03 21:22:43 +000098 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +000099 * \param bind_fd Relevant socket
100 * \param client_fd Will contain the connected client socket
101 * \param client_ip Will contain the client IP address
Manuel Pégourié-Gonnard6e315a92013-12-13 16:21:25 +0100102 * Must be at least 4 bytes, or 16 if IPv6 is supported
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000103 *
104 * \return 0 if successful, POLARSSL_ERR_NET_ACCEPT_FAILED, or
Manuel Pégourié-Gonnard6e315a92013-12-13 16:21:25 +0100105 * POLARSSL_ERR_NET_WANT_READ is bind_fd was set to
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000106 * non-blocking and accept() is blocking.
Manuel Pégourié-Gonnardf5a13122014-03-23 17:38:16 +0100107 *
108 * \note With UDP, connects the bind_fd to the client and just copy
109 * its descriptor to client_fd. New clients will not be able
110 * to connect until you close the socket and bind a new one.
Paul Bakker5121ce52009-01-03 21:22:43 +0000111 */
112int net_accept( int bind_fd, int *client_fd, void *client_ip );
113
114/**
115 * \brief Set the socket blocking
116 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000117 * \param fd Socket to set
118 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000119 * \return 0 if successful, or a non-zero error code
120 */
121int net_set_block( int fd );
122
123/**
124 * \brief Set the socket non-blocking
125 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000126 * \param fd Socket to set
127 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000128 * \return 0 if successful, or a non-zero error code
129 */
130int net_set_nonblock( int fd );
131
132/**
133 * \brief Portable usleep helper
134 *
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000135 * \param usec Amount of microseconds to sleep
136 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000137 * \note Real amount of time slept will not be less than
138 * select()'s timeout granularity (typically, 10ms).
139 */
140void net_usleep( unsigned long usec );
141
142/**
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000143 * \brief Read at most 'len' characters. If no error occurs,
144 * the actual amount read is returned.
145 *
146 * \param ctx Socket
147 * \param buf The buffer to write to
148 * \param len Maximum length of the buffer
Paul Bakker5121ce52009-01-03 21:22:43 +0000149 *
150 * \return This function returns the number of bytes received,
Paul Bakker831a7552011-05-18 13:32:51 +0000151 * or a non-zero error code; POLARSSL_ERR_NET_WANT_READ
Paul Bakker5121ce52009-01-03 21:22:43 +0000152 * indicates read() is blocking.
153 */
Paul Bakker23986e52011-04-24 08:57:21 +0000154int net_recv( void *ctx, unsigned char *buf, size_t len );
Paul Bakker5121ce52009-01-03 21:22:43 +0000155
156/**
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000157 * \brief Write at most 'len' characters. If no error occurs,
158 * the actual amount read is returned.
159 *
160 * \param ctx Socket
Paul Bakkerff60ee62010-03-16 21:09:09 +0000161 * \param buf The buffer to read from
162 * \param len The length of the buffer
Paul Bakker5121ce52009-01-03 21:22:43 +0000163 *
164 * \return This function returns the number of bytes sent,
Paul Bakker831a7552011-05-18 13:32:51 +0000165 * or a non-zero error code; POLARSSL_ERR_NET_WANT_WRITE
Paul Bakker5121ce52009-01-03 21:22:43 +0000166 * indicates write() is blocking.
167 */
Paul Bakker39bb4182011-06-21 07:36:43 +0000168int net_send( void *ctx, const unsigned char *buf, size_t len );
Paul Bakker5121ce52009-01-03 21:22:43 +0000169
Manuel Pégourié-Gonnard9d9b0032014-09-18 11:22:45 +0200170#if defined(POLARSSL_HAVE_TIME)
171/**
172 * \brief Read at most 'len' characters, blocking for at most
173 * 'timeout' seconds. If no error occurs, the actual amount
174 * read is returned.
175 *
176 * \param ctx Socket
177 * \param buf The buffer to write to
178 * \param len Maximum length of the buffer
179 * \param timeout Maximum number of seconds to wait for data
180 *
181 * \return This function returns the number of bytes received,
182 * or a non-zero error code:
183 * POLARSSL_ERR_NET_TIMEOUT if the operation timed out,
184 * POLARSSL_ERR_NET_WANT_READ if interrupted by a signal.
185 *
186 * \note This function will block (until data becomes available or
187 * timeout is reached) even if the socket is set to
188 * non-blocking. Handling timeouts with non-blocking reads
189 * requires a different strategy.
190 */
191int net_recv_timeout( void *ctx, unsigned char *buf, size_t len,
192 unsigned char timeout );
193#endif /* POLARSSL_HAVE_TIME */
194
Paul Bakker5121ce52009-01-03 21:22:43 +0000195/**
196 * \brief Gracefully shutdown the connection
Paul Bakker13e2dfe2009-07-28 07:18:38 +0000197 *
198 * \param fd The socket to close
Paul Bakker5121ce52009-01-03 21:22:43 +0000199 */
200void net_close( int fd );
201
202#ifdef __cplusplus
203}
204#endif
205
206#endif /* net.h */