Wi-Fi Management¶
Overview¶
The Wi-Fi management API is used to manage Wi-Fi networks. It supports below modes:
IEEE802.11 Station (STA)
IEEE802.11 Access Point (AP)
Only personal mode security is supported with below types:
Open
WPA2-PSK
WPA3-PSK-256
WPA3-SAE
The Wi-Fi management API is implemented in the wifi_mgmt module as a part of the networking L2 stack. Currently, two types of Wi-Fi drivers are supported:
Networking or socket offloaded drivers
Native L2 Ethernet drivers
API Reference¶
- group wifi_mgmt
Wi-Fi Management API.
Wi-Fi utility functions.
Utility functions for the Wi-Fi subsystem.
-
int wifi_utils_parse_scan_bands(char *scan_bands_str, uint8_t *band_map)¶
Convert a band specification string to a bitmap representing the bands.
The function will parse a string which specifies Wi-Fi frequency band values as a comma separated string and convert it to a bitmap. The string can use the following characters to represent the bands:
2: 2.4 GHz
5: 5 GHz
6: 6 GHz
For the bitmap generated refer to wifi_frequency_bands for bit position of each band.
E.g. a string “2,5,6” will be converted to a bitmap value of 0x7
- Parameters:
scan_bands_str – String which spe.
band_map – Pointer to the bitmap variable to be updated.
- Return values:
0 – on success.
-errno – value in case of failure.
-
int wifi_utils_parse_scan_ssids(char *scan_ssids_str, const char *ssids[], uint8_t num_ssids)¶
Append a string containing an SSID to an array of SSID strings.
- Parameters:
scan_ssids_str – string to be appended in the list of scanned SSIDs.
ssids – Pointer to an array where the SSIDs pointers are to be stored.
num_ssids – Maximum number of SSIDs that can be stored.
- Return values:
0 – on success.
-errno – value in case of failure.
-
int wifi_utils_parse_scan_chan(char *scan_chan_str, struct wifi_band_channel *chan, uint8_t max_channels)¶
Convert a string containing a specification of scan channels to an array.
The function will parse a string which specifies channels to be scanned as a string and convert it to an array.
The channel string has to be formatted using the colon (:), comma(,), hyphen (-) and underscore (_) delimiters as follows:
A colon identifies the value preceding it as a band. A band value (2: 2.4 GHz, 5: 5 GHz 6: 6 GHz) has to precede the channels in that band (e.g. 2: etc)
Hyphens (-) are used to identify channel ranges (e.g. 2-7, 32-48 etc)
Commas are used to separate channel values within a band. Channels can be specified as individual values (2,6,48 etc) or channel ranges using hyphens (1-14, 32-48 etc)
Underscores (_) are used to specify multiple band-channel sets (e.g. 2:1,2_5:36,40 etc)
No spaces should be used anywhere, i.e. before/after commas, before/after hyphens etc.
An example channel specification specifying channels in the 2.4 GHz and 5 GHz bands is as below: 2:1,5,7,9-11_5:36-48,100,163-167
- Parameters:
scan_chan_str – List of channels expressed in the format described above.
chan – Pointer to an array where the parsed channels are to be stored.
max_channels – Maximum number of channels to store
- Return values:
0 – on success.
-errno – value in case of failure.
-
WIFI_UTILS_MAX_BAND_STR_LEN¶
-
WIFI_UTILS_MAX_CHAN_STR_LEN¶
Defines
-
WIFI_COUNTRY_CODE_LEN¶
-
WIFI_LISTEN_INTERVAL_MIN¶
-
WIFI_LISTEN_INTERVAL_MAX¶
-
WIFI_SSID_MAX_LEN¶
-
WIFI_PSK_MIN_LEN¶
-
WIFI_PSK_MAX_LEN¶
-
WIFI_SAE_PSWD_MAX_LEN¶
-
WIFI_MAC_ADDR_LEN¶
-
WIFI_CHANNEL_MIN¶
-
WIFI_CHANNEL_MAX¶
-
WIFI_CHANNEL_ANY¶
-
WIFI_INTERFACE_INDEX_MIN¶
-
WIFI_INTERFACE_INDEX_MAX¶
-
WIFI_MGMT_SCAN_SSID_FILT_MAX¶
-
WIFI_MGMT_SCAN_CHAN_MAX_MANUAL¶
-
WIFI_MGMT_BAND_STR_SIZE_MAX¶
-
NET_REQUEST_WIFI_SCAN¶
-
NET_REQUEST_WIFI_CONNECT¶
-
NET_REQUEST_WIFI_DISCONNECT¶
-
NET_REQUEST_WIFI_AP_ENABLE¶
-
NET_REQUEST_WIFI_AP_DISABLE¶
-
NET_REQUEST_WIFI_IFACE_STATUS¶
-
NET_REQUEST_WIFI_PS¶
-
NET_REQUEST_WIFI_PS_MODE¶
-
NET_REQUEST_WIFI_TWT¶
-
NET_REQUEST_WIFI_PS_CONFIG¶
-
NET_REQUEST_WIFI_REG_DOMAIN¶
-
NET_REQUEST_WIFI_PS_TIMEOUT¶
-
NET_REQUEST_WIFI_MODE¶
-
NET_REQUEST_WIFI_PACKET_FILTER¶
-
NET_REQUEST_WIFI_CHANNEL¶
-
NET_EVENT_WIFI_SCAN_RESULT¶
-
NET_EVENT_WIFI_SCAN_DONE¶
-
NET_EVENT_WIFI_CONNECT_RESULT¶
-
NET_EVENT_WIFI_DISCONNECT_RESULT¶
-
NET_EVENT_WIFI_IFACE_STATUS¶
-
NET_EVENT_WIFI_TWT¶
-
NET_EVENT_WIFI_TWT_SLEEP_STATE¶
-
NET_EVENT_WIFI_RAW_SCAN_RESULT¶
-
NET_EVENT_WIFI_DISCONNECT_COMPLETE¶
-
WIFI_MAX_TWT_FLOWS¶
-
WIFI_MAX_TWT_INTERVAL_US¶
-
WIFI_MAX_TWT_WAKE_INTERVAL_US¶
Typedefs
-
typedef void (*scan_result_cb_t)(struct net_if *iface, int status, struct wifi_scan_result *entry)¶
Scan result callback.
- Param iface:
Network interface
- Param status:
Scan result status
- Param entry:
Scan result entry
Enums
-
enum wifi_security_type¶
IEEE 802.11 security types.
Values:
-
enumerator WIFI_SECURITY_TYPE_NONE = 0¶
No security.
-
enumerator WIFI_SECURITY_TYPE_PSK¶
WPA2-PSK security.
-
enumerator WIFI_SECURITY_TYPE_PSK_SHA256¶
WPA2-PSK-SHA256 security.
-
enumerator WIFI_SECURITY_TYPE_SAE¶
WPA3-SAE security.
-
enumerator WIFI_SECURITY_TYPE_WAPI¶
GB 15629.11-2003 WAPI security.
-
enumerator WIFI_SECURITY_TYPE_EAP¶
EAP security - Enterprise.
-
enumerator WIFI_SECURITY_TYPE_WEP¶
WEP security.
-
enumerator WIFI_SECURITY_TYPE_WPA_PSK¶
WPA-PSK security.
-
enumerator __WIFI_SECURITY_TYPE_AFTER_LAST¶
-
enumerator WIFI_SECURITY_TYPE_MAX = __WIFI_SECURITY_TYPE_AFTER_LAST - 1¶
-
enumerator WIFI_SECURITY_TYPE_UNKNOWN¶
-
enumerator WIFI_SECURITY_TYPE_NONE = 0¶
-
enum wifi_mfp_options¶
IEEE 802.11w - Management frame protection.
Values:
-
enumerator WIFI_MFP_DISABLE = 0¶
MFP disabled.
-
enumerator WIFI_MFP_OPTIONAL¶
MFP optional.
-
enumerator WIFI_MFP_REQUIRED¶
MFP required.
-
enumerator __WIFI_MFP_AFTER_LAST¶
-
enumerator WIFI_MFP_MAX = __WIFI_MFP_AFTER_LAST - 1¶
-
enumerator WIFI_MFP_UNKNOWN¶
-
enumerator WIFI_MFP_DISABLE = 0¶
-
enum wifi_frequency_bands¶
IEEE 802.11 operational frequency bands (not exhaustive).
Values:
-
enumerator WIFI_FREQ_BAND_2_4_GHZ = 0¶
2.4 GHz band.
-
enumerator WIFI_FREQ_BAND_5_GHZ¶
5 GHz band.
-
enumerator WIFI_FREQ_BAND_6_GHZ¶
6 GHz band (Wi-Fi 6E, also extends to 7GHz).
-
enumerator __WIFI_FREQ_BAND_AFTER_LAST¶
Number of frequency bands available.
-
enumerator WIFI_FREQ_BAND_MAX = __WIFI_FREQ_BAND_AFTER_LAST - 1¶
Highest frequency band available.
-
enumerator WIFI_FREQ_BAND_UNKNOWN¶
Invalid frequency band.
-
enumerator WIFI_FREQ_BAND_2_4_GHZ = 0¶
-
enum wifi_iface_state¶
Wi-Fi interface states.
Based on https://w1.fi/wpa_supplicant/devel/defs_8h.html#a4aeb27c1e4abd046df3064ea9756f0bc
Values:
-
enumerator WIFI_STATE_DISCONNECTED = 0¶
Interface is disconnected.
-
enumerator WIFI_STATE_INTERFACE_DISABLED¶
Interface is disabled (administratively).
-
enumerator WIFI_STATE_INACTIVE¶
No enabled networks in the configuration.
-
enumerator WIFI_STATE_SCANNING¶
Interface is scanning for networks.
-
enumerator WIFI_STATE_AUTHENTICATING¶
Authentication with a network is in progress.
-
enumerator WIFI_STATE_ASSOCIATING¶
Association with a network is in progress.
-
enumerator WIFI_STATE_ASSOCIATED¶
Association with a network completed.
-
enumerator WIFI_STATE_4WAY_HANDSHAKE¶
4-way handshake with a network is in progress.
-
enumerator WIFI_STATE_GROUP_HANDSHAKE¶
Group Key exchange with a network is in progress.
-
enumerator WIFI_STATE_COMPLETED¶
All authentication completed, ready to pass data.
-
enumerator __WIFI_STATE_AFTER_LAST¶
-
enumerator WIFI_STATE_MAX = __WIFI_STATE_AFTER_LAST - 1¶
-
enumerator WIFI_STATE_UNKNOWN¶
-
enumerator WIFI_STATE_DISCONNECTED = 0¶
-
enum wifi_iface_mode¶
Wi-Fi interface modes.
Based on https://w1.fi/wpa_supplicant/devel/defs_8h.html#a4aeb27c1e4abd046df3064ea9756f0bc
Values:
-
enumerator WIFI_MODE_INFRA = 0¶
Infrastructure station mode.
-
enumerator WIFI_MODE_IBSS = 1¶
IBSS (ad-hoc) station mode.
-
enumerator WIFI_MODE_AP = 2¶
AP mode.
-
enumerator WIFI_MODE_P2P_GO = 3¶
P2P group owner mode.
-
enumerator WIFI_MODE_P2P_GROUP_FORMATION = 4¶
P2P group formation mode.
-
enumerator WIFI_MODE_MESH = 5¶
802.11s Mesh mode.
-
enumerator __WIFI_MODE_AFTER_LAST¶
-
enumerator WIFI_MODE_MAX = __WIFI_MODE_AFTER_LAST - 1¶
-
enumerator WIFI_MODE_UNKNOWN¶
-
enumerator WIFI_MODE_INFRA = 0¶
-
enum wifi_link_mode¶
Wi-Fi link operating modes.
As per https://en.wikipedia.org/wiki/Wi-Fi#Versions_and_generations.
Values:
-
enumerator WIFI_0 = 0¶
802.11 (legacy).
-
enumerator WIFI_1¶
802.11b.
-
enumerator WIFI_2¶
802.11a.
-
enumerator WIFI_3¶
802.11g.
-
enumerator WIFI_4¶
802.11n.
-
enumerator WIFI_5¶
802.11ac.
-
enumerator WIFI_6¶
802.11ax.
-
enumerator WIFI_6E¶
802.11ax 6GHz.
-
enumerator WIFI_7¶
802.11be.
-
enumerator __WIFI_LINK_MODE_AFTER_LAST¶
-
enumerator WIFI_LINK_MODE_MAX = __WIFI_LINK_MODE_AFTER_LAST - 1¶
-
enumerator WIFI_LINK_MODE_UNKNOWN¶
-
enumerator WIFI_0 = 0¶
-
enum wifi_scan_type¶
Wi-Fi scanning types.
Values:
-
enumerator WIFI_SCAN_TYPE_ACTIVE = 0¶
Active scanning (default).
-
enumerator WIFI_SCAN_TYPE_PASSIVE¶
Passive scanning.
-
enumerator WIFI_SCAN_TYPE_ACTIVE = 0¶
-
enum wifi_ps¶
Wi-Fi power save states.
Values:
-
enumerator WIFI_PS_DISABLED = 0¶
Power save disabled.
-
enumerator WIFI_PS_ENABLED¶
Power save enabled.
-
enumerator WIFI_PS_DISABLED = 0¶
-
enum wifi_ps_mode¶
Wi-Fi power save modes.
Values:
-
enumerator WIFI_PS_MODE_LEGACY = 0¶
Legacy power save mode.
-
enumerator WIFI_PS_MODE_WMM¶
WMM power save mode.
-
enumerator WIFI_PS_MODE_LEGACY = 0¶
-
enum wifi_operational_modes¶
Wifi operational mode.
Values:
-
enum wifi_filter¶
Mode filter settings.
Values:
-
enum wifi_twt_operation¶
Wi-Fi Target Wake Time (TWT) operations.
Values:
-
enumerator WIFI_TWT_SETUP = 0¶
TWT setup operation.
-
enumerator WIFI_TWT_TEARDOWN¶
TWT teardown operation.
-
enumerator WIFI_TWT_SETUP = 0¶
-
enum wifi_twt_negotiation_type¶
Wi-Fi Target Wake Time (TWT) negotiation types.
Values:
-
enumerator WIFI_TWT_INDIVIDUAL = 0¶
TWT individual negotiation.
-
enumerator WIFI_TWT_BROADCAST¶
TWT broadcast negotiation.
-
enumerator WIFI_TWT_WAKE_TBTT¶
TWT wake TBTT negotiation.
-
enumerator WIFI_TWT_INDIVIDUAL = 0¶
-
enum wifi_twt_setup_cmd¶
Wi-Fi Target Wake Time (TWT) setup commands.
Values:
-
enumerator WIFI_TWT_SETUP_CMD_REQUEST = 0¶
TWT setup request.
-
enumerator WIFI_TWT_SETUP_CMD_SUGGEST¶
TWT setup suggest (parameters can be changed by AP)
-
enumerator WIFI_TWT_SETUP_CMD_DEMAND¶
TWT setup demand (parameters can not be changed by AP)
-
enumerator WIFI_TWT_SETUP_CMD_GROUPING¶
TWT setup grouping (grouping of TWT flows)
-
enumerator WIFI_TWT_SETUP_CMD_ACCEPT¶
TWT setup accept (parameters accepted by AP)
-
enumerator WIFI_TWT_SETUP_CMD_ALTERNATE¶
TWT setup alternate (alternate parameters suggested by AP)
-
enumerator WIFI_TWT_SETUP_CMD_DICTATE¶
TWT setup dictate (parameters dictated by AP)
-
enumerator WIFI_TWT_SETUP_CMD_REJECT¶
TWT setup reject (parameters rejected by AP)
-
enumerator WIFI_TWT_SETUP_CMD_REQUEST = 0¶
-
enum wifi_twt_setup_resp_status¶
Wi-Fi Target Wake Time (TWT) negotiation status.
Values:
-
enumerator WIFI_TWT_RESP_RECEIVED = 0¶
TWT response received for TWT request.
-
enumerator WIFI_TWT_RESP_NOT_RECEIVED¶
TWT response not received for TWT request.
-
enumerator WIFI_TWT_RESP_RECEIVED = 0¶
-
enum wifi_twt_fail_reason¶
Target Wake Time (TWT) error codes.
Values:
-
enumerator WIFI_TWT_FAIL_UNSPECIFIED¶
Unspecified error.
-
enumerator WIFI_TWT_FAIL_CMD_EXEC_FAIL¶
Command execution failed.
-
enumerator WIFI_TWT_FAIL_OPERATION_NOT_SUPPORTED¶
Operation not supported.
-
enumerator WIFI_TWT_FAIL_UNABLE_TO_GET_IFACE_STATUS¶
Unable to get interface status.
-
enumerator WIFI_TWT_FAIL_DEVICE_NOT_CONNECTED¶
Device not connected to AP.
-
enumerator WIFI_TWT_FAIL_PEER_NOT_HE_CAPAB¶
Peer not HE (802.11ax/Wi-Fi 6) capable.
-
enumerator WIFI_TWT_FAIL_PEER_NOT_TWT_CAPAB¶
Peer not TWT capable.
-
enumerator WIFI_TWT_FAIL_OPERATION_IN_PROGRESS¶
A TWT flow is already in progress.
-
enumerator WIFI_TWT_FAIL_INVALID_FLOW_ID¶
Invalid negotiated flow id.
-
enumerator WIFI_TWT_FAIL_IP_NOT_ASSIGNED¶
IP address not assigned or configured.
-
enumerator WIFI_TWT_FAIL_FLOW_ALREADY_EXISTS¶
Flow already exists.
-
enumerator WIFI_TWT_FAIL_UNSPECIFIED¶
-
enum wifi_ps_param_type¶
Wi-Fi power save parameters.
Values:
-
enumerator WIFI_PS_PARAM_STATE¶
Power save state.
-
enumerator WIFI_PS_PARAM_LISTEN_INTERVAL¶
Power save listen interval.
-
enumerator WIFI_PS_PARAM_WAKEUP_MODE¶
Power save wakeup mode.
-
enumerator WIFI_PS_PARAM_MODE¶
Power save mode.
-
enumerator WIFI_PS_PARAM_TIMEOUT¶
Power save timeout.
-
enumerator WIFI_PS_PARAM_STATE¶
-
enum wifi_ps_wakeup_mode¶
Wi-Fi power save modes.
Values:
-
enumerator WIFI_PS_WAKEUP_MODE_DTIM = 0¶
DTIM based wakeup.
-
enumerator WIFI_PS_WAKEUP_MODE_LISTEN_INTERVAL¶
Listen interval based wakeup.
-
enumerator WIFI_PS_WAKEUP_MODE_DTIM = 0¶
-
enum wifi_config_ps_param_fail_reason¶
Wi-Fi power save error codes.
Values:
-
enumerator WIFI_PS_PARAM_FAIL_UNSPECIFIED¶
Unspecified error.
-
enumerator WIFI_PS_PARAM_FAIL_CMD_EXEC_FAIL¶
Command execution failed.
-
enumerator WIFI_PS_PARAM_FAIL_OPERATION_NOT_SUPPORTED¶
Parameter not supported.
-
enumerator WIFI_PS_PARAM_FAIL_UNABLE_TO_GET_IFACE_STATUS¶
Unable to get interface status.
-
enumerator WIFI_PS_PARAM_FAIL_DEVICE_NOT_CONNECTED¶
Device not connected to AP.
-
enumerator WIFI_PS_PARAM_FAIL_DEVICE_CONNECTED¶
Device already connected to AP.
-
enumerator WIFI_PS_PARAM_LISTEN_INTERVAL_RANGE_INVALID¶
Listen interval out of range.
-
enumerator WIFI_PS_PARAM_FAIL_UNSPECIFIED¶
-
enum net_request_wifi_cmd¶
Wi-Fi management commands.
Values:
-
enumerator NET_REQUEST_WIFI_CMD_SCAN = 1¶
Scan for Wi-Fi networks.
-
enumerator NET_REQUEST_WIFI_CMD_CONNECT¶
Connect to a Wi-Fi network.
-
enumerator NET_REQUEST_WIFI_CMD_DISCONNECT¶
Disconnect from a Wi-Fi network.
-
enumerator NET_REQUEST_WIFI_CMD_AP_ENABLE¶
Enable AP mode.
-
enumerator NET_REQUEST_WIFI_CMD_AP_DISABLE¶
Disable AP mode.
-
enumerator NET_REQUEST_WIFI_CMD_IFACE_STATUS¶
Get interface status.
-
enumerator NET_REQUEST_WIFI_CMD_PS¶
Set power save status.
-
enumerator NET_REQUEST_WIFI_CMD_PS_MODE¶
Set power save mode.
-
enumerator NET_REQUEST_WIFI_CMD_TWT¶
Setup or teardown TWT flow.
-
enumerator NET_REQUEST_WIFI_CMD_PS_CONFIG¶
Get power save config.
-
enumerator NET_REQUEST_WIFI_CMD_REG_DOMAIN¶
Set or get regulatory domain.
-
enumerator NET_REQUEST_WIFI_CMD_PS_TIMEOUT¶
Set power save timeout.
-
enumerator NET_REQUEST_WIFI_CMD_MODE¶
Set or get Mode of operation.
-
enumerator NET_REQUEST_WIFI_CMD_PACKET_FILTER¶
Set or get packet filter setting for current mode.
-
enumerator NET_REQUEST_WIFI_CMD_CHANNEL¶
Set or get Wi-Fi channel for Monitor or TX-Injection mode.
-
enumerator NET_REQUEST_WIFI_CMD_MAX¶
-
enumerator NET_REQUEST_WIFI_CMD_SCAN = 1¶
-
enum net_event_wifi_cmd¶
Wi-Fi management events.
Values:
-
enumerator NET_EVENT_WIFI_CMD_SCAN_RESULT = 1¶
Scan results available.
-
enumerator NET_EVENT_WIFI_CMD_SCAN_DONE¶
Scan done.
-
enumerator NET_EVENT_WIFI_CMD_CONNECT_RESULT¶
Connect result.
-
enumerator NET_EVENT_WIFI_CMD_DISCONNECT_RESULT¶
Disconnect result.
-
enumerator NET_EVENT_WIFI_CMD_IFACE_STATUS¶
Interface status.
-
enumerator NET_EVENT_WIFI_CMD_TWT¶
TWT events.
-
enumerator NET_EVENT_WIFI_CMD_TWT_SLEEP_STATE¶
TWT sleep status: awake or sleeping, can be used by application to determine if it can send data or not.
-
enumerator NET_EVENT_WIFI_CMD_RAW_SCAN_RESULT¶
Raw scan results available.
-
enumerator NET_EVENT_WIFI_CMD_DISCONNECT_COMPLETE¶
Disconnect complete.
-
enumerator NET_EVENT_WIFI_CMD_SCAN_RESULT = 1¶
Functions
-
const char *const wifi_security_txt(enum wifi_security_type security)¶
Helper function to get user-friendly security type name.
-
const char *const wifi_mfp_txt(enum wifi_mfp_options mfp)¶
Helper function to get user-friendly MFP name.
-
const char *const wifi_band_txt(enum wifi_frequency_bands band)¶
Helper function to get user-friendly frequency band name.
-
const char *const wifi_state_txt(enum wifi_iface_state state)¶
Helper function to get user-friendly interface state name.
-
const char *const wifi_mode_txt(enum wifi_iface_mode mode)¶
Helper function to get user-friendly interface mode name.
-
const char *const wifi_link_mode_txt(enum wifi_link_mode link_mode)¶
Helper function to get user-friendly link mode name.
-
const char *const wifi_ps_mode_txt(enum wifi_ps_mode ps_mode)¶
Helper function to get user-friendly ps mode name.
-
const char *const wifi_twt_operation_txt(enum wifi_twt_operation twt_operation)¶
Helper function to get user-friendly twt operation name.
-
const char *const wifi_twt_negotiation_type_txt(enum wifi_twt_negotiation_type twt_negotiation)¶
Helper function to get user-friendly twt negotiation type name.
-
const char *const wifi_twt_setup_cmd_txt(enum wifi_twt_setup_cmd twt_setup)¶
Helper function to get user-friendly twt setup cmd name.
-
static inline const char *wifi_twt_get_err_code_str(int16_t err_no)¶
Helper function to get user-friendly TWT error code name.
-
const char *const wifi_ps_wakeup_mode_txt(enum wifi_ps_wakeup_mode ps_wakeup_mode)¶
Helper function to get user-friendly ps wakeup mode name.
-
static inline const char *wifi_ps_get_config_err_code_str(int16_t err_no)¶
Helper function to get user-friendly power save error code name.
-
void wifi_mgmt_raise_connect_result_event(struct net_if *iface, int status)¶
Wi-Fi management connect result event.
- Parameters:
iface – Network interface
status – Connect result status
-
void wifi_mgmt_raise_disconnect_result_event(struct net_if *iface, int status)¶
Wi-Fi management disconnect result event.
- Parameters:
iface – Network interface
status – Disconnect result status
-
void wifi_mgmt_raise_iface_status_event(struct net_if *iface, struct wifi_iface_status *iface_status)¶
Wi-Fi management interface status event.
- Parameters:
iface – Network interface
iface_status – Interface status
-
void wifi_mgmt_raise_twt_event(struct net_if *iface, struct wifi_twt_params *twt_params)¶
Wi-Fi management TWT event.
- Parameters:
iface – Network interface
twt_params – TWT parameters
-
void wifi_mgmt_raise_twt_sleep_state(struct net_if *iface, int twt_sleep_state)¶
Wi-Fi management TWT sleep state event.
- Parameters:
iface – Network interface
twt_sleep_state – TWT sleep state
-
void wifi_mgmt_raise_raw_scan_result_event(struct net_if *iface, struct wifi_raw_scan_result *raw_scan_info)¶
Wi-Fi management raw scan result event.
- Parameters:
iface – Network interface
raw_scan_info – Raw scan result
-
struct wifi_band_channel¶
- #include <wifi_mgmt.h>
Wi-Fi structure to uniquely identify a band-channel pair.
-
struct wifi_scan_params¶
- #include <wifi_mgmt.h>
Wi-Fi scan parameters structure.
Used to specify parameters which can control how the Wi-Fi scan is performed.
Public Members
-
enum wifi_scan_type scan_type¶
Scan type, see enum wifi_scan_type.
The scan_type is only a hint to the underlying Wi-Fi chip for the preferred mode of scan. The actual mode of scan can depend on factors such as the Wi-Fi chip implementation support, regulatory domain restrictions etc.
-
uint8_t bands¶
Bitmap of bands to be scanned.
Refer to wifi_frequency_bands for bit position of each band.
-
uint16_t dwell_time_active¶
Active scan dwell time (in ms) on a channel.
-
uint16_t dwell_time_passive¶
Passive scan dwell time (in ms) on a channel.
-
const char *ssids[1]¶
Array of SSID strings to scan.
-
uint16_t max_bss_cnt¶
Specifies the maximum number of scan results to return.
These results would be the BSSIDS with the best RSSI values, in all the scanned channels. This should only be used to limit the number of returned scan results, and cannot be counted upon to limit the scan time, since the underlying Wi-Fi chip might have to scan all the channels to find the max_bss_cnt number of APs with the best signal strengths. A value of 0 signifies that there is no restriction on the number of scan results to be returned.
-
struct wifi_band_channel band_chan[1]¶
Channel information array indexed on Wi-Fi frequency bands and channels within that band.
E.g. to scan channel 6 and 11 on the 2.4 GHz band, channel 36 on the 5 GHz band:
chan[0] = {WIFI_FREQ_BAND_2_4_GHZ, 6}; chan[1] = {WIFI_FREQ_BAND_2_4_GHZ, 11}; chan[2] = {WIFI_FREQ_BAND_5_GHZ, 36};
This list specifies the channels to be considered for scan. The underlying Wi-Fi chip can silently omit some channels due to various reasons such as channels not conforming to regulatory restrictions etc. The invoker of the API should ensure that the channels specified follow regulatory rules.
-
enum wifi_scan_type scan_type¶
-
struct wifi_scan_result¶
- #include <wifi_mgmt.h>
Wi-Fi scan result, each result is provided to the net_mgmt_event_callback via its info attribute (see net_mgmt.h)
Public Members
-
uint8_t ssid[WIFI_SSID_MAX_LEN]¶
SSID.
-
uint8_t ssid_length¶
SSID length.
-
uint8_t band¶
Frequency band.
-
uint8_t channel¶
Channel.
-
enum wifi_security_type security¶
Security type.
-
enum wifi_mfp_options mfp¶
MFP options.
-
int8_t rssi¶
RSSI.
-
uint8_t mac[WIFI_MAC_ADDR_LEN]¶
BSSID.
-
uint8_t mac_length¶
BSSID length.
-
uint8_t ssid[WIFI_SSID_MAX_LEN]¶
-
struct wifi_connect_req_params¶
- #include <wifi_mgmt.h>
Wi-Fi connect request parameters.
Public Members
-
const uint8_t *ssid¶
SSID.
-
uint8_t ssid_length¶
SSID length.
-
uint8_t *psk¶
Pre-shared key.
-
uint8_t psk_length¶
Pre-shared key length.
-
uint8_t *sae_password¶
SAE password (same as PSK but with no length restrictions), optional.
-
uint8_t sae_password_length¶
SAE password length.
-
uint8_t band¶
Frequency band.
-
uint8_t channel¶
Channel.
-
enum wifi_security_type security¶
Security type.
-
enum wifi_mfp_options mfp¶
MFP options.
-
int timeout¶
Connect timeout in seconds, SYS_FOREVER_MS for no timeout.
-
const uint8_t *ssid¶
-
struct wifi_status¶
- #include <wifi_mgmt.h>
Generic Wi-Fi status for commands and events.
-
struct wifi_iface_status¶
- #include <wifi_mgmt.h>
Wi-Fi interface status.
Public Members
-
int state¶
Interface state, see enum wifi_iface_state.
-
unsigned int ssid_len¶
SSID length.
-
char ssid[WIFI_SSID_MAX_LEN]¶
SSID.
-
char bssid[WIFI_MAC_ADDR_LEN]¶
BSSID.
-
enum wifi_frequency_bands band¶
Frequency band.
-
unsigned int channel¶
Channel.
-
enum wifi_iface_mode iface_mode¶
Interface mode, see enum wifi_iface_mode.
-
enum wifi_link_mode link_mode¶
Link mode, see enum wifi_link_mode.
-
enum wifi_security_type security¶
Security type, see enum wifi_security_type.
-
enum wifi_mfp_options mfp¶
MFP options, see enum wifi_mfp_options.
-
int rssi¶
RSSI.
-
unsigned char dtim_period¶
DTIM period.
-
unsigned short beacon_interval¶
Beacon interval.
-
bool twt_capable¶
is TWT capable?
-
int state¶
-
struct wifi_ps_params¶
- #include <wifi_mgmt.h>
Wi-Fi power save parameters.
Public Members
-
enum wifi_ps_wakeup_mode wakeup_mode¶
Wi-Fi power save wakeup mode.
-
enum wifi_ps_mode mode¶
Wi-Fi power save mode.
-
unsigned int timeout_ms¶
Wi-Fi power save timeout.
This is the time out to wait after sending a TX packet before going back to power save (in ms) to receive any replies from the AP. Zero means this feature is disabled.
It’s a tradeoff between power consumption and latency.
-
enum wifi_ps_param_type type¶
Wi-Fi power save type.
-
enum wifi_config_ps_param_fail_reason fail_reason¶
Wi-Fi power save fail reason.
-
enum wifi_ps_wakeup_mode wakeup_mode¶
-
struct wifi_twt_params¶
- #include <wifi_mgmt.h>
Wi-Fi TWT parameters.
Public Members
-
enum wifi_twt_operation operation¶
TWT operation, see enum wifi_twt_operation.
-
enum wifi_twt_negotiation_type negotiation_type¶
TWT negotiation type, see enum wifi_twt_negotiation_type.
-
enum wifi_twt_setup_cmd setup_cmd¶
TWT setup command, see enum wifi_twt_setup_cmd.
-
enum wifi_twt_setup_resp_status resp_status¶
TWT setup response status, see enum wifi_twt_setup_resp_status.
-
uint8_t dialog_token¶
Dialog token, used to map requests to responses.
-
uint8_t flow_id¶
Flow ID, used to map setup with teardown.
-
uint64_t twt_interval¶
Interval = Wake up time + Sleeping time.
-
bool responder¶
Requestor or responder.
-
bool trigger¶
Trigger enabled or disabled.
-
bool implicit¶
Implicit or explicit.
-
bool announce¶
Announced or unannounced.
-
uint32_t twt_wake_interval¶
Wake up time.
-
struct wifi_twt_params.[anonymous].[anonymous] setup¶
Setup specific parameters.
-
bool teardown_all¶
Teardown all flows.
-
struct wifi_twt_params.[anonymous].[anonymous] teardown¶
Teardown specific parameters.
-
enum wifi_twt_fail_reason fail_reason¶
TWT fail reason, see enum wifi_twt_fail_reason.
-
enum wifi_twt_operation operation¶
-
struct wifi_twt_flow_info¶
- #include <wifi_mgmt.h>
Wi-Fi TWT flow information.
Public Members
-
uint64_t twt_interval¶
Interval = Wake up time + Sleeping time.
-
uint8_t dialog_token¶
Dialog token, used to map requests to responses.
-
uint8_t flow_id¶
Flow ID, used to map setup with teardown.
-
enum wifi_twt_negotiation_type negotiation_type¶
TWT negotiation type, see enum wifi_twt_negotiation_type.
-
bool responder¶
Requestor or responder.
-
bool trigger¶
Trigger enabled or disabled.
-
bool implicit¶
Implicit or explicit.
-
bool announce¶
Announced or unannounced.
-
uint32_t twt_wake_interval¶
Wake up time.
-
uint64_t twt_interval¶
-
struct wifi_ps_config¶
- #include <wifi_mgmt.h>
Wi-Fi power save configuration.
Public Members
-
char num_twt_flows¶
Number of TWT flows.
-
struct wifi_twt_flow_info twt_flows[8]¶
TWT flow details.
-
struct wifi_ps_params ps_params¶
Power save configuration.
-
char num_twt_flows¶
-
struct wifi_reg_domain¶
- #include <wifi_mgmt.h>
Regulatory domain information or configuration.
Public Members
-
bool force¶
Ignore all other regulatory hints over this one.
-
uint8_t country_code[WIFI_COUNTRY_CODE_LEN]¶
Country code: ISO/IEC 3166-1 alpha-2.
-
bool force¶
-
struct wifi_raw_scan_result¶
- #include <wifi_mgmt.h>
Wi-Fi raw scan result.
-
union wifi_mgmt_events¶
- #include <wifi_mgmt.h>
Public Members
-
struct wifi_scan_result scan_result¶
-
struct wifi_status connect_status¶
-
struct wifi_iface_status iface_status¶
-
struct wifi_twt_params twt_params¶
-
struct wifi_scan_result scan_result¶
-
struct wifi_mode_info¶
- #include <wifi_mgmt.h>
Wi-Fi mode setup.
Public Members
-
uint8_t mode¶
Mode setting for a specific mode of operation.
-
uint8_t if_index¶
Interface index.
-
enum wifi_mgmt_op oper¶
Get or set operation.
-
uint8_t mode¶
-
struct wifi_filter_info¶
- #include <wifi_mgmt.h>
Wi-Fi filter setting for monitor, prmoiscuous, TX-injection modes.
Public Members
-
uint8_t filter¶
Filter setting.
-
uint8_t if_index¶
Interface index.
-
uint16_t buffer_size¶
Filter buffer size.
-
enum wifi_mgmt_op oper¶
Get or set operation.
-
uint8_t filter¶
-
struct wifi_channel_info¶
- #include <wifi_mgmt.h>
Wi-Fi channel setting for monitor and TX-injection modes.
Public Members
-
uint16_t channel¶
Channel value to set.
-
uint8_t if_index¶
Interface index.
-
enum wifi_mgmt_op oper¶
Get or set operation.
-
uint16_t channel¶
-
struct wifi_mgmt_ops¶
- #include <wifi_mgmt.h>
Wi-Fi management API.
Public Members
-
int (*scan)(const struct device *dev, struct wifi_scan_params *params, scan_result_cb_t cb)¶
Scan for Wi-Fi networks.
- Param dev:
Pointer to the device structure for the driver instance.
- Param params:
Scan parameters
- Param cb:
Callback to be called for each result cb parameter is the cb that should be called for each result by the driver. The wifi mgmt part will take care of raising the necessary event etc.
- Return:
0 if ok, < 0 if error
-
int (*connect)(const struct device *dev, struct wifi_connect_req_params *params)¶
Connect to a Wi-Fi network.
- Param dev:
Pointer to the device structure for the driver instance.
- Param params:
Connect parameters
- Return:
0 if ok, < 0 if error
-
int (*disconnect)(const struct device *dev)¶
Disconnect from a Wi-Fi network.
- Param dev:
Pointer to the device structure for the driver instance.
- Return:
0 if ok, < 0 if error
-
int (*ap_enable)(const struct device *dev, struct wifi_connect_req_params *params)¶
Enable AP mode.
- Param dev:
Pointer to the device structure for the driver instance.
- Param params:
AP mode parameters
- Return:
0 if ok, < 0 if error
-
int (*ap_disable)(const struct device *dev)¶
Disable AP mode.
- Param dev:
Pointer to the device structure for the driver instance.
- Return:
0 if ok, < 0 if error
-
int (*iface_status)(const struct device *dev, struct wifi_iface_status *status)¶
Get interface status.
- Param dev:
Pointer to the device structure for the driver instance.
- Param status:
Interface status
- Return:
0 if ok, < 0 if error
-
int (*get_stats)(const struct device *dev, struct net_stats_wifi *stats)¶
Get Wi-Fi statistics.
- Param dev:
Pointer to the device structure for the driver instance.
- Param stats:
Wi-Fi statistics
- Return:
0 if ok, < 0 if error
-
int (*set_power_save)(const struct device *dev, struct wifi_ps_params *params)¶
Set power save status.
- Param dev:
Pointer to the device structure for the driver instance.
- Param params:
Power save parameters
- Return:
0 if ok, < 0 if error
-
int (*set_twt)(const struct device *dev, struct wifi_twt_params *params)¶
Setup or teardown TWT flow.
- Param dev:
Pointer to the device structure for the driver instance.
- Param params:
TWT parameters
- Return:
0 if ok, < 0 if error
-
int (*get_power_save_config)(const struct device *dev, struct wifi_ps_config *config)¶
Get power save config.
- Param dev:
Pointer to the device structure for the driver instance.
- Param config:
Power save config
- Return:
0 if ok, < 0 if error
-
int (*reg_domain)(const struct device *dev, struct wifi_reg_domain *reg_domain)¶
Set or get regulatory domain.
- Param dev:
Pointer to the device structure for the driver instance.
- Param reg_domain:
Regulatory domain
- Return:
0 if ok, < 0 if error
-
int (*filter)(const struct device *dev, struct wifi_filter_info *filter)¶
Set or get packet filter settings for monitor and promiscuous modes.
- Param dev:
Pointer to the device structure for the driver instance.
- Param packet:
filter settings
- Return:
0 if ok, < 0 if error
-
int (*mode)(const struct device *dev, struct wifi_mode_info *mode)¶
Set or get mode of operation.
- Param dev:
Pointer to the device structure for the driver instance.
- Param mode:
settings
- Return:
0 if ok, < 0 if error
-
int (*channel)(const struct device *dev, struct wifi_channel_info *channel)¶
Set or get current channel of operation.
- Param dev:
Pointer to the device structure for the driver instance.
- Param channel:
settings
- Return:
0 if ok, < 0 if error
-
int (*scan)(const struct device *dev, struct wifi_scan_params *params, scan_result_cb_t cb)¶
-
struct net_wifi_mgmt_offload¶
- #include <wifi_mgmt.h>
Wi-Fi management offload API.
Public Members
-
struct ethernet_api wifi_iface¶
Mandatory to get in first position.
A network device should indeed provide a pointer on such net_if_api structure. So we make current structure pointer that can be casted to a net_if_api structure pointer. Ethernet API
-
const struct wifi_mgmt_ops *const wifi_mgmt_api¶
Wi-Fi management API.
-
struct ethernet_api wifi_iface¶
-
int wifi_utils_parse_scan_bands(char *scan_bands_str, uint8_t *band_map)¶