replace webserver with async type

This commit is contained in:
Florian Hoss 2022-04-11 17:02:58 +02:00
parent 3b6c5e0561
commit 9dfd1d06ab
4 changed files with 76 additions and 81 deletions

View file

@ -2,55 +2,21 @@
ESPFirewall::ESPFirewall(int port) ESPFirewall::ESPFirewall(int port)
{ {
this->amount_of_rules = 0;
this->head = NULL;
log_i("Starting Firewall-API on %i", port); log_i("Starting Firewall-API on %i", port);
this->firewall_api = new WebServer(port); this->firewall_api = new AsyncWebServer(port);
this->setup_routing(); this->setup_routing();
this->add_rule_to_firewall("192.168.0.1", "192.168.0.10", "TCP", "DROP");
this->add_rule_to_firewall("192.168.0.2", "192.168.0.15", "UDP", "REJECT");
} }
void ESPFirewall::setup_routing() void ESPFirewall::add_rule_to_firewall()
{
this->firewall_api->on("/api/v1/firewall", HTTP_GET, std::bind(&ESPFirewall::get_firewall_handler, this));
this->firewall_api->on("/api/v1/firewall", HTTP_POST, std::bind(&ESPFirewall::post_firewall_handler, this));
this->firewall_api->begin();
}
void ESPFirewall::custom_message_response(const char *message, int response_code)
{
cJSON *json_response = cJSON_CreateObject();
cJSON_AddBoolToObject(json_response, "ok", true);
cJSON_AddStringToObject(json_response, "message", message);
this->firewall_api->send(response_code, "application/json", cJSON_Print(json_response));
cJSON_Delete(json_response);
}
void ESPFirewall::prepare_firewall_json(cJSON *jsonResponse, firewall_rule_t *link)
{
cJSON_AddBoolToObject(jsonResponse, "ok", true);
cJSON_AddNumberToObject(jsonResponse, "number", link->key);
cJSON_AddStringToObject(jsonResponse, "source", link->source);
cJSON_AddStringToObject(jsonResponse, "destination", link->destination);
cJSON_AddStringToObject(jsonResponse, "protocol", link->protocol);
cJSON_AddStringToObject(jsonResponse, "target", link->target);
}
firewall_rule_t *ESPFirewall::add_rule_to_firewall(const char *source, const char *destination, const char *protocol, const char *target)
{ {
firewall_rule_t *temp; firewall_rule_t *temp;
firewall_rule_t *link = (firewall_rule_t *)malloc(sizeof(firewall_rule_t)); firewall_rule_t *link = (firewall_rule_t *)malloc(sizeof(firewall_rule_t));
link->key = ++amount_of_rules; link->key = ++amount_of_rules;
strcpy(link->source, source);
strcpy(link->destination, destination);
strcpy(link->protocol, protocol);
strcpy(link->target, target);
if (head == NULL) if (head == NULL)
{ {
head = link; head = link;
link->next = NULL; link->next = NULL;
return link; return;
} }
temp = head; temp = head;
while (temp->next != NULL) while (temp->next != NULL)
@ -59,43 +25,66 @@ firewall_rule_t *ESPFirewall::add_rule_to_firewall(const char *source, const cha
} }
temp->next = link; temp->next = link;
link->next = NULL; link->next = NULL;
return link; return;
} }
void ESPFirewall::post_firewall_handler() void ESPFirewall::get_firewall_handler(AsyncWebServerRequest *request)
{ {
if ((firewall_api->hasArg("source") || firewall_api->hasArg("destination") || firewall_api->hasArg("protocol") || firewall_api->hasArg("target")) == false) firewall_rule_t *ptr = this->head;
DynamicJsonDocument json(1024);
String response;
json["amount"] = amount_of_rules;
JsonArray rules = json.createNestedArray("rules");
while (ptr != NULL)
{ {
this->custom_message_response("not enough erguments provided", 400); JsonObject rule = rules.createNestedObject();
rule["key"] = ptr->key;
ptr = ptr->next;
}
serializeJson(json, response);
request->send(200, "application/json", response);
}
void ESPFirewall::post_firewall_handler(AsyncWebServerRequest *request)
{
DynamicJsonDocument json(1024);
String response;
int response_code;
if (request->hasArg("source") || request->hasArg("destination") || request->hasArg("protocol") || request->hasArg("target"))
{
String source = request->arg("source");
String destination = request->arg("destination");
String protocol = request->arg("protocol");
String target = request->arg("target");
json["source"] = source;
json["destination"] = destination;
json["protocol"] = protocol;
json["target"] = target;
add_rule_to_firewall();
response_code = 200;
} }
else else
{ {
const char *source = firewall_api->arg("source").c_str(); json["message"] = "not enough parameter provided";
const char *destination = firewall_api->arg("destination").c_str(); response_code = 400;
const char *protocol = firewall_api->arg("protocol").c_str();
const char *target = firewall_api->arg("target").c_str();
firewall_rule_t *ptr = this->add_rule_to_firewall(source, destination, protocol, target);
cJSON *json_response = cJSON_CreateObject();
prepare_firewall_json(json_response, ptr);
this->firewall_api->send(200, "application/json", cJSON_Print(json_response));
} }
serializeJson(json, response);
request->send(response_code, "application/json", response);
} }
void ESPFirewall::get_firewall_handler() void ESPFirewall::not_found(AsyncWebServerRequest *request)
{ {
firewall_rule_t *ptr = head; DynamicJsonDocument json(1024);
cJSON *json_response = cJSON_CreateArray(); String response;
while (ptr != NULL) json["message"] = "not found";
{ serializeJson(json, response);
cJSON *json_firewall_rule = cJSON_CreateObject(); request->send(404, "application/json", response);
prepare_firewall_json(json_firewall_rule, ptr);
cJSON_AddItemToArray(json_response, json_firewall_rule);
ptr = ptr->next;
}
this->firewall_api->send(200, "application/json", cJSON_Print(json_response));
} }
void ESPFirewall::handle_clients() void ESPFirewall::setup_routing()
{ {
this->firewall_api->handleClient(); firewall_api->on("/api/v1/firewall", HTTP_GET, std::bind(&ESPFirewall::get_firewall_handler, this, std::placeholders::_1));
} firewall_api->on("/api/v1/firewall", HTTP_POST, std::bind(&ESPFirewall::post_firewall_handler, this, std::placeholders::_1));
firewall_api->onNotFound(std::bind(&ESPFirewall::not_found, this, std::placeholders::_1));
this->firewall_api->begin();
}

