libcoap_rs/session/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright © The libcoap-rs Contributors, all rights reserved.
* This file is part of the libcoap-rs project, see the README file for
* general information on this project and the NOTICE.md and LICENSE files
* for information regarding copyright ownership and terms of use.
*
* session/mod.rs - Types relating to generic CoAP sessions.
*/
use std::{
any::Any,
borrow::BorrowMut,
cell::{Ref, RefMut},
collections::{HashMap, VecDeque},
marker::PhantomData,
net::{SocketAddr, ToSocketAddrs},
rc::Rc,
};
use libcoap_sys::{
coap_context_t, coap_fixed_point_t, coap_mid_t, coap_new_message_id, coap_pdu_get_token, coap_pdu_t,
coap_response_t, coap_response_t_COAP_RESPONSE_FAIL, coap_response_t_COAP_RESPONSE_OK, coap_send,
coap_session_get_ack_random_factor, coap_session_get_ack_timeout, coap_session_get_addr_local,
coap_session_get_addr_remote, coap_session_get_ifindex, coap_session_get_max_retransmit, coap_session_get_proto,
coap_session_get_state, coap_session_get_type, coap_session_init_token, coap_session_max_pdu_size,
coap_session_new_token, coap_session_send_ping, coap_session_set_ack_random_factor, coap_session_set_ack_timeout,
coap_session_set_max_retransmit, coap_session_set_mtu, coap_session_state_t,
coap_session_state_t_COAP_SESSION_STATE_CONNECTING, coap_session_state_t_COAP_SESSION_STATE_CSM,
coap_session_state_t_COAP_SESSION_STATE_ESTABLISHED, coap_session_state_t_COAP_SESSION_STATE_HANDSHAKE,
coap_session_state_t_COAP_SESSION_STATE_NONE, coap_session_t, coap_session_type_t_COAP_SESSION_TYPE_CLIENT,
coap_session_type_t_COAP_SESSION_TYPE_HELLO, coap_session_type_t_COAP_SESSION_TYPE_NONE,
coap_session_type_t_COAP_SESSION_TYPE_SERVER,
};
#[cfg(feature = "dtls-psk")]
use libcoap_sys::{coap_session_get_psk_hint, coap_session_get_psk_identity, coap_session_get_psk_key};
use self::sealed::{CoapSessionCommonInternal, CoapSessionInnerProvider};
pub use self::{client::CoapClientSession, server::CoapServerSession};
use crate::{
error::{MessageConversionError, SessionGetAppDataError},
message::{request::CoapRequest, response::CoapResponse, CoapMessage, CoapMessageCommon},
protocol::CoapToken,
types::{CoapAddress, CoapMessageId, CoapProtocol, IfIndex, MaxRetransmit},
};
pub mod client;
pub mod server;
/// Representation of the states that a session can be in.
#[repr(u32)]
pub enum CoapSessionState {
None = coap_session_state_t_COAP_SESSION_STATE_NONE as u32,
Connecting = coap_session_state_t_COAP_SESSION_STATE_CONNECTING as u32,
Handshake = coap_session_state_t_COAP_SESSION_STATE_HANDSHAKE as u32,
Csm = coap_session_state_t_COAP_SESSION_STATE_CSM as u32,
Established = coap_session_state_t_COAP_SESSION_STATE_ESTABLISHED as u32,
}
impl From<coap_session_state_t> for CoapSessionState {
fn from(raw_state: coap_session_state_t) -> Self {
// Variant names are named by bindgen, we have no influence on this.
// Ref: https://github.com/rust-lang/rust/issues/39371
#[allow(non_upper_case_globals)]
match raw_state {
coap_session_state_t_COAP_SESSION_STATE_NONE => CoapSessionState::None,
coap_session_state_t_COAP_SESSION_STATE_CONNECTING => CoapSessionState::Connecting,
coap_session_state_t_COAP_SESSION_STATE_HANDSHAKE => CoapSessionState::Handshake,
coap_session_state_t_COAP_SESSION_STATE_CSM => CoapSessionState::Csm,
coap_session_state_t_COAP_SESSION_STATE_ESTABLISHED => CoapSessionState::Established,
_ => unreachable!("unknown session state added"),
}
}
}
mod sealed {
use super::*;
/// Internal Trait for types that can provide a Ref(Mut) to CoapSessionInner instances.
/// Implemented by the different session types ([CoapClientSession] and [CoapServerSession])
pub trait CoapSessionInnerProvider<'a> {
/// Provide a Ref to the instance of [CoapSessionInner] contained in this type.
fn inner_ref<'b>(&'b self) -> Ref<'b, CoapSessionInner<'a>>;
/// Provide a RefMut to the instance of [CoapSessionInner] contained in this type.
fn inner_mut<'b>(&'b self) -> RefMut<'b, CoapSessionInner<'a>>;
}
/// Functions common between all sessions that should not be public.
///
/// This trait does not have any mandatory functions and will be automatically implemented for
/// all types that implement [CoapSessionInnerProvider].
pub trait CoapSessionCommonInternal<'a>: CoapSessionInnerProvider<'a> {
fn add_response(&self, pdu: CoapResponse) {
let token = pdu.token();
if let Some(token) = token {
if self.inner_ref().received_responses.contains_key(token) {
self.inner_mut()
.received_responses
.get_mut(token)
.unwrap()
.push_back(pdu);
}
}
}
}
impl<'a, T: CoapSessionInnerProvider<'a>> CoapSessionCommonInternal<'a> for T {}
}
/// Trait for functions that are common between client and server sessions.
pub trait CoapSessionCommon<'a>: CoapSessionCommonInternal<'a> {
/// Returns the application specific data stored alongside this session.
fn app_data<T: Any>(&self) -> Result<Option<Rc<T>>, SessionGetAppDataError> {
self.inner_ref()
.app_data
.as_ref()
.map(|v| v.clone().downcast().map_err(|_v| SessionGetAppDataError::WrongType))
.transpose()
}
/// Sets the application-specific data stored alongside this session.
fn set_app_data<T: 'static + Any>(&self, value: Option<T>) {
let mut inner = self.inner_mut();
let new_box: Option<Rc<dyn Any>> = value.map(|v| Rc::new(v) as Rc<dyn Any>);
inner.app_data = new_box;
}
/// Clears the application-specific data stored alongside this session.
fn clear_app_data(&self) {
let mut inner = self.inner_mut();
inner.app_data = None;
}
/// Returns the Ack-Random-Factor used by libcoap.
///
/// The returned value is a tuple consisting of an integer and a fractional part, where the
/// fractional part is a value from 0-999 and represents the first three digits after the comma.
fn ack_random_factor(&self) -> (u16, u16) {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
let random_factor = unsafe { coap_session_get_ack_random_factor(self.inner_ref().raw_session) };
(random_factor.integer_part, random_factor.fractional_part)
}
/// Sets the Ack-Random-Factor used by libcoap.
fn set_ack_random_factor(&self, integer_part: u16, fractional_part: u16) {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe {
coap_session_set_ack_random_factor(
self.inner_mut().raw_session,
coap_fixed_point_t {
integer_part,
fractional_part,
},
)
};
}
/// Returns the current value of the Acknowledgement Timeout for this session (in seconds).
///
/// The returned value is a tuple consisting of an integer and a fractional part, where the
/// fractional part is a value from 0-999 and represents the first three digits after the comma.
fn ack_timeout(&self) -> (u16, u16) {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
let random_factor = unsafe { coap_session_get_ack_timeout(self.inner_ref().raw_session) };
(random_factor.integer_part, random_factor.fractional_part)
}
/// Sets the value of the Acknowledgement Timeout for this session.
fn set_ack_timeout(&self, integer_part: u16, fractional_part: u16) {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe {
coap_session_set_ack_timeout(
self.inner_ref().raw_session,
coap_fixed_point_t {
integer_part,
fractional_part,
},
)
};
}
/// Returns the local address for this session.
fn addr_local(&self) -> SocketAddr {
CoapAddress::from(unsafe {
// This is infallible as long as the raw session is valid (which it always should be
// as long as the invariants are kept).
coap_session_get_addr_local(self.inner_ref().raw_session)
.as_ref()
.unwrap()
})
.to_socket_addrs()
.unwrap()
.next()
.unwrap()
}
/// Returns the remote address for this session.
fn addr_remote(&self) -> SocketAddr {
CoapAddress::from(unsafe {
// This is infallible as long as the raw session is valid (which it always should be
// as long as the invariants are kept).
coap_session_get_addr_remote(self.inner_ref().raw_session)
.as_ref()
.unwrap()
})
.to_socket_addrs()
.unwrap()
.next()
.unwrap()
}
/// Returns the interface index for this session.
fn if_index(&self) -> IfIndex {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_get_ifindex(self.inner_ref().raw_session) }
}
/// Returns the maximum number of retransmissions for this session.
fn max_retransmit(&self) -> MaxRetransmit {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_get_max_retransmit(self.inner_ref().raw_session) }
}
/// Sets the maximum number of retransmissions for this session.
fn set_max_retransmit(&mut self, value: MaxRetransmit) {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_set_max_retransmit(self.inner_ref().raw_session, value) }
}
/// Returns the underlying transport protocol used for this session.
fn proto(&self) -> CoapProtocol {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_get_proto(self.inner_ref().raw_session) }.into()
}
/// Returns the current PSK hint for this session.
#[cfg(feature = "dtls-psk")]
fn psk_hint(&self) -> Option<Box<[u8]>> {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe {
coap_session_get_psk_hint(self.inner_ref().raw_session)
.as_ref()
.map(|raw_hint| Box::from(std::slice::from_raw_parts(raw_hint.s, raw_hint.length)))
}
}
/// Returns the current PSK identity for this session.
#[cfg(feature = "dtls-psk")]
fn psk_identity(&self) -> Option<Box<[u8]>> {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe {
coap_session_get_psk_identity(self.inner_ref().raw_session)
.as_ref()
.map(|raw_hint| Box::from(std::slice::from_raw_parts(raw_hint.s, raw_hint.length)))
}
}
/// Returns the current PSK key for this session.
#[cfg(feature = "dtls-psk")]
fn psk_key(&self) -> Option<Box<[u8]>> {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe {
coap_session_get_psk_key(self.inner_ref().raw_session)
.as_ref()
.map(|raw_hint| Box::from(std::slice::from_raw_parts(raw_hint.s, raw_hint.length)))
}
}
/// Returns the current state of this session.
#[must_use = "getting the current session state without using it is a no-op"]
fn state(&self) -> CoapSessionState {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_get_state(self.inner_ref().raw_session).into() }
}
/// Initializes the initial token value used by libcoap for this session.
///
/// This value will be used as the token and incremented for each message sent through this
/// session that does not already have a token set.
fn init_token(&self, token: &[u8; 8]) {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_init_token(self.inner_mut().raw_session, token.len(), token.as_ptr()) }
}
/// Returns the maximum size of a PDU for this session.
fn max_pdu_size(&self) -> usize {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_max_pdu_size(self.inner_ref().raw_session) }
}
/// Sets the maximum size of a PDU for this session.
fn set_mtu(&self, mtu: u32) {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_set_mtu(self.inner_mut().raw_session, mtu) }
}
/// Returns the next message ID that should be used for this session.
fn next_message_id(&self) -> CoapMessageId {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_new_message_id(self.inner_mut().raw_session) as CoapMessageId }
}
/// Returns the next token that should be used for requests.
fn new_token(&mut self, token: &mut [u8; 8]) -> usize {
let mut length = 8;
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_new_token(self.inner_mut().raw_session, &mut length, token.as_mut_ptr()) }
length
}
/// Send a ping message to the remote peer.
fn send_ping(&mut self) -> CoapMessageId {
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner
unsafe { coap_session_send_ping(self.inner_mut().raw_session) }
}
/// Send the given message-like object to the peer.
///
/// # Errors
/// Returns a [MessageConversionError] if the supplied object cannot be converted to a message.
fn send<P: Into<CoapMessage>>(&self, pdu: P) -> Result<CoapMessageId, MessageConversionError> {
let raw_pdu = pdu.into().into_raw_pdu(self)?;
// SAFETY: Provided session pointer being valid is an invariant of CoapSessionInner,
// raw pdu should be valid as we got it from `into_raw_pdu()`.
let mid = unsafe { coap_send(self.inner_mut().raw_session, raw_pdu) };
Ok(mid)
}
/// Sends the given CoapRequest, returning a CoapRequestHandle that can be used to poll the
/// request for completion.
///
/// # Errors
/// Returns a [MessageConversionError] if the given Request could not be converted into a raw
/// message.
fn send_request(&self, mut req: CoapRequest) -> Result<CoapRequestHandle, MessageConversionError> {
if req.token().is_none() {
let mut token_len = libcoap_sys::COAP_TOKEN_DEFAULT_MAX as usize;
let mut token_tmp: Vec<u8> = vec![0; token_len];
// SAFETY: Provided pointer is valid, length matches.
unsafe {
coap_session_new_token(self.inner_mut().raw_session, &mut token_len, token_tmp.as_mut_ptr());
}
req.set_token(Some(Vec::from(&token_tmp[0..token_len])))
}
let token: Box<[u8]> = Box::from(req.token().unwrap());
if req.mid().is_none() {
req.set_mid(Some(self.next_message_id()))
}
self.inner_mut()
.received_responses
.insert(token.clone(), VecDeque::new());
self.send(req.into_message()).map(|v| CoapRequestHandle::new(v, token))
}
/// Polls whether the request for the given handle already has pending responses.
///
/// Returns an iterator over all responses associated with the request.
///
/// # Panics
///
/// Panics if the provided handle does not refer to a valid token, i.e., because it belongs to
/// a different session.
fn poll_handle(&self, handle: &CoapRequestHandle) -> std::collections::vec_deque::IntoIter<CoapResponse> {
self.inner_mut()
.received_responses
.insert(handle.token.clone(), VecDeque::new())
.expect("Attempted to poll handle that does not refer to a valid token")
.into_iter()
}
/// Returns whether this session waits for the provided token.
fn is_waiting_for_token(&self, token: &CoapToken) -> bool {
self.inner_ref().received_responses.contains_key(token)
}
/// Stops listening for responses to this request handle.
///
/// Any future responses to the request associated with this handle will be responded to with an
/// RST message.
fn remove_handle(&self, handle: CoapRequestHandle) {
self.inner_mut().received_responses.remove(&handle.token);
}
/// Returns a mutable reference to the underlying raw session.
///
/// # Safety
/// Do not do anything that would interfere with the functionality of this wrapper.
/// Most importantly, *do not* free the session yourself.
unsafe fn raw_session_mut(&self) -> *mut coap_session_t {
self.inner_mut().raw_session
}
/// Returns a reference to the underlying raw session.
///
/// # Safety
/// Do not do anything that would interfere with the functionality of this wrapper.
/// Most importantly, *do not* free the session yourself.
unsafe fn raw_session(&self) -> *const coap_session_t {
self.inner_ref().raw_session
}
}
impl<'a, T: CoapSessionCommonInternal<'a>> CoapSessionCommon<'a> for T {}
#[derive(Debug)]
/// The representation of a CoAP session.
///
/// This enum only provides functionality that is common between clients and servers (by
/// implementing [CoapSessionCommon]). If you require functionality specific to client- or
/// server-side sessions, match this enum on the required session type.
pub enum CoapSession<'a> {
Client(CoapClientSession<'a>),
Server(CoapServerSession<'a>),
}
impl<'a> CoapSessionInnerProvider<'a> for CoapSession<'a> {
fn inner_ref<'b>(&'b self) -> Ref<'b, CoapSessionInner<'a>> {
match self {
CoapSession::Client(sess) => sess.inner_ref(),
CoapSession::Server(sess) => sess.inner_ref(),
}
}
fn inner_mut<'b>(&'b self) -> RefMut<'b, CoapSessionInner<'a>> {
match self {
CoapSession::Client(sess) => sess.inner_mut(),
CoapSession::Server(sess) => sess.inner_mut(),
}
}
}
impl<'a> CoapSession<'a> {
/// Restores a CoapSession from its raw counterpart.
///
/// Note that it is not possible to statically infer the lifetime of the created session from
/// the raw pointer, i.e., the session will be created with an arbitrary lifetime.
/// Therefore, callers of this function should ensure that the created session instance does not
/// outlive the context it is bound to.
/// Failing to do so will result in a panic/abort in the context destructor as it is unable to
/// claim exclusive ownership of the session.
///
/// # Panics
///
/// Panics if the given pointer is a null pointer.
///
/// # Safety
/// The provided pointer must be valid, the provided session's app data must be a valid argument
/// to [`CoapFfiRcCell<CoapClientSessionInner>::clone_raw_rc`](crate::mem::CoapFfiRcCell::clone_raw_rc)
/// or [`CoapFfiRcCell<CoapServerSessionInner>::clone_raw_rc`](crate::mem::CoapFfiRcCell::clone_raw_rc)
/// (depending on the session type).
pub(crate) unsafe fn from_raw(raw_session: *mut coap_session_t) -> CoapSession<'a> {
assert!(!raw_session.is_null(), "provided raw session was null");
let raw_session_type = coap_session_get_type(raw_session);
// Variant names are named by bindgen, we have no influence on this.
// Ref: https://github.com/rust-lang/rust/issues/39371
#[allow(non_upper_case_globals)]
match raw_session_type {
coap_session_type_t_COAP_SESSION_TYPE_NONE => panic!("provided session has no type"),
coap_session_type_t_COAP_SESSION_TYPE_CLIENT => CoapClientSession::from_raw(raw_session).into(),
coap_session_type_t_COAP_SESSION_TYPE_SERVER | coap_session_type_t_COAP_SESSION_TYPE_HELLO => {
CoapServerSession::from_raw(raw_session).into()
},
_ => unreachable!("unknown session type"),
}
}
}
impl<'a> From<CoapClientSession<'a>> for CoapSession<'a> {
fn from(session: CoapClientSession<'a>) -> Self {
CoapSession::Client(session)
}
}
impl<'a> From<CoapServerSession<'a>> for CoapSession<'a> {
fn from(session: CoapServerSession<'a>) -> Self {
CoapSession::Server(session)
}
}
impl PartialEq for CoapSession<'_> {
fn eq(&self, other: &Self) -> bool {
match self {
CoapSession::Client(cli_sess) => cli_sess.eq(other),
CoapSession::Server(srv_sess) => srv_sess.eq(other),
}
}
}
impl Eq for CoapSession<'_> {}
/// Inner part of the representation of a CoapSession.
///
/// For internal use only, this is only public because of some limitations in Rusts type system
/// (as we would leak a private type).
#[derive(Debug)]
#[doc(hidden)]
pub struct CoapSessionInner<'a> {
raw_session: *mut coap_session_t,
app_data: Option<Rc<dyn Any>>,
received_responses: HashMap<CoapToken, VecDeque<CoapResponse>>,
_context_lifetime_marker: PhantomData<&'a coap_context_t>,
}
impl CoapSessionInner<'_> {
/// Initializes a new session from its raw counterpart.
///
/// Callers of this function should probably also insert themselves into the `app_data` pointer
/// of the raw session to allow later retrieval (as is done for `CoapClientSession` and
/// `CoapServerSession`.
///
/// # Safety
/// Provided pointer must point to a valid raw_session.
///
/// Note that the chosen lifetime for the inner session is arbitrarily, so you should ensure
/// that the CoapSessionInner instance does not outlive the underlying session.
/// To do so, you probably want to increase the reference counter of the session by one and
/// never provide values of this session with a lifetime that exceeds the one of the
/// [CoapContext] this session is bound to.
pub(crate) unsafe fn new<'a>(raw_session: *mut coap_session_t) -> CoapSessionInner<'a> {
CoapSessionInner {
raw_session,
app_data: None,
received_responses: HashMap::new(),
_context_lifetime_marker: Default::default(),
}
}
}
/// A handle returned by CoAP sessions upon sending a request.
///
/// Can be used in calls to [CoapSessionCommon::poll_handle()] to check for responses to the sent
/// request.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct CoapRequestHandle {
_mid: CoapMessageId,
token: CoapToken,
}
impl CoapRequestHandle {
fn new<T: Into<Box<[u8]>>>(mid: CoapMessageId, token: T) -> CoapRequestHandle {
CoapRequestHandle {
_mid: mid,
token: token.into(),
}
}
}
// This is fine, we don't read the C-type struct, we return it.
pub(crate) unsafe extern "C" fn session_response_handler(
session: *mut coap_session_t,
_sent: *const coap_pdu_t,
received: *const coap_pdu_t,
_id: coap_mid_t,
) -> coap_response_t {
let mut session = CoapSession::from_raw(session);
let client = session.borrow_mut();
// First check if the token is actually one we are currently waiting for.
let raw_token = coap_pdu_get_token(received);
let token: CoapToken = CoapToken::from(std::slice::from_raw_parts(raw_token.s, raw_token.length));
if !client.is_waiting_for_token(&token) {
return coap_response_t_COAP_RESPONSE_FAIL;
}
if let Ok(message) = CoapMessage::from_raw_pdu(received).and_then(CoapResponse::from_message) {
client.add_response(message);
coap_response_t_COAP_RESPONSE_OK
} else {
coap_response_t_COAP_RESPONSE_FAIL
}
}