fiatlux/firmware/web.cpp

339 lines
11 KiB
C++
Raw Normal View History

2021-07-02 16:45:29 +00:00
//
// Created by jedi on 25.06.21.
2021-07-18 23:25:27 +00:00
//
#include "web.h"
#include "system.h"
#include "lux.h"
#include "wifi.h"
#include "log.h"
2021-07-18 23:25:27 +00:00
#include <cstring>
#include <FreeRTOS.h>
#include <task.h>
extern "C" {
#include <sysparam.h>
#include <lwipopts.h>
}
#include <espressif/esp_common.h>
#include <lwip/tcp.h>
extern "C" {
#include <httpd/httpd.h>
}
2021-07-19 18:51:03 +00:00
#define vTaskDelayMs(ms) vTaskDelay((ms) / portTICK_PERIOD_MS)
struct {
bool global;
bool connection;
bool wifi;
} has_changed;
void websocket_task(void *pvParameter) {
auto *pcb = (struct tcp_pcb *) pvParameter;
size_t connstarttime = xTaskGetTickCount();
has_changed = {true, true, true};
syslog_attach();
unsigned local_log_tail = syslog_current_tail();
2021-07-19 18:51:03 +00:00
for (;;) {
2021-08-28 21:44:01 +00:00
if(pcb == nullptr || pcb->state != ESTABLISHED) {
syslog("Connection closed, deleting task\n");
2021-07-19 18:51:03 +00:00
break;
}
//Syslog
if(syslog_data_after(local_log_tail) != 0) {
char response[128];
response[0] = 'L';
size_t len = syslog_copy_out(&response[4], 124, local_log_tail);
response[1] = len;
((uint16_t &) response[2]) = local_log_tail & 0xFFFF;
if(len < sizeof(response)) {
LOCK_TCPIP_CORE();
websocket_write(pcb, (unsigned char *) response, len + 4, WS_BIN_MODE);
local_log_tail += len;
UNLOCK_TCPIP_CORE();
} else
syslog("buffer too small -1\n");
vTaskDelayMs(1000);
}
2021-07-19 18:51:03 +00:00
//Global Info
if(has_changed.global) {
2021-08-28 21:44:01 +00:00
timeval tv{};
gettimeofday(&tv, nullptr);
size_t uptime = xTaskGetTickCount() * portTICK_PERIOD_MS / 1000;
2021-07-19 18:51:03 +00:00
int heap = (int) xPortGetFreeHeapSize();
uint32_t chip_id = sdk_system_get_chip_id();
uint32_t flash_id = sdk_spi_flash_get_id();
uint32_t flash_size = sdk_flashchip.chip_size >> 10;
2021-08-28 21:44:01 +00:00
char *hostname = nullptr;
2021-07-19 18:51:03 +00:00
sysparam_get_string("hostname", &hostname);
/* Generate response in JSON format */
char response[192];
2021-07-19 18:51:03 +00:00
size_t len = snprintf(response, sizeof(response),
"{\"walltime\" : \"%d\","
"\"uptime\" : \"%d\","
" \"heap\" : \"%d\","
" \"chipid\" : \"%08x\","
" \"flashid\" : \"0x%08x\","
" \"flashsize\" : \"%u\","
" \"hostname\" : \"%s\""
"}", (int) tv.tv_sec, uptime, heap, chip_id, flash_id, flash_size, hostname);
free(hostname);
if(len < sizeof(response)) {
LOCK_TCPIP_CORE();
websocket_write(pcb, (unsigned char *) response, len, WS_TEXT_MODE);
has_changed.global = false;
2021-07-19 18:51:03 +00:00
UNLOCK_TCPIP_CORE();
} else
syslog("buffer too small 0\n");
vTaskDelayMs(1000);
2021-07-19 18:51:03 +00:00
}
//Connection Info
if(has_changed.connection) {
2021-08-28 21:44:01 +00:00
timeval tv{};
gettimeofday(&tv, nullptr);
size_t connuptime = (xTaskGetTickCount() - connstarttime) * portTICK_PERIOD_MS / 1000;
printf("conn %d: " IPSTR " <-> " IPSTR " \n", pcb->netif_idx, IP2STR(&pcb->local_ip),
IP2STR(&pcb->remote_ip));
char response[192];
2021-07-19 18:51:03 +00:00
size_t len = snprintf(response, sizeof(response),
"{\"connage\" : \"%d\","
2021-08-28 21:44:01 +00:00
"\"clientip\" : \"" IPSTR "\""
2021-07-19 18:51:03 +00:00
"}", connuptime, IP2STR(&pcb->remote_ip));
if(len < sizeof(response)) {
LOCK_TCPIP_CORE();
websocket_write(pcb, (unsigned char *) response, len, WS_TEXT_MODE);
has_changed.connection = false;
2021-07-19 18:51:03 +00:00
UNLOCK_TCPIP_CORE();
} else
syslog("buffer too small 1\n");
vTaskDelayMs(1000);
2021-07-19 18:51:03 +00:00
}
if(has_changed.wifi) {
has_changed.wifi = false;
uint8_t opmode = sdk_wifi_get_opmode();
const char *opmode_str = "??";
switch (opmode) {
case NULL_MODE:
opmode_str = "Null";
break;
case STATION_MODE:
opmode_str = "Station";
break;
case SOFTAP_MODE:
opmode_str = "SoftAP";
break;
case STATIONAP_MODE:
opmode_str = "StationAP";
break;
default:
break;
}
/*struct sockaddr_storage addr;
socklen_t addr_len = sizeof(addr);
if (getpeername(s, (struct sockaddr *)&addr, &addr_len) == 0) {
printf("peer\n");
}*/
if(opmode == SOFTAP_MODE || opmode == STATIONAP_MODE) {
uint8_t hwaddr[6];
sdk_wifi_get_macaddr(SOFTAP_IF, hwaddr);
2021-08-28 21:44:01 +00:00
ip_info info{};
2021-07-19 18:51:03 +00:00
sdk_wifi_get_ip_info(SOFTAP_IF, &info);
2021-08-28 21:44:01 +00:00
char *apssid = nullptr;
2021-07-19 18:51:03 +00:00
sysparam_get_string("wifi_ap_ssid", &apssid);
/* Generate response in JSON format */
char response[128];
size_t len = snprintf(response, sizeof(response),
"{\"opmode\" : \"%s\","
" \"apssid\" : \"%s\","
2021-08-28 21:44:01 +00:00
" \"apip\" : \"" IPSTR "\","
" \"apmac\" : \"" MACSTR "\""
2021-07-19 18:51:03 +00:00
"}", opmode_str, apssid, IP2STR(&info.ip), MAC2STR(hwaddr));
free(apssid);
if(len < sizeof(response)) {
LOCK_TCPIP_CORE();
websocket_write(pcb, (unsigned char *) response, len, WS_TEXT_MODE);
UNLOCK_TCPIP_CORE();
} else
syslog("buffer too small 2\n");
2021-07-19 18:51:03 +00:00
}
vTaskDelayMs(1000);
2021-07-19 18:51:03 +00:00
if(opmode == STATION_MODE || opmode == STATIONAP_MODE) {
uint8_t hwaddr[6];
sdk_wifi_get_macaddr(STATION_IF, hwaddr);
2021-08-28 21:44:01 +00:00
ip_info info{};
2021-07-19 18:51:03 +00:00
sdk_wifi_get_ip_info(STATION_IF, &info);
char *stassid = nullptr;
sysparam_get_string("wifi_sta_ssid", &stassid);
/* Generate response in JSON format */
char response[128];
size_t len = snprintf(response, sizeof(response),
"{\"opmode\" : \"%s\","
" \"stassid\" : \"%s\","
2021-08-28 21:44:01 +00:00
" \"staip\" : \"" IPSTR "\","
" \"stamac\" : \"" MACSTR "\""
2021-07-19 18:51:03 +00:00
"}", opmode_str, stassid, IP2STR(&info.ip), MAC2STR(hwaddr));
free(stassid);
if(len < sizeof(response)) {
LOCK_TCPIP_CORE();
websocket_write(pcb, (unsigned char *) response, len, WS_TEXT_MODE);
UNLOCK_TCPIP_CORE();
} else
syslog("buffer too small 3\n");
2021-07-19 18:51:03 +00:00
}
}
vTaskDelayMs(500);
}
syslog_detach();
2021-08-28 21:44:01 +00:00
vTaskDelete(nullptr);
2021-07-19 18:51:03 +00:00
}
2021-08-28 21:44:01 +00:00
struct fw_frame {
char t;
uint8_t reserved[3];
uint16_t seq;
uint16_t len;
uint32_t hash;
uint8_t data[];
} __attribute__((packed));
struct fw_check {
char t;
uint8_t reserved[3];
uint32_t len;
uint32_t hash;
} __attribute__((packed));
2021-07-19 18:51:03 +00:00
/**
* This function is called when websocket frame is received.
*
* Note: this function is executed on TCP thread and should return as soon
* as possible.
*/
2021-08-28 21:44:01 +00:00
void websocket_cb(struct tcp_pcb *pcb, char *data, u16_t data_len,
uint8_t /*mode*/) { //mode should be WS_BIN_MODE or WS_TEXT_MODE
2021-07-19 18:51:03 +00:00
2021-09-12 19:55:17 +00:00
uint8_t response[4];
auto &cmd = (char &) response[0];
auto &ret = response[1];
auto &val = (uint16_t &) response[2];
cmd = '0';
ret = ERROR;
val = 0;
2021-07-19 18:51:03 +00:00
2021-09-12 19:55:17 +00:00
bool togl = false;
2021-08-28 21:44:01 +00:00
2021-07-19 18:51:03 +00:00
switch (data[0]) {
2021-08-28 21:44:01 +00:00
case 'R': // Restart
cmd = 'R';
2021-09-12 19:55:17 +00:00
ret = OK;
2021-08-28 21:44:01 +00:00
break;
case 'X': // Clear Config
cmd = 'X';
2021-09-12 19:55:17 +00:00
ret = OK;
2021-08-28 21:44:01 +00:00
break;
case 'D': // Disable LED
syslog("G\n");
signal_led(false);
cmd = 'G';
2021-09-12 19:55:17 +00:00
ret = OK;
val = 1;
break;
case 'E': // Enable LED
syslog("E\n");
signal_led(true);
cmd = 'G';
2021-09-12 19:55:17 +00:00
ret = OK;
val = 0;
break;
2021-08-28 21:44:01 +00:00
case 'F':
2021-09-12 19:55:17 +00:00
togl = !togl;
2021-08-28 21:44:01 +00:00
signal_led(togl);
{
auto *f = (fw_frame *) data;
if(f->seq == 0) {
system_otaflash_init();
}
2021-09-12 19:55:17 +00:00
uint16_t ack = 0;
ret = system_otaflash_chunk(f->data, ntohs(f->len), ntohs(f->seq), ntohl(f->hash), &ack);
val = htons(ack);
2021-08-28 21:44:01 +00:00
}
cmd = 'F';
break;
case 'C':
signal_led(false);
{
auto *f = (fw_check *) data;
2021-09-12 19:55:17 +00:00
ret = system_otaflash_verify_and_switch(ntohl(f->len), ntohl(f->hash));
2021-08-28 21:44:01 +00:00
}
cmd = 'C';
break;
2021-07-19 18:51:03 +00:00
default:
printf("[websocket_callback]:\n%.*s\n", (int) data_len, (char *) data);
2021-08-28 21:44:01 +00:00
printf("Unknown command %c\n", data[0]);
2021-09-12 19:55:17 +00:00
ret = ERROR;
2021-07-19 18:51:03 +00:00
break;
}
2021-08-28 21:44:01 +00:00
LOCK_TCPIP_CORE();
2021-09-12 19:55:17 +00:00
websocket_write(pcb, response, 4, WS_BIN_MODE);
2021-08-28 21:44:01 +00:00
UNLOCK_TCPIP_CORE();
2021-09-12 19:55:17 +00:00
if(ret == OK) {
if(cmd == 'R' || cmd == 'C') { // Restart
printf("rebooting now");
vTaskDelay(1000 / portTICK_PERIOD_MS);
vPortEnterCritical();
sdk_system_restart();
} else if(cmd == 'X') { // Clear Config
vTaskDelay(1000 / portTICK_PERIOD_MS);
system_clear_config();
}
2021-08-28 21:44:01 +00:00
}
2021-07-19 18:51:03 +00:00
}
/**
* This function is called when new websocket is open and
* creates a new websocket_task if requested URI equals '/stream'.
*/
void websocket_open_cb(struct tcp_pcb *pcb, const char *uri) {
printf("WS URI: %s\n", uri);
if(!strcmp(uri, "/stream")) {
xTaskCreate(&websocket_task, "websocket_task", 512, (void *) pcb, 3, nullptr);
}
}
2021-07-18 23:25:27 +00:00
2021-07-19 20:31:30 +00:00
extern "C" void httpd_task(void *pvParameters) {
2021-08-28 21:44:01 +00:00
(void) pvParameters;
2021-07-18 23:25:27 +00:00
2021-07-19 20:31:30 +00:00
while (!uxSemaphoreGetCount(wifi_available_semaphore))
2021-07-18 23:25:27 +00:00
vTaskDelay(500 / portTICK_PERIOD_MS);
2021-07-19 18:51:03 +00:00
websocket_register_callbacks((tWsOpenHandler) websocket_open_cb, (tWsHandler) websocket_cb);
2021-07-18 23:25:27 +00:00
httpd_init();
2021-07-19 20:31:30 +00:00
vTaskDelete(nullptr);
2021-07-18 23:25:27 +00:00
}