net_mgmt.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Network Management API public header
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_NET_MGMT_H_
  11. #define ZEPHYR_INCLUDE_NET_NET_MGMT_H_
  12. #include <sys/__assert.h>
  13. #include <net/net_core.h>
  14. #include <net/net_event.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief Network Management
  20. * @defgroup net_mgmt Network Management
  21. * @ingroup networking
  22. * @{
  23. */
  24. struct net_if;
  25. /** @cond INTERNAL_HIDDEN */
  26. /**
  27. * @brief NET MGMT event mask basics, normalizing parts of bit fields
  28. */
  29. #define NET_MGMT_EVENT_MASK 0x80000000
  30. #define NET_MGMT_ON_IFACE_MASK 0x40000000
  31. #define NET_MGMT_LAYER_MASK 0x30000000
  32. #define NET_MGMT_SYNC_EVENT_MASK 0x08000000
  33. #define NET_MGMT_LAYER_CODE_MASK 0x07FF0000
  34. #define NET_MGMT_COMMAND_MASK 0x0000FFFF
  35. #define NET_MGMT_EVENT_BIT BIT(31)
  36. #define NET_MGMT_IFACE_BIT BIT(30)
  37. #define NET_MGMT_SYNC_EVENT_BIT BIT(27)
  38. #define NET_MGMT_LAYER(_layer) (_layer << 28)
  39. #define NET_MGMT_LAYER_CODE(_code) (_code << 16)
  40. #define NET_MGMT_EVENT(mgmt_request) \
  41. (mgmt_request & NET_MGMT_EVENT_MASK)
  42. #define NET_MGMT_ON_IFACE(mgmt_request) \
  43. (mgmt_request & NET_MGMT_ON_IFACE_MASK)
  44. #define NET_MGMT_EVENT_SYNCHRONOUS(mgmt_request) \
  45. (mgmt_request & NET_MGMT_SYNC_EVENT_MASK)
  46. #define NET_MGMT_GET_LAYER(mgmt_request) \
  47. ((mgmt_request & NET_MGMT_LAYER_MASK) >> 28)
  48. #define NET_MGMT_GET_LAYER_CODE(mgmt_request) \
  49. ((mgmt_request & NET_MGMT_LAYER_CODE_MASK) >> 16)
  50. #define NET_MGMT_GET_COMMAND(mgmt_request) \
  51. (mgmt_request & NET_MGMT_COMMAND_MASK)
  52. /* Useful generic definitions */
  53. #define NET_MGMT_LAYER_L2 1
  54. #define NET_MGMT_LAYER_L3 2
  55. #define NET_MGMT_LAYER_L4 3
  56. /** @endcond */
  57. /**
  58. * @typedef net_mgmt_request_handler_t
  59. * @brief Signature which all Net MGMT request handler need to follow
  60. * @param mgmt_request The exact request value the handler is being called
  61. * through
  62. * @param iface A valid pointer on struct net_if if the request is meant
  63. * to be tight to a network interface. NULL otherwise.
  64. * @param data A valid pointer on a data understood by the handler.
  65. * NULL otherwise.
  66. * @param len Length in byte of the memory pointed by data.
  67. */
  68. typedef int (*net_mgmt_request_handler_t)(uint32_t mgmt_request,
  69. struct net_if *iface,
  70. void *data, size_t len);
  71. #define net_mgmt(_mgmt_request, _iface, _data, _len) \
  72. net_mgmt_##_mgmt_request(_mgmt_request, _iface, _data, _len)
  73. #define NET_MGMT_DEFINE_REQUEST_HANDLER(_mgmt_request) \
  74. extern int net_mgmt_##_mgmt_request(uint32_t mgmt_request, \
  75. struct net_if *iface, \
  76. void *data, size_t len)
  77. #define NET_MGMT_REGISTER_REQUEST_HANDLER(_mgmt_request, _func) \
  78. FUNC_ALIAS(_func, net_mgmt_##_mgmt_request, int)
  79. struct net_mgmt_event_callback;
  80. /**
  81. * @typedef net_mgmt_event_handler_t
  82. * @brief Define the user's callback handler function signature
  83. * @param cb Original struct net_mgmt_event_callback owning this handler.
  84. * @param mgmt_event The network event being notified.
  85. * @param iface A pointer on a struct net_if to which the the event belongs to,
  86. * if it's an event on an iface. NULL otherwise.
  87. */
  88. typedef void (*net_mgmt_event_handler_t)(struct net_mgmt_event_callback *cb,
  89. uint32_t mgmt_event,
  90. struct net_if *iface);
  91. /**
  92. * @brief Network Management event callback structure
  93. * Used to register a callback into the network management event part, in order
  94. * to let the owner of this struct to get network event notification based on
  95. * given event mask.
  96. */
  97. struct net_mgmt_event_callback {
  98. /** Meant to be used internally, to insert the callback into a list.
  99. * So nobody should mess with it.
  100. */
  101. sys_snode_t node;
  102. union {
  103. /** Actual callback function being used to notify the owner
  104. */
  105. net_mgmt_event_handler_t handler;
  106. /** Semaphore meant to be used internaly for the synchronous
  107. * net_mgmt_event_wait() function.
  108. */
  109. struct k_sem *sync_call;
  110. };
  111. #ifdef CONFIG_NET_MGMT_EVENT_INFO
  112. const void *info;
  113. size_t info_length;
  114. #endif
  115. /** A mask of network events on which the above handler should be
  116. * called in case those events come. Such mask can be modified
  117. * whenever necessary by the owner, and thus will affect the handler
  118. * being called or not.
  119. */
  120. union {
  121. /** A mask of network events on which the above handler should
  122. * be called in case those events come.
  123. * Note that only the command part is treated as a mask,
  124. * matching one to several commands. Layer and layer code will
  125. * be made of an exact match. This means that in order to
  126. * receive events from multiple layers, one must have multiple
  127. * listeners registered, one for each layer being listened.
  128. */
  129. uint32_t event_mask;
  130. /** Internal place holder when a synchronous event wait is
  131. * successfully unlocked on a event.
  132. */
  133. uint32_t raised_event;
  134. };
  135. };
  136. /**
  137. * @brief Helper to initialize a struct net_mgmt_event_callback properly
  138. * @param cb A valid application's callback structure pointer.
  139. * @param handler A valid handler function pointer.
  140. * @param mgmt_event_mask A mask of relevant events for the handler
  141. */
  142. #ifdef CONFIG_NET_MGMT_EVENT
  143. static inline
  144. void net_mgmt_init_event_callback(struct net_mgmt_event_callback *cb,
  145. net_mgmt_event_handler_t handler,
  146. uint32_t mgmt_event_mask)
  147. {
  148. __ASSERT(cb, "Callback pointer should not be NULL");
  149. __ASSERT(handler, "Handler pointer should not be NULL");
  150. cb->handler = handler;
  151. cb->event_mask = mgmt_event_mask;
  152. };
  153. #else
  154. #define net_mgmt_init_event_callback(...)
  155. #endif
  156. /**
  157. * @brief Add a user callback
  158. * @param cb A valid pointer on user's callback to add.
  159. */
  160. #ifdef CONFIG_NET_MGMT_EVENT
  161. void net_mgmt_add_event_callback(struct net_mgmt_event_callback *cb);
  162. #else
  163. #define net_mgmt_add_event_callback(...)
  164. #endif
  165. /**
  166. * @brief Delete a user callback
  167. * @param cb A valid pointer on user's callback to delete.
  168. */
  169. #ifdef CONFIG_NET_MGMT_EVENT
  170. void net_mgmt_del_event_callback(struct net_mgmt_event_callback *cb);
  171. #else
  172. #define net_mgmt_del_event_callback(...)
  173. #endif
  174. /**
  175. * @brief Used by the system to notify an event.
  176. * @param mgmt_event The actual network event code to notify
  177. * @param iface a valid pointer on a struct net_if if only the event is
  178. * based on an iface. NULL otherwise.
  179. * @param info a valid pointer on the information you want to pass along
  180. * with the event. NULL otherwise. Note the data pointed there is
  181. * normalized by the related event.
  182. * @param length size of the data pointed by info pointer.
  183. *
  184. * Note: info and length are disabled if CONFIG_NET_MGMT_EVENT_INFO
  185. * is not defined.
  186. */
  187. #ifdef CONFIG_NET_MGMT_EVENT
  188. void net_mgmt_event_notify_with_info(uint32_t mgmt_event, struct net_if *iface,
  189. const void *info, size_t length);
  190. static inline void net_mgmt_event_notify(uint32_t mgmt_event,
  191. struct net_if *iface)
  192. {
  193. net_mgmt_event_notify_with_info(mgmt_event, iface, NULL, 0);
  194. }
  195. #else
  196. #define net_mgmt_event_notify(...)
  197. #define net_mgmt_event_notify_with_info(...)
  198. #endif
  199. /**
  200. * @brief Used to wait synchronously on an event mask
  201. * @param mgmt_event_mask A mask of relevant events to wait on.
  202. * @param raised_event a pointer on a uint32_t to get which event from
  203. * the mask generated the event. Can be NULL if the caller is not
  204. * interested in that information.
  205. * @param iface a pointer on a place holder for the iface on which the
  206. * event has originated from. This is valid if only the event mask
  207. * has bit NET_MGMT_IFACE_BIT set relevantly, depending on events
  208. * the caller wants to listen to.
  209. * @param info a valid pointer if user wants to get the information the
  210. * event might bring along. NULL otherwise.
  211. * @param info_length tells how long the info memory area is. Only valid if
  212. * the info is not NULL.
  213. * @param timeout A timeout delay. K_FOREVER can be used to wait indefinitely.
  214. *
  215. * @return 0 on success, a negative error code otherwise. -ETIMEDOUT will
  216. * be specifically returned if the timeout kick-in instead of an
  217. * actual event.
  218. */
  219. #ifdef CONFIG_NET_MGMT_EVENT
  220. int net_mgmt_event_wait(uint32_t mgmt_event_mask,
  221. uint32_t *raised_event,
  222. struct net_if **iface,
  223. const void **info,
  224. size_t *info_length,
  225. k_timeout_t timeout);
  226. #else
  227. static inline int net_mgmt_event_wait(uint32_t mgmt_event_mask,
  228. uint32_t *raised_event,
  229. struct net_if **iface,
  230. const void **info,
  231. size_t *info_length,
  232. k_timeout_t timeout)
  233. {
  234. return 0;
  235. }
  236. #endif
  237. /**
  238. * @brief Used to wait synchronously on an event mask for a specific iface
  239. * @param iface a pointer on a valid network interface to listen event to
  240. * @param mgmt_event_mask A mask of relevant events to wait on. Listened
  241. * to events should be relevant to iface events and thus have the bit
  242. * NET_MGMT_IFACE_BIT set.
  243. * @param raised_event a pointer on a uint32_t to get which event from
  244. * the mask generated the event. Can be NULL if the caller is not
  245. * interested in that information.
  246. * @param info a valid pointer if user wants to get the information the
  247. * event might bring along. NULL otherwise.
  248. * @param info_length tells how long the info memory area is. Only valid if
  249. * the info is not NULL.
  250. * @param timeout A timeout delay. K_FOREVER can be used to wait indefinitely.
  251. *
  252. * @return 0 on success, a negative error code otherwise. -ETIMEDOUT will
  253. * be specifically returned if the timeout kick-in instead of an
  254. * actual event.
  255. */
  256. #ifdef CONFIG_NET_MGMT_EVENT
  257. int net_mgmt_event_wait_on_iface(struct net_if *iface,
  258. uint32_t mgmt_event_mask,
  259. uint32_t *raised_event,
  260. const void **info,
  261. size_t *info_length,
  262. k_timeout_t timeout);
  263. #else
  264. static inline int net_mgmt_event_wait_on_iface(struct net_if *iface,
  265. uint32_t mgmt_event_mask,
  266. uint32_t *raised_event,
  267. const void **info,
  268. size_t *info_length,
  269. k_timeout_t timeout)
  270. {
  271. return 0;
  272. }
  273. #endif
  274. /**
  275. * @brief Used by the core of the network stack to initialize the network
  276. * event processing.
  277. */
  278. #ifdef CONFIG_NET_MGMT_EVENT
  279. void net_mgmt_event_init(void);
  280. #else
  281. #define net_mgmt_event_init(...)
  282. #endif /* CONFIG_NET_MGMT_EVENT */
  283. /**
  284. * @}
  285. */
  286. #ifdef __cplusplus
  287. }
  288. #endif
  289. #endif /* ZEPHYR_INCLUDE_NET_NET_MGMT_H_ */