libcoap 4.3.4-develop-c081bb6
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
221
229void coap_session_set_mtu(coap_session_t *session, unsigned mtu);
230
238size_t coap_session_max_pdu_size(const coap_session_t *session);
239
250 coap_context_t *ctx,
251 const coap_address_t *local_if,
252 const coap_address_t *server,
253 coap_proto_t proto
254);
255
272 coap_context_t *ctx,
273 const coap_address_t *local_if,
274 const coap_address_t *server,
275 coap_proto_t proto,
276 const char *identity,
277 const uint8_t *key,
278 unsigned key_len
279);
280
297 coap_context_t *ctx,
298 const coap_address_t *local_if,
299 const coap_address_t *server,
300 coap_proto_t proto,
301 coap_dtls_cpsk_t *setup_data
302);
303
312 const coap_session_t *session);
313
322 const coap_session_t *session);
331 const coap_session_t *session);
332
349 coap_context_t *ctx,
350 const coap_address_t *local_if,
351 const coap_address_t *server,
352 coap_proto_t proto,
353 coap_dtls_pki_t *setup_data
354);
355
364void coap_session_init_token(coap_session_t *session, size_t length,
365 const uint8_t *token);
366
375void coap_session_new_token(coap_session_t *session, size_t *length,
376 uint8_t *token);
377
385const char *coap_session_str(const coap_session_t *session);
386
400 coap_proto_t proto);
401
409void coap_endpoint_set_default_mtu(coap_endpoint_t *endpoint, unsigned mtu);
410
417
428 const coap_address_t *remote_addr,
429 int ifindex);
430
440const char *coap_endpoint_str(const coap_endpoint_t *endpoint);
441
460#define COAP_DEFAULT_ACK_TIMEOUT ((coap_fixed_point_t){2,0})
461
469#define COAP_DEFAULT_ACK_RANDOM_FACTOR ((coap_fixed_point_t){1,500})
470
477#define COAP_DEFAULT_MAX_RETRANSMIT (4U)
478
486#define COAP_DEFAULT_NSTART (1U)
487
494#define COAP_DEFAULT_DEFAULT_LEISURE ((coap_fixed_point_t){5,0})
495
502#define COAP_DEFAULT_PROBING_RATE (1U)
503
511#define COAP_DEFAULT_MAX_PAYLOADS (10U)
512
520#define COAP_DEFAULT_NON_MAX_RETRANSMIT (4U)
521
529#define COAP_DEFAULT_NON_TIMEOUT ((coap_fixed_point_t){2,0})
530
538#define COAP_DEFAULT_NON_RECEIVE_TIMEOUT ((coap_fixed_point_t){4,0})
539
544#define COAP_DEFAULT_MAX_LATENCY (100U)
545
558 coap_fixed_point_t value);
559
572
585 coap_fixed_point_t value);
586
599 const coap_session_t *session);
600
612 uint16_t value);
613
624uint16_t coap_session_get_max_retransmit(const coap_session_t *session);
625
635 uint16_t value);
636
645uint16_t coap_session_get_nstart(const coap_session_t *session);
646
656 coap_fixed_point_t value);
657
667 const coap_session_t *session);
668
677void coap_session_set_probing_rate(coap_session_t *session, uint32_t value);
678
687uint32_t coap_session_get_probing_rate(const coap_session_t *session);
688
699 uint16_t value);
700
710uint16_t coap_session_get_max_payloads(const coap_session_t *session);
711
722 uint16_t value);
723
734
747 coap_fixed_point_t value);
748
761
773 coap_fixed_point_t value);
774
786 const coap_session_t *session);
787
796
803
804#endif /* COAP_SESSION_H */
coap_nack_reason_t
Definition: coap_io.h:69
coap_mid_t coap_session_send_ping(coap_session_t *session)
Send a ping message for the session.
Definition: coap_session.c:744
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:93
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_session_type_t
coap_session_type_t values
Definition: coap_session.h:44
void coap_session_set_mtu(coap_session_t *session, unsigned mtu)
Set the session MTU.
Definition: coap_session.c:641
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.
size_t coap_session_max_pdu_size(const coap_session_t *session)
Get maximum acceptable PDU size.
Definition: coap_session.c:613
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.
void coap_free_endpoint(coap_endpoint_t *endpoint)
Release an endpoint and all the structures associated with it.
coap_session_state_t
coap_session_state_t values
Definition: coap_session.h:55
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.
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.
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.
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.
void coap_session_new_token(coap_session_t *session, size_t *length, uint8_t *token)
Creates a new token for use.
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:378
void coap_session_release(coap_session_t *session)
Decrement reference counter on a session.
Definition: coap_session.c:355
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).
const coap_address_t * coap_session_get_addr_remote(const coap_session_t *session)
Get the remote IP address and port from the session.
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.
int coap_session_set_type_client(coap_session_t *session)
Set the session type to client.
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.
void coap_session_disconnected(coap_session_t *session, coap_nack_reason_t reason)
Notify session that it has failed.
Definition: coap_session.c:855
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_session_t * coap_session_reference(coap_session_t *session)
Increment reference counter on a session.
Definition: coap_session.c:348
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:384
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:381
The structure used for defining the PKI setup data to be used.
Definition: coap_dtls.h:287
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...