blob: 5f2b1c5028a6128cf0d876056759e24e8c7c67c6 [file] [log] [blame]
Andres AG788aa4a2016-09-14 14:32:09 +01001/**
2 * \file net_sockets.h
3 *
4 * \brief Network communication functions
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti44bfbe32020-08-19 16:54:51 +02007 * Copyright The Mbed TLS Contributors
Bence Szépkúti4e9f7122020-06-05 13:02:18 +02008 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9 *
10 * This file is provided under the Apache License 2.0, or the
11 * GNU General Public License v2.0 or later.
12 *
13 * **********
14 * Apache License 2.0:
Andres AG788aa4a2016-09-14 14:32:09 +010015 *
16 * Licensed under the Apache License, Version 2.0 (the "License"); you may
17 * not use this file except in compliance with the License.
18 * You may obtain a copy of the License at
19 *
20 * http://www.apache.org/licenses/LICENSE-2.0
21 *
22 * Unless required by applicable law or agreed to in writing, software
23 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25 * See the License for the specific language governing permissions and
26 * limitations under the License.
27 *
Bence Szépkúti4e9f7122020-06-05 13:02:18 +020028 * **********
29 *
30 * **********
31 * GNU General Public License v2.0 or later:
32 *
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License along
44 * with this program; if not, write to the Free Software Foundation, Inc.,
45 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
46 *
47 * **********
Andres AG788aa4a2016-09-14 14:32:09 +010048 */
49#ifndef MBEDTLS_NET_SOCKETS_H
50#define MBEDTLS_NET_SOCKETS_H
51
52#if !defined(MBEDTLS_CONFIG_FILE)
53#include "config.h"
54#else
55#include MBEDTLS_CONFIG_FILE
56#endif
57
58#include "ssl.h"
59
60#include <stddef.h>
61#include <stdint.h>
62
63#define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */
64#define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */
65#define MBEDTLS_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */
66#define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */
67#define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */
68#define MBEDTLS_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */
69#define MBEDTLS_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */
70#define MBEDTLS_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */
71#define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052 /**< Failed to get an IP address for the given hostname. */
72#define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 /**< Buffer is too small to hold the data. */
73#define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045 /**< The context is invalid, eg because it was free()ed. */
74
75#define MBEDTLS_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */
76
77#define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */
78#define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */
79
80#ifdef __cplusplus
81extern "C" {
82#endif
83
84/**
85 * Wrapper type for sockets.
86 *
87 * Currently backed by just a file descriptor, but might be more in the future
88 * (eg two file descriptors for combined IPv4 + IPv6 support, or additional
89 * structures for hand-made UDP demultiplexing).
90 */
91typedef struct
92{
93 int fd; /**< The underlying file descriptor */
94}
95mbedtls_net_context;
96
97/**
98 * \brief Initialize a context
99 * Just makes the context ready to be used or freed safely.
100 *
101 * \param ctx Context to initialize
102 */
103void mbedtls_net_init( mbedtls_net_context *ctx );
104
105/**
106 * \brief Initiate a connection with host:port in the given protocol
107 *
108 * \param ctx Socket to use
109 * \param host Host to connect to
110 * \param port Port to connect to
111 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
112 *
113 * \return 0 if successful, or one of:
114 * MBEDTLS_ERR_NET_SOCKET_FAILED,
115 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
116 * MBEDTLS_ERR_NET_CONNECT_FAILED
117 *
118 * \note Sets the socket in connected mode even with UDP.
119 */
120int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto );
121
122/**
123 * \brief Create a receiving socket on bind_ip:port in the chosen
124 * protocol. If bind_ip == NULL, all interfaces are bound.
125 *
126 * \param ctx Socket to use
127 * \param bind_ip IP to bind to, can be NULL
128 * \param port Port number to use
129 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
130 *
131 * \return 0 if successful, or one of:
132 * MBEDTLS_ERR_NET_SOCKET_FAILED,
Gilles Peskine51f5d312021-03-03 12:25:06 +0100133 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
Andres AG788aa4a2016-09-14 14:32:09 +0100134 * MBEDTLS_ERR_NET_BIND_FAILED,
135 * MBEDTLS_ERR_NET_LISTEN_FAILED
136 *
137 * \note Regardless of the protocol, opens the sockets and binds it.
138 * In addition, make the socket listening if protocol is TCP.
139 */
140int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto );
141
142/**
143 * \brief Accept a connection from a remote client
144 *
145 * \param bind_ctx Relevant socket
146 * \param client_ctx Will contain the connected client socket
aitap4dab5512017-01-13 13:22:31 +0400147 * \param client_ip Will contain the client IP address, can be NULL
Andres AG788aa4a2016-09-14 14:32:09 +0100148 * \param buf_size Size of the client_ip buffer
aitap4dab5512017-01-13 13:22:31 +0400149 * \param ip_len Will receive the size of the client IP written,
Ivan Krylov5cb1f092018-03-24 18:48:04 +0300150 * can be NULL if client_ip is null
Andres AG788aa4a2016-09-14 14:32:09 +0100151 *
152 * \return 0 if successful, or
Gilles Peskine51f5d312021-03-03 12:25:06 +0100153 * MBEDTLS_ERR_NET_SOCKET_FAILED,
154 * MBEDTLS_ERR_NET_BIND_FAILED,
Andres AG788aa4a2016-09-14 14:32:09 +0100155 * MBEDTLS_ERR_NET_ACCEPT_FAILED, or
156 * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small,
157 * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to
158 * non-blocking and accept() would block.
159 */
160int mbedtls_net_accept( mbedtls_net_context *bind_ctx,
161 mbedtls_net_context *client_ctx,
162 void *client_ip, size_t buf_size, size_t *ip_len );
163
164/**
165 * \brief Set the socket blocking
166 *
167 * \param ctx Socket to set
168 *
169 * \return 0 if successful, or a non-zero error code
170 */
171int mbedtls_net_set_block( mbedtls_net_context *ctx );
172
173/**
174 * \brief Set the socket non-blocking
175 *
176 * \param ctx Socket to set
177 *
178 * \return 0 if successful, or a non-zero error code
179 */
180int mbedtls_net_set_nonblock( mbedtls_net_context *ctx );
181
182/**
183 * \brief Portable usleep helper
184 *
185 * \param usec Amount of microseconds to sleep
186 *
187 * \note Real amount of time slept will not be less than
188 * select()'s timeout granularity (typically, 10ms).
189 */
190void mbedtls_net_usleep( unsigned long usec );
191
192/**
193 * \brief Read at most 'len' characters. If no error occurs,
194 * the actual amount read is returned.
195 *
196 * \param ctx Socket
197 * \param buf The buffer to write to
198 * \param len Maximum length of the buffer
199 *
200 * \return the number of bytes received,
201 * or a non-zero error code; with a non-blocking socket,
202 * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block.
203 */
204int mbedtls_net_recv( void *ctx, unsigned char *buf, size_t len );
205
206/**
207 * \brief Write at most 'len' characters. If no error occurs,
208 * the actual amount read is returned.
209 *
210 * \param ctx Socket
211 * \param buf The buffer to read from
212 * \param len The length of the buffer
213 *
214 * \return the number of bytes sent,
215 * or a non-zero error code; with a non-blocking socket,
216 * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block.
217 */
218int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len );
219
220/**
221 * \brief Read at most 'len' characters, blocking for at most
222 * 'timeout' seconds. If no error occurs, the actual amount
223 * read is returned.
224 *
Gilles Peskine51917a82021-02-24 19:51:23 +0100225 * \note The current implementation of this function uses
226 * select() and returns an error if the file descriptor
Gilles Peskinef02eeb82021-03-01 11:39:21 +0100227 * is \c FD_SETSIZE or greater.
Gilles Peskine51917a82021-02-24 19:51:23 +0100228 *
Andres AG788aa4a2016-09-14 14:32:09 +0100229 * \param ctx Socket
230 * \param buf The buffer to write to
231 * \param len Maximum length of the buffer
232 * \param timeout Maximum number of milliseconds to wait for data
233 * 0 means no timeout (wait forever)
234 *
Gilles Peskine51f5d312021-03-03 12:25:06 +0100235 * \return The number of bytes received if successful.
236 * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out.
Andres AG788aa4a2016-09-14 14:32:09 +0100237 * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal.
Gilles Peskine51f5d312021-03-03 12:25:06 +0100238 * Another negative error code (MBEDTLS_ERR_NET_xxx)
239 * for other failures.
Andres AG788aa4a2016-09-14 14:32:09 +0100240 *
241 * \note This function will block (until data becomes available or
242 * timeout is reached) even if the socket is set to
243 * non-blocking. Handling timeouts with non-blocking reads
244 * requires a different strategy.
245 */
246int mbedtls_net_recv_timeout( void *ctx, unsigned char *buf, size_t len,
247 uint32_t timeout );
248
249/**
250 * \brief Gracefully shutdown the connection and free associated data
251 *
252 * \param ctx The context to free
253 */
254void mbedtls_net_free( mbedtls_net_context *ctx );
255
256#ifdef __cplusplus
257}
258#endif
259
260#endif /* net_sockets.h */