libcoap 4.3.5-develop-0bcd592
Loading...
Searching...
No Matches
coap_dtls_internal.h
Go to the documentation of this file.
1/*
2 * coap_dtls_internal.h -- (Datagram) Transport Layer Support for libcoap
3 *
4 * Copyright (C) 2016 Olaf Bergmann <bergmann@tzi.org>
5 * Copyright (C) 2017 Jean-Claude Michelou <jcm@spinetix.com>
6 * Copyright (C) 2023-2026 Jon Shallow <supjps-libcoap@jpshallow.com>
7 *
8 * SPDX-License-Identifier: BSD-2-Clause
9 *
10 * This file is part of the CoAP library libcoap. Please see README for terms
11 * of use.
12 */
13
19#ifndef COAP_DTLS_INTERNAL_H_
20#define COAP_DTLS_INTERNAL_H_
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
33/* https://rfc-editor.org/rfc/rfc6347#section-4.2.4.1 */
34#ifndef COAP_DTLS_RETRANSMIT_MS
35#define COAP_DTLS_RETRANSMIT_MS 1000
36#endif
37#ifndef COAP_DTLS_RETRANSMIT_TOTAL_MS
38#define COAP_DTLS_RETRANSMIT_TOTAL_MS 60000
39#endif
40
41#define COAP_DTLS_RETRANSMIT_COAP_TICKS (COAP_DTLS_RETRANSMIT_MS * COAP_TICKS_PER_SECOND / 1000)
42
43/* For RFC9146 Connection ID support */
44#ifndef COAP_DTLS_CID_LENGTH
45#define COAP_DTLS_CID_LENGTH 8
46#endif
47
54
60
70
71#if COAP_SERVER_SUPPORT
83int coap_dtls_context_set_spsk(coap_context_t *coap_context,
84 coap_dtls_spsk_t *setup_data);
85#endif /* COAP_SERVER_SUPPORT */
86
87#if COAP_CLIENT_SUPPORT
99int coap_dtls_context_set_cpsk(coap_context_t *coap_context,
100 coap_dtls_cpsk_t *setup_data);
101#endif /* COAP_CLIENT_SUPPORT */
102
121 const coap_dtls_pki_t *setup_data,
122 const coap_dtls_role_t role);
123
137 const char *ca_file,
138 const char *ca_dir);
139
149
160
166void coap_dtls_free_context(void *dtls_context);
167
168#if COAP_CLIENT_SUPPORT
177void *coap_dtls_new_client_session(coap_session_t *coap_session);
178#endif /* COAP_CLIENT_SUPPORT */
179
180#if COAP_SERVER_SUPPORT
192void *coap_dtls_new_server_session(coap_session_t *coap_session);
193#endif /* COAP_SERVER_SUPPORT */
194
202
210
221ssize_t coap_dtls_send(coap_session_t *coap_session,
222 const uint8_t *data,
223 size_t data_len);
224
232
241
251 coap_tick_t now);
252
261
273 const uint8_t *data,
274 size_t data_len);
275
276#if COAP_SERVER_SUPPORT
289int coap_dtls_hello(coap_session_t *coap_session,
290 const uint8_t *data,
291 size_t data_len);
292#endif /* COAP_SERVER_SUPPORT */
293
307
313void coap_dtls_close(coap_session_t *session);
314
322unsigned int coap_dtls_get_overhead(coap_session_t *coap_session);
323
324#if COAP_CLIENT_SUPPORT
333void *coap_tls_new_client_session(coap_session_t *coap_session);
334#endif /* COAP_CLIENT_SUPPORT */
335
336#if COAP_SERVER_SUPPORT
345void *coap_tls_new_server_session(coap_session_t *coap_session);
346#endif /* COAP_SERVER_SUPPORT */
347
355
366ssize_t coap_tls_write(coap_session_t *coap_session,
367 const uint8_t *data,
368 size_t data_len
369 );
370
381ssize_t coap_tls_read(coap_session_t *coap_session,
382 uint8_t *data,
383 size_t data_len
384 );
385
399
405void coap_tls_close(coap_session_t *session);
406
415 const coap_session_t *coap_session);
416
425 const coap_session_t *coap_session);
426
435 const coap_session_t *coap_session);
436
445 const coap_session_t *coap_session);
446
451void coap_dtls_startup(void);
452
457void coap_dtls_shutdown(void);
458
468 coap_tls_library_t *tls_lib);
469
478 coap_dtls_key_t *key);
479
493 coap_dtls_key_t *key,
494 const coap_dtls_role_t role,
495 int ret);
496
506
509#ifdef __cplusplus
510}
511#endif
512
513#endif /* COAP_DTLS_INTERNAL_H */
uint64_t coap_tick_t
This data type represents internal timer ticks with COAP_TICKS_PER_SECOND resolution.
Definition coap_time.h:149
void coap_tls_free_session(coap_session_t *coap_session)
Terminates the TLS session (may send an ALERT if necessary) then frees the underlying TLS library obj...
coap_tick_t coap_dtls_get_context_timeout(void *dtls_context)
Do all pending retransmits and get next timeout.
const coap_bin_const_t * coap_get_session_client_psk_identity(const coap_session_t *coap_session)
Get the current client's PSK identity.
void coap_dtls_startup(void)
Initialize the underlying (D)TLS Library layer.
Definition coap_notls.c:154
coap_tick_t coap_dtls_get_timeout(coap_session_t *coap_session, coap_tick_t now)
Get next timeout for this session.
int coap_dtls_define_issue(coap_define_issue_key_t type, coap_define_issue_fail_t fail, coap_dtls_key_t *key, const coap_dtls_role_t role, int ret)
Report PKI DEFINE type issue.
Definition coap_dtls.c:165
coap_define_issue_key_t
void coap_dtls_session_update_mtu(coap_session_t *coap_session)
Notify of a change in the CoAP session's MTU, for example after a PMTU update.
void coap_tls_establish(coap_session_t *session)
Layer function interface for layer below TLS accept/connect being established.
Definition coap_dtls.c:295
unsigned int coap_dtls_get_overhead(coap_session_t *coap_session)
Get DTLS overhead over cleartext PDUs.
ssize_t coap_tls_write(coap_session_t *coap_session, const uint8_t *data, size_t data_len)
Send data to a TLS peer, with implicit flush.
void coap_dtls_establish(coap_session_t *session)
Layer function interface for layer below DTLS connect being established.
Definition coap_dtls.c:266
int coap_dtls_set_cid_tuple_change(coap_context_t *context, uint8_t every)
Set the Connection ID client tuple frequency change for testing CIDs.
void coap_dtls_free_session(coap_session_t *coap_session)
Terminates the DTLS session (may send an ALERT if necessary) then frees the underlying TLS library ob...
int coap_dtls_is_context_timeout(void)
Check if timeout is handled per CoAP session or per CoAP context.
Definition coap_notls.c:219
int coap_dtls_handle_timeout(coap_session_t *coap_session)
Handle a DTLS timeout expiration.
int coap_dtls_context_set_pki_root_cas(coap_context_t *coap_context, const char *ca_file, const char *ca_dir)
Set the dtls context's default Root CA information for a client or server.
void * coap_dtls_new_context(coap_context_t *coap_context)
Creates a new DTLS context for the given coap_context.
void coap_dtls_shutdown(void)
Close down the underlying (D)TLS Library layer.
Definition coap_notls.c:166
const coap_bin_const_t * coap_get_session_client_psk_key(const coap_session_t *coap_session)
Get the current client's PSK key.
ssize_t coap_tls_read(coap_session_t *coap_session, uint8_t *data, size_t data_len)
Read some data from a TLS peer.
coap_define_issue_fail_t
void coap_dtls_map_key_type_to_define(const coap_dtls_pki_t *setup_data, coap_dtls_key_t *key)
Map the PKI key definitions to the new DEFINE format.
Definition coap_dtls.c:26
const coap_bin_const_t * coap_get_session_server_psk_key(const coap_session_t *coap_session)
Get the current server's PSK key.
int coap_dtls_context_set_pki(coap_context_t *coap_context, const coap_dtls_pki_t *setup_data, const coap_dtls_role_t role)
Set the DTLS context's default server PKI information.
const coap_bin_const_t * coap_get_session_server_psk_hint(const coap_session_t *coap_session)
Get the current server's PSK identity hint.
void coap_dtls_free_context(void *dtls_context)
Releases the storage allocated for dtls_context.
void coap_tls_close(coap_session_t *session)
Layer function interface for TLS close for a session.
Definition coap_dtls.c:314
void * coap_dtls_get_tls(const coap_session_t *session, coap_tls_library_t *tls_lib)
Get the actual (D)TLS object for the session.
int coap_dtls_receive(coap_session_t *coap_session, const uint8_t *data, size_t data_len)
Handling incoming data from a DTLS peer.
int coap_dtls_context_check_keys_enabled(coap_context_t *coap_context)
Check whether one of the coap_dtls_context_set_{psk|pki}() functions have been called.
void coap_dtls_close(coap_session_t *session)
Layer function interface for DTLS close for a session.
Definition coap_dtls.c:285
int coap_dtls_context_load_pki_trust_store(coap_context_t *coap_context)
Load dtls context's default trusted CAs for a client or server.
ssize_t coap_dtls_send(coap_session_t *coap_session, const uint8_t *data, size_t data_len)
Send data to a DTLS peer.
@ COAP_DEFINE_KEY_PRIVATE
@ COAP_DEFINE_KEY_ROOT_CA
@ COAP_DEFINE_KEY_CA
@ COAP_DEFINE_KEY_PUBLIC
@ COAP_DEFINE_FAIL_NONE
@ COAP_DEFINE_FAIL_NOT_SUPPORTED
@ COAP_DEFINE_FAIL_BAD
coap_dtls_role_t
Definition coap_dtls.h:48
coap_tls_library_t
Definition coap_dtls.h:74
CoAP binary data definition with const data.
Definition coap_str.h:65
The CoAP stack's global state is stored in a coap_context_t object.
The structure used for defining the Client PSK setup data to be used.
Definition coap_dtls.h:414
The structure that holds the PKI key information.
Definition coap_dtls.h:283
The structure used for defining the PKI setup data to be used.
Definition coap_dtls.h:316
The structure used for defining the Server PSK setup data to be used.
Definition coap_dtls.h:505
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...