trickle.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /** @file
  2. * @brief Trickle timer library
  3. *
  4. * This implements Trickle timer as specified in RFC 6206
  5. */
  6. /*
  7. * Copyright (c) 2016 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_TRICKLE_H_
  12. #define ZEPHYR_INCLUDE_NET_TRICKLE_H_
  13. #include <stdbool.h>
  14. #include <zephyr/types.h>
  15. #include <kernel.h>
  16. #include <net/net_core.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @brief Trickle algorithm library
  22. * @defgroup trickle Trickle Algorithm Library
  23. * @ingroup networking
  24. * @{
  25. */
  26. struct net_trickle;
  27. /**
  28. * @typedef net_trickle_cb_t
  29. * @brief Trickle timer callback.
  30. *
  31. * @details The callback is called after Trickle timeout expires.
  32. *
  33. * @param trickle The trickle context to use.
  34. * @param do_suppress Is TX allowed (true) or not (false).
  35. * @param user_data The user data given in net_trickle_start() call.
  36. */
  37. typedef void (*net_trickle_cb_t)(struct net_trickle *trickle,
  38. bool do_suppress, void *user_data);
  39. /**
  40. * The variable names are taken directly from RFC 6206 when applicable.
  41. * Note that the struct members should not be accessed directly but
  42. * only via the Trickle API.
  43. */
  44. struct net_trickle {
  45. uint32_t Imin; /**< Min interval size in ms */
  46. uint8_t Imax; /**< Max number of doublings */
  47. uint8_t k; /**< Redundancy constant */
  48. uint32_t I; /**< Current interval size */
  49. uint32_t Istart; /**< Start of the interval in ms */
  50. uint8_t c; /**< Consistency counter */
  51. uint32_t Imax_abs; /**< Max interval size in ms (not doublings) */
  52. bool double_to;
  53. struct k_work_delayable timer;
  54. net_trickle_cb_t cb; /**< Callback to be called when timer expires */
  55. void *user_data;
  56. };
  57. /** @cond INTERNAL_HIDDEN */
  58. #define NET_TRICKLE_INFINITE_REDUNDANCY 0
  59. /** @endcond */
  60. /**
  61. * @brief Create a Trickle timer.
  62. *
  63. * @param trickle Pointer to Trickle struct.
  64. * @param Imin Imin configuration parameter in ms.
  65. * @param Imax Max number of doublings.
  66. * @param k Redundancy constant parameter. See RFC 6206 for details.
  67. *
  68. * @return Return 0 if ok and <0 if error.
  69. */
  70. int net_trickle_create(struct net_trickle *trickle,
  71. uint32_t Imin,
  72. uint8_t Imax,
  73. uint8_t k);
  74. /**
  75. * @brief Start a Trickle timer.
  76. *
  77. * @param trickle Pointer to Trickle struct.
  78. * @param cb User callback to call at time T within the current trickle
  79. * interval
  80. * @param user_data User pointer that is passed to callback.
  81. *
  82. * @return Return 0 if ok and <0 if error.
  83. */
  84. int net_trickle_start(struct net_trickle *trickle,
  85. net_trickle_cb_t cb,
  86. void *user_data);
  87. /**
  88. * @brief Stop a Trickle timer.
  89. *
  90. * @param trickle Pointer to Trickle struct.
  91. *
  92. * @return Return 0 if ok and <0 if error.
  93. */
  94. int net_trickle_stop(struct net_trickle *trickle);
  95. /**
  96. * @brief To be called by the protocol handler when it hears a consistent
  97. * network transmission.
  98. *
  99. * @param trickle Pointer to Trickle struct.
  100. */
  101. void net_trickle_consistency(struct net_trickle *trickle);
  102. /**
  103. * @brief To be called by the protocol handler when it hears an inconsistent
  104. * network transmission.
  105. *
  106. * @param trickle Pointer to Trickle struct.
  107. */
  108. void net_trickle_inconsistency(struct net_trickle *trickle);
  109. /**
  110. * @brief Check if the Trickle timer is running or not.
  111. *
  112. * @param trickle Pointer to Trickle struct.
  113. *
  114. * @return Return True if timer is running and False if not.
  115. */
  116. static inline bool net_trickle_is_running(struct net_trickle *trickle)
  117. {
  118. NET_ASSERT(trickle);
  119. return trickle->I != 0U;
  120. }
  121. /**
  122. * @}
  123. */
  124. #ifdef __cplusplus
  125. }
  126. #endif
  127. #endif /* ZEPHYR_INCLUDE_NET_TRICKLE_H_ */