network_manager_handlers.c 59 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307
  1. #ifdef NETWORK_HANDLERS_LOG_LEVEL
  2. #define LOG_LOCAL_LEVEL NETWORK_HANDLERS_LOG_LEVEL
  3. #endif
  4. #include "network_ethernet.h"
  5. #include "network_manager.h"
  6. #include "network_status.h"
  7. #include "network_wifi.h"
  8. #include <stdbool.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include "dns_server.h"
  13. #include "esp_log.h"
  14. #include "esp_system.h"
  15. #include "freertos/FreeRTOS.h"
  16. #include "platform_esp32.h"
  17. #include "esp_netif.h"
  18. #include "freertos/task.h"
  19. #include "cJSON.h"
  20. #include "cmd_system.h"
  21. #include "esp_app_format.h"
  22. #include "esp_event.h"
  23. #include "esp_ota_ops.h"
  24. #include "esp_wifi.h"
  25. #include "esp_wifi_types.h"
  26. #include "lwip/api.h"
  27. #include "lwip/err.h"
  28. #include "lwip/ip4_addr.h"
  29. #include "lwip/netdb.h"
  30. #include "mdns.h"
  31. #include "messaging.h"
  32. #include "Config.h"
  33. #include "trace.h"
  34. #include "accessors.h"
  35. #include "bootstate.h"
  36. #include "esp_err.h"
  37. #include "http_server_handlers.h"
  38. #include "network_manager.h"
  39. #include "tools.h"
  40. static const char TAG[] = "network_handlers";
  41. EXT_RAM_ATTR static state_t network_states[TOTAL_NM_STATE];
  42. EXT_RAM_ATTR static state_t Wifi_Active_State[TOTAL_WIFI_ACTIVE_STATE];
  43. EXT_RAM_ATTR static state_t Eth_Active_State[TOTAL_ETH_ACTIVE_STATE];
  44. EXT_RAM_ATTR static state_t Wifi_Configuring_State[TOTAL_WIFI_CONFIGURING_STATE];
  45. static void network_interface_coexistence(state_machine_t* state_machine);
  46. static state_machine_result_t local_traverse_state(state_machine_t* const state_machine, const state_t* const target_state, const char* caller);
  47. static state_machine_result_t local_switch_state(state_machine_t* state_machine, const state_t* const target_state, const char* caller);
  48. void network_execute_cb(state_machine_t* const state_machine, const char* caller);
  49. int get_root_id(const state_t* state);
  50. const state_t* get_root(const state_t* const state);
  51. #define ADD_ROOT(name, ...) ADD_ROOT_FORWARD_DECLARATION(name, ...)
  52. #define ADD_ROOT_LEAF(name, ...) ADD_ROOT_LEAF_FORWARD_DECLARATION(name, ...)
  53. #define ADD_LEAF(name, ...) ADD_LEAF_FORWARD_DECLARATION(name, ...)
  54. ALL_NM_STATE
  55. ALL_ETH_STATE(, )
  56. ALL_WIFI_STATE(, )
  57. ALL_WIFI_CONFIGURING_STATE(, )
  58. #undef ADD_ROOT
  59. #undef ADD_ROOT_LEAF
  60. #undef ADD_LEAF
  61. /*
  62. * --------------------- Global variables ---------------------
  63. */
  64. #define ADD_ROOT(NAME, CHILD) ADD_ROOT_(NAME, CHILD)
  65. #define ADD_LEAF(NAME, PARENT, LEVEL) ADD_LEAF_(NAME, PARENT, LEVEL)
  66. #define ADD_ROOT_LEAF(NAME) ADD_ROOT_LEAF_(NAME)
  67. #define ADD_ROOT_(NAME, CHILD) \
  68. [NAME] = { \
  69. .Handler = NAME##_handler, \
  70. .Entry = NAME##_entry_handler, \
  71. .Exit = NAME##_exit_handler, \
  72. .Level = 0, \
  73. .Parent = NULL, \
  74. .Id = NAME, \
  75. .Node = CHILD, \
  76. },
  77. #define ADD_ROOT_LEAF_(NAME) \
  78. [NAME] = { \
  79. .Handler = NAME##_handler, \
  80. .Entry = NAME##_entry_handler, \
  81. .Exit = NAME##_exit_handler, \
  82. .Id = NAME, \
  83. .Parent = NULL, \
  84. },
  85. #define ADD_LEAF_(NAME, PARENT, LEVEL) \
  86. [NAME] = { \
  87. .Handler = NAME##_handler, \
  88. .Entry = NAME##_entry_handler, \
  89. .Exit = NAME##_exit_handler, \
  90. .Id = NAME, \
  91. .Level = LEVEL, \
  92. .Parent = PARENT, \
  93. },
  94. void network_initialize_state_machine_globals() {
  95. static state_t loc_network_states[] = {ALL_NM_STATE};
  96. static state_t loc_Wifi_Active_State[] = {ALL_WIFI_STATE(&network_states[NETWORK_WIFI_ACTIVE_STATE], 1)};
  97. static state_t loc_Eth_Active_State[] = {ALL_ETH_STATE(&network_states[NETWORK_ETH_ACTIVE_STATE], 1)
  98. };
  99. static state_t loc_Wifi_Configuring_State[] = {ALL_WIFI_CONFIGURING_STATE(&network_states[NETWORK_WIFI_CONFIGURING_ACTIVE_STATE], 1)};
  100. memcpy(&network_states, &loc_network_states, sizeof(network_states));
  101. memcpy(&Eth_Active_State, &loc_Eth_Active_State, sizeof(Eth_Active_State));
  102. memcpy(&Wifi_Active_State, &loc_Wifi_Active_State, sizeof(Wifi_Active_State));
  103. memcpy(&Wifi_Configuring_State, &loc_Wifi_Configuring_State, sizeof(Wifi_Configuring_State));
  104. }
  105. #undef ADD_ROOT
  106. #undef ADD_ROOT_LEAF
  107. #undef ADD_LEAF
  108. static void network_handle_got_ip(network_event_t trigger, ip_event_got_ip_t* event_data) {
  109. esp_netif_ip_info_t* ip_info = NULL;
  110. ip_info = &event_data->ip_info;
  111. ESP_LOGI(TAG, "Got an IP address from interface %s. IP=" IPSTR ", Gateway=" IPSTR ", NetMask=" IPSTR ", %s",
  112. trigger == EN_ETH_GOT_IP ? "Eth" : "Wifi", IP2STR(&ip_info->ip), IP2STR(&ip_info->gw), IP2STR(&ip_info->netmask),
  113. event_data->ip_changed ? "Address was changed" : "Address unchanged");
  114. }
  115. #define HANDLE_GLOBAL_EVENT(m) \
  116. if (handle_global_event(m) == EVENT_HANDLED) return EVENT_HANDLED;
  117. static void network_connect_active_ssid(state_machine_t* const State_Machine) {
  118. network_t* const nm = (network_t*)State_Machine;
  119. esp_err_t err = network_wifi_connect_active_ssid();
  120. if (err != ESP_OK) {
  121. nm->wifi_connected = false;
  122. if (err == ESP_ERR_NOT_FOUND) {
  123. network_async_fail();
  124. } else {
  125. ESP_LOGE(TAG, "Oups. Something went wrong while trying to connect to the active ssid!");
  126. ESP_LOGD(TAG, "Checking if ethernet interface is connected");
  127. if (network_is_interface_connected(nm->eth_netif)) {
  128. ESP_LOGD(TAG, "Ethernet connection is found. Try to fallback there");
  129. network_async(EN_ETHERNET_FALLBACK);
  130. } else {
  131. // returning to AP mode
  132. nm->STA_duration = nm->sta_polling_min_ms;
  133. ESP_LOGD(TAG, "No ethernet and no wifi configured. Go to configuration mode");
  134. network_async_configure();
  135. }
  136. }
  137. } else {
  138. nm->STA_duration = nm->sta_polling_min_ms;
  139. /* create timer for background STA connection */
  140. network_set_timer(nm->STA_duration, "Wifi Polling timeout");
  141. }
  142. }
  143. void initialize_network_handlers(state_machine_t* state_machine) { NETWORK_INSTANTIATED_STATE_handler(state_machine); }
  144. static state_machine_result_t handle_global_event(state_machine_t* state_machine) {
  145. network_t* net_sm = ((network_t*)state_machine);
  146. esp_err_t err = ESP_OK;
  147. state_machine_result_t result = EVENT_UN_HANDLED;
  148. ESP_LOGD(TAG, "Processing event %s", network_event_to_string(net_sm->Machine.Event));
  149. switch (net_sm->Machine.Event) {
  150. case EN_UPDATE_STATUS:
  151. // handle the event, but don't swicth
  152. // todo: fix this
  153. // network_status_update_basic_info();
  154. return EVENT_HANDLED;
  155. /* code */
  156. break;
  157. case EN_REMOVE:
  158. if (net_sm->event_parameters->ctx.credentials.ssid && strlen(net_sm->event_parameters->ctx.credentials.ssid) > 0) {
  159. ESP_LOGD(TAG, "Deleting ssid credentials for %s", net_sm->event_parameters->ctx.credentials.ssid);
  160. result = network_wifi_remove_ssid(net_sm->event_parameters->ctx.credentials.ssid) == ESP_OK ? EVENT_HANDLED : EVENT_UN_HANDLED;
  161. FREE_AND_NULL(net_sm->event_parameters->ctx.credentials.ssid);
  162. }
  163. return result;
  164. break;
  165. case EN_ADD:
  166. if (net_sm->event_parameters->ctx.credentials.ssid && strlen(net_sm->event_parameters->ctx.credentials.ssid) > 0) {
  167. ESP_LOGD(TAG, "Adding ssid credentials for %s, password %s", net_sm->event_parameters->ctx.credentials.ssid,
  168. STR_OR_BLANK(net_sm->event_parameters->ctx.credentials.password));
  169. result =
  170. network_wifi_add_ssid(net_sm->event_parameters->ctx.credentials.ssid, net_sm->event_parameters->ctx.credentials.password) == ESP_OK
  171. ? EVENT_HANDLED
  172. : EVENT_UN_HANDLED;
  173. FREE_AND_NULL(net_sm->event_parameters->ctx.credentials.ssid);
  174. FREE_AND_NULL(net_sm->event_parameters->ctx.credentials.password);
  175. } else {
  176. ESP_LOGE(TAG, "Invalid ssid for event EN_ADD");
  177. }
  178. return result;
  179. break;
  180. case EN_REBOOT:
  181. ESP_LOGD(TAG, "Called for reboot type %d", net_sm->event_parameters->ctx.rtype);
  182. switch (net_sm->event_parameters->ctx.rtype) {
  183. case OTA:
  184. ESP_LOGD(TAG, " Calling guided_restart_ota.");
  185. guided_restart_ota();
  186. break;
  187. case RECOVERY:
  188. ESP_LOGD(TAG, " Calling guided_factory.");
  189. guided_factory();
  190. break;
  191. case RESTART:
  192. ESP_LOGD(TAG, " Calling simple_restart.");
  193. simple_restart();
  194. break;
  195. default:
  196. break;
  197. }
  198. // If configuratin could not be locked because of pending events,
  199. // another reboot event will be queued. So in the meantime
  200. // consider this event as handled
  201. return EVENT_HANDLED;
  202. break;
  203. case EN_REBOOT_URL:
  204. if (net_sm->event_parameters->ctx.strval) {
  205. start_ota(net_sm->event_parameters->ctx.strval, NULL, 0);
  206. FREE_AND_NULL(net_sm->event_parameters->ctx.strval);
  207. }
  208. return EVENT_UN_HANDLED;
  209. break;
  210. case EN_COMMIT_CHANGES:
  211. config_commit_protowrapper((void*)net_sm->event_parameters->ctx.strval);
  212. return EVENT_HANDLED;
  213. break;
  214. case EN_EXECUTE_CALLBACK:
  215. ESP_LOGD(TAG, "Executing Callback");
  216. if (!net_sm->event_parameters->ctx.cb_ctx.cb && !net_sm->event_parameters->ctx.cb_ctx.ret_cb) {
  217. ESP_LOGE(TAG, "Invalid callback");
  218. return EVENT_UN_HANDLED;
  219. } else if (net_sm->event_parameters->ctx.cb_ctx.cb) {
  220. ESP_LOGD(TAG, "Executing Callback with no return value");
  221. net_sm->event_parameters->ctx.cb_ctx.cb(net_sm->event_parameters->ctx.cb_ctx.ctx);
  222. ESP_LOGD(TAG, "Done executing callback");
  223. return EVENT_HANDLED;
  224. } else if (net_sm->event_parameters->ctx.cb_ctx.ret_cb) {
  225. ESP_LOGD(TAG, "Executing Callback with return value");
  226. err = net_sm->event_parameters->ctx.cb_ctx.ret_cb(net_sm->event_parameters->ctx.cb_ctx.ctx);
  227. if (err != ESP_OK) {
  228. ESP_LOGE(TAG, "Error processing event");
  229. return EVENT_UN_HANDLED;
  230. }
  231. ESP_LOGD(TAG, "Done executing callback");
  232. return EVENT_HANDLED;
  233. }
  234. break;
  235. default:
  236. break;
  237. }
  238. return EVENT_UN_HANDLED;
  239. }
  240. /*********************************************************************************************
  241. * INSTANTIATED_STATE
  242. */
  243. static state_machine_result_t NETWORK_INSTANTIATED_STATE_entry_handler(state_machine_t* const State_Machine) {
  244. network_handler_entry_print(State_Machine, true);
  245. NETWORK_EXECUTE_CB(State_Machine);
  246. network_handler_entry_print(State_Machine, false);
  247. return EVENT_HANDLED;
  248. }
  249. static state_machine_result_t NETWORK_INSTANTIATED_STATE_handler(state_machine_t* const State_Machine) {
  250. network_handler_print(State_Machine, true);
  251. state_machine_result_t result = EVENT_UN_HANDLED;
  252. network_t* const nm = (network_t*)State_Machine;
  253. State_Machine->State = &network_states[NETWORK_INSTANTIATED_STATE];
  254. State_Machine->Event = EN_START;
  255. nm->sta_polling_max_ms = (platform && platform->net.sta_polling_max_s > 0 ? platform->net.sta_polling_max_s : 600) * 1000;
  256. nm->ap_duration_ms = (platform && platform->net.ap_duration_s > 0 ? platform->net.ap_duration_s : 20) * 1000;
  257. nm->sta_polling_min_ms = (platform && platform->net.sta_polling_min_s > 0 ? platform->net.sta_polling_min_s : 15) * 1000;
  258. nm->eth_link_down_reboot_ms = (platform && platform->dev.eth.common.ethtmout_s > 0 ? platform->dev.eth.common.ethtmout_s : 30) * 1000;
  259. nm->dhcp_timeout = (platform && platform->net.dhcp_tmout_s > 0 ? platform->net.dhcp_tmout_s : 30) * 1000;
  260. ESP_LOGI(TAG,
  261. "Network manager configuration: polling max %d, polling min %d, ap delay %d, dhcp timeout "
  262. "%d, eth timeout %d",
  263. nm->sta_polling_max_ms, nm->sta_polling_min_ms, nm->ap_duration_ms, nm->dhcp_timeout, nm->eth_link_down_reboot_ms);
  264. HANDLE_GLOBAL_EVENT(State_Machine);
  265. #ifndef TESTPROJECT
  266. if(!platform){
  267. ESP_LOGE(TAG,"Configuration not initialized.");
  268. }
  269. else
  270. {
  271. if (platform && State_Machine->Event == EN_START) {
  272. result = local_traverse_state(State_Machine, &network_states[NETWORK_INITIALIZING_STATE], __FUNCTION__);
  273. }
  274. }
  275. #else
  276. ESP_LOGI(TAG,"network message ignored in test mode");
  277. result= EVENT_HANDLED;
  278. #endif
  279. network_handler_print(State_Machine, false);
  280. return result;
  281. }
  282. static state_machine_result_t NETWORK_INSTANTIATED_STATE_exit_handler(state_machine_t* const State_Machine) {
  283. network_exit_handler_print(State_Machine, true);
  284. network_exit_handler_print(State_Machine, false);
  285. return EVENT_HANDLED;
  286. }
  287. /*********************************************************************************************
  288. * INITIALIZING_STATE
  289. */
  290. static state_machine_result_t NETWORK_INITIALIZING_STATE_entry_handler(state_machine_t* const State_Machine) {
  291. network_handler_entry_print(State_Machine, true);
  292. // Initialize nvs; this is needed by the wifi driver
  293. ESP_LOGI(TAG, "Initializing flash nvs ");
  294. esp_err_t err = nvs_flash_init();
  295. if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
  296. ESP_LOGW(TAG, "%s. Erasing nvs flash", esp_err_to_name(err));
  297. ESP_ERROR_CHECK(nvs_flash_erase());
  298. err = nvs_flash_init();
  299. }
  300. network_wifi_global_init();
  301. esp_netif_init();
  302. ESP_ERROR_CHECK(esp_event_loop_create_default());
  303. init_network_status();
  304. esp_event_handler_register(IP_EVENT, ESP_EVENT_ANY_ID, &network_ip_event_handler, NULL);
  305. // send a message to start the connections
  306. http_server_start();
  307. NETWORK_EXECUTE_CB(State_Machine);
  308. network_handler_entry_print(State_Machine, false);
  309. return EVENT_HANDLED;
  310. }
  311. static state_machine_result_t NETWORK_INITIALIZING_STATE_handler(state_machine_t* const State_Machine) {
  312. network_handler_print(State_Machine, true);
  313. state_machine_result_t result = EVENT_UN_HANDLED;
  314. HANDLE_GLOBAL_EVENT(State_Machine);
  315. switch (State_Machine->Event) {
  316. case EN_START:
  317. if (network_is_wifi_prioritized()) {
  318. ESP_LOGI(TAG, "WiFi connection is prioritized. Starting WiFi");
  319. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_INITIALIZING_STATE], __FUNCTION__);
  320. } else if (is_recovery_running) {
  321. ESP_LOGI(TAG, "Running recovery. Skipping ethernet, starting WiFi");
  322. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_INITIALIZING_STATE], __FUNCTION__);
  323. } else {
  324. result = local_traverse_state(State_Machine, &Eth_Active_State[ETH_STARTING_STATE], __FUNCTION__);
  325. }
  326. break;
  327. default:
  328. result = EVENT_UN_HANDLED;
  329. }
  330. network_handler_print(State_Machine, false);
  331. return result;
  332. }
  333. static state_machine_result_t NETWORK_INITIALIZING_STATE_exit_handler(state_machine_t* const State_Machine) {
  334. network_exit_handler_print(State_Machine, true);
  335. network_exit_handler_print(State_Machine, false);
  336. return EVENT_HANDLED;
  337. }
  338. /*********************************************************************************************
  339. * ETH_STARTING_STATE
  340. */
  341. static state_machine_result_t ETH_STARTING_STATE_entry_handler(state_machine_t* const State_Machine) {
  342. network_handler_entry_print(State_Machine, true);
  343. ESP_LOGD(TAG, "Looking for ethernet Interface");
  344. network_t* const nm = (network_t*)State_Machine;
  345. init_network_ethernet();
  346. if (!network_ethernet_enabled()) {
  347. network_async_fail();
  348. } else {
  349. nm->eth_netif = network_ethernet_get_interface();
  350. }
  351. NETWORK_EXECUTE_CB(State_Machine);
  352. network_handler_entry_print(State_Machine, false);
  353. return EVENT_HANDLED;
  354. }
  355. static state_machine_result_t ETH_STARTING_STATE_handler(state_machine_t* const State_Machine) {
  356. state_machine_result_t result = EVENT_HANDLED;
  357. network_handler_print(State_Machine, true);
  358. HANDLE_GLOBAL_EVENT(State_Machine);
  359. switch (State_Machine->Event) {
  360. case EN_FAIL:
  361. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_INITIALIZING_STATE], __FUNCTION__);
  362. break;
  363. case EN_SUCCESS:
  364. result = local_traverse_state(State_Machine, &network_states[NETWORK_ETH_ACTIVE_STATE], __FUNCTION__);
  365. break;
  366. default:
  367. ESP_LOGE(TAG, "No handler");
  368. result = EVENT_UN_HANDLED;
  369. }
  370. network_handler_print(State_Machine, false);
  371. return result;
  372. }
  373. static state_machine_result_t ETH_STARTING_STATE_exit_handler(state_machine_t* const State_Machine) {
  374. network_exit_handler_print(State_Machine, true);
  375. network_exit_handler_print(State_Machine, false);
  376. return EVENT_HANDLED;
  377. }
  378. /*********************************************************************************************
  379. * NETWORK_ETH_ACTIVE_STATE
  380. */
  381. static state_machine_result_t NETWORK_ETH_ACTIVE_STATE_entry_handler(state_machine_t* const State_Machine) {
  382. network_handler_entry_print(State_Machine, true);
  383. network_t* const nm = (network_t*)State_Machine;
  384. ESP_LOGD(TAG,"Entering ETH Active state. Setting timer");
  385. network_set_timer(nm->eth_link_down_reboot_ms, "Ethernet link not detected");
  386. ESP_LOGD(TAG,"Entering ETH Active state. Executing callback(s)");
  387. NETWORK_EXECUTE_CB(State_Machine);
  388. network_handler_entry_print(State_Machine, false);
  389. return EVENT_HANDLED;
  390. }
  391. static state_machine_result_t NETWORK_ETH_ACTIVE_STATE_handler(state_machine_t* const State_Machine) {
  392. network_handler_print(State_Machine, true);
  393. state_machine_result_t result = EVENT_UN_HANDLED;
  394. network_t* const nm = (network_t*)State_Machine;
  395. switch (State_Machine->Event) {
  396. case EN_CONNECT_NEW:
  397. result = local_traverse_state(State_Machine, &Eth_Active_State[ETH_CONNECTING_NEW_STATE], __FUNCTION__);
  398. break;
  399. case EN_LINK_UP:
  400. result = local_traverse_state(State_Machine, &Eth_Active_State[ETH_ACTIVE_LINKUP_STATE], __FUNCTION__);
  401. break;
  402. case EN_LINK_DOWN:
  403. result = local_traverse_state(State_Machine, &Eth_Active_State[ETH_ACTIVE_LINKDOWN_STATE], __FUNCTION__);
  404. break;
  405. case EN_ETH_GOT_IP:
  406. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  407. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  408. result = local_traverse_state(State_Machine, &Eth_Active_State[ETH_ACTIVE_CONNECTED_STATE], __FUNCTION__);
  409. break;
  410. case EN_ETHERNET_FALLBACK:
  411. result = local_traverse_state(State_Machine, &Eth_Active_State[ETH_ACTIVE_CONNECTED_STATE], __FUNCTION__);
  412. break;
  413. case EN_TIMER:
  414. ESP_LOGW(TAG, "Timeout %s. Rebooting to wifi", STR_OR_ALT(nm->timer_tag, "Ethernet link not detected"));
  415. network_prioritize_wifi(true);
  416. simple_restart();
  417. // result= local_traverse_state(State_Machine,
  418. // &Wifi_Active_State[WIFI_INITIALIZING_STATE],__FUNCTION__);
  419. break;
  420. case EN_SCAN:
  421. ESP_LOGW(TAG, "Wifi scan cannot be executed in this state");
  422. // todo: fix this!
  423. // network_wifi_built_known_ap_list();
  424. result = EVENT_HANDLED;
  425. break;
  426. case EN_DELETE: {
  427. ESP_LOGD(TAG, "WiFi disconnected by user");
  428. network_wifi_clear_config();
  429. network_status_update_ip_info(sys_status_reasons_R_USER_DISCONNECT);
  430. result = EVENT_HANDLED;
  431. } break;
  432. default:
  433. HANDLE_GLOBAL_EVENT(State_Machine);
  434. result = EVENT_UN_HANDLED;
  435. }
  436. network_handler_print(State_Machine, false);
  437. return result;
  438. }
  439. static state_machine_result_t NETWORK_ETH_ACTIVE_STATE_exit_handler(state_machine_t* const State_Machine) {
  440. network_exit_handler_print(State_Machine, true);
  441. network_set_timer(0, NULL);
  442. network_exit_handler_print(State_Machine, false);
  443. return EVENT_HANDLED;
  444. }
  445. /*********************************************************************************************
  446. * ETH_CONNECTING_NEW_STATE
  447. */
  448. static state_machine_result_t ETH_CONNECTING_NEW_STATE_entry_handler(state_machine_t* const State_Machine) {
  449. network_t* const nm = (network_t*)State_Machine;
  450. network_handler_entry_print(State_Machine, true);
  451. network_start_stop_dhcp_client(nm->wifi_netif, true);
  452. network_wifi_connect(nm->event_parameters->ctx.credentials.ssid, nm->event_parameters->ctx.credentials.password);
  453. FREE_AND_NULL(nm->event_parameters->ctx.credentials.ssid);
  454. FREE_AND_NULL(nm->event_parameters->ctx.credentials.password);
  455. NETWORK_EXECUTE_CB(State_Machine);
  456. network_handler_entry_print(State_Machine, false);
  457. return EVENT_HANDLED;
  458. }
  459. static state_machine_result_t ETH_CONNECTING_NEW_STATE_handler(state_machine_t* const State_Machine) {
  460. HANDLE_GLOBAL_EVENT(State_Machine);
  461. network_handler_print(State_Machine, true);
  462. state_machine_result_t result = EVENT_HANDLED;
  463. network_t* const nm = (network_t*)State_Machine;
  464. switch (State_Machine->Event) {
  465. case EN_GOT_IP:
  466. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  467. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  468. result = local_traverse_state(State_Machine, &network_states[WIFI_CONNECTED_STATE], __FUNCTION__);
  469. break;
  470. case EN_LOST_CONNECTION:
  471. network_status_update_ip_info(sys_status_reasons_R_FAILED_ATTEMPT);
  472. messaging_post_message(MESSAGING_ERROR, MESSAGING_CLASS_SYSTEM, "Unable to connect to new WiFi access point.");
  473. // no existing configuration, or wifi wasn't the active connection when connection
  474. // attempt was made
  475. network_async(EN_ETHERNET_FALLBACK);
  476. result = EVENT_HANDLED;
  477. break;
  478. default:
  479. result = EVENT_UN_HANDLED;
  480. }
  481. network_handler_print(State_Machine, false);
  482. return result;
  483. }
  484. static state_machine_result_t ETH_CONNECTING_NEW_STATE_exit_handler(state_machine_t* const State_Machine) {
  485. network_exit_handler_print(State_Machine, true);
  486. network_set_timer(0, NULL);
  487. network_exit_handler_print(State_Machine, false);
  488. return EVENT_HANDLED;
  489. }
  490. /*********************************************************************************************
  491. * ETH_ACTIVE_LINKDOWN
  492. */
  493. static state_machine_result_t ETH_ACTIVE_LINKDOWN_STATE_entry_handler(state_machine_t* const State_Machine) {
  494. network_handler_entry_print(State_Machine, true);
  495. network_t* const nm = (network_t*)State_Machine;
  496. network_set_timer(nm->eth_link_down_reboot_ms, "Ethernet link down");
  497. NETWORK_EXECUTE_CB(State_Machine);
  498. messaging_post_message(MESSAGING_WARNING, MESSAGING_CLASS_SYSTEM, "Ethernet link down.");
  499. network_handler_entry_print(State_Machine, false);
  500. return EVENT_HANDLED;
  501. }
  502. static state_machine_result_t ETH_ACTIVE_LINKDOWN_STATE_handler(state_machine_t* const State_Machine) {
  503. network_handler_print(State_Machine, true);
  504. HANDLE_GLOBAL_EVENT(State_Machine);
  505. network_handler_print(State_Machine, false);
  506. return EVENT_UN_HANDLED;
  507. }
  508. static state_machine_result_t ETH_ACTIVE_LINKDOWN_STATE_exit_handler(state_machine_t* const State_Machine) {
  509. network_exit_handler_print(State_Machine, true);
  510. network_set_timer(0, NULL);
  511. network_exit_handler_print(State_Machine, false);
  512. return EVENT_HANDLED;
  513. }
  514. /*********************************************************************************************
  515. * ETH_ACTIVE_LINKUP_STATE
  516. */
  517. static state_machine_result_t ETH_ACTIVE_LINKUP_STATE_entry_handler(state_machine_t* const State_Machine) {
  518. network_handler_entry_print(State_Machine, true);
  519. network_t* const nm = (network_t*)State_Machine;
  520. network_set_timer(nm->dhcp_timeout, "DHCP timeout");
  521. NETWORK_EXECUTE_CB(State_Machine);
  522. messaging_post_message(MESSAGING_INFO, MESSAGING_CLASS_SYSTEM, "Ethernet link up.");
  523. network_handler_entry_print(State_Machine, false);
  524. return EVENT_HANDLED;
  525. }
  526. static state_machine_result_t ETH_ACTIVE_LINKUP_STATE_handler(state_machine_t* const State_Machine) {
  527. state_machine_result_t result = EVENT_UN_HANDLED;
  528. network_handler_print(State_Machine, true);
  529. HANDLE_GLOBAL_EVENT(State_Machine);
  530. network_handler_print(State_Machine, false);
  531. return result;
  532. }
  533. static state_machine_result_t ETH_ACTIVE_LINKUP_STATE_exit_handler(state_machine_t* const State_Machine) {
  534. network_exit_handler_print(State_Machine, true);
  535. network_exit_handler_print(State_Machine, false);
  536. return EVENT_HANDLED;
  537. }
  538. /*********************************************************************************************
  539. * WIFI_UP_STATE
  540. */
  541. static state_machine_result_t NETWORK_WIFI_ACTIVE_STATE_entry_handler(state_machine_t* const State_Machine) {
  542. network_handler_entry_print(State_Machine, true);
  543. NETWORK_EXECUTE_CB(State_Machine);
  544. network_handler_entry_print(State_Machine, false);
  545. return EVENT_HANDLED;
  546. }
  547. static state_machine_result_t NETWORK_WIFI_ACTIVE_STATE_handler(state_machine_t* const State_Machine) {
  548. HANDLE_GLOBAL_EVENT(State_Machine);
  549. network_handler_print(State_Machine, true);
  550. state_machine_result_t result = EVENT_UN_HANDLED;
  551. network_t* const nm = (network_t*)State_Machine;
  552. switch (State_Machine->Event) {
  553. case EN_LINK_UP:
  554. ESP_LOGW(TAG, "Ethernet link up in wifi mode");
  555. break;
  556. case EN_ETH_GOT_IP:
  557. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  558. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  559. network_interface_coexistence(State_Machine);
  560. break;
  561. case EN_GOT_IP:
  562. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  563. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  564. network_status_update_ip_info(sys_status_reasons_R_CONNECTION_OK);
  565. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTED_STATE], __FUNCTION__);
  566. break;
  567. case EN_SCAN:
  568. if (network_wifi_start_scan() == ESP_OK) {
  569. result = EVENT_HANDLED;
  570. }
  571. break;
  572. case EN_SCAN_DONE:
  573. if (wifi_scan_done() == ESP_OK) {
  574. result = EVENT_HANDLED;
  575. }
  576. network_async_success();
  577. break;
  578. case EN_CONNECT_NEW:
  579. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTING_NEW_STATE], __FUNCTION__);
  580. break;
  581. case EN_DELETE:
  582. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_USER_DISCONNECTED_STATE], __FUNCTION__);
  583. break;
  584. case EN_ETHERNET_FALLBACK:
  585. result = local_traverse_state(State_Machine, &Eth_Active_State[ETH_ACTIVE_CONNECTED_STATE], __FUNCTION__);
  586. break;
  587. default:
  588. break;
  589. }
  590. network_handler_print(State_Machine, false);
  591. return result;
  592. }
  593. static state_machine_result_t NETWORK_WIFI_ACTIVE_STATE_exit_handler(state_machine_t* const State_Machine) {
  594. network_exit_handler_print(State_Machine, true);
  595. network_exit_handler_print(State_Machine, false);
  596. return EVENT_HANDLED;
  597. }
  598. /*********************************************************************************************
  599. * WIFI_INITIALIZING_STATE
  600. */
  601. static state_machine_result_t WIFI_INITIALIZING_STATE_entry_handler(state_machine_t* const State_Machine) {
  602. network_t* const nm = (network_t*)State_Machine;
  603. network_handler_entry_print(State_Machine, true);
  604. if (!nm->wifi_netif) {
  605. nm->wifi_netif = network_wifi_start();
  606. }
  607. if (!is_wifi_up()) {
  608. messaging_post_message(MESSAGING_WARNING, MESSAGING_CLASS_SYSTEM, "Wifi not started. Load Configuration");
  609. return EVENT_UN_HANDLED;
  610. }
  611. if (network_wifi_get_known_count() > 0) {
  612. ESP_LOGI(TAG, "Existing wifi config found. Attempting to connect.");
  613. network_async_success();
  614. } else {
  615. /* no wifi saved: start soft AP! This is what should happen during a first run */
  616. ESP_LOGW(TAG, "No saved wifi. Starting AP configuration mode.");
  617. network_async_configure();
  618. }
  619. NETWORK_EXECUTE_CB(State_Machine);
  620. network_handler_entry_print(State_Machine, false);
  621. return EVENT_HANDLED;
  622. }
  623. static state_machine_result_t WIFI_INITIALIZING_STATE_handler(state_machine_t* const State_Machine) {
  624. HANDLE_GLOBAL_EVENT(State_Machine);
  625. network_handler_print(State_Machine, true);
  626. state_machine_result_t result = EVENT_HANDLED;
  627. switch (State_Machine->Event) {
  628. case EN_CONFIGURE:
  629. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_STATE], __FUNCTION__);
  630. break;
  631. case EN_SUCCESS:
  632. ESP_LOGI(TAG, "Traversing to Connecting state");
  633. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTING_STATE], __FUNCTION__);
  634. break;
  635. default:
  636. result = EVENT_UN_HANDLED;
  637. }
  638. network_handler_print(State_Machine, false);
  639. return result;
  640. }
  641. static state_machine_result_t WIFI_INITIALIZING_STATE_exit_handler(state_machine_t* const State_Machine) {
  642. network_exit_handler_print(State_Machine, true);
  643. network_exit_handler_print(State_Machine, false);
  644. return EVENT_HANDLED;
  645. }
  646. /*********************************************************************************************
  647. * WIFI_CONFIGURING_ACTIVE_STATE
  648. */
  649. static state_machine_result_t NETWORK_WIFI_CONFIGURING_ACTIVE_STATE_entry_handler(state_machine_t* const State_Machine) {
  650. network_handler_entry_print(State_Machine, true);
  651. network_t* const nm = (network_t*)State_Machine;
  652. nm->wifi_ap_netif = network_wifi_config_ap();
  653. dns_server_start(nm->wifi_ap_netif);
  654. network_wifi_start_scan();
  655. network_handler_entry_print(State_Machine, false);
  656. return EVENT_HANDLED;
  657. }
  658. static state_machine_result_t NETWORK_WIFI_CONFIGURING_ACTIVE_STATE_handler(state_machine_t* const State_Machine) {
  659. HANDLE_GLOBAL_EVENT(State_Machine);
  660. network_handler_print(State_Machine, true);
  661. network_t* const nm = (network_t*)State_Machine;
  662. state_machine_result_t result = EVENT_HANDLED;
  663. switch (State_Machine->Event) {
  664. case EN_SCAN:
  665. if (network_wifi_start_scan() == ESP_OK) {
  666. result = EVENT_HANDLED;
  667. }
  668. break;
  669. case EN_SCAN_DONE:
  670. ESP_LOGD(TAG, "Network configuration active, wifi scan completed");
  671. if (wifi_scan_done() == ESP_OK) {
  672. result = EVENT_HANDLED;
  673. }
  674. break;
  675. case EN_CONNECT_NEW:
  676. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_CONNECT_STATE], __FUNCTION__);
  677. break;
  678. case EN_LINK_UP:
  679. ESP_LOGW(TAG, "Ethernet link up in wifi mode");
  680. break;
  681. case EN_ETH_GOT_IP:
  682. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  683. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  684. network_interface_coexistence(State_Machine);
  685. break;
  686. default:
  687. result = EVENT_UN_HANDLED;
  688. }
  689. network_handler_print(State_Machine, false);
  690. return result;
  691. }
  692. static state_machine_result_t NETWORK_WIFI_CONFIGURING_ACTIVE_STATE_exit_handler(state_machine_t* const State_Machine) {
  693. network_exit_handler_print(State_Machine, true);
  694. /* bring down DNS hijack */
  695. ESP_LOGD(TAG, " Stopping DNS.");
  696. dns_server_stop();
  697. ESP_LOGD(TAG, "Changing wifi mode to STA.");
  698. network_wifi_set_sta_mode();
  699. network_exit_handler_print(State_Machine, false);
  700. return EVENT_HANDLED;
  701. }
  702. /*********************************************************************************************
  703. * WIFI_CONFIGURING_STATE
  704. */
  705. static state_machine_result_t WIFI_CONFIGURING_STATE_entry_handler(state_machine_t* const State_Machine) {
  706. network_handler_entry_print(State_Machine, true);
  707. NETWORK_EXECUTE_CB(State_Machine);
  708. network_handler_entry_print(State_Machine, false);
  709. return EVENT_HANDLED;
  710. }
  711. static state_machine_result_t WIFI_CONFIGURING_STATE_handler(state_machine_t* const State_Machine) {
  712. network_handler_print(State_Machine, true);
  713. HANDLE_GLOBAL_EVENT(State_Machine);
  714. network_handler_print(State_Machine, false);
  715. return EVENT_UN_HANDLED;
  716. }
  717. static state_machine_result_t WIFI_CONFIGURING_STATE_exit_handler(state_machine_t* const State_Machine) {
  718. network_exit_handler_print(State_Machine, true);
  719. network_exit_handler_print(State_Machine, false);
  720. return EVENT_HANDLED;
  721. }
  722. /*********************************************************************************************
  723. * WIFI_CONFIGURING_CONNECT_STATE
  724. */
  725. static state_machine_result_t WIFI_CONFIGURING_CONNECT_STATE_entry_handler(state_machine_t* const State_Machine) {
  726. network_t* const nm = (network_t*)State_Machine;
  727. network_handler_entry_print(State_Machine, true);
  728. network_start_stop_dhcp_client(nm->wifi_netif, true);
  729. network_wifi_connect(nm->event_parameters->ctx.credentials.ssid, nm->event_parameters->ctx.credentials.password);
  730. FREE_AND_NULL(nm->event_parameters->ctx.credentials.ssid);
  731. FREE_AND_NULL(nm->event_parameters->ctx.credentials.password);
  732. NETWORK_EXECUTE_CB(State_Machine);
  733. network_handler_entry_print(State_Machine, false);
  734. return EVENT_HANDLED;
  735. }
  736. static state_machine_result_t WIFI_CONFIGURING_CONNECT_STATE_handler(state_machine_t* const State_Machine) {
  737. HANDLE_GLOBAL_EVENT(State_Machine);
  738. network_handler_print(State_Machine, true);
  739. network_t* const nm = (network_t*)State_Machine;
  740. state_machine_result_t result = EVENT_HANDLED;
  741. switch (State_Machine->Event) {
  742. case EN_CONNECTED:
  743. result = EVENT_HANDLED;
  744. ESP_LOGI(TAG, "Wifi was connected. Waiting for IP address");
  745. network_set_timer(nm->dhcp_timeout, "DHCP Timeout");
  746. network_wifi_set_connected(true);
  747. break;
  748. case EN_GOT_IP:
  749. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  750. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  751. network_status_update_ip_info(sys_status_reasons_R_CONNECTION_OK);
  752. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_CONNECT_SUCCESS_STATE], __FUNCTION__);
  753. break;
  754. case EN_LOST_CONNECTION:
  755. if (nm->event_parameters->ctx.disconnected_event->reason == WIFI_REASON_ASSOC_LEAVE) {
  756. ESP_LOGI(TAG, "Wifi was disconnected from previous access point. Waiting to connect.");
  757. } else {
  758. network_status_update_ip_info(sys_status_reasons_R_FAILED_ATTEMPT);
  759. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_STATE], __FUNCTION__);
  760. }
  761. break;
  762. case EN_TIMER:
  763. ESP_LOGW(TAG, "Connection timeout. (%s)", STR_OR_ALT(nm->timer_tag, "Unknown"));
  764. network_status_update_ip_info(sys_status_reasons_R_FAILED_ATTEMPT);
  765. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_STATE], __FUNCTION__);
  766. break;
  767. default:
  768. result = EVENT_UN_HANDLED;
  769. }
  770. network_handler_print(State_Machine, false);
  771. return result;
  772. }
  773. static state_machine_result_t WIFI_CONFIGURING_CONNECT_STATE_exit_handler(state_machine_t* const State_Machine) {
  774. network_exit_handler_print(State_Machine, true);
  775. FREE_AND_NULL(((network_t*)State_Machine)->event_parameters->ctx.disconnected_event);
  776. network_set_timer(0, NULL);
  777. network_exit_handler_print(State_Machine, false);
  778. return EVENT_HANDLED;
  779. }
  780. /*********************************************************************************************
  781. * WIFI_CONFIGURING_CONNECT_SUCCESS_STATE
  782. */
  783. static state_machine_result_t WIFI_CONFIGURING_CONNECT_SUCCESS_STATE_entry_handler(state_machine_t* const State_Machine) {
  784. network_handler_entry_print(State_Machine, true);
  785. network_status_update_ip_info(sys_status_reasons_R_CONNECTION_OK);
  786. ESP_LOGD(TAG, "Saving wifi configuration.");
  787. // todo: fix this!
  788. // network_wifi_save_sta_config();
  789. NETWORK_EXECUTE_CB(State_Machine);
  790. network_handler_entry_print(State_Machine, false);
  791. return EVENT_HANDLED;
  792. }
  793. static state_machine_result_t WIFI_CONFIGURING_CONNECT_SUCCESS_STATE_handler(state_machine_t* const State_Machine) {
  794. network_handler_print(State_Machine, true);
  795. state_machine_result_t result = EVENT_HANDLED;
  796. network_t* const nm = (network_t*)State_Machine;
  797. switch (State_Machine->Event) {
  798. case EN_UPDATE_STATUS:
  799. // todo: fix this
  800. // network_status_update_basic_info();
  801. network_set_timer(nm->ap_duration_ms, "Access point teardown"); // set a timer to tear down the AP mode
  802. break;
  803. case EN_TIMER:
  804. // todo: fix this
  805. // network_status_update_basic_info();
  806. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTED_STATE], __FUNCTION__);
  807. break;
  808. default:
  809. result = EVENT_UN_HANDLED;
  810. }
  811. // Process global handler at the end, since we want to overwrite
  812. // UPDATE_STATUS with our own logic above
  813. HANDLE_GLOBAL_EVENT(State_Machine);
  814. network_handler_print(State_Machine, false);
  815. return result;
  816. }
  817. static state_machine_result_t WIFI_CONFIGURING_CONNECT_SUCCESS_STATE_exit_handler(state_machine_t* const State_Machine) {
  818. network_exit_handler_print(State_Machine, true);
  819. network_set_timer(0, NULL);
  820. network_exit_handler_print(State_Machine, false);
  821. return EVENT_HANDLED;
  822. }
  823. /*********************************************************************************************
  824. * WIFI_CONNECTING_STATE
  825. */
  826. static state_machine_result_t WIFI_CONNECTING_STATE_entry_handler(state_machine_t* const State_Machine) {
  827. network_t* const nm = (network_t*)State_Machine;
  828. network_handler_entry_print(State_Machine, true);
  829. nm->initial_retries = 0;
  830. network_start_stop_dhcp_client(nm->wifi_netif, true);
  831. network_connect_active_ssid(State_Machine);
  832. NETWORK_EXECUTE_CB(State_Machine);
  833. network_handler_entry_print(State_Machine, false);
  834. return EVENT_HANDLED;
  835. }
  836. static state_machine_result_t WIFI_CONNECTING_STATE_handler(state_machine_t* const State_Machine) {
  837. HANDLE_GLOBAL_EVENT(State_Machine);
  838. state_machine_result_t result = EVENT_HANDLED;
  839. network_t* const nm = (network_t*)State_Machine;
  840. network_handler_print(State_Machine, true);
  841. switch (State_Machine->Event) {
  842. case EN_CONNECTED:
  843. // nothing to do here. Let's wait for IP address
  844. break;
  845. case EN_TIMER:
  846. if (nm->initial_retries < (platform!=NULL && platform->net.max_initial_wifi_attempt>0?platform->net.max_initial_wifi_attempt:5)) {
  847. nm->initial_retries++;
  848. ESP_LOGD(TAG, " Retrying connection connection, %d/%d.", nm->initial_retries, platform->net.max_initial_wifi_attempt);
  849. ESP_LOGI(TAG, "Timer: %s ", STR_OR_ALT(nm->timer_tag, "Ethernet link not detected"));
  850. network_connect_active_ssid(State_Machine);
  851. } else {
  852. }
  853. break;
  854. case EN_LOST_CONNECTION:
  855. if (nm->event_parameters->ctx.disconnected_event->reason == WIFI_REASON_ASSOC_LEAVE ||
  856. nm->event_parameters->ctx.disconnected_event->reason == WIFI_REASON_AUTH_EXPIRE ||
  857. nm->event_parameters->ctx.disconnected_event->reason == WIFI_REASON_ASSOC_EXPIRE) {
  858. ESP_LOGI(TAG, "Wifi was disconnected from previous access point. Waiting to connect.");
  859. } else if (nm->event_parameters->ctx.disconnected_event->reason != WIFI_REASON_4WAY_HANDSHAKE_TIMEOUT) {
  860. network_status_update_ip_info(sys_status_reasons_R_FAILED_ATTEMPT);
  861. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_STATE], __FUNCTION__);
  862. }
  863. break;
  864. case EN_FAIL:
  865. // this would happen if there is no previously connected AP
  866. ESP_LOGD(TAG, "No active access point. switching to scan");
  867. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTING_SCAN_STATE], __FUNCTION__);
  868. break;
  869. default:
  870. result = EVENT_UN_HANDLED;
  871. }
  872. network_handler_print(State_Machine, false);
  873. return result;
  874. }
  875. static state_machine_result_t WIFI_CONNECTING_STATE_exit_handler(state_machine_t* const State_Machine) {
  876. network_exit_handler_print(State_Machine, true);
  877. network_exit_handler_print(State_Machine, false);
  878. return EVENT_HANDLED;
  879. }
  880. /*********************************************************************************************
  881. * WIFI_CONNECTING_STATE
  882. */
  883. static state_machine_result_t WIFI_CONNECTING_SCAN_STATE_entry_handler(state_machine_t* const State_Machine) {
  884. ESP_LOGD(TAG, "Entering Scan State");
  885. network_t* const nm = (network_t*)State_Machine;
  886. network_handler_entry_print(State_Machine, true);
  887. network_async_scan();
  888. NETWORK_EXECUTE_CB(State_Machine);
  889. network_handler_entry_print(State_Machine, false);
  890. return EVENT_HANDLED;
  891. }
  892. static state_machine_result_t WIFI_CONNECTING_SCAN_STATE_handler(state_machine_t* const State_Machine) {
  893. HANDLE_GLOBAL_EVENT(State_Machine);
  894. state_machine_result_t result = EVENT_HANDLED;
  895. network_handler_print(State_Machine, true);
  896. switch (State_Machine->Event) {
  897. case EN_SUCCESS:
  898. // scan completed, we can try to connect to a known AP now
  899. network_wifi_activate_strongest_ssid();
  900. result = local_switch_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTING_STATE], __FUNCTION__);
  901. break;
  902. default:
  903. result = EVENT_UN_HANDLED;
  904. }
  905. network_handler_print(State_Machine, false);
  906. return result;
  907. }
  908. static state_machine_result_t WIFI_CONNECTING_SCAN_STATE_exit_handler(state_machine_t* const State_Machine) {
  909. network_exit_handler_print(State_Machine, true);
  910. network_exit_handler_print(State_Machine, false);
  911. return EVENT_HANDLED;
  912. }
  913. /*********************************************************************************************
  914. * WIFI_CONNECTING_NEW_STATE
  915. */
  916. static state_machine_result_t WIFI_CONNECTING_NEW_STATE_entry_handler(state_machine_t* const State_Machine) {
  917. network_t* const nm = (network_t*)State_Machine;
  918. network_handler_entry_print(State_Machine, true);
  919. network_start_stop_dhcp_client(nm->wifi_netif, true);
  920. network_wifi_connect(nm->event_parameters->ctx.credentials.ssid, nm->event_parameters->ctx.credentials.password);
  921. FREE_AND_NULL(nm->event_parameters->ctx.credentials.ssid);
  922. FREE_AND_NULL(nm->event_parameters->ctx.credentials.password);
  923. NETWORK_EXECUTE_CB(State_Machine);
  924. network_handler_entry_print(State_Machine, false);
  925. return EVENT_HANDLED;
  926. }
  927. static state_machine_result_t WIFI_CONNECTING_NEW_STATE_handler(state_machine_t* const State_Machine) {
  928. HANDLE_GLOBAL_EVENT(State_Machine);
  929. network_handler_print(State_Machine, true);
  930. state_machine_result_t result = EVENT_HANDLED;
  931. network_t* const nm = (network_t*)State_Machine;
  932. switch (State_Machine->Event) {
  933. case EN_GOT_IP:
  934. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  935. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  936. network_status_update_ip_info(sys_status_reasons_R_CONNECTION_OK);
  937. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTED_STATE], __FUNCTION__);
  938. break;
  939. case EN_CONNECTED:
  940. ESP_LOGD(TAG, "Successfully connected to the new access point. Waiting for IP Address");
  941. result = EVENT_HANDLED;
  942. break;
  943. case EN_LOST_CONNECTION:
  944. if (((network_t*)State_Machine)->event_parameters->ctx.disconnected_event->reason == WIFI_REASON_ASSOC_LEAVE) {
  945. ESP_LOGD(TAG, "Successfully disconnected from the existing access point. ");
  946. return EVENT_HANDLED;
  947. }
  948. ESP_LOGW(TAG, "Trying to connect failed");
  949. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTING_NEW_FAILED_STATE], __FUNCTION__);
  950. break;
  951. default:
  952. result = EVENT_UN_HANDLED;
  953. }
  954. network_handler_print(State_Machine, false);
  955. return result;
  956. }
  957. static state_machine_result_t WIFI_CONNECTING_NEW_STATE_exit_handler(state_machine_t* const State_Machine) {
  958. network_exit_handler_print(State_Machine, true);
  959. network_set_timer(0, NULL);
  960. FREE_AND_NULL(((network_t*)State_Machine)->event_parameters->ctx.disconnected_event);
  961. network_exit_handler_print(State_Machine, false);
  962. return EVENT_HANDLED;
  963. }
  964. /*********************************************************************************************
  965. * WIFI_CONNECTING_NEW_FAILED_STATE
  966. */
  967. static state_machine_result_t WIFI_CONNECTING_NEW_FAILED_STATE_entry_handler(state_machine_t* const State_Machine) {
  968. network_t* const nm = (network_t*)State_Machine;
  969. network_handler_entry_print(State_Machine, true);
  970. if (nm->wifi_connected) {
  971. // Wifi was already connected to an existing access point. Restore connection
  972. network_connect_active_ssid(State_Machine);
  973. }
  974. NETWORK_EXECUTE_CB(State_Machine);
  975. network_handler_entry_print(State_Machine, false);
  976. return EVENT_HANDLED;
  977. }
  978. static state_machine_result_t WIFI_CONNECTING_NEW_FAILED_STATE_handler(state_machine_t* const State_Machine) {
  979. HANDLE_GLOBAL_EVENT(State_Machine);
  980. network_handler_print(State_Machine, true);
  981. state_machine_result_t result = EVENT_HANDLED;
  982. network_t* const nm = (network_t*)State_Machine;
  983. switch (State_Machine->Event) {
  984. case EN_GOT_IP:
  985. network_handle_got_ip(State_Machine->Event, nm->event_parameters->ctx.got_ip_event_data);
  986. FREE_AND_NULL(nm->event_parameters->ctx.got_ip_event_data);
  987. network_status_update_ip_info(sys_status_reasons_R_FAILED_ATTEMPT_AND_RESTORE);
  988. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_CONNECTED_STATE], __FUNCTION__);
  989. break;
  990. case EN_CONNECTED:
  991. ESP_LOGD(TAG, "Successfully connected to the previous access point. Waiting for IP Address");
  992. result = EVENT_HANDLED;
  993. break;
  994. case EN_LOST_CONNECTION:
  995. network_status_update_ip_info(sys_status_reasons_R_FAILED_ATTEMPT);
  996. messaging_post_message(MESSAGING_ERROR, MESSAGING_CLASS_SYSTEM, "Unable to fall back to previous access point.");
  997. result = EVENT_HANDLED;
  998. break;
  999. default:
  1000. result = EVENT_UN_HANDLED;
  1001. }
  1002. network_handler_print(State_Machine, false);
  1003. return result;
  1004. }
  1005. static state_machine_result_t WIFI_CONNECTING_NEW_FAILED_STATE_exit_handler(state_machine_t* const State_Machine) {
  1006. network_exit_handler_print(State_Machine, true);
  1007. network_set_timer(0, NULL);
  1008. FREE_AND_NULL(((network_t*)State_Machine)->event_parameters->ctx.disconnected_event);
  1009. network_exit_handler_print(State_Machine, false);
  1010. return EVENT_HANDLED;
  1011. }
  1012. /*********************************************************************************************
  1013. * WIFI_CONNECTED_STATE
  1014. */
  1015. static state_machine_result_t WIFI_CONNECTED_STATE_entry_handler(state_machine_t* const State_Machine) {
  1016. network_t* const nm = (network_t*)State_Machine;
  1017. network_handler_entry_print(State_Machine, true);
  1018. ESP_LOGD(TAG,"Entered WIFI_CONNECTED_STATE ");
  1019. nm->last_connected = esp_timer_get_time();
  1020. // cancel timeout pulse
  1021. network_set_timer(0, NULL);
  1022. network_interface_coexistence(State_Machine);
  1023. nm->wifi_connected = true;
  1024. NETWORK_EXECUTE_CB(State_Machine);
  1025. network_handler_entry_print(State_Machine, false);
  1026. return EVENT_HANDLED;
  1027. }
  1028. static state_machine_result_t WIFI_CONNECTED_STATE_handler(state_machine_t* const State_Machine) {
  1029. HANDLE_GLOBAL_EVENT(State_Machine);
  1030. network_handler_print(State_Machine, true);
  1031. state_machine_result_t result = EVENT_HANDLED;
  1032. network_t* const nm = (network_t*)State_Machine;
  1033. switch (State_Machine->Event) {
  1034. case EN_LOST_CONNECTION:
  1035. if (is_restarting()) {
  1036. // ignore this as we're restarting
  1037. return EVENT_HANDLED;
  1038. }
  1039. if (nm->event_parameters->ctx.disconnected_event->reason == WIFI_REASON_ASSOC_LEAVE) {
  1040. ESP_LOGD(TAG, "User disconnected from wifi. Re-initializing connection");
  1041. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_INITIALIZING_STATE], __FUNCTION__);
  1042. } else {
  1043. ESP_LOGD(TAG, "Lost connection for a reason other than disconnecting. ");
  1044. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_LOST_CONNECTION_STATE], __FUNCTION__);
  1045. }
  1046. break;
  1047. default:
  1048. result = EVENT_UN_HANDLED;
  1049. break;
  1050. }
  1051. network_handler_print(State_Machine, false);
  1052. return result;
  1053. }
  1054. static state_machine_result_t WIFI_CONNECTED_STATE_exit_handler(state_machine_t* const State_Machine) {
  1055. network_exit_handler_print(State_Machine, true);
  1056. FREE_AND_NULL(((network_t*)State_Machine)->event_parameters->ctx.disconnected_event);
  1057. network_exit_handler_print(State_Machine, false);
  1058. return EVENT_HANDLED;
  1059. }
  1060. /*********************************************************************************************
  1061. * WIFI_USER_DISCONNECTED_STATE
  1062. */
  1063. static state_machine_result_t WIFI_USER_DISCONNECTED_STATE_entry_handler(state_machine_t* const State_Machine) {
  1064. network_handler_entry_print(State_Machine, true);
  1065. ESP_LOGD(TAG, " WiFi disconnected by user");
  1066. network_wifi_clear_config();
  1067. network_status_update_ip_info(sys_status_reasons_R_USER_DISCONNECT);
  1068. NETWORK_EXECUTE_CB(State_Machine);
  1069. network_handler_entry_print(State_Machine, false);
  1070. return EVENT_HANDLED;
  1071. }
  1072. static state_machine_result_t WIFI_USER_DISCONNECTED_STATE_handler(state_machine_t* const State_Machine) {
  1073. HANDLE_GLOBAL_EVENT(State_Machine);
  1074. network_handler_print(State_Machine, true);
  1075. state_machine_result_t result = EVENT_HANDLED;
  1076. switch (State_Machine->Event) {
  1077. case EN_LOST_CONNECTION:
  1078. // this is a success! we're actually asking to disconnect
  1079. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_STATE], __FUNCTION__);
  1080. break;
  1081. default:
  1082. result = EVENT_UN_HANDLED;
  1083. }
  1084. network_handler_print(State_Machine, false);
  1085. return result;
  1086. }
  1087. static state_machine_result_t WIFI_USER_DISCONNECTED_STATE_exit_handler(state_machine_t* const State_Machine) {
  1088. network_exit_handler_print(State_Machine, true);
  1089. network_exit_handler_print(State_Machine, false);
  1090. return EVENT_HANDLED;
  1091. }
  1092. /*********************************************************************************************
  1093. * WIFI_LOST_CONNECTION_STATE
  1094. */
  1095. static state_machine_result_t WIFI_LOST_CONNECTION_STATE_entry_handler(state_machine_t* const State_Machine) {
  1096. network_t* const nm = (network_t*)State_Machine;
  1097. network_handler_entry_print(State_Machine, true);
  1098. ESP_LOGE(TAG, " WiFi Connection lost.");
  1099. messaging_post_message(MESSAGING_WARNING, MESSAGING_CLASS_SYSTEM, "WiFi Connection lost");
  1100. network_status_update_ip_info(sys_status_reasons_R_LOST_CONNECTION);
  1101. // todo: fix this!
  1102. // network_status_safe_reset_sta_ip_string();
  1103. if (nm->last_connected > 0) nm->total_connected_time += ((esp_timer_get_time() - nm->last_connected) / (1000 * 1000));
  1104. nm->last_connected = 0;
  1105. nm->num_disconnect++;
  1106. ESP_LOGW(TAG, " Wifi disconnected. Number of disconnects: %d, Average time connected: %d", nm->num_disconnect,
  1107. nm->num_disconnect > 0 ? (nm->total_connected_time / nm->num_disconnect) : 0);
  1108. if (nm->retries < (platform && platform->net.max_wifi_retry>0?platform->net.max_wifi_retry:5)) {
  1109. nm->retries++;
  1110. ESP_LOGD(TAG, " Retrying connection connection, %d/%d.", nm->retries, platform->net.max_wifi_retry);
  1111. network_async(EN_CONNECT);
  1112. } else {
  1113. /* In this scenario the connection was lost beyond repair */
  1114. nm->retries = 0;
  1115. ESP_LOGD(TAG, "Checking if ethernet interface is connected");
  1116. if (network_is_interface_connected(nm->eth_netif)) {
  1117. ESP_LOGW(TAG, "Cannot connect to Wifi. Falling back to Ethernet ");
  1118. network_async(EN_ETHERNET_FALLBACK);
  1119. } else {
  1120. network_status_update_ip_info(sys_status_reasons_R_LOST_CONNECTION);
  1121. wifi_mode_t mode;
  1122. ESP_LOGW(TAG, " All connect retry attempts failed.");
  1123. /* put us in softAP mode first */
  1124. esp_wifi_get_mode(&mode);
  1125. if (WIFI_MODE_APSTA != mode) {
  1126. nm->STA_duration = nm->sta_polling_min_ms;
  1127. network_async_configure();
  1128. } else if (nm->STA_duration < nm->sta_polling_max_ms) {
  1129. nm->STA_duration *= 1.25;
  1130. }
  1131. /* keep polling for existing connection */
  1132. network_set_timer(nm->STA_duration, "Wifi Polling timeout");
  1133. ESP_LOGD(TAG, " STA search slow polling of %d", nm->STA_duration);
  1134. }
  1135. }
  1136. NETWORK_EXECUTE_CB(State_Machine);
  1137. network_handler_entry_print(State_Machine, false);
  1138. return EVENT_HANDLED;
  1139. }
  1140. static state_machine_result_t WIFI_LOST_CONNECTION_STATE_handler(state_machine_t* const State_Machine) {
  1141. HANDLE_GLOBAL_EVENT(State_Machine);
  1142. network_t* const nm = (network_t*)State_Machine;
  1143. state_machine_result_t result = EVENT_HANDLED;
  1144. network_handler_print(State_Machine, true);
  1145. switch (State_Machine->Event) {
  1146. case EN_CONFIGURE:
  1147. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONFIGURING_STATE], __FUNCTION__);
  1148. break;
  1149. case EN_TIMER:
  1150. ESP_LOGI(TAG, "Timer: %s ", STR_OR_ALT(nm->timer_tag, "Lost connection"));
  1151. result = local_traverse_state(State_Machine, &Wifi_Active_State[WIFI_LOST_CONNECTION_STATE], __FUNCTION__);
  1152. break;
  1153. case EN_CONNECT:
  1154. result = local_traverse_state(State_Machine, &Wifi_Configuring_State[WIFI_CONNECTING_STATE], __FUNCTION__);
  1155. break;
  1156. default:
  1157. result = EVENT_UN_HANDLED;
  1158. }
  1159. network_handler_print(State_Machine, false);
  1160. return result;
  1161. }
  1162. static state_machine_result_t WIFI_LOST_CONNECTION_STATE_exit_handler(state_machine_t* const State_Machine) {
  1163. network_exit_handler_print(State_Machine, true);
  1164. FREE_AND_NULL(((network_t*)State_Machine)->event_parameters->ctx.disconnected_event);
  1165. network_exit_handler_print(State_Machine, false);
  1166. return EVENT_HANDLED;
  1167. }
  1168. /*********************************************************************************************
  1169. * ETH_ACTIVE_CONNECTED_STATE
  1170. */
  1171. static state_machine_result_t ETH_ACTIVE_CONNECTED_STATE_entry_handler(state_machine_t* const State_Machine) {
  1172. network_t* const nm = (network_t*)State_Machine;
  1173. network_handler_entry_print(State_Machine, true);
  1174. network_status_update_ip_info(sys_status_reasons_R_ETHERNET_CONNECTED);
  1175. nm->ethernet_connected = true;
  1176. NETWORK_EXECUTE_CB(State_Machine);
  1177. network_handler_entry_print(State_Machine, false);
  1178. return EVENT_HANDLED;
  1179. }
  1180. static state_machine_result_t ETH_ACTIVE_CONNECTED_STATE_handler(state_machine_t* const State_Machine) {
  1181. HANDLE_GLOBAL_EVENT(State_Machine);
  1182. state_machine_result_t result = EVENT_HANDLED;
  1183. network_handler_print(State_Machine, true);
  1184. switch (State_Machine->Event) {
  1185. case EN_TIMER:
  1186. ESP_LOGD(TAG, "Ignoring ethernet link up timer check");
  1187. result = EVENT_HANDLED;
  1188. break;
  1189. default:
  1190. result = EVENT_UN_HANDLED;
  1191. }
  1192. network_handler_print(State_Machine, false);
  1193. return result;
  1194. }
  1195. static state_machine_result_t ETH_ACTIVE_CONNECTED_STATE_exit_handler(state_machine_t* const State_Machine) {
  1196. network_exit_handler_print(State_Machine, true);
  1197. network_exit_handler_print(State_Machine, false);
  1198. return EVENT_HANDLED;
  1199. }
  1200. static state_machine_result_t local_switch_state(state_machine_t* state_machine, const state_t* const target_state, const char* caller) {
  1201. const state_t* source = state_machine->State;
  1202. NETWORK_PRINT_TRANSITION(true, "BEGIN SWITCH", ((network_t*)state_machine)->source_state, target_state, state_machine->Event, true, caller);
  1203. state_machine_result_t result = switch_state(state_machine, target_state);
  1204. NETWORK_PRINT_TRANSITION(false, "BEGIN SWITCH", ((network_t*)state_machine)->source_state, target_state, state_machine->Event, true, caller);
  1205. ((network_t*)state_machine)->source_state = source;
  1206. return result;
  1207. }
  1208. static state_machine_result_t local_traverse_state(state_machine_t* const state_machine, const state_t* const target_state, const char* caller) {
  1209. const state_t* source = state_machine->State;
  1210. NETWORK_PRINT_TRANSITION(true, "BEGIN TRAVERSE", ((network_t*)state_machine)->source_state, target_state, state_machine->Event, true, caller);
  1211. state_machine_result_t result = traverse_state(state_machine, target_state);
  1212. NETWORK_PRINT_TRANSITION(false, "END TRAVERSE", ((network_t*)state_machine)->source_state, target_state, state_machine->Event, true, caller);
  1213. ((network_t*)state_machine)->source_state = source;
  1214. return result;
  1215. }
  1216. static void network_interface_coexistence(state_machine_t* state_machine) {
  1217. // this function is called whenever both wifi and ethernet are
  1218. // found to be active at the same time
  1219. network_t* nm = (network_t*)state_machine;
  1220. if (nm->wifi_connected && state_machine->Event == EN_ETH_GOT_IP) {
  1221. network_prioritize_wifi(false);
  1222. if (platform && !platform->net.eth_boot) {
  1223. ESP_LOGW(TAG, "Option eth_reboot set to reboot when ethernet is connected. Rebooting");
  1224. simple_restart();
  1225. } else {
  1226. ESP_LOGW(TAG, "Option eth_reboot set to not reboot when ethernet is connected. Using "
  1227. "Wifi interface until next reboot");
  1228. }
  1229. } else if (get_root(state_machine->State)->Id == NETWORK_ETH_ACTIVE_STATE) {
  1230. messaging_post_message(MESSAGING_WARNING, MESSAGING_CLASS_SYSTEM, "Wifi Connected with Ethernet active. System reload needed");
  1231. simple_restart();
  1232. }
  1233. }