smp.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Copyright Runtime.io 2018. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_MGMT_SMP_H_
  7. #define ZEPHYR_INCLUDE_MGMT_SMP_H_
  8. #include <kernel.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. struct zephyr_smp_transport;
  13. struct net_buf;
  14. /** @typedef zephyr_smp_transport_out_fn
  15. * @brief SMP transmit function for Zephyr.
  16. *
  17. * The supplied net_buf is always consumed, regardless of return code.
  18. *
  19. * @param zst The transport to send via.
  20. * @param nb The net_buf to transmit.
  21. *
  22. * @return 0 on success, MGMT_ERR_[...] code on failure.
  23. */
  24. typedef int zephyr_smp_transport_out_fn(struct zephyr_smp_transport *zst,
  25. struct net_buf *nb);
  26. /** @typedef zephyr_smp_transport_get_mtu_fn
  27. * @brief SMP MTU query function for Zephyr.
  28. *
  29. * The supplied net_buf should contain a request received from the peer whose
  30. * MTU is being queried. This function takes a net_buf parameter because some
  31. * transports store connection-specific information in the net_buf user header
  32. * (e.g., the BLE transport stores the peer address).
  33. *
  34. * @param nb Contains a request from the relevant peer.
  35. *
  36. * @return The transport's MTU;
  37. * 0 if transmission is currently not possible.
  38. */
  39. typedef uint16_t zephyr_smp_transport_get_mtu_fn(const struct net_buf *nb);
  40. /** @typedef zephyr_smp_transport_ud_copy_fn
  41. * @brief SMP copy buffer user_data function for Zephyr.
  42. *
  43. * The supplied src net_buf should contain a user_data that cannot be copied
  44. * using regular memcpy function (e.g., the BLE transport net_buf user_data
  45. * stores the connection reference that has to be incremented when is going
  46. * to be used by another buffer).
  47. *
  48. * @param dst Source buffer user_data pointer.
  49. * @param src Destination buffer user_data pointer.
  50. *
  51. * @return 0 on success, MGMT_ERR_[...] code on failure.
  52. */
  53. typedef int zephyr_smp_transport_ud_copy_fn(struct net_buf *dst,
  54. const struct net_buf *src);
  55. /** @typedef zephyr_smp_transport_ud_free_fn
  56. * @brief SMP free buffer user_data function for Zephyr.
  57. *
  58. * This function frees net_buf user data, because some transports store
  59. * connection-specific information in the net_buf user data (e.g., the BLE
  60. * transport stores the connection reference that has to be decreased).
  61. *
  62. * @param ud Contains a user_data pointer to be freed.
  63. */
  64. typedef void zephyr_smp_transport_ud_free_fn(void *ud);
  65. /**
  66. * @brief Provides Zephyr-specific functionality for sending SMP responses.
  67. */
  68. struct zephyr_smp_transport {
  69. /* Must be the first member. */
  70. struct k_work zst_work;
  71. /* FIFO containing incoming requests to be processed. */
  72. struct k_fifo zst_fifo;
  73. zephyr_smp_transport_out_fn *zst_output;
  74. zephyr_smp_transport_get_mtu_fn *zst_get_mtu;
  75. zephyr_smp_transport_ud_copy_fn *zst_ud_copy;
  76. zephyr_smp_transport_ud_free_fn *zst_ud_free;
  77. };
  78. /**
  79. * @brief Initializes a Zephyr SMP transport object.
  80. *
  81. * @param zst The transport to construct.
  82. * @param output_func The transport's send function.
  83. * @param get_mtu_func The transport's get-MTU function.
  84. * @param ud_copy_func The transport buffer user_data copy function.
  85. * @param ud_free_func The transport buffer user_data free function.
  86. *
  87. * @return 0 on success, MGMT_ERR_[...] code on failure.
  88. */
  89. void zephyr_smp_transport_init(struct zephyr_smp_transport *zst,
  90. zephyr_smp_transport_out_fn *output_func,
  91. zephyr_smp_transport_get_mtu_fn *get_mtu_func,
  92. zephyr_smp_transport_ud_copy_fn *ud_copy_func,
  93. zephyr_smp_transport_ud_free_fn *ud_free_func);
  94. /**
  95. * @brief Enqueues an incoming SMP request packet for processing.
  96. *
  97. * This function always consumes the supplied net_buf.
  98. *
  99. * @param zst The transport to use to send the corresponding
  100. * response(s).
  101. * @param nb The request packet to process.
  102. */
  103. void zephyr_smp_rx_req(struct zephyr_smp_transport *zst, struct net_buf *nb);
  104. #ifdef __cplusplus
  105. }
  106. #endif
  107. #endif