blob: 0f9b31ebcb7640a1ffba6172822bbd98ad96a500 [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/*
Andres AG788aa4a2016-09-14 14:32:09 +01007 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
8 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
21 *
22 * This file is part of mbed TLS (https://tls.mbed.org)
23 */
24#ifndef MBEDTLS_NET_SOCKETS_H
25#define MBEDTLS_NET_SOCKETS_H
26
27#if !defined(MBEDTLS_CONFIG_FILE)
28#include "config.h"
29#else
30#include MBEDTLS_CONFIG_FILE
31#endif
32
33#include "ssl.h"
34
35#include <stddef.h>
36#include <stdint.h>
37
38#define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042 /**< Failed to open a socket. */
39#define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044 /**< The connection to the given server / port failed. */
40#define MBEDTLS_ERR_NET_BIND_FAILED -0x0046 /**< Binding of the socket failed. */
41#define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048 /**< Could not listen on the socket. */
42#define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A /**< Could not accept the incoming connection. */
43#define MBEDTLS_ERR_NET_RECV_FAILED -0x004C /**< Reading information from the socket failed. */
44#define MBEDTLS_ERR_NET_SEND_FAILED -0x004E /**< Sending information through the socket failed. */
45#define MBEDTLS_ERR_NET_CONN_RESET -0x0050 /**< Connection was reset by peer. */
46#define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052 /**< Failed to get an IP address for the given hostname. */
47#define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 /**< Buffer is too small to hold the data. */
48#define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045 /**< The context is invalid, eg because it was free()ed. */
Hanno Beckere09ca3d2017-05-22 15:06:06 +010049#define MBEDTLS_ERR_NET_POLL_FAILED -0x0047 /**< Polling the net context failed. */
50#define MBEDTLS_ERR_NET_BAD_INPUT_DATA -0x0049 /**< Input invalid. */
Andres AG788aa4a2016-09-14 14:32:09 +010051
52#define MBEDTLS_NET_LISTEN_BACKLOG 10 /**< The backlog that listen() should use. */
53
54#define MBEDTLS_NET_PROTO_TCP 0 /**< The TCP transport protocol */
55#define MBEDTLS_NET_PROTO_UDP 1 /**< The UDP transport protocol */
56
Hanno Beckere09ca3d2017-05-22 15:06:06 +010057#define MBEDTLS_NET_POLL_READ 1 /**< Used in \c mbedtls_net_poll to check for pending data */
58#define MBEDTLS_NET_POLL_WRITE 2 /**< Used in \c mbedtls_net_poll to check if write possible */
59
Andres AG788aa4a2016-09-14 14:32:09 +010060#ifdef __cplusplus
61extern "C" {
62#endif
63
64/**
65 * Wrapper type for sockets.
66 *
67 * Currently backed by just a file descriptor, but might be more in the future
68 * (eg two file descriptors for combined IPv4 + IPv6 support, or additional
69 * structures for hand-made UDP demultiplexing).
70 */
71typedef struct
72{
73 int fd; /**< The underlying file descriptor */
74}
75mbedtls_net_context;
76
77/**
78 * \brief Initialize a context
79 * Just makes the context ready to be used or freed safely.
80 *
81 * \param ctx Context to initialize
82 */
83void mbedtls_net_init( mbedtls_net_context *ctx );
84
85/**
86 * \brief Initiate a connection with host:port in the given protocol
87 *
88 * \param ctx Socket to use
89 * \param host Host to connect to
90 * \param port Port to connect to
91 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
92 *
93 * \return 0 if successful, or one of:
94 * MBEDTLS_ERR_NET_SOCKET_FAILED,
95 * MBEDTLS_ERR_NET_UNKNOWN_HOST,
96 * MBEDTLS_ERR_NET_CONNECT_FAILED
97 *
98 * \note Sets the socket in connected mode even with UDP.
99 */
100int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto );
101
102/**
103 * \brief Create a receiving socket on bind_ip:port in the chosen
104 * protocol. If bind_ip == NULL, all interfaces are bound.
105 *
106 * \param ctx Socket to use
107 * \param bind_ip IP to bind to, can be NULL
108 * \param port Port number to use
109 * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP
110 *
111 * \return 0 if successful, or one of:
112 * MBEDTLS_ERR_NET_SOCKET_FAILED,
113 * MBEDTLS_ERR_NET_BIND_FAILED,
114 * MBEDTLS_ERR_NET_LISTEN_FAILED
115 *
116 * \note Regardless of the protocol, opens the sockets and binds it.
117 * In addition, make the socket listening if protocol is TCP.
118 */
119int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto );
120
121/**
122 * \brief Accept a connection from a remote client
123 *
124 * \param bind_ctx Relevant socket
125 * \param client_ctx Will contain the connected client socket
aitap4dab5512017-01-13 13:22:31 +0400126 * \param client_ip Will contain the client IP address, can be NULL
Andres AG788aa4a2016-09-14 14:32:09 +0100127 * \param buf_size Size of the client_ip buffer
aitap4dab5512017-01-13 13:22:31 +0400128 * \param ip_len Will receive the size of the client IP written,
Ivan Krylov5cb1f092018-03-24 18:48:04 +0300129 * can be NULL if client_ip is null
Andres AG788aa4a2016-09-14 14:32:09 +0100130 *
131 * \return 0 if successful, or
132 * MBEDTLS_ERR_NET_ACCEPT_FAILED, or
133 * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small,
134 * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to
135 * non-blocking and accept() would block.
136 */
137int mbedtls_net_accept( mbedtls_net_context *bind_ctx,
138 mbedtls_net_context *client_ctx,
139 void *client_ip, size_t buf_size, size_t *ip_len );
140
141/**
Hanno Beckere09ca3d2017-05-22 15:06:06 +0100142 * \brief Check and wait for the context to be ready for read/write
143 *
144 * \param ctx Socket to check
145 * \param rw Bitflag composed of MBEDTLS_NET_POLL_READ and
146 * MBEDTLS_NET_POLL_WRITE specifying the events
147 * to wait for:
148 * - If MBEDTLS_NET_POLL_READ is set, the function
149 * will return as soon as the net context is available
150 * for reading.
151 * - If MBEDTLS_NET_POLL_WRITE is set, the function
152 * will return as soon as the net context is available
153 * for writing.
154 * \param timeout Maximal amount of time to wait before returning,
155 * in milliseconds. If \c timeout is zero, the
156 * function returns immediately. If \c timeout is
157 * -1u, the function blocks potentially indefinitely.
158 *
159 * \return Bitmask composed of MBEDTLS_NET_POLL_READ/WRITE
160 * on success or timeout, or a negative return code otherwise.
161 */
162int mbedtls_net_poll( mbedtls_net_context *ctx, uint32_t rw, uint32_t timeout );
163
164/**
Andres AG788aa4a2016-09-14 14:32:09 +0100165 * \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 *
225 * \param ctx Socket
226 * \param buf The buffer to write to
227 * \param len Maximum length of the buffer
228 * \param timeout Maximum number of milliseconds to wait for data
229 * 0 means no timeout (wait forever)
230 *
231 * \return the number of bytes received,
232 * or a non-zero error code:
233 * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out,
234 * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal.
235 *
236 * \note This function will block (until data becomes available or
237 * timeout is reached) even if the socket is set to
238 * non-blocking. Handling timeouts with non-blocking reads
239 * requires a different strategy.
240 */
241int mbedtls_net_recv_timeout( void *ctx, unsigned char *buf, size_t len,
242 uint32_t timeout );
243
244/**
245 * \brief Gracefully shutdown the connection and free associated data
246 *
247 * \param ctx The context to free
248 */
249void mbedtls_net_free( mbedtls_net_context *ctx );
250
251#ifdef __cplusplus
252}
253#endif
254
255#endif /* net_sockets.h */