12#ifndef ZEPHYR_INCLUDE_NET_NET_MGMT_H_
13#define ZEPHYR_INCLUDE_NET_NET_MGMT_H_
39#define NET_MGMT_EVENT_MASK 0x80000000
40#define NET_MGMT_ON_IFACE_MASK 0x40000000
41#define NET_MGMT_LAYER_MASK 0x30000000
42#define NET_MGMT_SYNC_EVENT_MASK 0x08000000
43#define NET_MGMT_LAYER_CODE_MASK 0x07FF0000
44#define NET_MGMT_COMMAND_MASK 0x0000FFFF
46#define NET_MGMT_EVENT_BIT BIT(31)
47#define NET_MGMT_IFACE_BIT BIT(30)
48#define NET_MGMT_SYNC_EVENT_BIT BIT(27)
50#define NET_MGMT_LAYER(_layer) (_layer << 28)
51#define NET_MGMT_LAYER_CODE(_code) (_code << 16)
53#define NET_MGMT_EVENT(mgmt_request) \
54 (mgmt_request & NET_MGMT_EVENT_MASK)
56#define NET_MGMT_ON_IFACE(mgmt_request) \
57 (mgmt_request & NET_MGMT_ON_IFACE_MASK)
59#define NET_MGMT_EVENT_SYNCHRONOUS(mgmt_request) \
60 (mgmt_request & NET_MGMT_SYNC_EVENT_MASK)
62#define NET_MGMT_GET_LAYER(mgmt_request) \
63 ((mgmt_request & NET_MGMT_LAYER_MASK) >> 28)
65#define NET_MGMT_GET_LAYER_CODE(mgmt_request) \
66 ((mgmt_request & NET_MGMT_LAYER_CODE_MASK) >> 16)
68#define NET_MGMT_GET_COMMAND(mgmt_request) \
69 (mgmt_request & NET_MGMT_COMMAND_MASK)
73#define NET_MGMT_LAYER_L2 1
74#define NET_MGMT_LAYER_L3 2
75#define NET_MGMT_LAYER_L4 3
118 void *data,
size_t len);
128#define net_mgmt(_mgmt_request, _iface, _data, _len) \
129 net_mgmt_##_mgmt_request(_mgmt_request, _iface, _data, _len)
136#define NET_MGMT_DEFINE_REQUEST_HANDLER(_mgmt_request) \
137 extern int net_mgmt_##_mgmt_request(uint32_t mgmt_request, \
138 struct net_if *iface, \
139 void *data, size_t len)
147#define NET_MGMT_REGISTER_REQUEST_HANDLER(_mgmt_request, _func) \
148 FUNC_ALIAS(_func, net_mgmt_##_mgmt_request, int)
186#ifdef CONFIG_NET_MGMT_EVENT_INFO
226 void *info,
size_t info_length,
232struct net_mgmt_event_static_handler {
253#define NET_MGMT_REGISTER_EVENT_HANDLER(_name, _event_mask, _func, _user_data) \
254 const STRUCT_SECTION_ITERABLE(net_mgmt_event_static_handler, _name) = { \
255 .event_mask = _event_mask, \
257 .user_data = (void *)_user_data, \
266#ifdef CONFIG_NET_MGMT_EVENT
272 __ASSERT(cb,
"Callback pointer should not be NULL");
273 __ASSERT(handler,
"Handler pointer should not be NULL");
279#define net_mgmt_init_event_callback(...)
286#ifdef CONFIG_NET_MGMT_EVENT
289#define net_mgmt_add_event_callback(...)
296#ifdef CONFIG_NET_MGMT_EVENT
299#define net_mgmt_del_event_callback(...)
315#if defined(CONFIG_NET_MGMT_EVENT)
317 const void *info,
size_t length);
319#define net_mgmt_event_notify_with_info(...)
328#if defined(CONFIG_NET_MGMT_EVENT)
335#define net_mgmt_event_notify(...)
358#ifdef CONFIG_NET_MGMT_EVENT
373 ARG_UNUSED(mgmt_event_mask);
374 ARG_UNUSED(raised_event);
377 ARG_UNUSED(info_length);
402#ifdef CONFIG_NET_MGMT_EVENT
418 ARG_UNUSED(mgmt_event_mask);
419 ARG_UNUSED(raised_event);
421 ARG_UNUSED(info_length);
431#ifdef CONFIG_NET_MGMT_EVENT
434#define net_mgmt_event_init(...)
void(* net_mgmt_event_handler_t)(struct net_mgmt_event_callback *cb, uint32_t mgmt_event, struct net_if *iface)
Define the user's callback handler function signature.
Definition net_mgmt.h:160
int net_mgmt_event_wait_on_iface(struct net_if *iface, uint32_t mgmt_event_mask, uint32_t *raised_event, const void **info, size_t *info_length, k_timeout_t timeout)
Used to wait synchronously on an event mask for a specific iface.
static void net_mgmt_event_notify(uint32_t mgmt_event, struct net_if *iface)
Used by the system to notify an event without any additional information.
Definition net_mgmt.h:329
void net_mgmt_event_notify_with_info(uint32_t mgmt_event, struct net_if *iface, const void *info, size_t length)
Used by the system to notify an event.
void net_mgmt_del_event_callback(struct net_mgmt_event_callback *cb)
Delete a user callback.
net_mgmt_layer_code
Central place the definition of the layer codes (7 bit value)
Definition net_mgmt.h:80
static void net_mgmt_init_event_callback(struct net_mgmt_event_callback *cb, net_mgmt_event_handler_t handler, uint32_t mgmt_event_mask)
Helper to initialize a struct net_mgmt_event_callback properly.
Definition net_mgmt.h:268
void net_mgmt_event_init(void)
Used by the core of the network stack to initialize the network event processing.
int(* net_mgmt_request_handler_t)(uint32_t mgmt_request, struct net_if *iface, void *data, size_t len)
Signature which all Net MGMT request handler need to follow.
Definition net_mgmt.h:116
int net_mgmt_event_wait(uint32_t mgmt_event_mask, uint32_t *raised_event, struct net_if **iface, const void **info, size_t *info_length, k_timeout_t timeout)
Used to wait synchronously on an event mask.
void(* net_mgmt_event_static_handler_t)(uint32_t mgmt_event, struct net_if *iface, void *info, size_t info_length, void *user_data)
Define the user's callback handler function signature.
Definition net_mgmt.h:224
void net_mgmt_add_event_callback(struct net_mgmt_event_callback *cb)
Add a user callback.
@ NET_MGMT_LAYER_CODE_HOSTAP
Hostap (wpa_supplicant) layer code.
Definition net_mgmt.h:89
@ NET_MGMT_LAYER_CODE_USER1
User layer code 1.
Definition net_mgmt.h:99
@ NET_MGMT_LAYER_CODE_IPV4
IPv4 layer code.
Definition net_mgmt.h:84
@ NET_MGMT_LAYER_CODE_IFACE
Network interface layer code.
Definition net_mgmt.h:82
@ NET_MGMT_LAYER_CODE_UNKNOWN
Unknown layer code, do not use.
Definition net_mgmt.h:81
@ NET_MGMT_LAYER_CODE_STATS
Statistics layer code.
Definition net_mgmt.h:88
@ NET_MGMT_LAYER_CODE_IEEE802514
IEEE 802.15.4 layer code.
Definition net_mgmt.h:91
@ NET_MGMT_LAYER_CODE_USER3
User layer code 3.
Definition net_mgmt.h:97
@ NET_MGMT_LAYER_CODE_PPP
PPP layer code.
Definition net_mgmt.h:92
@ NET_MGMT_LAYER_CODE_COAP
CoAP layer code.
Definition net_mgmt.h:87
@ NET_MGMT_LAYER_CODE_WIFI
Wi-Fi layer code.
Definition net_mgmt.h:94
@ NET_MGMT_LAYER_CODE_IPV6
IPv6 layer code.
Definition net_mgmt.h:85
@ NET_MGMT_LAYER_CODE_USER2
User layer code 2.
Definition net_mgmt.h:98
@ NET_MGMT_LAYER_CODE_L4
L4 layer code.
Definition net_mgmt.h:86
@ NET_MGMT_LAYER_CODE_CONN
Connectivity layer code.
Definition net_mgmt.h:83
@ NET_MGMT_LAYER_CODE_VIRTUAL
Virtual network interface layer code.
Definition net_mgmt.h:93
@ NET_MGMT_LAYER_CODE_RESERVED
Reserved layer code for future use.
Definition net_mgmt.h:102
@ NET_MGMT_LAYER_CODE_ETHERNET
Ethernet layer code.
Definition net_mgmt.h:90
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
#define NULL
Definition iar_missing_defs.h:20
Network core definitions.
Network Events code public header.
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
Kernel timeout type.
Definition sys_clock.h:65
Network Interface structure.
Definition net_if.h:714
Network Management event callback structure Used to register a callback into the network management e...
Definition net_mgmt.h:170
sys_snode_t node
Meant to be used internally, to insert the callback into a list.
Definition net_mgmt.h:174
struct k_sem * sync_call
Semaphore meant to be used internally for the synchronous net_mgmt_event_wait() function.
Definition net_mgmt.h:183
uint32_t raised_event
Internal place holder when a synchronous event wait is successfully unlocked on a event.
Definition net_mgmt.h:209
uint32_t event_mask
A mask of network events on which the above handler should be called in case those events come.
Definition net_mgmt.h:205
net_mgmt_event_handler_t handler
Actual callback function being used to notify the owner.
Definition net_mgmt.h:179