2024-01-29 14:15:33 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#include "toml.h"
|
|
|
|
|
|
|
|
|
|
// return 0: success
|
|
|
|
|
// retuun -1: failed
|
2024-02-28 16:30:03 +08:00
|
|
|
static int parse_device_config(struct device_config *dev_cfg, toml_table_t *conf_file_handle)
|
2024-01-29 14:15:33 +08:00
|
|
|
{
|
|
|
|
|
const char *ptr;
|
2024-02-28 16:30:03 +08:00
|
|
|
toml_table_t *device_table;
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
device_table = toml_table_in(conf_file_handle, "device");
|
|
|
|
|
if (device_table == NULL)
|
2024-01-29 14:15:33 +08:00
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing device section");
|
2024-01-29 14:15:33 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
ptr = toml_raw_in(device_table, "device_base");
|
2024-01-29 14:15:33 +08:00
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing device.device_base");
|
2024-01-29 14:15:33 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
dev_cfg->device_base = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
ptr = toml_raw_in(device_table, "device_offset");
|
2024-01-29 14:15:33 +08:00
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing device.device_offset");
|
2024-01-29 14:15:33 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
dev_cfg->device_offset = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// return 0: success
|
|
|
|
|
// retuun -1: failed
|
|
|
|
|
static int parse_packet_io_config(struct packet_io_config *pkt_io_cfg, toml_table_t *conf_file_handle)
|
|
|
|
|
{
|
|
|
|
|
const char *ptr;
|
|
|
|
|
toml_table_t *packet_io_table;
|
|
|
|
|
toml_array_t *mask_array;
|
|
|
|
|
|
|
|
|
|
packet_io_table = toml_table_in(conf_file_handle, "packet_io");
|
|
|
|
|
if (packet_io_table == NULL)
|
2024-01-31 14:45:50 +08:00
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io section");
|
2024-01-31 14:45:50 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
ptr = toml_raw_in(packet_io_table, "mode");
|
2024-01-31 14:45:50 +08:00
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io.mode");
|
2024-01-31 14:45:50 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
if (strcmp(ptr, "dumpfile") == 0)
|
|
|
|
|
{
|
|
|
|
|
pkt_io_cfg->mode = PACKET_IO_DUMPFILE;
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp(ptr, "marsio") == 0)
|
|
|
|
|
{
|
|
|
|
|
pkt_io_cfg->mode = PACKET_IO_MARSIO;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file invalid packet_io.mode %s, only support dumpfile and marsio", ptr);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pkt_io_cfg->mode == PACKET_IO_DUMPFILE)
|
|
|
|
|
{
|
|
|
|
|
ptr = toml_raw_in(packet_io_table, "dumpfile_dir");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io.dumpfile_dir");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
// skip ""
|
|
|
|
|
strncpy(pkt_io_cfg->dumpfile_dir, ptr + 1, strlen(ptr) - 2);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ptr = toml_raw_in(packet_io_table, "app_symbol");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io.app_symbol");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
strncpy(pkt_io_cfg->app_symbol, ptr, sizeof(pkt_io_cfg->app_symbol) - 1);
|
|
|
|
|
|
|
|
|
|
ptr = toml_raw_in(packet_io_table, "dev_symbol");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io.dev_symbol");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
strncpy(pkt_io_cfg->dev_symbol, ptr, sizeof(pkt_io_cfg->dev_symbol) - 1);
|
|
|
|
|
}
|
2024-01-31 14:45:50 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
ptr = toml_raw_in(packet_io_table, "nr_threads");
|
2024-01-29 14:15:33 +08:00
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io.nr_threads");
|
2024-01-29 14:15:33 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-01-31 14:45:50 +08:00
|
|
|
if (atoi(ptr) <= 0 || atoi(ptr) > MAX_THREAD_NUM)
|
|
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file invalid packet_io.nr_threads %d, range [1, %d]", atoi(ptr), MAX_THREAD_NUM);
|
2024-01-31 14:45:50 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
pkt_io_cfg->nr_threads = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
mask_array = toml_array_in(packet_io_table, "cpu_mask");
|
2024-01-29 14:15:33 +08:00
|
|
|
if (mask_array == NULL)
|
|
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io.cpu_mask");
|
2024-01-29 14:15:33 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
for (uint8_t i = 0; i < pkt_io_cfg->nr_threads; i++)
|
2024-01-29 14:15:33 +08:00
|
|
|
{
|
|
|
|
|
ptr = toml_raw_at(mask_array, i);
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
2024-02-28 16:30:03 +08:00
|
|
|
CONFIG_LOG_ERROR("config file missing packet_io.cpu_mask[%d]", i);
|
2024-01-29 14:15:33 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
pkt_io_cfg->cpu_mask[i] = atoi(ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// return 0: success
|
|
|
|
|
// retuun -1: failed
|
|
|
|
|
static int parse_ip_reassemble_config(struct ip_reassemble_config *ip_reass_cfg, toml_table_t *conf_file_handle)
|
|
|
|
|
{
|
|
|
|
|
const char *ptr;
|
|
|
|
|
toml_table_t *ip_reass_table;
|
|
|
|
|
|
|
|
|
|
ip_reass_table = toml_table_in(conf_file_handle, "ip_reassemble");
|
|
|
|
|
if (ip_reass_table == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing ip_reassemble section");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ptr = toml_raw_in(ip_reass_table, "enable");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing ip_reassemble.enable");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
ip_reass_cfg->enable = atoi(ptr);
|
|
|
|
|
|
|
|
|
|
ptr = toml_raw_in(ip_reass_table, "timeout");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing ip_reassemble.timeout");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
ip_reass_cfg->timeout = atoi(ptr);
|
|
|
|
|
|
|
|
|
|
ptr = toml_raw_in(ip_reass_table, "bucket_entries");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing ip_reassemble.bucket_entries");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
ip_reass_cfg->bucket_entries = atoi(ptr);
|
|
|
|
|
|
|
|
|
|
ptr = toml_raw_in(ip_reass_table, "bucket_num");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing ip_reassemble.bucket_num");
|
|
|
|
|
return -1;
|
2024-01-29 14:15:33 +08:00
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
ip_reass_cfg->bucket_num = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// return 0: success
|
|
|
|
|
// retuun -1: failed
|
2024-02-28 16:30:03 +08:00
|
|
|
static int parse_session_manager_section(struct session_manager_config *sess_mgr_cfg, toml_table_t *conf_file_handle)
|
2024-01-29 14:15:33 +08:00
|
|
|
{
|
|
|
|
|
const char *ptr;
|
|
|
|
|
toml_table_t *sess_mgr_table;
|
|
|
|
|
|
|
|
|
|
sess_mgr_table = toml_table_in(conf_file_handle, "session_manager");
|
|
|
|
|
if (sess_mgr_table == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager section");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// max session number
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "max_tcp_session_num");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.max_tcp_session_num");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->max_tcp_session_num = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "max_udp_session_num");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.max_udp_session_num");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->max_udp_session_num = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
// session overload (1: evict old session, 0: bypass new session)
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_overload_evict_old_sess");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_overload_evict_old_sess");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_overload_evict_old_sess = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "udp_overload_evict_old_sess");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.udp_overload_evict_old_sess");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->udp_overload_evict_old_sess = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
// TCP timeout
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_timeout_init");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_timeout_init");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_timeout_init = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_timeout_handshake");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_timeout_handshake");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_timeout_handshake = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_timeout_data");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_timeout_data");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_timeout_data = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_timeout_half_closed");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_timeout_half_closed");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_timeout_half_closed = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_timeout_time_wait");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_timeout_time_wait");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_timeout_time_wait = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_timeout_discard");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_timeout_discard");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_timeout_discard = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
// UDP timeout
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "udp_timeout_data");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.udp_timeout_data");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->udp_timeout_data = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
// TCP duplicate packet filter
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_dupkt_filter_enable");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_dupkt_filter_enable");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_dupkt_filter_enable = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_dupkt_filter_capacity");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_dupkt_filter_capacity");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_dupkt_filter_capacity = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_dupkt_filter_timeout");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_dupkt_filter_timeout");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_dupkt_filter_timeout = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "tcp_dupkt_filter_error_rate");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.tcp_dupkt_filter_error_rate");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->tcp_dupkt_filter_error_rate = atof(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
// UDP eviction filter
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "udp_eviction_filter_enable");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.udp_eviction_filter_enable");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->udp_eviction_filter_enable = atoi(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "udp_eviction_filter_capacity");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.udp_eviction_filter_capacity");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->udp_eviction_filter_capacity = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "udp_eviction_filter_timeout");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.udp_eviction_filter_timeout");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->udp_eviction_filter_timeout = atoll(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
ptr = toml_raw_in(sess_mgr_table, "udp_eviction_filter_error_rate");
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("config file missing session_manager.udp_eviction_filter_error_rate");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-02-28 16:30:03 +08:00
|
|
|
sess_mgr_cfg->udp_eviction_filter_error_rate = atof(ptr);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// return 0: success
|
|
|
|
|
// retuun -1: failed
|
|
|
|
|
int config_load(struct config *cfg, const char *cfg_file)
|
|
|
|
|
{
|
|
|
|
|
int ret = -1;
|
|
|
|
|
char errbuf[200];
|
|
|
|
|
FILE *fp = NULL;
|
|
|
|
|
toml_table_t *conf_file_handle = NULL;
|
|
|
|
|
|
|
|
|
|
memset(cfg, 0, sizeof(*cfg));
|
|
|
|
|
|
|
|
|
|
fp = fopen(cfg_file, "r");
|
|
|
|
|
if (fp == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("open config file %s failed, %s", cfg_file, strerror(errno));
|
|
|
|
|
goto error_out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
conf_file_handle = toml_parse_file(fp, errbuf, sizeof(errbuf));
|
|
|
|
|
if (conf_file_handle == NULL)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_ERROR("parse config file %s failed, %s", cfg_file, errbuf);
|
|
|
|
|
goto error_out;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
if (parse_device_config(&cfg->dev_cfg, conf_file_handle) != 0)
|
2024-01-29 14:15:33 +08:00
|
|
|
{
|
|
|
|
|
goto error_out;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
if (parse_packet_io_config(&cfg->pkt_io_cfg, conf_file_handle) != 0)
|
|
|
|
|
{
|
|
|
|
|
goto error_out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (parse_ip_reassemble_config(&cfg->ip_reass_cfg, conf_file_handle) != 0)
|
|
|
|
|
{
|
|
|
|
|
goto error_out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (parse_session_manager_section(&cfg->sess_mgr_cfg, conf_file_handle) != 0)
|
2024-01-29 14:15:33 +08:00
|
|
|
{
|
|
|
|
|
goto error_out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
|
if (conf_file_handle)
|
|
|
|
|
{
|
|
|
|
|
toml_free(conf_file_handle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fp)
|
|
|
|
|
{
|
|
|
|
|
fclose(fp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void config_dump(struct config *cfg)
|
|
|
|
|
{
|
|
|
|
|
if (cfg == NULL)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
struct device_config *dev_cfg = &cfg->dev_cfg;
|
|
|
|
|
struct packet_io_config *pkt_io_cfg = &cfg->pkt_io_cfg;
|
|
|
|
|
struct ip_reassemble_config *ip_reass_cfg = &cfg->ip_reass_cfg;
|
|
|
|
|
struct session_manager_config *sess_mgr_cfg = &cfg->sess_mgr_cfg;
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
// device config
|
|
|
|
|
CONFIG_LOG_DEBUG("device->device_base : %d", dev_cfg->device_base);
|
|
|
|
|
CONFIG_LOG_DEBUG("device->device_offset : %d", dev_cfg->device_offset);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
// packet io config
|
|
|
|
|
CONFIG_LOG_DEBUG("packet_io->mode : %s", pkt_io_cfg->mode == PACKET_IO_DUMPFILE ? "dumpfile" : "marsio");
|
|
|
|
|
if (pkt_io_cfg->mode == PACKET_IO_DUMPFILE)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_DEBUG("packet_io->dumpfile_dir : %s", pkt_io_cfg->dumpfile_dir);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_DEBUG("packet_io->app_symbol : %s", pkt_io_cfg->app_symbol);
|
|
|
|
|
CONFIG_LOG_DEBUG("packet_io->dev_symbol : %s", pkt_io_cfg->dev_symbol);
|
|
|
|
|
}
|
|
|
|
|
CONFIG_LOG_DEBUG("packet_io->nr_threads : %d", pkt_io_cfg->nr_threads);
|
|
|
|
|
for (uint8_t i = 0; i < pkt_io_cfg->nr_threads; i++)
|
|
|
|
|
{
|
|
|
|
|
CONFIG_LOG_DEBUG("packet_io->cpu_mask[%03d] : %d", i, pkt_io_cfg->cpu_mask[i]);
|
|
|
|
|
}
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
// ip reassemble config
|
|
|
|
|
CONFIG_LOG_DEBUG("ip_reassemble->enable : %d", ip_reass_cfg->enable);
|
|
|
|
|
CONFIG_LOG_DEBUG("ip_reassemble->timeout : %d", ip_reass_cfg->timeout);
|
|
|
|
|
CONFIG_LOG_DEBUG("ip_reassemble->bucket_entries : %d", ip_reass_cfg->bucket_entries);
|
|
|
|
|
CONFIG_LOG_DEBUG("ip_reassemble->bucket_num : %d", ip_reass_cfg->bucket_num);
|
2024-01-29 14:15:33 +08:00
|
|
|
|
2024-02-28 16:30:03 +08:00
|
|
|
// session manager config
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->max_tcp_session_num : %ld", sess_mgr_cfg->max_tcp_session_num);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->max_udp_session_num : %ld", sess_mgr_cfg->max_udp_session_num);
|
|
|
|
|
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_overload_evict_old_sess : %d", sess_mgr_cfg->tcp_overload_evict_old_sess);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->udp_overload_evict_old_sess : %d", sess_mgr_cfg->udp_overload_evict_old_sess);
|
|
|
|
|
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_timeout_init : %ld", sess_mgr_cfg->tcp_timeout_init);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_timeout_handshake : %ld", sess_mgr_cfg->tcp_timeout_handshake);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_timeout_data : %ld", sess_mgr_cfg->tcp_timeout_data);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_timeout_half_closed : %ld", sess_mgr_cfg->tcp_timeout_half_closed);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_timeout_time_wait : %ld", sess_mgr_cfg->tcp_timeout_time_wait);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_timeout_discard : %ld", sess_mgr_cfg->tcp_timeout_discard);
|
|
|
|
|
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->udp_timeout_data : %ld", sess_mgr_cfg->udp_timeout_data);
|
|
|
|
|
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_dupkt_filter_enable : %d", sess_mgr_cfg->tcp_dupkt_filter_enable);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_dupkt_filter_capacity : %ld", sess_mgr_cfg->tcp_dupkt_filter_capacity);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_dupkt_filter_timeout : %ld", sess_mgr_cfg->tcp_dupkt_filter_timeout);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->tcp_dupkt_filter_error_rate : %f", sess_mgr_cfg->tcp_dupkt_filter_error_rate);
|
|
|
|
|
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->udp_eviction_filter_enable : %d", sess_mgr_cfg->udp_eviction_filter_enable);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->udp_eviction_filter_capacity : %ld", sess_mgr_cfg->udp_eviction_filter_capacity);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->udp_eviction_filter_timeout : %ld", sess_mgr_cfg->udp_eviction_filter_timeout);
|
|
|
|
|
CONFIG_LOG_DEBUG("session_manager->udp_eviction_filter_error_rate : %f", sess_mgr_cfg->udp_eviction_filter_error_rate);
|
2024-01-29 14:15:33 +08:00
|
|
|
}
|