Skip to content

Commit 92da8cb

Browse files
jukkarkartben
authored andcommitted
wifi: shell: Return text description of connection error
If "wifi connect" fails, tell user why in textual format. This helps debugging connectivity issues. Signed-off-by: Jukka Rissanen <[email protected]>
1 parent 86c4b8d commit 92da8cb

File tree

4 files changed

+51
-28
lines changed

4 files changed

+51
-28
lines changed

include/zephyr/net/wifi.h

+30
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,33 @@
3838
extern "C" {
3939
#endif
4040

41+
/** @brief Wi-Fi connect result codes. To be overlaid on top of \ref wifi_status
42+
* in the connect result event for detailed status.
43+
*/
44+
enum wifi_conn_status {
45+
/** Connection successful */
46+
WIFI_STATUS_CONN_SUCCESS = 0,
47+
/** Connection failed - generic failure */
48+
WIFI_STATUS_CONN_FAIL,
49+
/** Connection failed - wrong password
50+
* Few possible reasons for 4-way handshake failure that we can guess are as follows:
51+
* 1) Incorrect key
52+
* 2) EAPoL frames lost causing timeout
53+
*
54+
* #1 is the likely cause, so, we convey to the user that it is due to
55+
* Wrong passphrase/password.
56+
*/
57+
WIFI_STATUS_CONN_WRONG_PASSWORD,
58+
/** Connection timed out */
59+
WIFI_STATUS_CONN_TIMEOUT,
60+
/** Connection failed - AP not found */
61+
WIFI_STATUS_CONN_AP_NOT_FOUND,
62+
/** Last connection status */
63+
WIFI_STATUS_CONN_LAST_STATUS,
64+
/** Connection disconnected status */
65+
WIFI_STATUS_DISCONN_FIRST_STATUS = WIFI_STATUS_CONN_LAST_STATUS,
66+
};
67+
4168
/** @brief IEEE 802.11 security types. */
4269
enum wifi_security_type {
4370
/** No security. */
@@ -708,6 +735,9 @@ enum wifi_ap_config_param {
708735
WIFI_AP_CONFIG_PARAM_VHT_CAPAB = BIT(4),
709736
};
710737

738+
/** Helper function to get user-friendly status name for the status code. */
739+
const char *wifi_conn_status_txt(enum wifi_conn_status status);
740+
711741
#ifdef __cplusplus
712742
}
713743
#endif

include/zephyr/net/wifi_mgmt.h

-27
Original file line numberDiff line numberDiff line change
@@ -587,33 +587,6 @@ struct wifi_connect_req_params {
587587
enum wifi_frequency_bandwidths bandwidth;
588588
};
589589

590-
/** @brief Wi-Fi connect result codes. To be overlaid on top of \ref wifi_status
591-
* in the connect result event for detailed status.
592-
*/
593-
enum wifi_conn_status {
594-
/** Connection successful */
595-
WIFI_STATUS_CONN_SUCCESS = 0,
596-
/** Connection failed - generic failure */
597-
WIFI_STATUS_CONN_FAIL,
598-
/** Connection failed - wrong password
599-
* Few possible reasons for 4-way handshake failure that we can guess are as follows:
600-
* 1) Incorrect key
601-
* 2) EAPoL frames lost causing timeout
602-
*
603-
* #1 is the likely cause, so, we convey to the user that it is due to
604-
* Wrong passphrase/password.
605-
*/
606-
WIFI_STATUS_CONN_WRONG_PASSWORD,
607-
/** Connection timed out */
608-
WIFI_STATUS_CONN_TIMEOUT,
609-
/** Connection failed - AP not found */
610-
WIFI_STATUS_CONN_AP_NOT_FOUND,
611-
/** Last connection status */
612-
WIFI_STATUS_CONN_LAST_STATUS,
613-
/** Connection disconnected status */
614-
WIFI_STATUS_DISCONN_FIRST_STATUS = WIFI_STATUS_CONN_LAST_STATUS,
615-
};
616-
617590
/** @brief Wi-Fi disconnect reason codes. To be overlaid on top of \ref wifi_status
618591
* in the disconnect result event for detailed reason.
619592
*/

subsys/net/l2/wifi/wifi_mgmt.c

+18
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,24 @@ const char *wifi_ps_exit_strategy_txt(enum wifi_ps_exit_strategy ps_exit_strateg
333333
}
334334
}
335335

336+
const char *wifi_conn_status_txt(enum wifi_conn_status status)
337+
{
338+
switch (status) {
339+
case WIFI_STATUS_CONN_SUCCESS:
340+
return "Connection successful";
341+
case WIFI_STATUS_CONN_FAIL:
342+
return "Connection failed";
343+
case WIFI_STATUS_CONN_WRONG_PASSWORD:
344+
return "Wrong password";
345+
case WIFI_STATUS_CONN_TIMEOUT:
346+
return "Connection timeout";
347+
case WIFI_STATUS_CONN_AP_NOT_FOUND:
348+
return "AP not found";
349+
default:
350+
return "UNKNOWN";
351+
}
352+
}
353+
336354
static const struct wifi_mgmt_ops *const get_wifi_api(struct net_if *iface)
337355
{
338356
const struct device *dev = net_if_get_device(iface);

subsys/net/l2/wifi/wifi_shell.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,9 @@ static void handle_wifi_connect_result(struct net_mgmt_event_callback *cb)
315315
const struct shell *sh = context.sh;
316316

317317
if (status->status) {
318-
PR_WARNING("Connection request failed (%d)\n", status->status);
318+
PR_WARNING("Connection request failed (%s/%d)\n",
319+
wifi_conn_status_txt(status->status),
320+
status->status);
319321
} else {
320322
PR("Connected\n");
321323
}

0 commit comments

Comments
 (0)