- /*
-
- TERMINAL MODULE
-
- Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
-
- */
-
- // (HACK) allow us to use internal lwip struct.
- // esp8266 re-defines enum values from tcp header... include them first
- #include "terminal.h"
-
- #if TERMINAL_SUPPORT
-
- #include "settings.h"
- #include "system.h"
- #include "telnet.h"
- #include "utils.h"
- #include "wifi.h"
- #include "ws.h"
- #include "libs/URL.h"
- #include "libs/StreamInjector.h"
-
- #include <vector>
- #include <Stream.h>
-
- StreamInjector _serial = StreamInjector(TERMINAL_BUFFER_SIZE);
- EmbedisWrap embedis(_serial, TERMINAL_BUFFER_SIZE);
-
- #if SERIAL_RX_ENABLED
- char _serial_rx_buffer[TERMINAL_BUFFER_SIZE];
- static unsigned char _serial_rx_pointer = 0;
- #endif // SERIAL_RX_ENABLED
-
- // -----------------------------------------------------------------------------
- // Commands
- // -----------------------------------------------------------------------------
-
- void _terminalHelpCommand() {
-
- // Get sorted list of commands
- std::vector<String> commands;
- unsigned char size = embedis.getCommandCount();
- for (unsigned int i=0; i<size; i++) {
-
- String command = embedis.getCommandName(i);
- bool inserted = false;
- for (unsigned char j=0; j<commands.size(); j++) {
-
- // Check if we have to insert it before the current element
- if (commands[j].compareTo(command) > 0) {
- commands.insert(commands.begin() + j, command);
- inserted = true;
- break;
- }
-
- }
-
- // If we could not insert it, just push it at the end
- if (!inserted) commands.push_back(command);
-
- }
-
- // Output the list
- DEBUG_MSG_P(PSTR("Available commands:\n"));
- for (unsigned char i=0; i<commands.size(); i++) {
- DEBUG_MSG_P(PSTR("> %s\n"), (commands[i]).c_str());
- }
-
- }
-
- void _terminalKeysCommand() {
-
- // Get sorted list of keys
- auto keys = settingsKeys();
-
- // Write key-values
- DEBUG_MSG_P(PSTR("Current settings:\n"));
- for (unsigned int i=0; i<keys.size(); i++) {
- const auto value = getSetting(keys[i]);
- DEBUG_MSG_P(PSTR("> %s => \"%s\"\n"), (keys[i]).c_str(), value.c_str());
- }
-
- unsigned long freeEEPROM [[gnu::unused]] = SPI_FLASH_SEC_SIZE - settingsSize();
- DEBUG_MSG_P(PSTR("Number of keys: %d\n"), keys.size());
- DEBUG_MSG_P(PSTR("Current EEPROM sector: %u\n"), EEPROMr.current());
- DEBUG_MSG_P(PSTR("Free EEPROM: %d bytes (%d%%)\n"), freeEEPROM, 100 * freeEEPROM / SPI_FLASH_SEC_SIZE);
-
- }
-
- #if LWIP_VERSION_MAJOR != 1
-
- // not yet CONNECTING or LISTENING
- extern struct tcp_pcb *tcp_bound_pcbs;
- // accepting or sending data
- extern struct tcp_pcb *tcp_active_pcbs;
- // // TIME-WAIT status
- extern struct tcp_pcb *tcp_tw_pcbs;
-
- String _terminalPcbStateToString(const unsigned char state) {
- switch (state) {
- case 0: return F("CLOSED");
- case 1: return F("LISTEN");
- case 2: return F("SYN_SENT");
- case 3: return F("SYN_RCVD");
- case 4: return F("ESTABLISHED");
- case 5: return F("FIN_WAIT_1");
- case 6: return F("FIN_WAIT_2");
- case 7: return F("CLOSE_WAIT");
- case 8: return F("CLOSING");
- case 9: return F("LAST_ACK");
- case 10: return F("TIME_WAIT");
- default: return String(int(state));
- };
- }
-
- void _terminalPrintTcpPcb(tcp_pcb* pcb) {
-
- char remote_ip[32] = {0};
- char local_ip[32] = {0};
-
- inet_ntoa_r((pcb->local_ip), local_ip, sizeof(local_ip));
- inet_ntoa_r((pcb->remote_ip), remote_ip, sizeof(remote_ip));
-
- DEBUG_MSG_P(PSTR("state=%s local=%s:%u remote=%s:%u snd_queuelen=%u lastack=%u send_wnd=%u rto=%u\n"),
- _terminalPcbStateToString(pcb->state).c_str(),
- local_ip, pcb->local_port,
- remote_ip, pcb->remote_port,
- pcb->snd_queuelen, pcb->lastack,
- pcb->snd_wnd, pcb->rto
- );
-
- }
-
- void _terminalPrintTcpPcbs() {
-
- tcp_pcb *pcb;
- //DEBUG_MSG_P(PSTR("Active PCB states:\n"));
- for (pcb = tcp_active_pcbs; pcb != NULL; pcb = pcb->next) {
- _terminalPrintTcpPcb(pcb);
- }
- //DEBUG_MSG_P(PSTR("TIME-WAIT PCB states:\n"));
- for (pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) {
- _terminalPrintTcpPcb(pcb);
- }
- //DEBUG_MSG_P(PSTR("BOUND PCB states:\n"));
- for (pcb = tcp_bound_pcbs; pcb != NULL; pcb = pcb->next) {
- _terminalPrintTcpPcb(pcb);
- }
-
- }
-
- void _terminalPrintDnsResult(const char* name, const ip_addr_t* address) {
- // TODO fix asynctcp building with lwip-ipv6
- /*
- #if LWIP_IPV6
- if (IP_IS_V6(address)) {
- DEBUG_MSG_P(PSTR("[DNS] %s has IPV6 address %s\n"), name, ip6addr_ntoa(ip_2_ip6(address)));
- }
- #endif
- */
- DEBUG_MSG_P(PSTR("[DNS] %s has address %s\n"), name, ipaddr_ntoa(address));
- }
-
- void _terminalDnsFound(const char* name, const ip_addr_t* result, void*) {
- if (!result) {
- DEBUG_MSG_P(PSTR("[DNS] %s not found\n"), name);
- return;
- }
-
- _terminalPrintDnsResult(name, result);
- }
-
- #endif // LWIP_VERSION_MAJOR != 1
-
- void _terminalInitCommand() {
-
- terminalRegisterCommand(F("COMMANDS"), [](Embedis* e) {
- _terminalHelpCommand();
- terminalOK();
- });
-
- terminalRegisterCommand(F("ERASE.CONFIG"), [](Embedis* e) {
- terminalOK();
- customResetReason(CUSTOM_RESET_TERMINAL);
- eraseSDKConfig();
- *((int*) 0) = 0; // see https://github.com/esp8266/Arduino/issues/1494
- });
-
- terminalRegisterCommand(F("FACTORY.RESET"), [](Embedis* e) {
- resetSettings();
- terminalOK();
- });
-
- terminalRegisterCommand(F("GPIO"), [](Embedis* e) {
- int pin = -1;
-
- if (e->argc < 2) {
- DEBUG_MSG("Printing all GPIO pins:\n");
- } else {
- pin = String(e->argv[1]).toInt();
- if (!gpioValid(pin)) {
- terminalError(F("Invalid GPIO pin"));
- return;
- }
-
- if (e->argc > 2) {
- bool state = String(e->argv[2]).toInt() == 1;
- digitalWrite(pin, state);
- }
- }
-
- for (int i = 0; i <= 15; i++) {
- if (gpioValid(i) && (pin == -1 || pin == i)) {
- DEBUG_MSG_P(PSTR("GPIO %s pin %d is %s\n"), GPEP(i) ? "output" : "input", i, digitalRead(i) == HIGH ? "HIGH" : "LOW");
- }
- }
-
- terminalOK();
- });
-
- terminalRegisterCommand(F("HEAP"), [](Embedis* e) {
- infoHeapStats();
- terminalOK();
- });
-
- terminalRegisterCommand(F("STACK"), [](Embedis* e) {
- infoMemory("Stack", CONT_STACKSIZE, getFreeStack());
- terminalOK();
- });
-
- terminalRegisterCommand(F("HELP"), [](Embedis* e) {
- _terminalHelpCommand();
- terminalOK();
- });
-
- terminalRegisterCommand(F("INFO"), [](Embedis* e) {
- info();
- terminalOK();
- });
-
- terminalRegisterCommand(F("KEYS"), [](Embedis* e) {
- _terminalKeysCommand();
- terminalOK();
- });
-
- terminalRegisterCommand(F("GET"), [](Embedis* e) {
- if (e->argc < 2) {
- terminalError(F("Wrong arguments"));
- return;
- }
-
- for (unsigned char i = 1; i < e->argc; i++) {
- String key = String(e->argv[i]);
- String value;
- if (!Embedis::get(key, value)) {
- const auto maybeDefault = settingsQueryDefaults(key);
- if (maybeDefault.length()) {
- DEBUG_MSG_P(PSTR("> %s => %s (default)\n"), key.c_str(), maybeDefault.c_str());
- } else {
- DEBUG_MSG_P(PSTR("> %s =>\n"), key.c_str());
- }
- continue;
- }
-
- DEBUG_MSG_P(PSTR("> %s => \"%s\"\n"), key.c_str(), value.c_str());
- }
-
- terminalOK();
- });
-
- terminalRegisterCommand(F("RELOAD"), [](Embedis* e) {
- espurnaReload();
- terminalOK();
- });
-
- terminalRegisterCommand(F("RESET"), [](Embedis* e) {
- terminalOK();
- deferredReset(100, CUSTOM_RESET_TERMINAL);
- });
-
- terminalRegisterCommand(F("RESET.SAFE"), [](Embedis* e) {
- systemStabilityCounter(SYSTEM_CHECK_MAX);
- terminalOK();
- deferredReset(100, CUSTOM_RESET_TERMINAL);
- });
-
- terminalRegisterCommand(F("UPTIME"), [](Embedis* e) {
- infoUptime();
- terminalOK();
- });
-
- terminalRegisterCommand(F("CONFIG"), [](Embedis* e) {
- DynamicJsonBuffer jsonBuffer(1024);
- JsonObject& root = jsonBuffer.createObject();
- settingsGetJson(root);
- // XXX: replace with streaming
- String output;
- root.printTo(output);
- DEBUG_MSG(output.c_str());
-
- });
-
- #if not SETTINGS_AUTOSAVE
- terminalRegisterCommand(F("SAVE"), [](Embedis* e) {
- eepromCommit();
- terminalOK();
- });
- #endif
-
- #if SECURE_CLIENT == SECURE_CLIENT_BEARSSL
- terminalRegisterCommand(F("MFLN.PROBE"), [](Embedis* e) {
- if (e->argc != 3) {
- terminalError(F("[url] [value]"));
- return;
- }
-
- URL _url(e->argv[1]);
- uint16_t requested_mfln = atol(e->argv[2]);
-
- auto client = std::make_unique<BearSSL::WiFiClientSecure>();
- client->setInsecure();
-
- if (client->probeMaxFragmentLength(_url.host.c_str(), _url.port, requested_mfln)) {
- terminalOK();
- } else {
- terminalError(F("Buffer size not supported"));
- }
- });
- #endif
-
- #if LWIP_VERSION_MAJOR != 1
- terminalRegisterCommand(F("HOST"), [](Embedis* e) {
- if (e->argc != 2) {
- terminalError(F("HOST [hostname]"));
- return;
- }
-
- ip_addr_t result;
- auto error = dns_gethostbyname(e->argv[1], &result, _terminalDnsFound, nullptr);
- if (error == ERR_OK) {
- _terminalPrintDnsResult(e->argv[1], &result);
- terminalOK();
- return;
- } else if (error != ERR_INPROGRESS) {
- DEBUG_MSG_P(PSTR("[DNS] dns_gethostbyname error: %s\n"), lwip_strerr(error));
- return;
- }
-
- });
-
- terminalRegisterCommand(F("NETSTAT"), [](Embedis*) {
- _terminalPrintTcpPcbs();
- });
-
- #endif // LWIP_VERSION_MAJOR != 1
-
- }
-
- void _terminalLoop() {
-
- #if DEBUG_SERIAL_SUPPORT
- while (DEBUG_PORT.available()) {
- _serial.inject(DEBUG_PORT.read());
- }
- #endif
-
- embedis.process();
-
- #if SERIAL_RX_ENABLED
-
- while (SERIAL_RX_PORT.available() > 0) {
- char rc = SERIAL_RX_PORT.read();
- _serial_rx_buffer[_serial_rx_pointer++] = rc;
- if ((_serial_rx_pointer == TERMINAL_BUFFER_SIZE) || (rc == 10)) {
- terminalInject(_serial_rx_buffer, (size_t) _serial_rx_pointer);
- _serial_rx_pointer = 0;
- }
- }
-
- #endif // SERIAL_RX_ENABLED
-
- }
-
- // -----------------------------------------------------------------------------
- // Pubic API
- // -----------------------------------------------------------------------------
-
- void terminalInject(void *data, size_t len) {
- _serial.inject((char *) data, len);
- }
-
- void terminalInject(char ch) {
- _serial.inject(ch);
- }
-
-
- Stream & terminalSerial() {
- return (Stream &) _serial;
- }
-
- void terminalRegisterCommand(const String& name, embedis_command_f command) {
- Embedis::command(name, command);
- };
-
- void terminalOK() {
- DEBUG_MSG_P(PSTR("+OK\n"));
- }
-
- void terminalError(const String& error) {
- DEBUG_MSG_P(PSTR("-ERROR: %s\n"), error.c_str());
- }
-
- void terminalSetup() {
-
- _serial.callback([](uint8_t ch) {
- #if TELNET_SUPPORT
- telnetWrite(ch);
- #endif
- #if DEBUG_SERIAL_SUPPORT
- DEBUG_PORT.write(ch);
- #endif
- });
-
- #if WEB_SUPPORT
- wsRegister()
- .onVisible([](JsonObject& root) { root["cmdVisible"] = 1; });
- #endif
-
- _terminalInitCommand();
-
- #if SERIAL_RX_ENABLED
- SERIAL_RX_PORT.begin(SERIAL_RX_BAUDRATE);
- #endif // SERIAL_RX_ENABLED
-
- // Register loop
- espurnaRegisterLoop(_terminalLoop);
-
- }
-
- #endif // TERMINAL_SUPPORT
-
|