312 lines
7.7 KiB
C

/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) Camden Dixie O'Brien
*/
#include "wifi.h"
#include "console.h"
#include "settings.h"
#include "esp_event.h"
#include "esp_log.h"
#include "esp_system.h"
#include "esp_wifi.h"
#include "freertos/event_groups.h"
#include <string.h>
#define TAG "Wifi"
#define CONFIG_MAX_IPV6_ADDRS 5
static wifi_config_t config;
static WifiStatus status;
static unsigned retries;
static bool have_ipv4;
static esp_netif_ip_info_t ipv4;
static esp_ip6_addr_t ipv6_addrs[CONFIG_MAX_IPV6_ADDRS];
static unsigned ipv6_count;
static esp_netif_t *net_if;
static const char *ipv6_type_str(esp_ip6_addr_t *addr)
{
switch (esp_netif_ip6_get_addr_type(addr)) {
case ESP_IP6_ADDR_IS_GLOBAL:
return "Global";
case ESP_IP6_ADDR_IS_LINK_LOCAL:
return "Link local";
case ESP_IP6_ADDR_IS_SITE_LOCAL:
return "Site local";
case ESP_IP6_ADDR_IS_UNIQUE_LOCAL:
return "Unique local";
case ESP_IP6_ADDR_IS_IPV4_MAPPED_IPV6:
return "IPv4 mapped";
default:
return "Unknown:";
}
}
static void wifi_event_handler(
void *arg, esp_event_base_t event_base, int32_t event_id,
void *event_data)
{
(void)arg;
(void)event_base;
esp_err_t error;
switch (event_id) {
case WIFI_EVENT_STA_START:
error = esp_wifi_connect();
if (error != ESP_OK)
ESP_LOGE(TAG, "Error connecting to WiFi: %04x", error);
break;
case WIFI_EVENT_STA_CONNECTED:
error = esp_netif_create_ip6_linklocal(net_if);
if (error != ESP_OK)
ESP_LOGE(TAG, "Error creating IPv6 address");
break;
case WIFI_EVENT_STA_DISCONNECTED:
if (retries < CONFIG_WIFI_MAX_RETRIES) {
ESP_LOGI(TAG, "Retrying connection");
error = esp_wifi_connect();
if (error != ESP_OK)
ESP_LOGE(TAG, "Error connecting to WiFi: %04x", error);
++retries;
} else {
ESP_LOGW(
TAG, "Failed to connect to network %s", config.sta.ssid);
}
break;
default:
ESP_LOGI(TAG, "Unhandled WiFi event: %ld", event_id);
break;
}
}
static void got_ip_event_handler(
void *arg, esp_event_base_t event_base, int32_t event_id,
void *event_data)
{
(void)arg;
(void)event_base;
switch (event_id) {
case IP_EVENT_STA_GOT_IP: {
ip_event_got_ip_t *got_ip_data = (ip_event_got_ip_t *)event_data;
memcpy(&ipv4, &got_ip_data->ip_info, sizeof(ipv4));
have_ipv4 = true;
ESP_LOGI(TAG, "Got IPv4 address " IPSTR, IP2STR(&ipv4.ip));
status = WIFI_STATUS_CONNECTED;
break;
}
case IP_EVENT_GOT_IP6: {
ip_event_got_ip6_t *got_ip6_data = (ip_event_got_ip6_t *)event_data;
memcpy(
&ipv6_addrs[ipv6_count], &got_ip6_data->ip6_info.ip,
sizeof(esp_ip6_addr_t));
ESP_LOGI(
TAG, "Got IPv6 address " IPV6STR " (%s)",
IPV62STR(ipv6_addrs[ipv6_count]),
ipv6_type_str(&ipv6_addrs[ipv6_count]));
++ipv6_count;
status = WIFI_STATUS_CONNECTED;
break;
}
default:
ESP_LOGI(TAG, "Unhandled IP event received: %ld", event_id);
break;
}
}
static void handle_hostname_update(const char *hostname)
{
const esp_err_t error = esp_netif_set_hostname(net_if, hostname);
if (error != ESP_OK)
ESP_LOGE(TAG, "Failed to set hostname: %04x", error);
wifi_reconnect();
}
static void handle_ssid_update(const char *ssid)
{
ESP_LOGI(TAG, "SSID updated");
if (strlen(ssid) > sizeof(config.sta.ssid) - 1)
ESP_LOGW(TAG, "SSID too long (truncated)");
strncpy((char *)config.sta.ssid, ssid, sizeof(config.sta.ssid));
config.sta.ssid[sizeof(config.sta.ssid) - 1] = '\0';
const esp_err_t error = esp_wifi_set_config(WIFI_IF_STA, &config);
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error setting config: %04x", error);
return;
}
wifi_reconnect();
}
static void handle_psk_update(const char *psk)
{
ESP_LOGI(TAG, "PSK updated");
if (strlen(psk) > sizeof(config.sta.password) - 1)
ESP_LOGW(TAG, "PSK too long (truncated)");
strncpy((char *)config.sta.password, psk, sizeof(config.sta.password));
config.sta.password[sizeof(config.sta.password) - 1] = '\0';
const esp_err_t error = esp_wifi_set_config(WIFI_IF_STA, &config);
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error setting config: %04x", error);
return;
}
wifi_reconnect();
}
static int command_func(int argc, char **argv)
{
if (argc != 2) {
printf("Invalid number of arguments\n");
return 1;
} else if (strcmp(argv[1], "status") == 0) {
printf(
"%s\n",
status == WIFI_STATUS_CONNECTED ? "Connected" : "Disconnected");
return 0;
} else if (strcmp(argv[1], "reconnect") == 0) {
wifi_reconnect();
return 0;
} else if (strcmp(argv[1], "ipv4") == 0) {
if (!have_ipv4) {
printf("IPv4 not configured\n");
return 1;
}
printf(IPSTR "\n", IP2STR(&ipv4.ip));
printf("Netmask: " IPSTR "\n", IP2STR(&ipv4.netmask));
printf("Gateway: " IPSTR "\n", IP2STR(&ipv4.gw));
return 0;
} else if (strcmp(argv[1], "ipv6") == 0) {
if (ipv6_count == 0) {
printf("IPv6 not configured\n");
return 1;
}
for (unsigned i = 0; i < ipv6_count; ++i) {
printf(
"%-12s " IPV6STR "\n", ipv6_type_str(&ipv6_addrs[i]),
IPV62STR(ipv6_addrs[i]));
}
return 0;
} else {
printf("Subcommand not recognised\n");
return 1;
}
}
void wifi_init(void)
{
esp_err_t error;
status = WIFI_STATUS_DISCONNECTED;
have_ipv4 = false;
ipv6_count = 0;
error = esp_netif_init();
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error initializing network stack: %04x", error);
return;
}
error = esp_event_loop_create_default();
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error creating event loop: %04x", error);
return;
}
net_if = esp_netif_create_default_wifi_sta();
wifi_init_config_t init_config = WIFI_INIT_CONFIG_DEFAULT();
error = esp_wifi_init(&init_config);
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error initializing WiFi stack: %04x", error);
return;
}
esp_event_handler_instance_t instance;
error = esp_event_handler_instance_register(
WIFI_EVENT, ESP_EVENT_ANY_ID, &wifi_event_handler, NULL, &instance);
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error registering WiFi event handler: %04x", error);
return;
}
error = esp_event_handler_instance_register(
IP_EVENT, ESP_EVENT_ANY_ID, &got_ip_event_handler, NULL, &instance);
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error registering IP event handler: %04x", error);
return;
}
error = esp_wifi_set_mode(WIFI_MODE_STA);
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error setting mode: %04x", error);
return;
}
char hostname[SETTINGS_MAX_VALUE_SIZE];
(void)settings_get_hostname(hostname, SETTINGS_MAX_VALUE_SIZE);
error = esp_netif_set_hostname(net_if, hostname);
if (error != ESP_OK)
ESP_LOGE(TAG, "Failed to set hostname: %04x", error);
memset(&config, 0, sizeof(config));
if (settings_get_ssid((char *)config.sta.ssid, sizeof(config.sta.ssid))
> sizeof(config.sta.ssid))
ESP_LOGW(TAG, "SSID too long (truncated)");
if (settings_get_psk(
(char *)config.sta.password, sizeof(config.sta.password))
> sizeof(config.sta.password))
ESP_LOGW(TAG, "PSK too long (truncated)");
error = esp_wifi_set_config(WIFI_IF_STA, &config);
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error setting config: %04x", error);
return;
}
error = esp_wifi_start();
if (error != ESP_OK) {
ESP_LOGE(TAG, "Error starting WiFi: %04x", error);
return;
}
settings_add_hostname_callback(&handle_hostname_update);
settings_add_ssid_callback(&handle_ssid_update);
settings_add_psk_callback(&handle_psk_update);
console_register(
"wifi", "Manage WiFi connection",
"wifi <status|reconnect|ipv4|ipv6>", command_func);
}
void wifi_reconnect(void)
{
esp_err_t error;
error = esp_wifi_disconnect();
if (error != ESP_OK)
ESP_LOGE(TAG, "Error disconnecting from WiFi: %04x", error);
error = esp_wifi_connect();
if (error != ESP_OK)
ESP_LOGE(TAG, "Error connecting to WiFi: %04x", error);
retries = 0;
}
WifiStatus get_wifi_status(void)
{
return status;
}