mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-10-30 19:20:40 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			208 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			208 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /**
 | |
|  * \file net.h
 | |
|  *
 | |
|  * \brief Network communication functions
 | |
|  *
 | |
|  *  Copyright (C) 2006-2011, ARM Limited, All Rights Reserved
 | |
|  *
 | |
|  *  This file is part of mbed TLS (https://tls.mbed.org)
 | |
|  *
 | |
|  *  This program is free software; you can redistribute it and/or modify
 | |
|  *  it under the terms of the GNU General Public License as published by
 | |
|  *  the Free Software Foundation; either version 2 of the License, or
 | |
|  *  (at your option) any later version.
 | |
|  *
 | |
|  *  This program is distributed in the hope that it will be useful,
 | |
|  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  *  GNU General Public License for more details.
 | |
|  *
 | |
|  *  You should have received a copy of the GNU General Public License along
 | |
|  *  with this program; if not, write to the Free Software Foundation, Inc.,
 | |
|  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 | |
|  */
 | |
| #ifndef MBEDTLS_NET_H
 | |
| #define MBEDTLS_NET_H
 | |
| 
 | |
| #if !defined(MBEDTLS_CONFIG_FILE)
 | |
| #include "config.h"
 | |
| #else
 | |
| #include MBEDTLS_CONFIG_FILE
 | |
| #endif
 | |
| 
 | |
| #include "ssl.h"
 | |
| 
 | |
| #include <stddef.h>
 | |
| #include <stdint.h>
 | |
| 
 | |
| #define MBEDTLS_ERR_NET_SOCKET_FAILED                     -0x0042  /**< Failed to open a socket. */
 | |
| #define MBEDTLS_ERR_NET_CONNECT_FAILED                    -0x0044  /**< The connection to the given server / port failed. */
 | |
| #define MBEDTLS_ERR_NET_BIND_FAILED                       -0x0046  /**< Binding of the socket failed. */
 | |
| #define MBEDTLS_ERR_NET_LISTEN_FAILED                     -0x0048  /**< Could not listen on the socket. */
 | |
| #define MBEDTLS_ERR_NET_ACCEPT_FAILED                     -0x004A  /**< Could not accept the incoming connection. */
 | |
| #define MBEDTLS_ERR_NET_RECV_FAILED                       -0x004C  /**< Reading information from the socket failed. */
 | |
| #define MBEDTLS_ERR_NET_SEND_FAILED                       -0x004E  /**< Sending information through the socket failed. */
 | |
| #define MBEDTLS_ERR_NET_CONN_RESET                        -0x0050  /**< Connection was reset by peer. */
 | |
| #define MBEDTLS_ERR_NET_UNKNOWN_HOST                      -0x0052  /**< Failed to get an IP address for the given hostname. */
 | |
| 
 | |
| #define MBEDTLS_NET_LISTEN_BACKLOG         10 /**< The backlog that listen() should use. */
 | |
| 
 | |
| #define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */
 | |
| #define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| /**
 | |
|  * \brief          Initiate a connection with host:port in the given protocol
 | |
|  *
 | |
|  * \param fd       Socket to use
 | |
|  * \param host     Host to connect to
 | |
|  * \param port     Port to connect to
 | |
|  * \param proto    Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
 | |
|  *
 | |
|  * \return         0 if successful, or one of:
 | |
|  *                      MBEDTLS_ERR_NET_SOCKET_FAILED,
 | |
|  *                      MBEDTLS_ERR_NET_UNKNOWN_HOST,
 | |
|  *                      MBEDTLS_ERR_NET_CONNECT_FAILED
 | |
|  *
 | |
|  * \note           Sets the socket in connected mode even with UDP.
 | |
|  */
 | |
| int mbedtls_net_connect( int *fd, const char *host, int port, int proto );
 | |
| 
 | |
| /**
 | |
|  * \brief          Create a receiving socket on bind_ip:port in the chosen
 | |
|  *                 protocol. If bind_ip == NULL, all interfaces are bound.
 | |
|  *
 | |
|  * \param fd       Socket to use
 | |
|  * \param bind_ip  IP to bind to, can be NULL
 | |
|  * \param port     Port number to use
 | |
|  * \param proto    Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
 | |
|  *
 | |
|  * \return         0 if successful, or one of:
 | |
|  *                      MBEDTLS_ERR_NET_SOCKET_FAILED,
 | |
|  *                      MBEDTLS_ERR_NET_BIND_FAILED,
 | |
|  *                      MBEDTLS_ERR_NET_LISTEN_FAILED
 | |
|  *
 | |
|  * \note           Regardless of the protocol, opens the sockets and binds it.
 | |
|  *                 In addition, make the socket listening if protocol is TCP.
 | |
|  */
 | |
| int mbedtls_net_bind( int *fd, const char *bind_ip, int port, int proto );
 | |
| 
 | |
