wifi_manager_http_server.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. #define LOG_LOCAL_LEVEL ESP_LOG_DEBUG
  22. #include "http_server_handlers.h"
  23. #include "esp_log.h"
  24. #include "esp_http_server.h"
  25. #include <inttypes.h>
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include "esp_system.h"
  29. #include "freertos/FreeRTOS.h"
  30. #include "freertos/task.h"
  31. #include "config.h"
  32. static const char TAG[] = "http_server";
  33. static httpd_handle_t server = NULL;
  34. #define FILE_PATH_MAX (ESP_VFS_PATH_MAX + 128)
  35. #define SCRATCH_BUFSIZE (10240)
  36. typedef struct rest_server_context {
  37. char base_path[ESP_VFS_PATH_MAX + 1];
  38. char scratch[SCRATCH_BUFSIZE];
  39. } rest_server_context_t;
  40. #define ESP_LOGE_LOC(t,str, ...) ESP_LOGE(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  41. #define ESP_LOGI_LOC(t,str, ...) ESP_LOGI(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  42. #define ESP_LOGD_LOC(t,str, ...) ESP_LOGD(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  43. esp_err_t http_server_start()
  44. {
  45. ESP_LOGI(REST_TAG, "Initializing HTTP Server");
  46. rest_server_context_t *rest_context = calloc(1, sizeof(rest_server_context_t));
  47. if(rest_context==NULL){
  48. ESP_LOGE(TAG,"No memory for http context");
  49. return ESP_FAIL;
  50. }
  51. strlcpy(rest_context->base_path, "/res/", sizeof(rest_context->base_path));
  52. httpd_handle_t server = NULL;
  53. httpd_config_t config = HTTPD_DEFAULT_CONFIG();
  54. config.uri_match_fn = httpd_uri_match_wildcard;
  55. ESP_LOGI(REST_TAG, "Starting HTTP Server");
  56. esp_err_t err= httpd_start(&server, &config);
  57. if(err != ESP_OK){
  58. ESP_LOGE_LOC(TAG,"Start server failed");
  59. }
  60. else {
  61. httpd_uri_t root_get = { .uri = "/", .method = HTTP_GET, .handler = root_get_handler, .user_ctx = rest_context };
  62. httpd_register_uri_handler(server, &root_get);
  63. httpd_uri_t res_get = { .uri = "/res/*", .method = HTTP_GET, .handler = resource_filehandler, .user_ctx = rest_context };
  64. httpd_register_uri_handler(server, &res_get);
  65. httpd_uri_t ap_get = { .uri = "/ap.json", .method = HTTP_GET, .handler = ap_get_handler, .user_ctx = rest_context };
  66. httpd_register_uri_handler(server, &ap_get);
  67. httpd_uri_t scan_get = { .uri = "/scan.json", .method = HTTP_GET, .handler = ap_scan_handler, .user_ctx = rest_context };
  68. httpd_register_uri_handler(server, &scan_get);
  69. httpd_uri_t config_get = { .uri = "/config.json", .method = HTTP_GET, .handler = config_get_handler, .user_ctx = rest_context };
  70. httpd_register_uri_handler(server, &config_get);
  71. httpd_uri_t status_get = { .uri = "/status.json", .method = HTTP_GET, .handler = status_get_handler, .user_ctx = rest_context };
  72. httpd_register_uri_handler(server, &status_get);
  73. httpd_uri_t config_post = { .uri = "/config.json", .method = HTTP_POST, .handler = config_post_handler, .user_ctx = rest_context };
  74. httpd_register_uri_handler(server, &config_post);
  75. httpd_uri_t connect_post = { .uri = "/connect.json", .method = HTTP_POST, .handler = connect_post_handler, .user_ctx = rest_context };
  76. httpd_register_uri_handler(server, &connect_post);
  77. httpd_uri_t reboot_ota_post = { .uri = "/reboot_ota.json", .method = HTTP_POST, .handler = reboot_ota_post_handler, .user_ctx = rest_context };
  78. httpd_register_uri_handler(server, &reboot_ota_post);
  79. httpd_uri_t reboot_post = { .uri = "/reboot.json", .method = HTTP_POST, .handler = reboot_post_handler, .user_ctx = rest_context };
  80. httpd_register_uri_handler(server, &reboot_post);
  81. httpd_uri_t recovery_post = { .uri = "/recovery.json", .method = HTTP_POST, .handler = recovery_post_handler, .user_ctx = rest_context };
  82. httpd_register_uri_handler(server, &recovery_post);
  83. httpd_uri_t connect_delete = { .uri = "/connect.json", .method = HTTP_DELETE, .handler = connect_delete_handler, .user_ctx = rest_context };
  84. httpd_register_uri_handler(server, &connect_delete);
  85. }
  86. return err;
  87. }
  88. /* Function to free context */
  89. void adder_free_func(void *ctx)
  90. {
  91. ESP_LOGI(TAG, "/adder Free Context function called");
  92. free(ctx);
  93. }
  94. /* This handler keeps accumulating data that is posted to it into a per
  95. * socket/session context. And returns the result.
  96. */
  97. esp_err_t adder_post_handler(httpd_req_t *req)
  98. {
  99. /* Log total visitors */
  100. unsigned *visitors = (unsigned *)req->user_ctx;
  101. ESP_LOGI(TAG, "/adder visitor count = %d", ++(*visitors));
  102. char buf[10];
  103. char outbuf[50];
  104. int ret;
  105. /* Read data received in the request */
  106. ret = httpd_req_recv(req, buf, sizeof(buf));
  107. if (ret <= 0) {
  108. if (ret == HTTPD_SOCK_ERR_TIMEOUT) {
  109. httpd_resp_send_408(req);
  110. }
  111. return ESP_FAIL;
  112. }
  113. buf[ret] = '\0';
  114. int val = atoi(buf);
  115. ESP_LOGI(TAG, "/adder handler read %d", val);
  116. /* Create session's context if not already available */
  117. if (! req->sess_ctx) {
  118. ESP_LOGI(TAG, "/adder allocating new session");
  119. req->sess_ctx = malloc(sizeof(int));
  120. req->free_ctx = adder_free_func;
  121. *(int *)req->sess_ctx = 0;
  122. }
  123. /* Add the received data to the context */
  124. int *adder = (int *)req->sess_ctx;
  125. *adder += val;
  126. /* Respond with the accumulated value */
  127. snprintf(outbuf, sizeof(outbuf),"%d", *adder);
  128. httpd_resp_send(req, outbuf, strlen(outbuf));
  129. return ESP_OK;
  130. }
  131. /* This handler gets the present value of the accumulator */
  132. esp_err_t adder_get_handler(httpd_req_t *req)
  133. {
  134. /* Log total visitors */
  135. unsigned *visitors = (unsigned *)req->user_ctx;
  136. ESP_LOGI(TAG, "/adder visitor count = %d", ++(*visitors));
  137. char outbuf[50];
  138. /* Create session's context if not already available */
  139. if (! req->sess_ctx) {
  140. ESP_LOGI(TAG, "/adder GET allocating new session");
  141. req->sess_ctx = malloc(sizeof(int));
  142. req->free_ctx = adder_free_func;
  143. *(int *)req->sess_ctx = 0;
  144. }
  145. ESP_LOGI(TAG, "/adder GET handler send %d", *(int *)req->sess_ctx);
  146. /* Respond with the accumulated value */
  147. snprintf(outbuf, sizeof(outbuf),"%d", *((int *)req->sess_ctx));
  148. httpd_resp_send(req, outbuf, strlen(outbuf));
  149. return ESP_OK;
  150. }
  151. /* This handler resets the value of the accumulator */
  152. esp_err_t adder_put_handler(httpd_req_t *req)
  153. {
  154. /* Log total visitors */
  155. unsigned *visitors = (unsigned *)req->user_ctx;
  156. ESP_LOGI(TAG, "/adder visitor count = %d", ++(*visitors));
  157. char buf[10];
  158. char outbuf[50];
  159. int ret;
  160. /* Read data received in the request */
  161. ret = httpd_req_recv(req, buf, sizeof(buf));
  162. if (ret <= 0) {
  163. if (ret == HTTPD_SOCK_ERR_TIMEOUT) {
  164. httpd_resp_send_408(req);
  165. }
  166. return ESP_FAIL;
  167. }
  168. buf[ret] = '\0';
  169. int val = atoi(buf);
  170. ESP_LOGI(TAG, "/adder PUT handler read %d", val);
  171. /* Create session's context if not already available */
  172. if (! req->sess_ctx) {
  173. ESP_LOGI(TAG, "/adder PUT allocating new session");
  174. req->sess_ctx = malloc(sizeof(int));
  175. req->free_ctx = adder_free_func;
  176. }
  177. *(int *)req->sess_ctx = val;
  178. /* Respond with the reset value */
  179. snprintf(outbuf, sizeof(outbuf),"%d", *((int *)req->sess_ctx));
  180. httpd_resp_send(req, outbuf, strlen(outbuf));
  181. return ESP_OK;
  182. }
  183. /* Maintain a variable which stores the number of times
  184. * the "/adder" URI has been visited */
  185. static unsigned visitors = 0;
  186. httpd_handle_t start_webserver(void)
  187. {
  188. httpd_config_t config = HTTPD_DEFAULT_CONFIG();
  189. // Start the httpd server
  190. ESP_LOGI(TAG, "Starting server on port: '%d'", config.server_port);
  191. if (httpd_start(&server, &config) == ESP_OK) {
  192. // Set URI handlers
  193. ESP_LOGI(TAG, "Registering URI handlers");
  194. httpd_register_uri_handler(server, &adder_get);
  195. httpd_register_uri_handler(server, &adder_put);
  196. httpd_register_uri_handler(server, &adder_post);
  197. return server;
  198. }
  199. ESP_LOGI(TAG, "Error starting server!");
  200. return NULL;
  201. }
  202. void stop_webserver(httpd_handle_t server)
  203. {
  204. // Stop the httpd server
  205. httpd_stop(server);
  206. }
  207. if(strstr(line, "GET / ")) {
  208. netconn_write(conn, http_html_hdr, sizeof(http_html_hdr) - 1, NETCONN_NOCOPY);
  209. netconn_write(conn, index_html_start, index_html_end- index_html_start, NETCONN_NOCOPY);
  210. }
  211. else if(strstr(line, "GET /code.js ")) {
  212. netconn_write(conn, http_js_hdr, sizeof(http_js_hdr) - 1, NETCONN_NOCOPY);
  213. netconn_write(conn, code_js_start, code_js_end - code_js_start, NETCONN_NOCOPY);
  214. }
  215. else if(strstr(line, "GET /style.css ")) {
  216. netconn_write(conn, http_css_hdr, sizeof(http_css_hdr) - 1, NETCONN_NOCOPY);
  217. netconn_write(conn, style_css_start, style_css_end - style_css_start, NETCONN_NOCOPY);
  218. }
  219. else if(strstr(line, "GET /jquery.js ")) {
  220. http_server_send_resource_file(conn,jquery_gz_start, jquery_gz_end, "text/javascript", "gzip" );
  221. }
  222. else if(strstr(line, "GET /popper.js ")) {
  223. http_server_send_resource_file(conn,popper_gz_start, popper_gz_end, "text/javascript", "gzip" );
  224. }
  225. else if(strstr(line, "GET /bootstrap.js ")) {
  226. http_server_send_resource_file(conn,bootstrap_js_gz_start, bootstrap_js_gz_end, "text/javascript", "gzip" );
  227. }
  228. else if(strstr(line, "GET /bootstrap.css ")) {
  229. http_server_send_resource_file(conn,bootstrap_css_gz_start, bootstrap_css_gz_end, "text/css", "gzip" );
  230. }
  231. //dynamic stuff
  232. else if(strstr(line, "GET /scan.json ")) {
  233. ESP_LOGI(TAG, "Starting wifi scan");
  234. wifi_manager_scan_async();
  235. }
  236. else if(strstr(line, "GET /ap.json ")) {
  237. /* if we can get the mutex, write the last version of the AP list */
  238. ESP_LOGI(TAG, "Processing ap.json request");
  239. if(wifi_manager_lock_json_buffer(( TickType_t ) 10)) {
  240. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY);
  241. char *buff = wifi_manager_alloc_get_ap_list_json();
  242. wifi_manager_unlock_json_buffer();
  243. if(buff!=NULL){
  244. netconn_write(conn, buff, strlen(buff), NETCONN_NOCOPY);
  245. free(buff);
  246. }
  247. else {
  248. ESP_LOGD(TAG, "Error retrieving ap list json string. ");
  249. netconn_write(conn, http_503_hdr, sizeof(http_503_hdr) - 1, NETCONN_NOCOPY);
  250. }
  251. }
  252. else {
  253. netconn_write(conn, http_503_hdr, sizeof(http_503_hdr) - 1, NETCONN_NOCOPY);
  254. ESP_LOGE(TAG, "http_server_netconn_serve: GET /ap.json failed to obtain mutex");
  255. }
  256. /* request a wifi scan */
  257. ESP_LOGI(TAG, "Starting wifi scan");
  258. wifi_manager_scan_async();
  259. ESP_LOGI(TAG, "Done serving ap.json");
  260. }
  261. else if(strstr(line, "GET /config.json ")) {
  262. ESP_LOGI(TAG, "Serving config.json");
  263. ESP_LOGI(TAG, "About to get config from flash");
  264. http_server_send_config_json(conn);
  265. ESP_LOGD(TAG, "Done serving config.json");
  266. }
  267. else if(strstr(line, "POST /config.json ")) {
  268. ESP_LOGI(TAG, "Serving POST config.json");
  269. int lenA=0;
  270. char * last_parm=save_ptr;
  271. char * next_parm=save_ptr;
  272. char * last_parm_name=NULL;
  273. bool bErrorFound=false;
  274. bool bOTA=false;
  275. char * otaURL=NULL;
  276. // todo: implement json body parsing
  277. //http_server_process_config(conn,save_ptr);
  278. while(last_parm!=NULL) {
  279. // Search will return
  280. ESP_LOGD(TAG, "Getting parameters from X-Custom headers");
  281. last_parm = http_server_search_header(next_parm, "X-Custom-", &lenA, &last_parm_name,&next_parm,buf+buflen);
  282. if(last_parm!=NULL && last_parm_name!=NULL) {
  283. ESP_LOGI(TAG, "http_server_netconn_serve: POST config.json, config %s=%s", last_parm_name, last_parm);
  284. if(strcmp(last_parm_name, "fwurl")==0) {
  285. // we're getting a request to do an OTA from that URL
  286. ESP_LOGW(TAG, "Found OTA request!");
  287. otaURL=strdup(last_parm);
  288. bOTA=true;
  289. }
  290. else {
  291. ESP_LOGV(TAG, "http_server_netconn_serve: POST config.json Storing parameter");
  292. if(config_set_value(NVS_TYPE_STR, last_parm_name , last_parm) != ESP_OK){
  293. ESP_LOGE(TAG, "Unable to save nvs value.");
  294. }
  295. }
  296. }
  297. if(last_parm_name!=NULL) {
  298. free(last_parm_name);
  299. last_parm_name=NULL;
  300. }
  301. }
  302. if(bErrorFound) {
  303. netconn_write(conn, http_400_hdr, sizeof(http_400_hdr) - 1, NETCONN_NOCOPY); //400 invalid request
  304. }
  305. else {
  306. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY); //200ok
  307. if(bOTA) {
  308. #if RECOVERY_APPLICATION
  309. ESP_LOGW(TAG, "Starting process OTA for url %s",otaURL);
  310. #else
  311. ESP_LOGW(TAG, "Restarting system to process OTA for url %s",otaURL);
  312. #endif
  313. wifi_manager_reboot_ota(otaURL);
  314. free(otaURL);
  315. }
  316. }
  317. ESP_LOGI(TAG, "Done Serving POST config.json");
  318. }
  319. else if(strstr(line, "POST /connect.json ")) {
  320. ESP_LOGI(TAG, "http_server_netconn_serve: POST /connect.json");
  321. bool found = false;
  322. int lenS = 0, lenP = 0, lenN = 0;
  323. char *ssid = NULL, *password = NULL;
  324. ssid = http_server_get_header(save_ptr, "X-Custom-ssid: ", &lenS);
  325. password = http_server_get_header(save_ptr, "X-Custom-pwd: ", &lenP);
  326. char * new_host_name_b = http_server_get_header(save_ptr, "X-Custom-host_name: ", &lenN);
  327. if(lenN > 0){
  328. lenN++;
  329. char * new_host_name = malloc(lenN);
  330. strlcpy(new_host_name, new_host_name_b, lenN);
  331. if(config_set_value(NVS_TYPE_STR, "host_name", new_host_name) != ESP_OK){
  332. ESP_LOGE(TAG, "Unable to save host name configuration");
  333. }
  334. free(new_host_name);
  335. }
  336. if(ssid && lenS <= MAX_SSID_SIZE && password && lenP <= MAX_PASSWORD_SIZE) {
  337. wifi_config_t* config = wifi_manager_get_wifi_sta_config();
  338. memset(config, 0x00, sizeof(wifi_config_t));
  339. memcpy(config->sta.ssid, ssid, lenS);
  340. memcpy(config->sta.password, password, lenP);
  341. ESP_LOGD(TAG, "http_server_netconn_serve: wifi_manager_connect_async() call, with ssid: %s, password: %s", config->sta.ssid, config->sta.password);
  342. wifi_manager_connect_async();
  343. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY); //200ok
  344. found = true;
  345. }
  346. else{
  347. ESP_LOGE(TAG, "SSID or Password invalid");
  348. }
  349. if(!found) {
  350. /* bad request the authentification header is not complete/not the correct format */
  351. netconn_write(conn, http_400_hdr, sizeof(http_400_hdr) - 1, NETCONN_NOCOPY);
  352. ESP_LOGE(TAG, "bad request the authentification header is not complete/not the correct format");
  353. }
  354. ESP_LOGI(TAG, "http_server_netconn_serve: done serving connect.json");
  355. }
  356. else if(strstr(line, "DELETE /connect.json ")) {
  357. ESP_LOGI(TAG, "http_server_netconn_serve: DELETE /connect.json");
  358. /* request a disconnection from wifi and forget about it */
  359. wifi_manager_disconnect_async();
  360. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY); /* 200 ok */
  361. ESP_LOGI(TAG, "http_server_netconn_serve: done serving DELETE /connect.json");
  362. }
  363. else if(strstr(line, "POST /reboot_ota.json ")) {
  364. ESP_LOGI(TAG, "http_server_netconn_serve: POST reboot_ota.json");
  365. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY); /* 200 ok */
  366. wifi_manager_reboot(OTA);
  367. ESP_LOGI(TAG, "http_server_netconn_serve: done serving POST reboot_ota.json");
  368. }
  369. else if(strstr(line, "POST /reboot.json ")) {
  370. ESP_LOGI(TAG, "http_server_netconn_serve: POST reboot.json");
  371. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY); /* 200 ok */
  372. wifi_manager_reboot(RESTART);
  373. ESP_LOGI(TAG, "http_server_netconn_serve: done serving POST reboot.json");
  374. }
  375. else if(strstr(line, "POST /recovery.json ")) {
  376. ESP_LOGI(TAG, "http_server_netconn_serve: POST recovery.json");
  377. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY); /* 200 ok */
  378. wifi_manager_reboot(RECOVERY);
  379. ESP_LOGI(TAG, "http_server_netconn_serve: done serving POST recovery.json");
  380. }
  381. else if(strstr(line, "GET /status.json ")) {
  382. ESP_LOGI(TAG, "Serving status.json");
  383. if(wifi_manager_lock_json_buffer(( TickType_t ) 10)) {
  384. char *buff = wifi_manager_alloc_get_ip_info_json();
  385. wifi_manager_unlock_json_buffer();
  386. if(buff) {
  387. netconn_write(conn, http_ok_json_no_cache_hdr, sizeof(http_ok_json_no_cache_hdr) - 1, NETCONN_NOCOPY);
  388. netconn_write(conn, buff, strlen(buff), NETCONN_NOCOPY);
  389. free(buff);
  390. }
  391. else {
  392. netconn_write(conn, http_503_hdr, sizeof(http_503_hdr) - 1, NETCONN_NOCOPY);
  393. }
  394. }
  395. else {
  396. netconn_write(conn, http_503_hdr, sizeof(http_503_hdr) - 1, NETCONN_NOCOPY);
  397. ESP_LOGE(TAG, "http_server_netconn_serve: GET /status failed to obtain mutex");
  398. }
  399. ESP_LOGI(TAG, "Done Serving status.json");
  400. }
  401. else {
  402. netconn_write(conn, http_400_hdr, sizeof(http_400_hdr) - 1, NETCONN_NOCOPY);
  403. ESP_LOGE(TAG, "bad request from host: %s, request %s",remote_address, line);
  404. }
  405. }
  406. }
  407. else {
  408. ESP_LOGE(TAG, "URL not found processing for remote host : %s",remote_address);
  409. netconn_write(conn, http_404_hdr, sizeof(http_404_hdr) - 1, NETCONN_NOCOPY);
  410. }
  411. free(host);
  412. }