libcoap 4.3.5-develop-19cef11
coap_session.h
Go to the documentation of this file.
1/* coap_session.h -- Session management for libcoap
2 *
3 * Copyright (C) 2017 Jean-Claue Michelou <jcm@spinetix.com>
4 * Copyright (C) 2023-2024 Jon Shallow <supjps-libcoap@jpshallow.com>
5 *
6 * SPDX-License-Identifier: BSD-2-Clause
7 *
8 * This file is part of the CoAP library libcoap. Please see
9 * README for terms of use.
10*/
11
17#ifndef COAP_SESSION_H_
18#define COAP_SESSION_H_
19
31typedef struct coap_fixed_point_t {
32 uint16_t integer_part;
33 uint16_t fractional_part;
36
37#define COAP_PROTO_NOT_RELIABLE(p) ((p)==COAP_PROTO_UDP || (p)==COAP_PROTO_DTLS)
38#define COAP_PROTO_RELIABLE(p) ((p)==COAP_PROTO_TCP || (p)==COAP_PROTO_TLS || \
39 (p)==COAP_PROTO_WS || (p)==COAP_PROTO_WSS)
40
44typedef enum coap_session_type_t {
51
62
70
79
88 coap_nack_reason_t reason);
89
97void coap_session_set_app_data(coap_session_t *session, void *data);
98
108void *coap_session_get_app_data(const coap_session_t *session);
109
122 const coap_session_t *session);
123
136 const coap_session_t *session);
137
146 const coap_session_t *session);
147
156
165
174
182int coap_session_get_ifindex(const coap_session_t *session);
183
197void *coap_session_get_tls(const coap_session_t *session,
198 coap_tls_library_t *tls_lib);
199
208
224
232void coap_session_set_mtu(coap_session_t *session, unsigned mtu);
233
242
257 const coap_address_t *local_if,
258 const coap_address_t *server,
259 coap_proto_t proto
260 );
261
282 const coap_address_t *local_if,
283 const coap_address_t *server,
284 coap_proto_t proto,
285 const char *identity,
286 const uint8_t *key,
287 unsigned key_len
288 );
289
306 const coap_address_t *local_if,
307 const coap_address_t *server,
308 coap_proto_t proto,
309 coap_dtls_cpsk_t *setup_data
310 );
311
320 const coap_session_t *session);
321
330 const coap_session_t *session);
339 const coap_session_t *session);
340
357 const coap_address_t *local_if,
358 const coap_address_t *server,
359 coap_proto_t proto,
360 coap_dtls_pki_t *setup_data
361 );
362
371void coap_session_init_token(coap_session_t *session, size_t length,
372 const uint8_t *token);
373
382void coap_session_new_token(coap_session_t *session, size_t *length,
383 uint8_t *token);
384
392const char *coap_session_str(const coap_session_t *session);
393
407 const coap_address_t *listen_addr,
408 coap_proto_t proto);
409
417void coap_endpoint_set_default_mtu(coap_endpoint_t *endpoint, unsigned mtu);
418
425
436 const coap_address_t *remote_addr,
437 int ifindex);
438
448const char *coap_endpoint_str(const coap_endpoint_t *endpoint);
449
468#define COAP_DEFAULT_ACK_TIMEOUT ((coap_fixed_point_t){2,0})
469
477#define COAP_DEFAULT_ACK_RANDOM_FACTOR ((coap_fixed_point_t){1,500})
478
485#define COAP_DEFAULT_MAX_RETRANSMIT (4U)
486
494#define COAP_DEFAULT_NSTART (1U)
495
502#define COAP_DEFAULT_DEFAULT_LEISURE ((coap_fixed_point_t){5,0})
503
510#define COAP_DEFAULT_PROBING_RATE (1U)
511
519#define COAP_DEFAULT_MAX_PAYLOADS (10U)
520
528#define COAP_DEFAULT_NON_MAX_RETRANSMIT (4U)
529
537#define COAP_DEFAULT_NON_TIMEOUT ((coap_fixed_point_t){2,0})
538
546#define COAP_DEFAULT_NON_RECEIVE_TIMEOUT ((coap_fixed_point_t){4,0})
547
552#define COAP_DEFAULT_MAX_LATENCY (100U)
553
566 coap_fixed_point_t value);
567
580
593 coap_fixed_point_t value);
594
607 const coap_session_t *session);
608
620 uint16_t value);
621
632uint16_t coap_session_get_max_retransmit(const coap_session_t *session);
633
643 uint16_t value);
644
653uint16_t coap_session_get_nstart(const coap_session_t *session);
654
664 coap_fixed_point_t value);
665
675 const coap_session_t *session);
676
685void coap_session_set_probing_rate(coap_session_t *session, uint32_t value);
686
695uint32_t coap_session_get_probing_rate(const coap_session_t *session);
696
707 uint16_t value);
708
718uint16_t coap_session_get_max_payloads(const coap_session_t *session);
719
730 uint16_t value);
731
742
755 coap_fixed_point_t value);
756
769
781 coap_fixed_point_t value);
782
794 const coap_session_t *session);
795
805
812
813#endif /* COAP_SESSION_H */
coap_nack_reason_t
Definition: coap_io.h:62
#define COAP_API
COAP_API coap_mid_t coap_session_send_ping(coap_session_t *session)
Send a ping message for the session.
Definition: coap_session.c:786
void coap_session_set_no_observe_cancel(coap_session_t *session)
Disable client automatically sending observe cancel on session close.
uint16_t coap_session_get_non_max_retransmit(const coap_session_t *session)
Get the CoAP NON maximum retransmit count of missing Q-Block1 or Q-Block2 requested before there is a...
Definition: coap_session.c:318
coap_fixed_point_t coap_session_get_default_leisure(const coap_session_t *session)
Get the CoAP default leisure time RFC7252 DEFAULT_LEISURE.
Definition: coap_session.c:298
void coap_session_set_max_retransmit(coap_session_t *session, uint16_t value)
Set the CoAP maximum retransmit count before failure.
Definition: coap_session.c:174
coap_fixed_point_t coap_session_get_non_timeout(const coap_session_t *session)
Get the CoAP MAX_PAYLOADS limit delay timeout.
Definition: coap_session.c:328
void coap_session_set_ack_random_factor(coap_session_t *session, coap_fixed_point_t value)
Set the CoAP ack randomize factor.
Definition: coap_session.c:158
coap_fixed_point_t coap_session_get_ack_random_factor(const coap_session_t *session)
Get the CoAP ack randomize factor.
Definition: coap_session.c:283
uint16_t coap_session_get_max_retransmit(const coap_session_t *session)
Get the CoAP maximum retransmit before failure.
Definition: coap_session.c:288
void coap_session_set_max_payloads(coap_session_t *session, uint16_t value)
Set the CoAP maximum payloads count of Q-Block1 or Q-Block2 before delay is introduced RFC9177 MAX_PA...
Definition: coap_session.c:212
uint32_t coap_session_get_probing_rate(const coap_session_t *session)
Get the CoAP probing rate when there is no response RFC7252 PROBING_RATE.
Definition: coap_session.c:303
void coap_session_set_ack_timeout(coap_session_t *session, coap_fixed_point_t value)
Set the CoAP initial ack response timeout before the next re-transmit.
Definition: coap_session.c:148
void coap_session_set_non_receive_timeout(coap_session_t *session, coap_fixed_point_t value)
Set the CoAP non receive timeout delay timeout.
Definition: coap_session.c:262
void coap_session_set_nstart(coap_session_t *session, uint16_t value)
Set the CoAP maximum concurrent transmission count of Confirmable messages RFC7252 NSTART.
Definition: coap_session.c:183
void coap_session_set_non_max_retransmit(coap_session_t *session, uint16_t value)
Set the CoAP NON maximum retransmit count of missing Q-Block1 or Q-Block2 requested before there is a...
Definition: coap_session.c:228
uint16_t coap_session_get_max_payloads(const coap_session_t *session)
Get the CoAP maximum payloads count of Q-Block1 or Q-Block2 before delay is introduced RFC9177 MAX_PA...
Definition: coap_session.c:308
void coap_session_set_probing_rate(coap_session_t *session, uint32_t value)
Set the CoAP probing rate when there is no response RFC7252 PROBING_RATE.
Definition: coap_session.c:203
void coap_session_set_default_leisure(coap_session_t *session, coap_fixed_point_t value)
Set the CoAP default leisure time (for multicast) RFC7252 DEFAULT_LEISURE.
Definition: coap_session.c:192
coap_fixed_point_t coap_session_get_non_receive_timeout(const coap_session_t *session)
Get the CoAP non receive timeout delay timeout.
Definition: coap_session.c:338
uint16_t coap_session_get_nstart(const coap_session_t *session)
Get the CoAP maximum concurrent transmission count of Confirmable messages RFC7252 NSTART.
Definition: coap_session.c:293
coap_fixed_point_t coap_session_get_ack_timeout(const coap_session_t *session)
Get the CoAP initial ack response timeout before the next re-transmit.
Definition: coap_session.c:278
void coap_session_set_non_timeout(coap_session_t *session, coap_fixed_point_t value)
Set the CoAP non timeout delay timeout.
Definition: coap_session.c:244
coap_tls_library_t
Definition: coap_dtls.h:70
const char * coap_endpoint_str(const coap_endpoint_t *endpoint)
Get endpoint description.
const char * coap_session_str(const coap_session_t *session)
Get session description.
int coap_mid_t
coap_mid_t is used to store the CoAP Message ID of a CoAP PDU.
Definition: coap_pdu.h:263
coap_proto_t
CoAP protocol types.
Definition: coap_pdu.h:312
COAP_API coap_session_t * coap_session_reference(coap_session_t *session)
Increment reference counter on a session.
Definition: coap_session.c:348
coap_session_type_t
coap_session_type_t values
Definition: coap_session.h:44
COAP_API void coap_session_disconnected(coap_session_t *session, coap_nack_reason_t reason)
Notify session that it has failed.
Definition: coap_session.c:932
void coap_session_set_mtu(coap_session_t *session, unsigned mtu)
Set the session MTU.
Definition: coap_session.c:683
coap_context_t * coap_session_get_context(const coap_session_t *session)
Get the session context.
const coap_address_t * coap_session_get_addr_local(const coap_session_t *session)
Get the local IP address and port from the session.
coap_proto_t coap_session_get_proto(const coap_session_t *session)
Get the session protocol type.
const coap_bin_const_t * coap_session_get_psk_key(const coap_session_t *session)
Get the session's current pre-shared key (PSK).
void * coap_session_get_tls(const coap_session_t *session, coap_tls_library_t *tls_lib)
Get the session TLS security ptr (TLS type dependent)
coap_session_state_t coap_session_get_state(const coap_session_t *session)
Get the session state.
coap_session_state_t
coap_session_state_t values
Definition: coap_session.h:55
COAP_API coap_session_t * coap_new_client_session_pki(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_pki_t *setup_data)
Creates a new client session to the designated server with PKI credentials.
void coap_session_init_token(coap_session_t *session, size_t length, const uint8_t *token)
Initializes the token value to use as a starting point.
void coap_session_new_token(coap_session_t *session, size_t *length, uint8_t *token)
Creates a new token for use.
COAP_API coap_session_t * coap_new_client_session(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto)
Creates a new client session to the designated server.
const coap_bin_const_t * coap_session_get_psk_identity(const coap_session_t *session)
Get the server session's current PSK identity (PSK).
void coap_session_set_app_data(coap_session_t *session, void *data)
Stores data with the given session.
Definition: coap_session.c:399
coap_session_t * coap_session_get_by_peer(const coap_context_t *context, const coap_address_t *remote_addr, int ifindex)
Get the session associated with the specified remote_addr and index.
void coap_endpoint_set_default_mtu(coap_endpoint_t *endpoint, unsigned mtu)
Set the endpoint's default MTU.
const coap_bin_const_t * coap_session_get_psk_hint(const coap_session_t *session)
Get the server session's current Identity Hint (PSK).
COAP_API coap_endpoint_t * coap_new_endpoint(coap_context_t *context, const coap_address_t *listen_addr, coap_proto_t proto)
Create a new endpoint for communicating with peers.
const coap_address_t * coap_session_get_addr_remote(const coap_session_t *session)
Get the remote IP address and port from the session.
int coap_session_set_type_client(coap_session_t *session)
Set the session type to client.
COAP_API void coap_free_endpoint(coap_endpoint_t *endpoint)
Release an endpoint and all the structures associated with it.
COAP_API void coap_session_release(coap_session_t *session)
Decrement reference counter on a session.
Definition: coap_session.c:362
COAP_API coap_session_t * coap_new_client_session_psk2(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_cpsk_t *setup_data)
Creates a new client session to the designated server with PSK credentials.
struct coap_fixed_point_t coap_fixed_point_t
Abstraction of a fixed point number that can be used where necessary instead of a float.
const coap_address_t * coap_session_get_addr_mcast(const coap_session_t *session)
Get the remote multicast IP address and port from the session if the original target IP was multicast...
COAP_API size_t coap_session_max_pdu_size(const coap_session_t *session)
Get maximum acceptable PDU size.
Definition: coap_session.c:639
COAP_API coap_session_t * coap_new_client_session_psk(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, const char *identity, const uint8_t *key, unsigned key_len)
Creates a new client session to the designated server with PSK credentials.
int coap_session_get_ifindex(const coap_session_t *session)
Get the session if index.
void * coap_session_get_app_data(const coap_session_t *session)
Returns any application-specific data that has been stored with session using the function coap_sessi...
Definition: coap_session.c:405
coap_session_type_t coap_session_get_type(const coap_session_t *session)
Get the session type.
@ COAP_SESSION_TYPE_NONE
Not defined.
Definition: coap_session.h:45
@ COAP_SESSION_TYPE_HELLO
server-side ephemeral session for responding to a client hello
Definition: coap_session.h:48
@ COAP_SESSION_TYPE_SERVER
server-side
Definition: coap_session.h:47
@ COAP_SESSION_TYPE_CLIENT
client-side
Definition: coap_session.h:46
@ COAP_SESSION_STATE_HANDSHAKE
Definition: coap_session.h:58
@ COAP_SESSION_STATE_CSM
Definition: coap_session.h:59
@ COAP_SESSION_STATE_ESTABLISHED
Definition: coap_session.h:60
@ COAP_SESSION_STATE_NONE
Definition: coap_session.h:56
@ COAP_SESSION_STATE_CONNECTING
Definition: coap_session.h:57
Multi-purpose address abstraction.
Definition: coap_address.h:148
CoAP binary data definition with const data.
Definition: coap_str.h:64
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:410
The structure used for defining the PKI setup data to be used.
Definition: coap_dtls.h:312
Abstraction of virtual endpoint that can be attached to coap_context_t.
Abstraction of a fixed point number that can be used where necessary instead of a float.
Definition: coap_session.h:31
uint16_t fractional_part
Fractional part of fixed point variable 1/1000 (3 points) precision.
Definition: coap_session.h:33
uint16_t integer_part
Integer part of fixed point variable.
Definition: coap_session.h:32
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...