_esp_httpd_main.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. // Copyright 2018 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include <string.h>
  15. #include <sys/socket.h>
  16. #include <sys/param.h>
  17. #include <errno.h>
  18. #include <esp_log.h>
  19. #include <esp_err.h>
  20. #include <assert.h>
  21. #include <esp_http_server.h>
  22. #include <_esp_http_server.h>
  23. #include "esp_httpd_priv.h"
  24. #include "ctrl_sock.h"
  25. static const char *TAG = "_httpd";
  26. struct httpd_ctrl_data {
  27. enum httpd_ctrl_msg {
  28. HTTPD_CTRL_SHUTDOWN,
  29. HTTPD_CTRL_WORK,
  30. } hc_msg;
  31. httpd_work_fn_t hc_work;
  32. void *hc_work_arg;
  33. };
  34. static esp_err_t _httpd_server_init(struct httpd_data *hd)
  35. {
  36. int fd = socket(PF_INET6, SOCK_STREAM, 0);
  37. if (fd < 0) {
  38. ESP_LOGE(TAG, LOG_FMT("error in socket (%d)"), errno);
  39. return ESP_FAIL;
  40. }
  41. struct in6_addr inaddr_any = IN6ADDR_ANY_INIT;
  42. struct sockaddr_in6 serv_addr = {
  43. .sin6_family = PF_INET6,
  44. .sin6_addr = inaddr_any,
  45. .sin6_port = htons(hd->config.server_port)
  46. };
  47. /* Enable SO_REUSEADDR to allow binding to the same
  48. * address and port when restarting the server */
  49. int enable = 1;
  50. if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &enable, sizeof(enable)) < 0) {
  51. /* This will fail if CONFIG_LWIP_SO_REUSE is not enabled. But
  52. * it does not affect the normal working of the HTTP Server */
  53. ESP_LOGW(TAG, LOG_FMT("error enabling SO_REUSEADDR (%d)"), errno);
  54. }
  55. int ret = bind(fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr));
  56. if (ret < 0) {
  57. ESP_LOGE(TAG, LOG_FMT("error in bind (%d)"), errno);
  58. close(fd);
  59. return ESP_FAIL;
  60. }
  61. ret = listen(fd, hd->config.backlog_conn);
  62. if (ret < 0) {
  63. ESP_LOGE(TAG, LOG_FMT("error in listen (%d)"), errno);
  64. close(fd);
  65. return ESP_FAIL;
  66. }
  67. int ctrl_fd = cs_create_ctrl_sock(hd->config.ctrl_port);
  68. if (ctrl_fd < 0) {
  69. ESP_LOGE(TAG, LOG_FMT("error in creating ctrl socket (%d)"), errno);
  70. close(fd);
  71. return ESP_FAIL;
  72. }
  73. int msg_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
  74. if (msg_fd < 0) {
  75. ESP_LOGE(TAG, LOG_FMT("error in creating msg socket (%d)"), errno);
  76. close(fd);
  77. close(ctrl_fd);
  78. return ESP_FAIL;
  79. }
  80. hd->listen_fd = fd;
  81. hd->ctrl_fd = ctrl_fd;
  82. hd->msg_fd = msg_fd;
  83. return ESP_OK;
  84. }
  85. static esp_err_t _httpd_accept_conn(struct httpd_data *hd, int listen_fd)
  86. {
  87. /* If no space is available for new session, close the least recently used one */
  88. if (hd->config.lru_purge_enable == true) {
  89. if (!httpd_is_sess_available(hd)) {
  90. /* Queue asynchronous closure of the least recently used session */
  91. return httpd_sess_close_lru(hd);
  92. /* Returning from this allowes the main server thread to process
  93. * the queued asynchronous control message for closing LRU session.
  94. * Since connection request hasn't been addressed yet using accept()
  95. * therefore _httpd_accept_conn() will be called again, but this time
  96. * with space available for one session
  97. */
  98. }
  99. }
  100. struct sockaddr_in addr_from;
  101. socklen_t addr_from_len = sizeof(addr_from);
  102. int new_fd = accept(listen_fd, (struct sockaddr *)&addr_from, &addr_from_len);
  103. if (new_fd < 0) {
  104. ESP_LOGW(TAG, LOG_FMT("error in accept (%d)"), errno);
  105. return ESP_FAIL;
  106. }
  107. ESP_LOGD(TAG, LOG_FMT("newfd = %d"), new_fd);
  108. struct timeval tv;
  109. /* Set recv timeout of this fd as per config */
  110. tv.tv_sec = hd->config.recv_wait_timeout;
  111. tv.tv_usec = 0;
  112. setsockopt(new_fd, SOL_SOCKET, SO_RCVTIMEO, (const char*)&tv, sizeof(tv));
  113. /* Set send timeout of this fd as per config */
  114. tv.tv_sec = hd->config.send_wait_timeout;
  115. tv.tv_usec = 0;
  116. setsockopt(new_fd, SOL_SOCKET, SO_SNDTIMEO, (const char*)&tv, sizeof(tv));
  117. if (ESP_OK != httpd_sess_new(hd, new_fd)) {
  118. ESP_LOGW(TAG, LOG_FMT("session creation failed"));
  119. close(new_fd);
  120. return ESP_FAIL;
  121. }
  122. ESP_LOGD(TAG, LOG_FMT("complete"));
  123. return ESP_OK;
  124. }
  125. /* Manage in-coming connection or data requests */
  126. static esp_err_t _httpd_server(struct httpd_data *hd)
  127. {
  128. fd_set read_set;
  129. FD_ZERO(&read_set);
  130. if (hd->config.lru_purge_enable || httpd_is_sess_available(hd)) {
  131. /* Only listen for new connections if server has capacity to
  132. * handle more (or when LRU purge is enabled, in which case
  133. * older connections will be closed) */
  134. FD_SET(hd->listen_fd, &read_set);
  135. }
  136. int maxfd;
  137. httpd_sess_set_descriptors(hd, &read_set, &maxfd);
  138. maxfd = MAX(hd->listen_fd, maxfd);
  139. ESP_LOGD(TAG, LOG_FMT("doing select maxfd+1 = %d"), maxfd + 1);
  140. int active_cnt = select(maxfd + 1, &read_set, NULL, NULL, NULL);
  141. if (active_cnt < 0) {
  142. ESP_LOGE(TAG, LOG_FMT("error in select (%d)"), errno);
  143. httpd_sess_delete_invalid(hd);
  144. return ESP_OK;
  145. }
  146. /* Case0: Do we have a control message? */
  147. if (FD_ISSET(hd->ctrl_fd, &read_set)) {
  148. ESP_LOGD(TAG, LOG_FMT("processing ctrl message"));
  149. _httpd_process_ctrl_msg(hd);
  150. if (hd->hd_td.status == THREAD_STOPPING) {
  151. ESP_LOGD(TAG, LOG_FMT("stopping thread"));
  152. return ESP_FAIL;
  153. }
  154. }
  155. /* Case1: Do we have any activity on the current data
  156. * sessions? */
  157. int fd = -1;
  158. while ((fd = httpd_sess_iterate(hd, fd)) != -1) {
  159. if (FD_ISSET(fd, &read_set) || (httpd_sess_pending(hd, fd))) {
  160. ESP_LOGD(TAG, LOG_FMT("processing socket %d"), fd);
  161. if (httpd_sess_process(hd, fd) != ESP_OK) {
  162. ESP_LOGD(TAG, LOG_FMT("closing socket %d"), fd);
  163. close(fd);
  164. /* Delete session and update fd to that
  165. * preceding the one being deleted */
  166. fd = httpd_sess_delete(hd, fd);
  167. }
  168. }
  169. }
  170. /* Case2: Do we have any incoming connection requests to
  171. * process? */
  172. if (FD_ISSET(hd->listen_fd, &read_set)) {
  173. ESP_LOGD(TAG, LOG_FMT("processing listen socket %d"), hd->listen_fd);
  174. if (_httpd_accept_conn(hd, hd->listen_fd) != ESP_OK) {
  175. ESP_LOGW(TAG, LOG_FMT("error accepting new connection"));
  176. }
  177. }
  178. return ESP_OK;
  179. }
  180. static void _httpd_close_all_sessions(struct httpd_data *hd)
  181. {
  182. int fd = -1;
  183. while ((fd = httpd_sess_iterate(hd, fd)) != -1) {
  184. ESP_LOGD(TAG, LOG_FMT("cleaning up socket %d"), fd);
  185. httpd_sess_delete(hd, fd);
  186. close(fd);
  187. }
  188. }
  189. /* The main HTTPD thread */
  190. static void _httpd_thread(void *arg)
  191. {
  192. int ret;
  193. struct httpd_data *hd = (struct httpd_data *) arg;
  194. hd->hd_td.status = THREAD_RUNNING;
  195. ESP_LOGD(TAG, LOG_FMT("web server started"));
  196. while (1) {
  197. ret = _httpd_server(hd);
  198. if (ret != ESP_OK) {
  199. break;
  200. }
  201. }
  202. ESP_LOGD(TAG, LOG_FMT("web server exiting"));
  203. close(hd->msg_fd);
  204. cs_free_ctrl_sock(hd->ctrl_fd);
  205. _httpd_close_all_sessions(hd);
  206. close(hd->listen_fd);
  207. hd->hd_td.status = THREAD_STOPPED;
  208. httpd_os_thread_delete();
  209. }
  210. static struct httpd_data *__httpd_create(const httpd_config_t *config)
  211. {
  212. /* Allocate memory for httpd instance data */
  213. struct httpd_data *hd = calloc(1, sizeof(struct httpd_data));
  214. if (!hd) {
  215. ESP_LOGE(TAG, LOG_FMT("Failed to allocate memory for HTTP server instance"));
  216. return NULL;
  217. }
  218. hd->hd_calls = calloc(config->max_uri_handlers, sizeof(httpd_uri_t *));
  219. if (!hd->hd_calls) {
  220. ESP_LOGE(TAG, LOG_FMT("Failed to allocate memory for HTTP URI handlers"));
  221. free(hd);
  222. return NULL;
  223. }
  224. hd->hd_sd = calloc(config->max_open_sockets, sizeof(struct sock_db));
  225. if (!hd->hd_sd) {
  226. ESP_LOGE(TAG, LOG_FMT("Failed to allocate memory for HTTP session data"));
  227. free(hd->hd_calls);
  228. free(hd);
  229. return NULL;
  230. }
  231. struct httpd_req_aux *ra = &hd->hd_req_aux;
  232. ra->resp_hdrs = calloc(config->max_resp_headers, sizeof(struct resp_hdr));
  233. if (!ra->resp_hdrs) {
  234. ESP_LOGE(TAG, LOG_FMT("Failed to allocate memory for HTTP response headers"));
  235. free(hd->hd_sd);
  236. free(hd->hd_calls);
  237. free(hd);
  238. return NULL;
  239. }
  240. hd->err_handler_fns = calloc(HTTPD_ERR_CODE_MAX, sizeof(httpd_err_handler_func_t));
  241. if (!hd->err_handler_fns) {
  242. ESP_LOGE(TAG, LOG_FMT("Failed to allocate memory for HTTP error handlers"));
  243. free(ra->resp_hdrs);
  244. free(hd->hd_sd);
  245. free(hd->hd_calls);
  246. free(hd);
  247. return NULL;
  248. }
  249. /* Save the configuration for this instance */
  250. hd->config = *config;
  251. return hd;
  252. }
  253. static void _httpd_delete(struct httpd_data *hd)
  254. {
  255. struct httpd_req_aux *ra = &hd->hd_req_aux;
  256. /* Free memory of httpd instance data */
  257. free(hd->err_handler_fns);
  258. free(ra->resp_hdrs);
  259. free(hd->hd_sd);
  260. /* Free registered URI handlers */
  261. httpd_unregister_all_uri_handlers(hd);
  262. free(hd->hd_calls);
  263. free(hd);
  264. }
  265. esp_err_t __httpd_start(httpd_handle_t *handle, const httpd_config_t *config)
  266. {
  267. if (handle == NULL || config == NULL) {
  268. return ESP_ERR_INVALID_ARG;
  269. }
  270. /* Sanity check about whether LWIP is configured for providing the
  271. * maximum number of open sockets sufficient for the server. Though,
  272. * this check doesn't guarantee that many sockets will actually be
  273. * available at runtime as other processes may use up some sockets.
  274. * Note that server also uses 3 sockets for its internal use :
  275. * 1) listening for new TCP connections
  276. * 2) for sending control messages over UDP
  277. * 3) for receiving control messages over UDP
  278. * So the total number of required sockets is max_open_sockets + 3
  279. */
  280. if (CONFIG_LWIP_MAX_SOCKETS < config->max_open_sockets + 3) {
  281. ESP_LOGE(TAG, "Configuration option max_open_sockets is too large (max allowed %d)\n\t"
  282. "Either decrease this or configure LWIP_MAX_SOCKETS to a larger value",
  283. CONFIG_LWIP_MAX_SOCKETS - 3);
  284. return ESP_ERR_INVALID_ARG;
  285. }
  286. struct httpd_data *hd = __httpd_create(config);
  287. if (hd == NULL) {
  288. /* Failed to allocate memory */
  289. return ESP_ERR_HTTPD_ALLOC_MEM;
  290. }
  291. if (_httpd_server_init(hd) != ESP_OK) {
  292. _httpd_delete(hd);
  293. return ESP_FAIL;
  294. }
  295. httpd_sess_init(hd);
  296. if (__httpd_os_thread_create_static(&hd->hd_td.handle, "httpd",
  297. hd->config.stack_size,
  298. hd->config.task_priority,
  299. _httpd_thread, hd,
  300. hd->config.core_id) != ESP_OK) {
  301. /* Failed to launch task */
  302. _httpd_delete(hd);
  303. return ESP_ERR_HTTPD_TASK;
  304. }
  305. *handle = (httpd_handle_t *)hd;
  306. return ESP_OK;
  307. }