View file

@ -1,37 +1,38 @@
#ifndef FIREWALL_H #ifndef FIREWALL_H
#define FIREWALL_H #define FIREWALL_H
#include "WebServer.h" #include "Arduino.h"
#include "cJSON.h" #include "AsyncJson.h"
#include "esp32-hal-log.h" #include "ArduinoJson.h"
#ifdef ESP32
#include "WiFi.h"
#include "AsyncTCP.h"
#elif defined(ESP8266)
#include "ESP8266WiFi.h"
#include "ESPAsyncTCP.h"
#endif
#include "ESPAsyncWebServer.h"
typedef struct firewall_rule typedef struct firewall_rule
{ {
int key; int key;
char source[IP4ADDR_STRLEN_MAX];
char destination[IP4ADDR_STRLEN_MAX];
char protocol[4];
char target[7];
struct firewall_rule *next; struct firewall_rule *next;
} firewall_rule_t; } firewall_rule_t;
class ESPFirewall class ESPFirewall
{ {
WebServer *firewall_api; AsyncWebServer *firewall_api;
int amount_of_rules; unsigned int amount_of_rules = 0;
struct firewall_rule *head; struct firewall_rule *head = NULL;
void add_rule_to_firewall();
void get_firewall_handler(AsyncWebServerRequest *request);
void post_firewall_handler(AsyncWebServerRequest *request);
void not_found(AsyncWebServerRequest *request);
void setup_routing(); void setup_routing();
void custom_message_response(const char *message, int response_code);
void prepare_firewall_json(cJSON *jsonResponse, firewall_rule_t *link);
firewall_rule_t *add_rule_to_firewall(const char *source, const char *destination, const char *protocol, const char *target);
void post_firewall_handler();
void get_firewall_handler();
public: public:
ESPFirewall(int port = 8080); ESPFirewall(int port = 8080);
void handle_clients();
}; };
#endif #endif

View file

@ -14,6 +14,9 @@ board = esp32-evb
framework = arduino framework = arduino
monitor_speed = 115200 monitor_speed = 115200
build_flags = -DCORE_DEBUG_LEVEL=3 build_flags = -DCORE_DEBUG_LEVEL=3
lib_deps =
bblanchon/ArduinoJson@^6.19.4
ottowinter/ESPAsyncWebServer-esphome@^2.1.0
[env:esp32-dev] [env:esp32-dev]
platform = espressif32 platform = espressif32
@ -21,3 +24,6 @@ board = az-delivery-devkit-v4
framework = arduino framework = arduino
monitor_speed = 115200 monitor_speed = 115200
build_flags = -DCORE_DEBUG_LEVEL=3 build_flags = -DCORE_DEBUG_LEVEL=3
lib_deps =
bblanchon/ArduinoJson@^6.19.4
ottowinter/ESPAsyncWebServer-esphome@^2.1.0

View file

@ -27,5 +27,4 @@ void setup()
void loop() void loop()
{ {
firewall->handle_clients();
} }