9#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 1, 0)
10#include <esp_eap_client.h>
20#include <user_interface.h>
36#ifdef USE_CAPTIVE_PORTAL
44#ifdef USE_IMPROV_SERIAL
48#ifdef USE_PROVISIONING
54static const char *
const TAG =
"wifi";
73 char *heap_data =
new char[
len + 1];
74 std::memcpy(heap_data, str,
len);
75 heap_data[
len] =
'\0';
92 std::memcpy(this->storage_, other.storage_, INLINE_CAPACITY + 1);
95 other.storage_[0] =
'\0';
113 return this->
size() == other.
size() && std::memcmp(this->
data(), other.
data(), this->size()) == 0;
116 return this->
size() == other.
size() && std::memcmp(this->
data(), other.
c_str(), this->size()) == 0;
315#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_INFO
316#ifdef USE_WIFI_PHY_MODE
320 return LOG_STR(
"11B");
322 return LOG_STR(
"11G");
324 return LOG_STR(
"11N");
325 return LOG_STR(
"Auto");
329static const LogString *retry_phase_to_log_string(
WiFiRetryPhase phase) {
331 return LOG_STR(
"INITIAL_CONNECT");
332#ifdef USE_WIFI_FAST_CONNECT
334 return LOG_STR(
"FAST_CONNECT_CYCLING");
337 return LOG_STR(
"EXPLICIT_HIDDEN");
339 return LOG_STR(
"SCAN_CONNECTING");
341 return LOG_STR(
"RETRY_HIDDEN");
343 return LOG_STR(
"RESTARTING");
344 return LOG_STR(
"UNKNOWN");
351 return !this->
sta_.empty() && this->
sta_[0].get_hidden();
357 for (
size_t i = 0; i < this->
sta_.size(); i++) {
358 if (!this->
sta_[i].get_hidden()) {
359 return static_cast<int8_t
>(i);
370static constexpr uint8_t WIFI_RETRY_COUNT_PER_BSSID = 2;
374static constexpr uint8_t WIFI_RETRY_COUNT_PER_SSID = 1;
378static constexpr uint8_t WIFI_RETRY_COUNT_PER_AP = 1;
382static constexpr uint32_t WIFI_COOLDOWN_DURATION_MS = 500;
387static constexpr uint32_t WIFI_COOLDOWN_WITH_AP_ACTIVE_MS = 30000;
392static constexpr uint32_t WIFI_SCAN_TIMEOUT_MS = 31000;
402static constexpr uint32_t WIFI_CONNECT_TIMEOUT_MS = 46000;
404static constexpr uint8_t get_max_retries_for_phase(
WiFiRetryPhase phase) {
407#ifdef USE_WIFI_FAST_CONNECT
411 return WIFI_RETRY_COUNT_PER_AP;
414 return WIFI_RETRY_COUNT_PER_SSID;
417 return WIFI_RETRY_COUNT_PER_BSSID;
420 return WIFI_RETRY_COUNT_PER_SSID;
422 return WIFI_RETRY_COUNT_PER_BSSID;
426static void apply_scan_result_to_params(WiFiAP ¶ms,
const WiFiScanResult &scan) {
427 params.set_hidden(
false);
428 params.set_ssid(scan.get_ssid());
429 params.set_bssid(scan.get_bssid());
430 params.set_channel(scan.get_channel());
445 for (
const auto &conf : this->
sta_) {
446 if (conf.ssid_ == ssid && conf.get_hidden()) {
453 if (scan.ssid_ == ssid) {
467#ifdef USE_CAPTIVE_PORTAL
474#ifdef USE_IMPROV_SERIAL
493 if (ssid[0] ==
'\0') {
496 for (
const auto &sta : this->
sta_) {
498 if (sta.get_hidden()) {
502 if (sta.ssid_.empty()) {
503 if (sta.has_bssid() && std::memcmp(sta.get_bssid().data(), bssid, 6) == 0) {
509 if (sta.ssid_ == ssid) {
518 if (it.bssid == bssid) {
530#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE
536 char bssid_s[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
538 ESP_LOGV(TAG,
"- " LOG_SECRET(
"'%s'")
" " LOG_SECRET(
"(%s)")
" %ddB Ch:%u", ssid, bssid_s, rssi, channel);
562 for (
size_t i = start_index + 1; i < this->
sta_.size(); i++) {
563 const auto &sta = this->
sta_[i];
568 if (!include_explicit_hidden && sta.get_hidden()) {
570 if (first_non_hidden_idx < 0 ||
static_cast<int8_t
>(i) < first_non_hidden_idx) {
571 ESP_LOGD(TAG,
"Skipping " LOG_SECRET(
"'%s'")
" (explicit hidden, already tried)", sta.ssid_.c_str());
579 ESP_LOGD(TAG,
"Hidden candidate " LOG_SECRET(
"'%s'")
" at index %d", sta.ssid_.c_str(),
static_cast<int>(i));
580 return static_cast<int8_t
>(i);
582 ESP_LOGD(TAG,
"Skipping hidden retry for visible network " LOG_SECRET(
"'%s'"), sta.ssid_.c_str());
591 if (!this->
sta_.empty() && this->sta_[0].get_hidden()) {
592 ESP_LOGI(TAG,
"Starting with explicit hidden network (highest priority)");
602#if defined(USE_ESP32) && defined(USE_WIFI_WPA2_EAP) && ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE
603static const char *eap_phase2_to_str(esp_eap_ttls_phase2_types
type) {
605 case ESP_EAP_TTLS_PHASE2_PAP:
607 case ESP_EAP_TTLS_PHASE2_CHAP:
609 case ESP_EAP_TTLS_PHASE2_MSCHAP:
611 case ESP_EAP_TTLS_PHASE2_MSCHAPV2:
613 case ESP_EAP_TTLS_PHASE2_EAP:
624#if defined(USE_ESP32) && defined(USE_WIFI_RUNTIME_POWER_SAVE)
629 ESP_LOGE(TAG,
"Failed semaphore");
636#if defined(USE_PROVISIONING) && defined(USE_WIFI_AP)
644 ESP_LOGD(TAG,
"Provisioning window closed; disabling AP");
662 ESP_LOGCONFIG(TAG,
"Starting");
668#ifdef USE_WIFI_FAST_CONNECT
669#ifdef USE_WIFI_FAST_CONNECT_IN_FLASH
670 const bool fast_connect_in_flash =
true;
672 const bool fast_connect_in_flash =
false;
680 ESP_LOGD(TAG,
"Loaded settings: %s", save.ssid);
684 sta.set_password(save.password);
691 ESP_LOGV(TAG,
"Setting Output Power Option failed");
694#if defined(USE_ESP32) && defined(USE_WIFI_RUNTIME_POWER_SAVE)
698 if (semaphore_count > 0) {
708 ESP_LOGV(TAG,
"Setting Power Save Option failed");
712#ifdef USE_WIFI_FAST_CONNECT
717 if (loaded_fast_connect) {
718 ESP_LOGI(TAG,
"Starting fast_connect (saved) " LOG_SECRET(
"'%s'"), params.
ssid_.
c_str());
720 }
else if (!this->
sta_.empty() && !this->sta_[0].get_hidden()) {
722 ESP_LOGI(TAG,
"Starting fast_connect (config) " LOG_SECRET(
"'%s'"), this->
sta_[0].ssid_.c_str());
735 }
else if (this->
has_ap()) {
738 ESP_LOGV(TAG,
"Setting Output Power Option failed");
740#ifdef USE_CAPTIVE_PORTAL
759 ESP_LOGW(TAG,
"Restarting adapter");
782#if defined(USE_WIFI_CONNECT_TRIGGER) || defined(USE_WIFI_DISCONNECT_TRIGGER)
784#ifdef USE_WIFI_DISCONNECT_TRIGGER
789#ifdef USE_WIFI_CONNECT_TRIGGER
809 uint32_t cooldown_duration = portal_active ? WIFI_COOLDOWN_WITH_AP_ACTIVE_MS : WIFI_COOLDOWN_DURATION_MS;
833 ESP_LOGW(TAG,
"Connection lost; reconnecting");
840#ifdef USE_WIFI_CONNECT_STATE_LISTENERS
873 bool provisioning_closed =
false;
874#ifdef USE_PROVISIONING
878 provisioning_closed =
883 ESP_LOGI(TAG,
"Starting fallback AP");
885#ifdef USE_CAPTIVE_PORTAL
910 bool suppress =
false;
911#ifdef USE_PROVISIONING
921 ESP_LOGE(TAG,
"Can't connect; rebooting");
928#if defined(USE_ESP32) && defined(USE_WIFI_RUNTIME_POWER_SAVE)
936 ESP_LOGV(TAG,
"Switching to high-performance mode (%" PRIu32
" active %s)", (
uint32_t) semaphore_count,
937 semaphore_count == 1 ? LOG_STR_LITERAL(
"request") : LOG_STR_LITERAL(
"requests"));
944 ESP_LOGV(TAG,
"Restoring power save mode to configured setting");
983 static constexpr size_t AP_SSID_MAX_LEN = 32;
984 static constexpr size_t AP_SSID_PREFIX_LEN = 25;
985 static constexpr size_t AP_SSID_SUFFIX_LEN = 7;
988 const char *name_ptr = app_name.
c_str();
989 size_t name_len = app_name.length();
991 if (name_len <= AP_SSID_MAX_LEN) {
996 char ssid_buf[AP_SSID_MAX_LEN + 1];
999 memcpy(ssid_buf, name_ptr, AP_SSID_PREFIX_LEN);
1000 memcpy(ssid_buf + AP_SSID_PREFIX_LEN, name_ptr + name_len - AP_SSID_SUFFIX_LEN, AP_SSID_SUFFIX_LEN);
1002 memcpy(ssid_buf, name_ptr, AP_SSID_MAX_LEN);
1004 ssid_buf[AP_SSID_MAX_LEN] =
'\0';
1010 char ip_buf[network::IP_ADDRESS_BUFFER_SIZE];
1014 " AP Password: '%s'\n"
1016 this->
ap_.
ssid_.
c_str(), this->ap_.password_.c_str(), this->wifi_soft_ap_ip().str_to(ip_buf));
1018#ifdef USE_WIFI_MANUAL_IP
1020 if (manual_ip.has_value()) {
1021 char static_ip_buf[network::IP_ADDRESS_BUFFER_SIZE];
1022 char gateway_buf[network::IP_ADDRESS_BUFFER_SIZE];
1023 char subnet_buf[network::IP_ADDRESS_BUFFER_SIZE];
1025 " AP Static IP: '%s'\n"
1026 " AP Gateway: '%s'\n"
1028 manual_ip->static_ip.str_to(static_ip_buf), manual_ip->gateway.str_to(gateway_buf),
1029 manual_ip->subnet.str_to(subnet_buf));
1063 if (config ==
nullptr) {
1064 ESP_LOGE(TAG,
"No valid network config (selected_sta_index_=%d, sta_.size()=%zu)",
1074#ifdef USE_WIFI_FAST_CONNECT
1092 apply_scan_result_to_params(params, this->
scan_result_[0]);
1106 return config ? *config :
WiFiAP{};
1113 strncpy(save.ssid, ssid,
sizeof(save.ssid) - 1);
1114 strncpy(save.password, password,
sizeof(save.password) - 1);
1121 sta.set_password(password);
1131 ESP_LOGD(TAG,
"Exiting cooldown early due to new WiFi credentials");
1138 char bssid_s[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
1147 "Connecting to " LOG_SECRET(
"'%s'")
" " LOG_SECRET(
"(%s)")
" (priority %d, attempt %u/%u in phase %s)...",
1151#ifdef ESPHOME_LOG_HAS_VERBOSE
1153 "Connection Params:\n"
1157 ESP_LOGV(TAG,
" BSSID: %s", bssid_s);
1159 ESP_LOGV(TAG,
" BSSID: Not Set");
1162#ifdef USE_WIFI_WPA2_EAP
1163 const auto &eap_opt = ap.
get_eap();
1164 if (eap_opt.has_value()) {
1165 const EAPAuth &eap_config = *eap_opt;
1169 " WPA2 Enterprise authentication configured:\n"
1170 " Identity: " LOG_SECRET(
"'%s'")
"\n"
1171 " Username: " LOG_SECRET(
"'%s'")
"\n"
1172 " Password: " LOG_SECRET(
"'%s'"),
1175#if defined(USE_ESP32) && defined(USE_WIFI_WPA2_EAP) && ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE
1176 ESP_LOGV(TAG,
" TTLS Phase 2: " LOG_SECRET(
"'%s'"), eap_phase2_to_str(eap_config.
ttls_phase_2));
1178 bool ca_cert_present = eap_config.
ca_cert !=
nullptr && strlen(eap_config.
ca_cert);
1183 " Client Cert: %s\n"
1185 ca_cert_present ? LOG_STR_LITERAL(
"present") : LOG_STR_LITERAL(
"not present"),
1186 client_cert_present ? LOG_STR_LITERAL(
"present") : LOG_STR_LITERAL(
"not present"),
1187 client_key_present ? LOG_STR_LITERAL(
"present") : LOG_STR_LITERAL(
"not present"));
1190 ESP_LOGV(TAG,
" Password: " LOG_SECRET(
"'%s'"), ap.
password_.
c_str());
1191#ifdef USE_WIFI_WPA2_EAP
1197 ESP_LOGV(TAG,
" Channel not set");
1199#ifdef USE_WIFI_MANUAL_IP
1201 if (manual_ip.has_value()) {
1203 char static_ip_buf[network::IP_ADDRESS_BUFFER_SIZE];
1204 char gateway_buf[network::IP_ADDRESS_BUFFER_SIZE];
1205 char subnet_buf[network::IP_ADDRESS_BUFFER_SIZE];
1206 char dns1_buf[network::IP_ADDRESS_BUFFER_SIZE];
1207 char dns2_buf[network::IP_ADDRESS_BUFFER_SIZE];
1208 ESP_LOGV(TAG,
" Manual IP: Static IP=%s Gateway=%s Subnet=%s DNS1=%s DNS2=%s",
m.static_ip.str_to(static_ip_buf),
1209 m.gateway.str_to(gateway_buf),
m.subnet.str_to(subnet_buf),
m.dns1.str_to(dns1_buf),
1210 m.dns2.str_to(dns2_buf));
1214 ESP_LOGV(TAG,
" Using DHCP IP");
1216 ESP_LOGV(TAG,
" Hidden: %s", YESNO(ap.
get_hidden()));
1226 ESP_LOGE(TAG,
"wifi_sta_connect_ failed");
1246 return LOG_STR(
"\033[0;32m"
1252 }
else if (rssi >= -65) {
1253 return LOG_STR(
"\033[0;33m"
1260 }
else if (rssi >= -85) {
1261 return LOG_STR(
"\033[0;33m"
1269 return LOG_STR(
"\033[0;31m"
1281 char bssid_s[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
1284 char ip_buf[network::IP_ADDRESS_BUFFER_SIZE];
1287 ESP_LOGCONFIG(TAG,
" IP Address: %s", ip.str_to(ip_buf));
1292 char ssid_buf[SSID_BUFFER_SIZE];
1293 char subnet_buf[network::IP_ADDRESS_BUFFER_SIZE];
1294 char gateway_buf[network::IP_ADDRESS_BUFFER_SIZE];
1295 char dns1_buf[network::IP_ADDRESS_BUFFER_SIZE];
1296 char dns2_buf[network::IP_ADDRESS_BUFFER_SIZE];
1299 " SSID: " LOG_SECRET(
"'%s'")
"\n"
1300 " BSSID: " LOG_SECRET(
"%s")
"\n"
1302 " Signal strength: %d dB %s\n"
1303 " Channel: %" PRId32
"\n"
1312#ifdef ESPHOME_LOG_HAS_VERBOSE
1314 ESP_LOGV(TAG,
" Priority: %d", this->
get_sta_priority(config->get_bssid()));
1317#ifdef USE_WIFI_11KV_SUPPORT
1321 this->
btm_ ? LOG_STR_LITERAL(
"enabled") : LOG_STR_LITERAL(
"disabled"),
1322 this->
rrm_ ? LOG_STR_LITERAL(
"enabled") : LOG_STR_LITERAL(
"disabled"));
1330 ESP_LOGD(TAG,
"Enabling");
1344 ESP_LOGD(TAG,
"Disabling");
1352 ESP_LOGD(TAG,
"Starting scan");
1404 return a.
get_rssi() > b.get_rssi();
1430template<
typename VectorType>
static void insertion_sort_scan_results(VectorType &results) {
1436 static_assert(!std::is_polymorphic<WiFiScanResult>::value,
"WiFiScanResult must not have vtable");
1437 static_assert(!std::is_polymorphic<CompactString>::value,
"CompactString must not have vtable");
1440 static_assert(std::is_standard_layout<WiFiScanResult>::value,
"WiFiScanResult must be standard layout");
1441 static_assert(std::is_standard_layout<CompactString>::value,
"CompactString must be standard layout");
1443 static_assert(
sizeof(WiFiScanResult) == 32,
"WiFiScanResult size changed - verify memcpy sort is still safe");
1444 static_assert(
sizeof(CompactString) == 20,
"CompactString size changed - verify memcpy sort is still safe");
1446 static_assert(
alignof(WiFiScanResult) <=
alignof(std::max_align_t),
"WiFiScanResult alignment exceeds max_align_t");
1447 const size_t size = results.size();
1448 constexpr size_t elem_size =
sizeof(WiFiScanResult);
1452 auto *memcpy_fn = &memcpy;
1453 for (
size_t i = 1; i <
size; i++) {
1454 alignas(WiFiScanResult) uint8_t key_buf[
elem_size];
1455 memcpy_fn(key_buf, &results[i],
elem_size);
1456 const auto &key = *
reinterpret_cast<const WiFiScanResult *
>(key_buf);
1461 while (j >= 0 && wifi_scan_result_is_better(key, results[j])) {
1462 memcpy_fn(&results[j + 1], &results[j],
elem_size);
1465 memcpy_fn(&results[j + 1], key_buf,
elem_size);
1477 char bssid_s[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
1481#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_DEBUG
1483 ESP_LOGI(TAG,
"- '%s' %s" LOG_SECRET(
"(%s) ")
"%s Ch:%2u %3ddB P:%d", res.
get_ssid().
c_str(),
1484 res.
get_is_hidden() ? LOG_STR_LITERAL(
"(HIDDEN) ") : LOG_STR_LITERAL(
""), bssid_s,
1487 ESP_LOGI(TAG,
"- '%s' %s" LOG_SECRET(
"(%s) ")
"%s", res.
get_ssid().
c_str(),
1488 res.
get_is_hidden() ? LOG_STR_LITERAL(
"(HIDDEN) ") : LOG_STR_LITERAL(
""), bssid_s,
1496 ESP_LOGE(TAG,
"Scan timeout");
1507 ESP_LOGW(TAG,
"No networks found");
1512 ESP_LOGD(TAG,
"Found networks:");
1516 for (
auto &ap : this->
sta_) {
1517 if (res.matches(ap)) {
1518 res.set_matches(
true);
1520 const bssid_t &bssid = res.get_bssid();
1531 insertion_sort_scan_results(this->scan_result_);
1536 if (res.get_matches()) {
1537 log_scan_result(res);
1546 bool found_match =
false;
1548 for (
size_t i = 0; i < this->
sta_.size(); i++) {
1549 if (scan_res.
matches(this->sta_[i])) {
1560 ESP_LOGW(TAG,
"No matching network found");
1582 char mac_s[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
1589 ESP_LOGCONFIG(TAG,
" Disabled");
1592#if defined(USE_ESP32) && defined(SOC_WIFI_SUPPORT_5G)
1593 const char *band_mode_s;
1595 case WIFI_BAND_MODE_2G_ONLY:
1596 band_mode_s =
"2.4GHz";
1598 case WIFI_BAND_MODE_5G_ONLY:
1599 band_mode_s =
"5GHz";
1601 case WIFI_BAND_MODE_AUTO:
1603 band_mode_s =
"Auto";
1606 ESP_LOGCONFIG(TAG,
" Band Mode: %s", band_mode_s);
1608#ifdef USE_WIFI_PHY_MODE
1609 ESP_LOGCONFIG(TAG,
" PHY Mode: %s", LOG_STR_ARG(phy_mode_to_log_string(this->
phy_mode_)));
1620 char ssid_buf[SSID_BUFFER_SIZE];
1622 ESP_LOGW(TAG,
"Connection incomplete");
1627 ESP_LOGI(TAG,
"Connected");
1633 ESP_LOGW(TAG, LOG_SECRET(
"'%s'")
" should be marked hidden", config->ssid_.c_str());
1639#ifdef USE_CAPTIVE_PORTAL
1644 ESP_LOGD(TAG,
"Disabling AP");
1665 ESP_LOGD(TAG,
"Roam successful");
1672 char bssid_buf[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
1696#ifdef USE_WIFI_FAST_CONNECT
1702#ifdef USE_WIFI_CONNECT_STATE_LISTENERS
1708#if defined(USE_ESP8266) && defined(USE_WIFI_IP_STATE_LISTENERS) && defined(USE_WIFI_MANUAL_IP)
1720 ESP_LOGW(TAG,
"Connection timeout, aborting connection attempt");
1730 ESP_LOGW(TAG,
"Connecting to network failed (callback)");
1741 ESP_LOGW(TAG,
"Network no longer found");
1747 ESP_LOGW(TAG,
"Connecting to network failed");
1752 ESP_LOGW(TAG,
"Unknown connection status %d", (
int)
status);
1765#ifdef USE_WIFI_FAST_CONNECT
1774 if (!this->
sta_.empty() && this->sta_[0].get_hidden()) {
1782 if (this->
num_retried_ + 1 < WIFI_RETRY_COUNT_PER_SSID) {
1789 if (next_index < this->
sta_.size() && this->sta_[next_index].get_hidden()) {
1805 if (this->
scan_result_.empty() || !this->scan_result_[0].get_matches()) {
1809 if (this->
num_retried_ + 1 < WIFI_RETRY_COUNT_PER_BSSID) {
1828 if (this->
num_retried_ + 1 < WIFI_RETRY_COUNT_PER_SSID) {
1905 if (old_phase == new_phase) {
1909 ESP_LOGD(TAG,
"Retry phase: %s → %s", LOG_STR_ARG(retry_phase_to_log_string(old_phase)),
1910 LOG_STR_ARG(retry_phase_to_log_string(new_phase)));
1916 switch (new_phase) {
1917#ifdef USE_WIFI_FAST_CONNECT
1934#ifdef USE_WIFI_FAST_CONNECT
1936 ESP_LOGI(TAG,
"Fast connect exhausted, falling back to scan");
1964 ESP_LOGD(TAG,
"All SSIDs visible or already tried, skipping hidden mode");
2017 if (first_priority != std::numeric_limits<int8_t>::min()) {
2022 if (pri.priority != first_priority) {
2028 ESP_LOGD(TAG,
"Clearing BSSID priorities (all at minimum)");
2052 optional<bssid_t> failed_bssid;
2059 failed_bssid = config->get_bssid();
2062 if (!failed_bssid.has_value()) {
2067 const char *ssid =
nullptr;
2071 ssid = config->ssid_.c_str();
2076 uint8_t max_retries = get_max_retries_for_phase(this->
retry_phase_);
2077 bool is_last_attempt = (this->
num_retried_ + 1 >= max_retries);
2081 int8_t new_priority = old_priority;
2083 if (is_last_attempt) {
2086 (old_priority > std::numeric_limits<int8_t>::min()) ? (old_priority - 1) : std::numeric_limits<int8_t>::min();
2089 char bssid_s[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
2091 ESP_LOGD(TAG,
"Failed " LOG_SECRET(
"'%s'")
" " LOG_SECRET(
"(%s)")
", priority %d → %d", ssid !=
nullptr ? ssid :
"",
2092 bssid_s, old_priority, new_priority);
2113#ifdef USE_WIFI_FAST_CONNECT
2118 ESP_LOGD(TAG,
"Next AP in %s", LOG_STR_ARG(retry_phase_to_log_string(this->
retry_phase_)));
2127 if (next_index < this->
sta_.size() && this->sta_[next_index].get_hidden()) {
2130 ESP_LOGD(TAG,
"Next explicit hidden network at index %d",
static_cast<int>(next_index));
2142 if (next_index != -1) {
2162 ESP_LOGD(TAG,
"Retry attempt %u/%u in phase %s", this->
num_retried_ + 1,
2203 if (next_phase == current_phase) {
2219#if defined(USE_ESP32) && defined(USE_WIFI_RUNTIME_POWER_SAVE)
2225#ifdef USE_CAPTIVE_PORTAL
2239#if defined(USE_ESP32) && defined(USE_WIFI_RUNTIME_POWER_SAVE)
2279#ifdef USE_WIFI_FAST_CONNECT
2285 if (fast_connect_save.ap_index < 0 ||
static_cast<size_t>(fast_connect_save.ap_index) >= this->sta_.size()) {
2286 ESP_LOGW(TAG,
"AP index out of bounds");
2294 params = this->
sta_[fast_connect_save.ap_index];
2298 std::copy(fast_connect_save.bssid, fast_connect_save.bssid + 6, bssid.begin());
2304 ESP_LOGD(TAG,
"Loaded fast_connect settings");
2305#if defined(USE_ESP32) && defined(SOC_WIFI_SUPPORT_5G)
2307 (this->band_mode_ == WIFI_BAND_MODE_2G_ONLY && fast_connect_save.channel >=
FIRST_5GHZ_CHANNEL)) {
2308 ESP_LOGW(TAG,
"Saved channel %u not allowed by band mode, ignoring fast_connect", fast_connect_save.channel);
2326 if (this->
fast_connect_pref_.
load(&previous_save) && memcmp(previous_save.bssid, bssid.data(), 6) == 0 &&
2327 previous_save.channel == channel && previous_save.ap_index == ap_index) {
2332 memcpy(fast_connect_save.bssid, bssid.data(), 6);
2333 fast_connect_save.channel = channel;
2334 fast_connect_save.ap_index = ap_index;
2338 ESP_LOGD(TAG,
"Saved fast_connect settings");
2343 bool with_auth,
bool is_hidden)
2347 ssid_(ssid, ssid_len),
2348 with_auth_(with_auth),
2349 is_hidden_(is_hidden) {}
2367#ifdef USE_WIFI_WPA2_EAP
2410#ifdef USE_WIFI_FAST_CONNECT
2419#if defined(USE_RP2) || defined(USE_ESP32)
2429#ifdef USE_WIFI_CONNECT_STATE_LISTENERS
2433 this->
pending_.connect_state =
false;
2435 char ssid_buf[SSID_BUFFER_SIZE];
2439 listener->on_wifi_connect_state(
StringRef(ssid, strlen(ssid)), bssid);
2444 constexpr uint8_t empty_bssid[6] = {};
2446 listener->on_wifi_connect_state(
StringRef(), empty_bssid);
2451#ifdef USE_WIFI_IP_STATE_LISTENERS
2459#ifdef USE_WIFI_SCAN_RESULTS_LISTENERS
2469 ESP_LOGD(TAG,
"Roam check requested, but not able to check now");
2481 if (selected ==
nullptr || selected->
get_hidden()) {
2492 ESP_LOGD(TAG,
"Roam check skipped, signal good (%d dBm, attempt %u/%u)", rssi, this->
roaming_attempts_,
2501 ESP_LOGD(TAG,
"Roam scan failed to start");
2515 int8_t current_rssi = this->
wifi_rssi();
2517 if (current_rssi == WIFI_RSSI_DISCONNECTED) {
2522 char ssid_buf[SSID_BUFFER_SIZE];
2528 char bssid_buf[MAC_ADDRESS_PRETTY_BUFFER_SIZE];
2532 if (result.ssid_ != current_ssid || result.get_bssid() == current_bssid)
2535#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE
2537 ESP_LOGV(TAG,
"Roam candidate %s %d dBm", bssid_buf, result.get_rssi());
2548 int8_t improvement = (best ==
nullptr) ? 0 : best->
get_rssi() - current_rssi;
2557 ESP_LOGI(TAG,
"Roaming to %s (%+d dB)", bssid_buf, improvement);
2559 WiFiAP roam_params = *selected;
2560 apply_scan_result_to_params(roam_params, *best);
BedjetMode mode
BedJet operating mode.
const StringRef & get_name() const
Get the name of this Application set by pre_setup().
void wake_loop_threadsafe()
Wake the main event loop from another thread or callback.
bool is_name_add_mac_suffix_enabled() const
uint32_t get_config_version_hash()
Get the config hash extended with ESPHome version.
uint32_t IRAM_ATTR HOT get_loop_component_start_time() const
Get the cached time in milliseconds from when the current component started its loop execution.
void status_set_warning()
void status_clear_warning()
StringRef is a reference to a string owned by something else.
constexpr const char * c_str() const
constexpr size_type size() const
void trigger(const Ts &...x) ESPHOME_ALWAYS_INLINE
Inform the parent automation that the event has triggered.
bool window_pending() const
void add_on_closed_callback(F &&callback)
20-byte string: 18 chars inline + null, heap for longer.
const char * data() const
CompactString & operator=(const CompactString &other)
bool operator==(const CompactString &other) const
static constexpr uint8_t INLINE_CAPACITY
const char * c_str() const
char storage_[INLINE_CAPACITY+1]
static constexpr uint8_t MAX_LENGTH
void set_heap_ptr_(char *ptr)
char * get_heap_ptr_() const
Guards WiFiComponent::scan_result_.
uint8_t get_channel() const
void set_ssid(const std::string &ssid)
const optional< EAPAuth > & get_eap() const
void set_bssid(const bssid_t &bssid)
void set_channel(uint8_t channel)
const optional< ManualIP > & get_manual_ip() const
void set_hidden(bool hidden)
const bssid_t & get_bssid() const
This component is responsible for managing the ESP WiFi interface.
void notify_scan_results_listeners_()
Notify scan results listeners with current scan results.
bool is_captive_portal_active_()
bool error_from_callback_
void add_sta(const WiFiAP &ap)
bool load_fast_connect_settings_(WiFiAP ¶ms)
bool wifi_apply_power_save_()
void set_ap(const WiFiAP &ap)
Setup an Access Point that should be created if no connection to a station can be made.
bool request_high_performance()
Request high-performance mode (no power saving) for improved WiFi latency.
ESPPreferenceObject pref_
void set_sta(const WiFiAP &ap)
bool roaming_suppressed_() const
Returns true if a component has requested that roaming scans be suppressed (e.g. during audio playbac...
WiFiPowerSaveMode power_save_
bool has_sta_priority(const bssid_t &bssid)
const WiFiAP * get_selected_sta_() const
WiFiSTAConnectStatus wifi_sta_connect_status_() const
uint32_t roaming_last_check_
WiFi8266PhyMode phy_mode_
int8_t get_sta_priority(const bssid_t bssid)
void log_and_adjust_priority_for_failed_connect_()
Log failed connection and decrease BSSID priority to avoid repeated attempts.
void init_sta(size_t count)
void save_wifi_sta(const std::string &ssid, const std::string &password)
void notify_connect_state_listeners_()
Notify connect state listeners (called after state machine reaches STA_CONNECTED)
WiFiComponentState state_
wifi_scan_vector_t< WiFiScanResult > scan_result_
void save_fast_connect_settings_(const bssid_t &bssid, uint8_t channel)
bool skip_cooldown_next_cycle_
WiFiPowerSaveMode configured_power_save_
void set_sta_priority(bssid_t bssid, int8_t priority)
StaticVector< WiFiScanResultsListener *, ESPHOME_WIFI_SCAN_RESULTS_LISTENERS > scan_results_listeners_
void print_connect_params_()
void loop() override
Reconnect WiFi if required.
void notify_ip_state_listeners_()
Notify IP state listeners with current addresses.
void start_connecting(const WiFiAP &ap)
void advance_to_next_target_or_increment_retry_()
Advance to next target (AP/SSID) within current phase, or increment retry counter Called when staying...
void check_roaming_(uint32_t now)
static constexpr uint32_t ROAMING_CHECK_INTERVAL
RoamingState roaming_state_
void check_scanning_finished()
void process_roaming_scan_()
SemaphoreHandle_t high_performance_semaphore_
network::IPAddress get_dns_address(int num)
WiFiComponent()
Construct a WiFiComponent.
wifi_band_mode_t band_mode_
std::vector< WiFiSTAPriority > sta_priorities_
bssid_t roaming_target_bssid_
int8_t selected_sta_index_
static constexpr int8_t ROAMING_GOOD_RSSI
void notify_disconnect_state_listeners_()
Notify connect state listeners of disconnection.
bool wifi_start_ap_(const WiFiAP &ap)
StaticVector< WiFiConnectStateListener *, ESPHOME_WIFI_CONNECT_STATE_LISTENERS > connect_state_listeners_
void log_discarded_scan_result_(const char *ssid, const uint8_t *bssid, int8_t rssi, uint8_t channel)
Log a discarded scan result at VERBOSE level (skipped during roaming scans to avoid log overflow)
int32_t get_wifi_channel()
const char * wifi_ssid_to(std::span< char, SSID_BUFFER_SIZE > buffer)
Write SSID to buffer without heap allocation.
network::IPAddress wifi_subnet_mask_()
static constexpr uint8_t ROAMING_MAX_ATTEMPTS
network::IPAddress wifi_soft_ap_ip()
uint8_t roaming_attempts_
network::IPAddress wifi_gateway_ip_()
void set_power_save_mode(WiFiPowerSaveMode power_save)
bool is_roaming_scan_active() const
True while a post-connect roaming scan holds the radio off-channel.
int8_t find_next_hidden_sta_(int8_t start_index)
Find next SSID that wasn't in scan results (might be hidden) Returns index of next potentially hidden...
ESPPreferenceObject fast_connect_pref_
void clear_priorities_if_all_min_()
Clear BSSID priority tracking if all priorities are at minimum (saves memory)
static constexpr uint32_t ROAMING_SCAN_GRACE_PERIOD
WiFiRetryPhase determine_next_phase_()
Determine next retry phase based on current state and failure conditions.
network::IPAddress wifi_dns_ip_(int num)
bool wifi_apply_hostname_()
bool wifi_sta_pre_setup_()
network::IPAddresses get_ip_addresses()
static constexpr int8_t ROAMING_MIN_IMPROVEMENT
bool matches_configured_network_(const char *ssid, const uint8_t *bssid) const
Check if network matches any configured network (for scan result filtering) Matches by SSID when conf...
struct esphome::wifi::WiFiComponent::@194 pending_
bool is_esp32_improv_active_()
StaticVector< WiFiIPStateListener *, ESPHOME_WIFI_IP_STATE_LISTENERS > ip_state_listeners_
FixedVector< WiFiAP > sta_
int8_t find_first_non_hidden_index_() const
Find the index of the first non-hidden network Returns where EXPLICIT_HIDDEN phase would have stopped...
void release_scan_results_()
Free scan results memory unless a component needs them.
bool needs_scan_results_() const
Check if we need valid scan results for the current phase but don't have any Returns true if the phas...
void update_connected_state_()
WiFiRetryPhase retry_phase_
bool transition_to_phase_(WiFiRetryPhase new_phase)
Transition to a new retry phase with logging Returns true if a scan was started (caller should wait),...
bool needs_full_scan_results_() const
Check if full scan results are needed (captive portal active, improv, listeners)
WiFiAP build_params_for_current_phase_()
bool is_high_performance_mode_
void dump_config() override
static constexpr uint8_t FIRST_5GHZ_CHANNEL
void clear_roaming_state_()
bool release_high_performance()
Release a high-performance mode request.
RetryHiddenMode retry_hidden_mode_
void force_roam_check()
Force an immediate post-connect roaming check, bypassing the periodic interval and the per-connection...
bool wifi_apply_output_power_(float output_power)
bool has_completed_scan_after_captive_portal_start_
bool is_connected() const
bool wifi_sta_connect_(const WiFiAP &ap)
bool went_through_explicit_hidden_phase_() const
Check if we went through EXPLICIT_HIDDEN phase (first network is marked hidden) Used in RETRY_HIDDEN ...
bool wifi_mode_(optional< bool > sta, optional< bool > ap)
uint32_t roaming_scan_end_
network::IPAddresses wifi_sta_ip_addresses()
void check_connecting_finished(uint32_t now)
void start_initial_connection_()
Start initial connection - either scan or connect directly to hidden networks.
bool wifi_scan_start_(bool passive)
bool ssid_was_seen_in_scan_(const CompactString &ssid) const
Check if an SSID was seen in the most recent scan results Used to skip hidden mode for SSIDs we know ...
bool handled_connected_state_
void handle_driver_roam_(const bssid_t &bssid, uint8_t channel)
Redo post-connect bookkeeping after a driver-initiated roam (e.g.
void setup() override
Setup WiFi interface.
void clear_all_bssid_priorities_()
Clear all BSSID priority penalties after successful connection (stale after disconnect)
bool post_connect_roaming_
Trigger disconnect_trigger_
int8_t get_priority() const
uint8_t get_channel() const
WiFiScanResult(const bssid_t &bssid, const char *ssid, size_t ssid_len, uint8_t channel, int8_t rssi, bool with_auth, bool is_hidden)
const bssid_t & get_bssid() const
StringRef get_ssid() const
bool matches(const WiFiAP &config) const
bool get_is_hidden() const
bool operator==(const WiFiScanResult &rhs) const
struct @66::@67 __attribute__
Wake the main loop task from an ISR. ISR-safe.
CaptivePortal * global_captive_portal
ESP32ImprovComponent * global_improv_component
ImprovSerialComponent * global_improv_serial_component
std::array< IPAddress, 5 > IPAddresses
ProvisioningManager * global_provisioning_manager
std::array< uint8_t, 6 > bssid_t
const LogString * get_signal_bars(int8_t rssi)
@ BLIND_RETRY
Blind retry mode: scanning disabled (captive portal/improv active), try ALL configured networks seque...
@ SCAN_BASED
Normal mode: scan completed, only try networks NOT visible in scan results (truly hidden networks tha...
@ ERROR_NETWORK_NOT_FOUND
WiFiRetryPhase
Tracks the current retry strategy/phase for WiFi connection attempts.
@ RETRY_HIDDEN
Retry networks not found in scan (might be hidden)
@ RESTARTING_ADAPTER
Restarting WiFi adapter to clear stuck state.
@ INITIAL_CONNECT
Initial connection attempt (varies based on fast_connect setting)
@ EXPLICIT_HIDDEN
Explicitly hidden networks (user marked as hidden, try before scanning)
@ FAST_CONNECT_CYCLING_APS
Fast connect mode: cycling through configured APs (config-only, no scan)
@ SCAN_CONNECTING
Scan-based: connecting to best AP from scan results.
WiFiComponent * global_wifi_component
@ SCANNING
Scanning for better AP.
@ CONNECTING
Attempting to connect to better AP found in scan.
@ IDLE
Not roaming, waiting for next check interval.
@ RECONNECTING
Roam connection failed, reconnecting to any available AP.
@ WIFI_COMPONENT_STATE_DISABLED
WiFi is disabled.
@ WIFI_COMPONENT_STATE_AP
WiFi is in AP-only mode and internal AP is already enabled.
@ WIFI_COMPONENT_STATE_STA_CONNECTING
WiFi is in STA(+AP) mode and currently connecting to an AP.
@ WIFI_COMPONENT_STATE_OFF
Nothing has been initialized yet.
@ WIFI_COMPONENT_STATE_STA_SCANNING
WiFi is in STA-only mode and currently scanning for APs.
@ WIFI_COMPONENT_STATE_COOLDOWN
WiFi is in cooldown mode because something went wrong, scanning will begin after a short period of ti...
@ WIFI_COMPONENT_STATE_STA_CONNECTED
WiFi is in STA(+AP) mode and successfully connected.
uint16_t uint16_t size_t elem_size
ESPPreferences * global_preferences
const char * get_mac_address_pretty_into_buffer(std::span< char, MAC_ADDRESS_PRETTY_BUFFER_SIZE > buf)
Get the device MAC address into the given buffer, in colon-separated uppercase hex notation.
uint32_t IRAM_ATTR HOT millis()
Application App
Global storage of Application pointer - only one Application can exist.
char * format_mac_addr_upper(const uint8_t *mac, char *output)
Format MAC address as XX:XX:XX:XX:XX:XX (uppercase, colon separators)
ESPPreferenceObject make_preference(size_t, uint32_t, bool)
bool sync()
Commit pending writes to flash.
esp_eap_ttls_phase2_types ttls_phase_2
Struct for setting static IPs in WiFiComponent.