blob: dd7dc6733434bb71c76f48cfd88d20ede5e20cc6 [file] [log] [blame]
Andres AG788aa4a2016-09-14 14:32:09 +01001/**
2 * \file net_sockets.h
3 *
Simon Butcherca33caf2018-07-18 17:52:14 +01004 * \brief Network sockets abstraction layer to integrate Mbed TLS into a
5 * BSD-style sockets API.
6 *
7 * The network sockets module provides an example integration of the
8 * Mbed TLS library into a BSD sockets implementation. The module is
9 * intended to be both an example of how Mbed TLS can be integrated
10 * into a networking stack, and also act as Mbed TLS's integration on
11 * the supported platforms.
12 *
13 * The module is intended only for the use of the Mbed TLS library and
14 * is not intended to be used by third party application software.
15 *
16 * The supported platforms are as follows:
17 * * Microsoft Windows and Windows CE
18 * * POSIX/Unix platforms including Linux, OS X
19 *
Darryl Greena40a1012018-01-05 15:33:17 +000020 */
21/*
Andres AG788aa4a2016-09-14 14:32:09 +010022 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
23 * SPDX-License-Identifier: Apache-2.0
24 *
25 * Licensed under the Apache License, Version 2.0 (the "License"); you may
26 * not use this file except in compliance with the License.
27 * You may obtain a copy of the License at
28 *
29 * http://www.apache.org/licenses/LICENSE-2.0
30 *
31 * Unless required by applicable law or agreed to in writing, software
32 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
33 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34 * See the License for the specific language governing permissions and
35 * limitations under the License.
36 *
37 * This file is part of mbed TLS (https://tls.mbed.org)
38 */
39#ifndef MBEDTLS_NET_SOCKETS_H
40#define MBEDTLS_NET_SOCKETS_H
41
42#if !defined(MBEDTLS_CONFIG_FILE)
43#include "config.h"
44#else
45#include MBEDTLS_CONFIG_FILE
46#endif
47
48#include "ssl.h"
49
50#include <stddef.h>
51#include <stdint.h>
52
53#define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */
54#define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */
55#define MBEDTLS_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */
56#define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */
57#define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */
58#define MBEDTLS_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */
59#define MBEDTLS_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */
60#define MBEDTLS_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */
61#define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052 /**< Failed to get an IP address for the given hostname. */
62#define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 /**< Buffer is too small to hold the data. */
63#define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045 /**< The context is invalid, eg because it was free()ed. */
Hanno Beckere09ca3d2017-05-22 15:06:06 +010064#define MBEDTLS_ERR_NET_POLL_FAILED -0x0047 /**< Polling the net context failed. */
65#define MBEDTLS_ERR_NET_BAD_INPUT_DATA -0x0049 /**< Input invalid. */
Andres AG788aa4a2016-09-14 14:32:09 +010066
67#define MBEDTLS_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */
68
69#define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */
70#define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */
71
Hanno Beckere09ca3d2017-05-22 15:06:06 +010072#define MBEDTLS_NET_POLL_READ 1 /**< Used in \c mbedtls_net_poll to check for pending data */
73#define MBEDTLS_NET_POLL_WRITE 2 /**< Used in \c mbedtls_net_poll to check if write possible */
74
Andres AG788aa4a2016-09-14 14:32:09 +010075#ifdef __cplusplus
76extern "C" {
77#endif
78
79/**
80 * Wrapper type for sockets.
81 *
82 * Currently backed by just a file descriptor, but might be more in the future
83 * (eg two file descriptors for combined IPv4 + IPv6 support, or additional
84 * structures for hand-made UDP demultiplexing).
85 */
86typedef struct
87{
88 int fd; /**< The underlying file descriptor */
89}
90mbedtls_net_context;
91
92/**
93 * \brief Initialize a context
94 * Just makes the context ready to be used or freed safely.
95 *
96 * \param ctx Context to initialize
97 */
98void mbedtls_net_init( mbedtls_net_context *ctx );
99
100/**
101 * \brief Initiate a connection with host:port in the given protocol
102 *
103 * \param ctx Socket to use
104 * \param host Host to connect to
105 * \param port Port to connect to
106 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
107 *
108 * \return 0 if successful, or one of:
109 * MBEDTLS_ERR_NET_SOCKET_FAILED,
110 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
111 * MBEDTLS_ERR_NET_CONNECT_FAILED
112 *
113 * \note Sets the socket in connected mode even with UDP.
114 */
115int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto );
116
117/**
118 * \brief Create a receiving socket on bind_ip:port in the chosen
119 * protocol. If bind_ip == NULL, all interfaces are bound.
120 *
121 * \param ctx Socket to use
122 * \param bind_ip IP to bind to, can be NULL
123 * \param port Port number to use
124 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
125 *
126 * \return 0 if successful, or one of:
127 * MBEDTLS_ERR_NET_SOCKET_FAILED,
128 * MBEDTLS_ERR_NET_BIND_FAILED,
129 * MBEDTLS_ERR_NET_LISTEN_FAILED
130 *
131 * \note Regardless of the protocol, opens the sockets and binds it.
132 * In addition, make the socket listening if protocol is TCP.
133 */
134int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto );
135
136/**
137 * \brief Accept a connection from a remote client
138 *
139 * \param bind_ctx Relevant socket
140 * \param client_ctx Will contain the connected client socket
aitap4dab5512017-01-13 13:22:31 +0400141 * \param client_ip Will contain the client IP address, can be NULL
Andres AG788aa4a2016-09-14 14:32:09 +0100142 * \param buf_size Size of the client_ip buffer
aitap4dab5512017-01-13 13:22:31 +0400143 * \param ip_len Will receive the size of the client IP written,
Ivan Krylov5cb1f092018-03-24 18:48:04 +0300144 * can be NULL if client_ip is null
Andres AG788aa4a2016-09-14 14:32:09 +0100145 *
146 * \return 0 if successful, or
147 * MBEDTLS_ERR_NET_ACCEPT_FAILED, or
148 * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small,
149 * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to
150 * non-blocking and accept() would block.
151 */
152int mbedtls_net_accept( mbedtls_net_context *bind_ctx,
153 mbedtls_net_context *client_ctx,
154 void *client_ip, size_t buf_size, size_t *ip_len );
155
156/**
Hanno Beckere09ca3d2017-05-22 15:06:06 +0100157 * \brief Check and wait for the context to be ready for read/write
158 *
159 * \param ctx Socket to check
160 * \param rw Bitflag composed of MBEDTLS_NET_POLL_READ and
161 * MBEDTLS_NET_POLL_WRITE specifying the events
162 * to wait for:
163 * - If MBEDTLS_NET_POLL_READ is set, the function
164 * will return as soon as the net context is available
165 * for reading.
166 * - If MBEDTLS_NET_POLL_WRITE is set, the function
167 * will return as soon as the net context is available
168 * for writing.
169 * \param timeout Maximal amount of time to wait before returning,
170 * in milliseconds. If \c timeout is zero, the
171 * function returns immediately. If \c timeout is
172 * -1u, the function blocks potentially indefinitely.
173 *
174 * \return Bitmask composed of MBEDTLS_NET_POLL_READ/WRITE
175 * on success or timeout, or a negative return code otherwise.
176 */
177int mbedtls_net_poll( mbedtls_net_context *ctx, uint32_t rw, uint32_t timeout );
178
179/**
Andres AG788aa4a2016-09-14 14:32:09 +0100180 * \brief Set the socket blocking
181 *
182 * \param ctx Socket to set
183 *
184 * \return 0 if successful, or a non-zero error code
185 */
186int mbedtls_net_set_block( mbedtls_net_context *ctx );
187
188/**
189 * \brief Set the socket non-blocking
190 *
191 * \param ctx Socket to set
192 *
193 * \return 0 if successful, or a non-zero error code
194 */
195int mbedtls_net_set_nonblock( mbedtls_net_context *ctx );
196
197/**
198 * \brief Portable usleep helper
199 *
200 * \param usec Amount of microseconds to sleep
201 *
202 * \note Real amount of time slept will not be less than
203 * select()'s timeout granularity (typically, 10ms).
204 */
205void mbedtls_net_usleep( unsigned long usec );
206
207/**
208 * \brief Read at most 'len' characters. If no error occurs,
209 * the actual amount read is returned.
210 *
211 * \param ctx Socket
212 * \param buf The buffer to write to
213 * \param len Maximum length of the buffer
214 *
215 * \return the number of bytes received,
216 * or a non-zero error code; with a non-blocking socket,
217 * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block.
218 */
219int mbedtls_net_recv( void *ctx, unsigned char *buf, size_t len );
220
221/**
222 * \brief Write at most 'len' characters. If no error occurs,
223 * the actual amount read is returned.
224 *
225 * \param ctx Socket
226 * \param buf The buffer to read from
227 * \param len The length of the buffer
228 *
229 * \return the number of bytes sent,
230 * or a non-zero error code; with a non-blocking socket,
231 * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block.
232 */
233int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len );
234
235/**
236 * \brief Read at most 'len' characters, blocking for at most
237 * 'timeout' seconds. If no error occurs, the actual amount
238 * read is returned.
239 *
240 * \param ctx Socket
241 * \param buf The buffer to write to
242 * \param len Maximum length of the buffer
243 * \param timeout Maximum number of milliseconds to wait for data
244 * 0 means no timeout (wait forever)
245 *
246 * \return the number of bytes received,
247 * or a non-zero error code:
248 * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out,
249 * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal.
250 *
251 * \note This function will block (until data becomes available or
252 * timeout is reached) even if the socket is set to
253 * non-blocking. Handling timeouts with non-blocking reads
254 * requires a different strategy.
255 */
256int mbedtls_net_recv_timeout( void *ctx, unsigned char *buf, size_t len,
257 uint32_t timeout );
258
259/**
260 * \brief Gracefully shutdown the connection and free associated data
261 *
262 * \param ctx The context to free
263 */
264void mbedtls_net_free( mbedtls_net_context *ctx );
265
266#ifdef __cplusplus
267}
268#endif
269
270#endif /* net_sockets.h */