server_ota.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  1. #include "server_ota.h"
  2. #include <string>
  3. #include "string.h"
  4. #include "esp_private/esp_int_wdt.h"
  5. #include <esp_task_wdt.h>
  6. #include <string.h>
  7. #include "freertos/FreeRTOS.h"
  8. #include "freertos/task.h"
  9. #include "esp_system.h"
  10. #include "esp_log.h"
  11. #include <esp_ota_ops.h>
  12. #include "esp_http_client.h"
  13. #include "esp_flash_partitions.h"
  14. #include "esp_partition.h"
  15. #include <nvs.h>
  16. #include "esp_app_format.h"
  17. #include "nvs_flash.h"
  18. #include "driver/gpio.h"
  19. #include "errno.h"
  20. #include <sys/stat.h>
  21. #include "MainFlowControl.h"
  22. #include "server_file.h"
  23. #include "server_GPIO.h"
  24. #ifdef ENABLE_MQTT
  25. #include "interface_mqtt.h"
  26. #endif //ENABLE_MQTT
  27. #include "ClassControllCamera.h"
  28. #include "connect_wlan.h"
  29. #include "ClassLogFile.h"
  30. #include "Helper.h"
  31. #include "statusled.h"
  32. #include "basic_auth.h"
  33. #include "../../include/defines.h"
  34. /*an ota data write buffer ready to write to the flash*/
  35. static char ota_write_data[SERVER_OTA_SCRATCH_BUFSIZE + 1] = { 0 };
  36. static const char *TAG = "OTA";
  37. esp_err_t handler_reboot(httpd_req_t *req);
  38. static bool ota_update_task(std::string fn);
  39. std::string _file_name_update;
  40. bool initial_setup = false;
  41. void task_do_Update_ZIP(void *pvParameter)
  42. {
  43. StatusLED(AP_OR_OTA, 1, true); // Signaling an OTA update
  44. std::string filetype = toUpper(getFileType(_file_name_update));
  45. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "File: " + _file_name_update + " Filetype: " + filetype);
  46. if (filetype == "ZIP")
  47. {
  48. std::string in, outHtml, outHtmlTmp, outHtmlOld, outbin, zw, retfirmware;
  49. outHtml = "/sdcard/html";
  50. outHtmlTmp = "/sdcard/html_tmp";
  51. outHtmlOld = "/sdcard/html_old";
  52. outbin = "/sdcard/firmware";
  53. /* Remove the old and tmp html folder in case they still exist */
  54. removeFolder(outHtmlTmp.c_str(), TAG);
  55. removeFolder(outHtmlOld.c_str(), TAG);
  56. /* Extract the ZIP file. The content of the html folder gets extracted to the temporar folder html-temp. */
  57. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Extracting ZIP file " + _file_name_update + "...");
  58. retfirmware = unzip_new(_file_name_update, outHtmlTmp+"/", outHtml+"/", outbin+"/", "/sdcard/", initial_setup);
  59. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Files unzipped.");
  60. /* ZIP file got extracted, replace the old html folder with the new one */
  61. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Renaming folder " + outHtml + " to " + outHtmlOld + "...");
  62. RenameFolder(outHtml, outHtmlOld);
  63. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Renaming folder " + outHtmlTmp + " to " + outHtml + "...");
  64. RenameFolder(outHtmlTmp, outHtml);
  65. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Deleting folder " + outHtmlOld + "...");
  66. removeFolder(outHtmlOld.c_str(), TAG);
  67. if (retfirmware.length() > 0)
  68. {
  69. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Found firmware.bin");
  70. ota_update_task(retfirmware);
  71. }
  72. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Trigger reboot due to firmware update");
  73. doRebootOTA();
  74. }
  75. else if (filetype == "BIN")
  76. {
  77. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Do firmware update - file: " + _file_name_update);
  78. ota_update_task(_file_name_update);
  79. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Trigger reboot due to firmware update");
  80. doRebootOTA();
  81. }
  82. else
  83. {
  84. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Only ZIP-Files support for update during startup!");
  85. }
  86. }
  87. void CheckUpdate()
  88. {
  89. FILE *pfile = fopen("/sdcard/update.txt", "r");
  90. if (pfile == NULL)
  91. {
  92. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "No pending update");
  93. return;
  94. }
  95. char zw[1024] = "";
  96. fgets(zw, 1024, pfile);
  97. _file_name_update = std::string(zw);
  98. if (fgets(zw, 1024, pfile))
  99. {
  100. std::string _szw = std::string(zw);
  101. if (_szw == "init")
  102. {
  103. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Inital Setup triggered");
  104. }
  105. }
  106. fclose(pfile);
  107. DeleteFile("/sdcard/update.txt"); // Prevent Boot Loop!!!
  108. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Start update process (" + _file_name_update + ")");
  109. xTaskCreate(&task_do_Update_ZIP, "task_do_Update_ZIP", configMINIMAL_STACK_SIZE * 35, NULL, tskIDLE_PRIORITY+1, NULL);
  110. while(1) {
  111. // wait until reboot within task_do_Update_ZIP
  112. vTaskDelay(1000 / portTICK_PERIOD_MS);
  113. }
  114. }
  115. static bool ota_update_task(std::string fn)
  116. {
  117. ESP_LOGI(TAG, "Starting OTA update");
  118. const esp_partition_t *configured = esp_ota_get_boot_partition();
  119. const esp_partition_t *running = esp_ota_get_running_partition();
  120. if (configured != running) {
  121. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Configured OTA boot partition at offset " + to_string(configured->address) + ", but running from offset " + to_string(running->address));
  122. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "(This can happen if either the OTA boot data or preferred boot image become somehow corrupted.)");
  123. }
  124. ESP_LOGI(TAG, "Running partition type %d subtype %d (offset 0x%08x)", running->type, running->subtype, (unsigned int)running->address);
  125. const esp_partition_t *update_partition = esp_ota_get_next_update_partition(NULL);
  126. ESP_LOGI(TAG, "Writing to partition subtype %d at offset 0x%x", update_partition->subtype, (unsigned int)update_partition->address);
  127. FILE *f = fopen(fn.c_str(), "rb"); // previously only "r
  128. if (f == NULL) {
  129. // File does not exist
  130. return false;
  131. }
  132. int data_read = fread(ota_write_data, 1, SERVER_OTA_SCRATCH_BUFSIZE, f);
  133. if (data_read <= 0) {
  134. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Error: SSL data read error");
  135. return false;
  136. }
  137. esp_err_t err = ESP_OK;
  138. esp_ota_handle_t update_handle = 0;
  139. int binary_file_length = 0;
  140. bool image_header_was_checked = false;
  141. while (data_read > 0) {
  142. if (image_header_was_checked == false) {
  143. esp_app_desc_t new_app_info;
  144. if (data_read > sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t) + sizeof(esp_app_desc_t)) {
  145. // check current version with downloading
  146. memcpy(&new_app_info, &ota_write_data[sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t)], sizeof(esp_app_desc_t));
  147. ESP_LOGI(TAG, "New firmware version: %s", new_app_info.version);
  148. esp_app_desc_t running_app_info;
  149. if (esp_ota_get_partition_description(running, &running_app_info) == ESP_OK) {
  150. ESP_LOGI(TAG, "Running firmware version: %s", running_app_info.version);
  151. }
  152. const esp_partition_t* last_invalid_app = esp_ota_get_last_invalid_partition();
  153. esp_app_desc_t invalid_app_info;
  154. if (esp_ota_get_partition_description(last_invalid_app, &invalid_app_info) == ESP_OK) {
  155. ESP_LOGI(TAG, "Last invalid firmware version: %s", invalid_app_info.version);
  156. }
  157. // check current version with last invalid partition
  158. if (last_invalid_app != NULL) {
  159. if (memcmp(invalid_app_info.version, new_app_info.version, sizeof(new_app_info.version)) == 0) {
  160. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "New version is the same as invalid version");
  161. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Previously, there was an attempt to launch the firmware with " + string(invalid_app_info.version) + " version, but it failed");
  162. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "The firmware has been rolled back to the previous version");
  163. return false;
  164. }
  165. }
  166. image_header_was_checked = true;
  167. err = esp_ota_begin(update_partition, OTA_SIZE_UNKNOWN, &update_handle);
  168. if (err != ESP_OK) {
  169. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "esp_ota_begin failed (" + string(esp_err_to_name(err)) + ")");
  170. return false;
  171. }
  172. ESP_LOGI(TAG, "esp_ota_begin succeeded");
  173. }
  174. else {
  175. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "received package is not fit len");
  176. return false;
  177. }
  178. }
  179. err = esp_ota_write( update_handle, (const void *)ota_write_data, data_read);
  180. if (err != ESP_OK) {
  181. return false;
  182. }
  183. binary_file_length += data_read;
  184. ESP_LOGD(TAG, "Written image length %d", binary_file_length);
  185. data_read = fread(ota_write_data, 1, SERVER_OTA_SCRATCH_BUFSIZE, f);
  186. }
  187. fclose(f);
  188. ESP_LOGI(TAG, "Total Write binary data length: %d", binary_file_length);
  189. err = esp_ota_end(update_handle);
  190. if (err != ESP_OK) {
  191. if (err == ESP_ERR_OTA_VALIDATE_FAILED) {
  192. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Image validation failed, image is corrupted");
  193. }
  194. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "esp_ota_end failed (" + string(esp_err_to_name(err)) + ")!");
  195. return false;
  196. }
  197. err = esp_ota_set_boot_partition(update_partition);
  198. if (err != ESP_OK) {
  199. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "esp_ota_set_boot_partition failed (" + string(esp_err_to_name(err)) + ")!");
  200. }
  201. return true;
  202. }
  203. static void print_sha256 (const uint8_t *image_hash, const char *label)
  204. {
  205. char hash_print[HASH_LEN * 2 + 1];
  206. hash_print[HASH_LEN * 2] = 0;
  207. for (int i = 0; i < HASH_LEN; ++i) {
  208. sprintf(&hash_print[i * 2], "%02x", image_hash[i]);
  209. }
  210. ESP_LOGI(TAG, "%s: %s", label, hash_print);
  211. }
  212. void CheckOTAUpdate(void)
  213. {
  214. ESP_LOGI(TAG, "Start CheckOTAUpdateCheck...");
  215. uint8_t sha_256[HASH_LEN] = { 0 };
  216. esp_partition_t partition;
  217. // get sha256 digest for the partition table
  218. partition.address = ESP_PARTITION_TABLE_OFFSET;
  219. partition.size = ESP_PARTITION_TABLE_MAX_LEN;
  220. partition.type = ESP_PARTITION_TYPE_DATA;
  221. esp_partition_get_sha256(&partition, sha_256);
  222. print_sha256(sha_256, "SHA-256 for the partition table: ");
  223. // get sha256 digest for bootloader
  224. partition.address = ESP_BOOTLOADER_OFFSET;
  225. partition.size = ESP_PARTITION_TABLE_OFFSET;
  226. partition.type = ESP_PARTITION_TYPE_APP;
  227. esp_partition_get_sha256(&partition, sha_256);
  228. print_sha256(sha_256, "SHA-256 for bootloader: ");
  229. // get sha256 digest for running partition
  230. esp_partition_get_sha256(esp_ota_get_running_partition(), sha_256);
  231. print_sha256(sha_256, "SHA-256 for current firmware: ");
  232. const esp_partition_t *running = esp_ota_get_running_partition();
  233. esp_ota_img_states_t ota_state;
  234. esp_err_t res_stat_partition = esp_ota_get_state_partition(running, &ota_state);
  235. switch (res_stat_partition)
  236. {
  237. case ESP_OK:
  238. ESP_LOGD(TAG, "CheckOTAUpdate Partition: ESP_OK");
  239. if (ota_state == ESP_OTA_IMG_PENDING_VERIFY) {
  240. if (getSystemStatus() == 0) {
  241. ESP_LOGI(TAG, "Diagnostics completed successfully! Continuing execution...");
  242. esp_ota_mark_app_valid_cancel_rollback();
  243. }
  244. else {
  245. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Diagnostics failed! Start rollback to the previous version...");
  246. esp_ota_mark_app_invalid_rollback_and_reboot();
  247. }
  248. }
  249. break;
  250. case ESP_ERR_INVALID_ARG:
  251. ESP_LOGD(TAG, "CheckOTAUpdate Partition: ESP_ERR_INVALID_ARG");
  252. break;
  253. case ESP_ERR_NOT_SUPPORTED:
  254. ESP_LOGD(TAG, "CheckOTAUpdate Partition: ESP_ERR_NOT_SUPPORTED");
  255. break;
  256. case ESP_ERR_NOT_FOUND:
  257. ESP_LOGD(TAG, "CheckOTAUpdate Partition: ESP_ERR_NOT_FOUND");
  258. break;
  259. }
  260. }
  261. esp_err_t handler_ota_update(httpd_req_t *req)
  262. {
  263. #ifdef DEBUG_DETAIL_ON
  264. LogFile.WriteHeapInfo("handler_ota_update - Start");
  265. #endif
  266. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "handler_ota_update");
  267. char _query[200];
  268. char _filename[100];
  269. char _valuechar[30];
  270. std::string fn = "/sdcard/firmware/";
  271. bool _file_del = false;
  272. std::string _task = "";
  273. if (httpd_req_get_url_query_str(req, _query, 200) == ESP_OK)
  274. {
  275. ESP_LOGD(TAG, "Query: %s", _query);
  276. if (httpd_query_key_value(_query, "task", _valuechar, 30) == ESP_OK)
  277. {
  278. ESP_LOGD(TAG, "task is found: %s", _valuechar);
  279. _task = std::string(_valuechar);
  280. }
  281. if (httpd_query_key_value(_query, "file", _filename, 100) == ESP_OK)
  282. {
  283. fn.append(_filename);
  284. ESP_LOGD(TAG, "File: %s", fn.c_str());
  285. }
  286. if (httpd_query_key_value(_query, "delete", _filename, 100) == ESP_OK)
  287. {
  288. fn.append(_filename);
  289. _file_del = true;
  290. ESP_LOGD(TAG, "Delete Default File: %s", fn.c_str());
  291. }
  292. }
  293. if (_task.compare("emptyfirmwaredir") == 0)
  294. {
  295. ESP_LOGD(TAG, "Start empty directory /firmware");
  296. delete_all_in_directory("/sdcard/firmware");
  297. std::string zw = "firmware directory deleted - v2\n";
  298. ESP_LOGD(TAG, "%s", zw.c_str());
  299. printf("Ausgabe: %s\n", zw.c_str());
  300. httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
  301. httpd_resp_send(req, zw.c_str(), strlen(zw.c_str()));
  302. /* Respond with an empty chunk to signal HTTP response completion */
  303. httpd_resp_send_chunk(req, NULL, 0);
  304. ESP_LOGD(TAG, "Done empty directory /firmware");
  305. return ESP_OK;
  306. }
  307. if (_task.compare("update") == 0)
  308. {
  309. std::string filetype = toUpper(getFileType(fn));
  310. if (filetype.length() == 0)
  311. {
  312. std::string zw = "Update failed - no file specified (zip, bin, tfl, tlite)";
  313. httpd_resp_sendstr_chunk(req, zw.c_str());
  314. httpd_resp_sendstr_chunk(req, NULL);
  315. return ESP_OK;
  316. }
  317. if ((filetype == "TFLITE") || (filetype == "TFL"))
  318. {
  319. std::string out = "/sdcard/config/" + getFileFullFileName(fn);
  320. DeleteFile(out);
  321. CopyFile(fn, out);
  322. DeleteFile(fn);
  323. const char* resp_str = "Neural Network File copied.";
  324. httpd_resp_sendstr_chunk(req, resp_str);
  325. httpd_resp_sendstr_chunk(req, NULL);
  326. return ESP_OK;
  327. }
  328. if ((filetype == "ZIP") || (filetype == "BIN"))
  329. {
  330. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Update for reboot");
  331. FILE *pfile = fopen("/sdcard/update.txt", "w");
  332. fwrite(fn.c_str(), fn.length(), 1, pfile);
  333. fclose(pfile);
  334. std::string zw = "reboot\n";
  335. httpd_resp_sendstr_chunk(req, zw.c_str());
  336. httpd_resp_sendstr_chunk(req, NULL);
  337. ESP_LOGD(TAG, "Send reboot");
  338. return ESP_OK;
  339. }
  340. std::string zw = "Update failed - no valid file specified (zip, bin, tfl, tlite)!";
  341. httpd_resp_sendstr_chunk(req, zw.c_str());
  342. httpd_resp_sendstr_chunk(req, NULL);
  343. return ESP_OK;
  344. }
  345. if (_task.compare("unziphtml") == 0)
  346. {
  347. ESP_LOGD(TAG, "Task unziphtml");
  348. std::string in = "/sdcard/firmware/html.zip";
  349. std::string out = "/sdcard/html";
  350. delete_all_in_directory(out);
  351. unzip(in, out+"/");
  352. std::string zw = "Web Interface Update Successfull!\nNo reboot necessary";
  353. httpd_resp_send(req, zw.c_str(), strlen(zw.c_str()));
  354. httpd_resp_sendstr_chunk(req, NULL);
  355. return ESP_OK;
  356. }
  357. if (_file_del)
  358. {
  359. ESP_LOGD(TAG, "Delete !! _file_del: %s", fn.c_str());
  360. struct stat file_stat;
  361. int _result = stat(fn.c_str(), &file_stat);
  362. ESP_LOGD(TAG, "Ergebnis %d\n", _result);
  363. if (_result == 0) {
  364. ESP_LOGD(TAG, "Deleting file: %s", fn.c_str());
  365. /* Delete file */
  366. unlink(fn.c_str());
  367. }
  368. else
  369. {
  370. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "File does not exist: " + fn);
  371. }
  372. /* Respond with an empty chunk to signal HTTP response completion */
  373. std::string zw = "file deleted\n";
  374. ESP_LOGD(TAG, "%s", zw.c_str());
  375. httpd_resp_send(req, zw.c_str(), strlen(zw.c_str()));
  376. httpd_resp_send_chunk(req, NULL, 0);
  377. return ESP_OK;
  378. }
  379. std::string zw = "ota without parameter - should not be the case!";
  380. httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
  381. httpd_resp_send(req, zw.c_str(), strlen(zw.c_str()));
  382. httpd_resp_send_chunk(req, NULL, 0);
  383. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "ota without parameter - should not be the case!");
  384. #ifdef DEBUG_DETAIL_ON
  385. LogFile.WriteHeapInfo("handler_ota_update - Done");
  386. #endif
  387. return ESP_OK;
  388. }
  389. void hard_restart()
  390. {
  391. esp_task_wdt_config_t twdt_config = {
  392. .timeout_ms = 1,
  393. .idle_core_mask = (1 << portNUM_PROCESSORS) - 1, // Bitmask of all cores
  394. .trigger_panic = true,
  395. };
  396. ESP_ERROR_CHECK(esp_task_wdt_init(&twdt_config));
  397. esp_task_wdt_add(NULL);
  398. while(true);
  399. }
  400. void task_reboot(void *DeleteMainFlow)
  401. {
  402. // write a reboot, to identify a reboot by purpouse
  403. FILE* pfile = fopen("/sdcard/reboot.txt", "w");
  404. std::string _s_zw= "reboot";
  405. fwrite(_s_zw.c_str(), strlen(_s_zw.c_str()), 1, pfile);
  406. fclose(pfile);
  407. vTaskDelay(3000 / portTICK_PERIOD_MS);
  408. if ((bool)DeleteMainFlow) {
  409. DeleteMainFlowTask(); // Kill autoflow task if executed in extra task, if not don't kill parent task
  410. }
  411. Camera.LightOnOff(false);
  412. StatusLEDOff();
  413. /* Stop service tasks */
  414. #ifdef ENABLE_MQTT
  415. MQTTdestroy_client(true);
  416. #endif //ENABLE_MQTT
  417. gpio_handler_destroy();
  418. esp_camera_deinit();
  419. WIFIDestroy();
  420. vTaskDelay(3000 / portTICK_PERIOD_MS);
  421. esp_restart(); // Reset type: CPU reset (Reset both CPUs)
  422. vTaskDelay(5000 / portTICK_PERIOD_MS);
  423. hard_restart(); // Reset type: System reset (Triggered by watchdog), if esp_restart stalls (WDT needs to be activated)
  424. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Reboot failed!");
  425. vTaskDelete(NULL); //Delete this task if it comes to this point
  426. }
  427. void doReboot()
  428. {
  429. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Reboot triggered by Software (5s)");
  430. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Reboot in 5sec");
  431. BaseType_t xReturned = xTaskCreate(&task_reboot, "task_reboot", configMINIMAL_STACK_SIZE * 4, (void*) true, 10, NULL);
  432. if( xReturned != pdPASS )
  433. {
  434. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "task_reboot not created -> force reboot without killing flow");
  435. task_reboot((void*) false);
  436. }
  437. vTaskDelay(10000 / portTICK_PERIOD_MS); // Prevent serving web client fetch response until system is shuting down
  438. }
  439. void doRebootOTA()
  440. {
  441. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Reboot in 5sec");
  442. Camera.LightOnOff(false);
  443. StatusLEDOff();
  444. esp_camera_deinit();
  445. vTaskDelay(5000 / portTICK_PERIOD_MS);
  446. esp_restart(); // Reset type: CPU reset (Reset both CPUs)
  447. vTaskDelay(5000 / portTICK_PERIOD_MS);
  448. hard_restart(); // Reset type: System reset (Triggered by watchdog), if esp_restart stalls (WDT needs to be activated)
  449. }
  450. esp_err_t handler_reboot(httpd_req_t *req)
  451. {
  452. #ifdef DEBUG_DETAIL_ON
  453. LogFile.WriteHeapInfo("handler_reboot - Start");
  454. #endif
  455. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "handler_reboot");
  456. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "!!! System will restart within 5 sec!!!");
  457. std::string response =
  458. "<html><head><script>"
  459. "function m(h) {"
  460. "document.getElementById('t').innerHTML=h;"
  461. "setInterval(function (){h +='.'; document.getElementById('t').innerHTML=h;"
  462. "fetch('reboot_page.html',{mode: 'no-cors'}).then(r=>{parent.location.href=('index.html');})}, 1000);"
  463. "}</script></head></html><body style='font-family: arial'><h3 id=t></h3>"
  464. "<script>m('Rebooting!<br>The page will automatically reload in around 25..60s.<br><br>');</script>"
  465. "</body></html>";
  466. httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
  467. httpd_resp_send(req, response.c_str(), strlen(response.c_str()));
  468. doReboot();
  469. #ifdef DEBUG_DETAIL_ON
  470. LogFile.WriteHeapInfo("handler_reboot - Done");
  471. #endif
  472. return ESP_OK;
  473. }
  474. void register_server_ota_sdcard_uri(httpd_handle_t server)
  475. {
  476. ESP_LOGI(TAG, "Registering URI handlers");
  477. httpd_uri_t camuri = { };
  478. camuri.method = HTTP_GET;
  479. camuri.uri = "/ota";
  480. camuri.handler = APPLY_BASIC_AUTH_FILTER(handler_ota_update);
  481. camuri.user_ctx = (void*) "Do OTA";
  482. httpd_register_uri_handler(server, &camuri);
  483. camuri.method = HTTP_GET;
  484. camuri.uri = "/reboot";
  485. camuri.handler = APPLY_BASIC_AUTH_FILTER(handler_reboot);
  486. camuri.user_ctx = (void*) "Reboot";
  487. httpd_register_uri_handler(server, &camuri);
  488. }