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