You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.6 KiB
94 lines
2.6 KiB
#ifndef UTUN_INSTANCE_H |
|
#define UTUN_INSTANCE_H |
|
|
|
#include <stdint.h> |
|
#include <stdbool.h> |
|
#include <stdio.h> |
|
#include "../lib/memory_pool.h" |
|
#include "secure_channel.h" |
|
#include "etcp_api.h" |
|
#include "config_parser.h" |
|
#include "firewall.h" |
|
|
|
// Forward declarations |
|
struct utun_config; |
|
struct uasync_s; |
|
struct ROUTE_TABLE; |
|
struct ETCP_CONN; |
|
typedef void (*etcp_new_conn_fn)(struct ETCP_CONN* conn, void* arg); |
|
struct ETCP_SOCKET; |
|
struct tun_if; |
|
struct ETCP_BINDINGS; |
|
struct ROUTE_BGP; |
|
struct control_server; |
|
|
|
// uTun instance configuration |
|
struct UTUN_INSTANCE { |
|
// Identification |
|
char name[16]; // Instance name from config |
|
|
|
// Configuration (moved from utun_state) |
|
struct utun_config *config; |
|
|
|
// TUN interface |
|
struct tun_if* tun; |
|
|
|
// Route subnets (for cleanup on shutdown) |
|
struct CFG_ROUTE_ENTRY* route_subnets; |
|
|
|
struct ROUTE_TABLE* rt; |
|
struct ROUTE_BGP* bgp; // BGP module for route exchange |
|
|
|
// Identification |
|
uint64_t node_id; |
|
|
|
struct SC_MYKEYS my_keys; |
|
|
|
// Main async context |
|
struct UASYNC* ua; |
|
|
|
// State |
|
int running; |
|
|
|
// Connections (список всех подключений для instance) |
|
struct ETCP_CONN* connections;// linked-list |
|
int connections_count; // Number of connections |
|
|
|
// Callback for new ETCP connections |
|
etcp_new_conn_fn etcp_new_conn_cbk; |
|
void* etcp_new_conn_arg; |
|
|
|
struct memory_pool* data_pool;// для входных-выходных данных пакета |
|
struct memory_pool* pkt_pool; |
|
struct memory_pool* ack_pool; |
|
|
|
// Active sockets |
|
struct ETCP_SOCKET* etcp_sockets;// linked-list |
|
|
|
// Routing statistics |
|
uint64_t routed_packets; |
|
uint64_t dropped_packets; |
|
|
|
// ETCP API bindings (per-instance) |
|
struct ETCP_BINDINGS api_bindings; |
|
|
|
// Control server for monitoring |
|
struct control_server* control_srv; |
|
|
|
// Firewall |
|
struct firewall_ctx fw; |
|
}; |
|
|
|
// Functions |
|
struct UTUN_INSTANCE* utun_instance_create(struct UASYNC* ua, const char* config_file); |
|
struct UTUN_INSTANCE* utun_instance_create_from_config(struct UASYNC* ua, struct utun_config* config); |
|
void utun_instance_destroy(struct UTUN_INSTANCE* instance); |
|
int utun_instance_init(struct UTUN_INSTANCE *instance); |
|
void utun_instance_run(struct UTUN_INSTANCE *instance); |
|
void utun_instance_stop(struct UTUN_INSTANCE *instance); |
|
void utun_instance_set_tun_init_enabled(int enabled); |
|
|
|
// Diagnostic function for memory leak analysis |
|
void utun_instance_diagnose_leaks(struct UTUN_INSTANCE* instance, const char* phase); |
|
|
|
#endif // UTUN_INSTANCE_H
|
|
|