| /**
 | |
|  * \brief           Accept a connection from a remote client
 | |
|  *
 | |
|  * \param bind_fd   Relevant socket
 | |
|  * \param client_fd Will contain the connected client socket
 | |
|  * \param client_ip Will contain the client IP address
 | |
|  *                  Must be at least 4 bytes, or 16 if IPv6 is supported
 | |
|  *
 | |
|  * \return          0 if successful, MBEDTLS_ERR_NET_ACCEPT_FAILED, or
 | |
|  *                  MBEDTLS_ERR_SSL_WANT_READ is bind_fd was set to
 | |
|  *                  non-blocking and accept() is blocking.
 | |
|  *
 | |
|  * \note            With UDP, connects the bind_fd to the client and just copy
 | |
|  *                  its descriptor to client_fd. New clients will not be able
 | |
|  *                  to connect until you close the socket and bind a new one.
 | |
|  */
 | |
| int mbedtls_net_accept( int bind_fd, int *client_fd, void *client_ip );
 | |
| 
 | |
| /**
 | |
|  * \brief          Set the socket blocking
 | |
|  *
 | |
|  * \param fd       Socket to set
 | |
|  *
 | |
|  * \return         0 if successful, or a non-zero error code
 | |
|  */
 | |
| int mbedtls_net_set_block( int fd );
 | |
| 
 | |
| /**
 | |
|  * \brief          Set the socket non-blocking
 | |
|  *
 | |
|  * \param fd       Socket to set
 | |
|  *
 | |
|  * \return         0 if successful, or a non-zero error code
 | |
|  */
 | |
| int mbedtls_net_set_nonblock( int fd );
 | |
| 
 | |
| #if defined(MBEDTLS_HAVE_TIME)
 | |
| /**
 | |
|  * \brief          Portable usleep helper
 | |
|  *
 | |
|  * \param usec     Amount of microseconds to sleep
 | |
|  *
 | |
|  * \note           Real amount of time slept will not be less than
 | |
|  *                 select()'s timeout granularity (typically, 10ms).
 | |
|  */
 | |
| void mbedtls_net_usleep( unsigned long usec );
 | |
| #endif
 | |
| 
 | |
| /**
 | |
|  * \brief          Read at most 'len' characters. If no error occurs,
 | |
|  *                 the actual amount read is returned.
 | |
|  *
 | |
|  * \param ctx      Socket
 | |
|  * \param buf      The buffer to write to
 | |
|  * \param len      Maximum length of the buffer
 | |
|  *
 | |
|  * \return         This function returns the number of bytes received,
 | |
|  *                 or a non-zero error code; with a non-blocking socket,
 | |
|  *                 MBEDTLS_ERR_SSL_WANT_READ indicates read() would be
 | |
|  *                 blocking.
 | |
|  */
 | |
| int mbedtls_net_recv( void *ctx, unsigned char *buf, size_t len );
 | |
| 
 | |
| /**
 | |
|  * \brief          Write at most 'len' characters. If no error occurs,
 | |
|  *                 the actual amount read is returned.
 | |
|  *
 | |
|  * \param ctx      Socket
 | |
|  * \param buf      The buffer to read from
 | |
|  * \param len      The length of the buffer
 | |
|  *
 | |
|  * \return         This function returns the number of bytes sent,
 | |
|  *                 or a non-zero error code; with a non-blocking socket,
 | |
|  *                 MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would be
 | |
|  *                 blocking.
 | |
|  */
 | |
| int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len );
 | |
| 
 | |
| #if defined(MBEDTLS_HAVE_TIME)
 | |
| /**
 | |
|  * \brief          Read at most 'len' characters, blocking for at most
 | |
|  *                 'timeout' seconds. If no error occurs, the actual amount
 | |
|  *                 read is returned.
 | |
|  *
 | |
|  * \param ctx      Socket
 | |
|  * \param buf      The buffer to write to
 | |
|  * \param len      Maximum length of the buffer
 | |
|  * \param timeout  Maximum number of milliseconds to wait for data
 | |
|  *
 | |
|  * \return         This function returns the number of bytes received,
 | |
|  *                 or a non-zero error code:
 | |
|  *                 MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out,
 | |
|  *                 MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal.
 | |
|  *
 | |
|  * \note           This function will block (until data becomes available or
 | |
|  *                 timeout is reached) even if the socket is set to
 | |
|  *                 non-blocking. Handling timeouts with non-blocking reads
 | |
|  *                 requires a different strategy.
 | |
|  */
 | |
| int mbedtls_net_recv_timeout( void *ctx, unsigned char *buf, size_t len,
 | |
|                       uint32_t timeout );
 | |
| #endif /* MBEDTLS_HAVE_TIME */
 | |
| 
 | |
| /**
 | |
|  * \brief          Gracefully shutdown the connection
 | |
|  *
 | |
|  * \param fd       The socket to close
 | |
|  */
 | |
| void mbedtls_net_close( int fd );
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif /* net.h */
 | 
