2022-04-19 21:26:43 +02:00
|
|
|
#ifndef ESP32_FIREWALL_HPP
|
|
|
|
#define ESP32_FIREWALL_HPP
|
2022-04-10 20:46:54 +02:00
|
|
|
|
2022-04-11 17:02:58 +02:00
|
|
|
#include "Arduino.h"
|
|
|
|
#include "ArduinoJson.h"
|
2022-04-18 11:16:01 +02:00
|
|
|
#include "EEPROM.h"
|
2022-04-18 22:56:30 +02:00
|
|
|
|
|
|
|
#include "HTTPSServer.hpp"
|
|
|
|
#include "SSLCert.hpp"
|
|
|
|
#include "HTTPRequest.hpp"
|
|
|
|
#include "HTTPResponse.hpp"
|
2022-04-10 20:46:54 +02:00
|
|
|
|
2022-04-19 21:15:55 +02:00
|
|
|
#include "FirewallTypes.h"
|
|
|
|
|
2022-04-18 17:35:52 +02:00
|
|
|
#define eeprom_start_firewall_rules 4
|
2022-04-19 00:09:06 +02:00
|
|
|
using namespace httpsserver;
|
2022-04-18 17:35:52 +02:00
|
|
|
|
2022-04-19 21:26:43 +02:00
|
|
|
class esp32Firewall
|
2022-04-10 20:46:54 +02:00
|
|
|
{
|
2022-04-18 13:11:02 +02:00
|
|
|
uint16_t eeprom_size = 512;
|
2022-04-18 10:59:02 +02:00
|
|
|
uint8_t amount_of_rules = 0;
|
2022-04-18 18:40:23 +02:00
|
|
|
uint8_t security_number = 93;
|
2022-04-18 17:35:52 +02:00
|
|
|
int eeprom_settings_head = 0;
|
|
|
|
int eeprom_rules_head = eeprom_start_firewall_rules;
|
2022-04-11 17:02:58 +02:00
|
|
|
struct firewall_rule *head = NULL;
|
2022-04-11 11:47:50 +02:00
|
|
|
|
2022-04-19 00:09:06 +02:00
|
|
|
HTTPSServer *firewall_api;
|
|
|
|
SSLCert *certificate;
|
2022-04-11 21:27:27 +02:00
|
|
|
|
2022-04-18 10:59:02 +02:00
|
|
|
// Protocol / Target conversion
|
|
|
|
String protocol_to_string(firewall_protocol_t &);
|
2022-04-18 22:56:30 +02:00
|
|
|
firewall_protocol_t string_to_protocol(std::string &);
|
2022-04-18 10:59:02 +02:00
|
|
|
String target_to_string(firewall_target_t &);
|
2022-04-18 22:56:30 +02:00
|
|
|
firewall_target_t string_to_target(std::string &);
|
2022-04-18 10:59:02 +02:00
|
|
|
|
2022-04-18 11:16:01 +02:00
|
|
|
// EEPROM
|
2022-04-18 13:11:02 +02:00
|
|
|
void setup_eeprom();
|
2022-04-19 21:35:32 +02:00
|
|
|
void eeprom_write_firewall_rule(firewall_rule_t *);
|
2022-04-18 18:40:23 +02:00
|
|
|
void eeprom_write_firewall_rules();
|
|
|
|
void eeprom_read_firewall_rule(uint8_t &, uint8_t &);
|
2022-04-18 13:11:02 +02:00
|
|
|
void eeprom_read_firewall_rules();
|
2022-04-18 11:16:01 +02:00
|
|
|
|
2022-04-11 21:27:27 +02:00
|
|
|
// Firewall Actions
|
|
|
|
void add_rule_to_firewall(firewall_rule_t *);
|
2022-04-18 18:40:23 +02:00
|
|
|
firewall_rule_t *get_rule_from_firewall(uint8_t);
|
|
|
|
bool delete_rule_from_firewall(uint8_t);
|
2022-04-11 21:27:27 +02:00
|
|
|
|
|
|
|
// Firewall-API Actions
|
2022-04-19 00:09:06 +02:00
|
|
|
void setup_certificate();
|
2022-04-19 21:15:55 +02:00
|
|
|
void setup_routing();
|
2022-04-19 21:35:32 +02:00
|
|
|
void json_generic_response(HTTPResponse *, String, const uint16_t);
|
|
|
|
void json_message_response(HTTPResponse *, String, const uint16_t);
|
2022-04-11 21:27:27 +02:00
|
|
|
String construct_json_firewall_rule(firewall_rule_t *);
|
|
|
|
String construct_json_firewall();
|
2022-04-19 00:09:06 +02:00
|
|
|
void get_firewall_rule_handler(HTTPRequest *, HTTPResponse *);
|
|
|
|
void get_firewall_rules_handler(HTTPRequest *, HTTPResponse *);
|
|
|
|
bool request_has_firewall_parameter(ResourceParameters *);
|
|
|
|
void post_firewall_handler(HTTPRequest *, HTTPResponse *);
|
|
|
|
void delete_firewall_handler(HTTPRequest *, HTTPResponse *);
|
2022-04-10 20:46:54 +02:00
|
|
|
|
|
|
|
public:
|
2022-04-20 07:58:06 +02:00
|
|
|
esp32Firewall();
|
2022-04-10 20:46:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|