This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-maat/include/maat.h

198 lines
8.2 KiB
C
Raw Normal View History

2022-11-17 05:05:35 +08:00
/*
**********************************************************************************************
* Maat: Deep Packet Inspection Policy Framework
2022-10-27 17:58:52 +08:00
2022-11-17 05:05:35 +08:00
* Maat is the Goddess of truth and justice in ancient Egyptian concept.
* Her feather was the measure that determined whether the souls (considered
* to reside in the heart) of the departed would reach the paradise of afterlife
* successfully.
* Authors: Liu WenTan <liuwentan@geedgenetworks.com>
* Date: 2022-10-31
* Copyright: (c) 2018-2022 Geedge Networks, Inc. All rights reserved.
***********************************************************************************************
*/
#ifndef _MAAT_H_
#define _MAAT_H_
2022-10-27 17:58:52 +08:00
#ifdef __cplusplus
2022-11-25 16:32:29 +08:00
extern "C"
{
#endif
2022-10-27 17:58:52 +08:00
#include <stdint.h>
#include <netinet/in.h>
2022-11-17 05:05:35 +08:00
/* maat instance handle */
struct maat;
2022-10-27 17:58:52 +08:00
2023-01-06 18:54:59 +08:00
struct maat_hit_path {
int Nth_scan;
int vtable_id; // 0 is not a virtual table.
2023-02-22 15:22:41 +08:00
long long item_id;
long long sub_group_id;
long long top_group_id;
long long compile_id;
2023-01-06 18:54:59 +08:00
};
2023-01-30 21:59:35 +08:00
struct maat_hit_object {
2023-02-03 17:28:14 +08:00
int vtable_id;
2023-02-22 15:22:41 +08:00
long long group_id;
2023-01-06 18:54:59 +08:00
};
2023-02-03 17:28:14 +08:00
enum maat_scan_status {
MAAT_SCAN_ERR = -1, //scan error
MAAT_SCAN_OK, //scan but not hit(group or compile)
MAAT_SCAN_HALF_HIT, //half hit: hit group, not hit compile
MAAT_SCAN_HIT //scan hit compile
2022-12-09 17:12:18 +08:00
};
struct ip_addr {
int ip_type; //4: IPv4, 6: IPv6
union {
unsigned int ipv4; //network order
unsigned int ipv6[4];
};
};
2022-11-25 16:32:29 +08:00
typedef void maat_start_callback_t(int update_type, void *u_param);
typedef void maat_update_callback_t(int table_id, const char *table_line, void *u_para);
typedef void maat_finish_callback_t(void *u_para);
typedef void maat_ex_new_func_t(int table_id, const char *key, const char *table_line, void **ad, long argl, void *argp);
typedef void maat_ex_free_func_t(int table_id, void **ad, long argl, void *argp);
typedef void maat_ex_dup_func_t(int table_id, void **to, void **from, long argl, void *argp);
2022-11-25 16:32:29 +08:00
/* maat_instance options API */
2022-11-17 05:05:35 +08:00
struct maat_options;
2023-01-30 21:59:35 +08:00
struct maat_options *maat_options_new(void);
void maat_options_free(struct maat_options *opts);
2023-01-06 18:54:59 +08:00
int maat_options_set_caller_thread_number(struct maat_options *opts, size_t n_thread);
2023-01-30 21:59:35 +08:00
int maat_options_set_accept_tags(struct maat_options *opts, const char *accept_tags);
2022-11-25 16:32:29 +08:00
int maat_options_set_rule_effect_interval_ms(struct maat_options *opts, int interval_ms);
int maat_options_set_rule_update_checking_interval_ms(struct maat_options *opts, int interval_ms);
int maat_options_set_gc_timeout_ms(struct maat_options *opts, int interval_ms);
int maat_options_set_instance_name(struct maat_options *opts, const char *instance_name, size_t name_len);
int maat_options_set_deferred_load_on(struct maat_options *opts);
2023-01-06 18:54:59 +08:00
int maat_options_set_iris(struct maat_options *opts, const char *full_directory, const char *increment_directory);
2022-12-03 22:23:41 +08:00
int maat_options_set_json_file(struct maat_options *opts, const char *json_filename);
2023-01-06 18:54:59 +08:00
int maat_options_set_redis(struct maat_options *opts, const char *redis_ip, uint16_t redis_port, int redis_db);
2022-12-09 17:12:18 +08:00
int maat_options_set_logger(struct maat_options *opts, void *logger);
2022-11-25 16:32:29 +08:00
/* maat_instance API */
struct maat *maat_new(struct maat_options *opts, const char *table_info_path);
2022-11-17 05:05:35 +08:00
void maat_free(struct maat *instance);
2022-11-25 16:32:29 +08:00
/* maat table API */
int maat_table_get_id(struct maat *instance, const char *table_name);
2023-01-30 21:59:35 +08:00
/* return 0 if success, otherwise return -1 */
int maat_table_callback_register(struct maat *instance, int table_id,
2022-11-25 16:32:29 +08:00
maat_start_callback_t *start,
maat_update_callback_t *update,
maat_finish_callback_t *finish,
void *u_para);
2023-02-09 22:13:15 +08:00
/* maat compile table API */
int maat_compile_table_ex_schema_register(struct maat *instance, int table_id,
maat_ex_new_func_t *new_func,
maat_ex_free_func_t *free_func,
maat_ex_dup_func_t *dup_func,
2023-02-09 22:13:15 +08:00
long argl, void *argp);
void *maat_compile_table_get_ex_data(struct maat *instance, int compile_table_id,
long long compile_id);
2023-02-09 22:13:15 +08:00
2022-11-25 16:32:29 +08:00
/* maat plugin table API */
int maat_plugin_table_ex_schema_register(struct maat *instance, int table_id,
maat_ex_new_func_t *new_func,
maat_ex_free_func_t *free_func,
maat_ex_dup_func_t *dup_func,
2023-01-06 18:54:59 +08:00
long argl, void *argp);
/* returned data is duplicated by dup_func of maat_plugin_table_ex_schema_register,
caller is responsible to free the data. */
void *maat_plugin_table_get_ex_data(struct maat *instance, int table_id, const char *key);
int maat_ip_plugin_table_get_ex_data(struct maat *instance, int table_id,
2023-02-20 11:43:43 +08:00
const struct ip_addr *ip, void **ex_data_array,
size_t n_ex_data);
int maat_fqdn_plugin_table_get_ex_data(struct maat *instance, int table_id,
const char *fqdn, void **ex_data_array,
size_t n_ex_data);
2023-02-20 11:43:43 +08:00
int maat_bool_plugin_table_get_ex_data(struct maat *instance, int table_id,
2023-02-20 11:43:43 +08:00
unsigned long long *item_ids, size_t n_item,
void **ex_data_array, size_t n_ex_data);
2022-11-25 16:32:29 +08:00
/* maat scan API */
2022-11-17 05:05:35 +08:00
struct maat_state;
2023-01-30 21:59:35 +08:00
/**
* @param instance: maat instance created by maat_new()
* @param table_id: the id of table which to be scanned
* @param thread_id: thread index
* @param results: array to store hit compile id
* @param n_result: the array size
* @param n_hit_result: the number of hit compile id
* @param state: scan mid status
*
2023-02-03 17:28:14 +08:00
* @retval MAAT_SCAN_ERR
* MAAT_SCAN_OK
* MAAT_SCAN_HALF_HIT
* MAAT_SCAN_HIT
2023-01-30 21:59:35 +08:00
*/
int maat_scan_flag(struct maat *instance, int table_id, int thread_id,
2023-02-22 15:22:41 +08:00
long long flag, long long *results, size_t n_result,
2023-02-03 17:28:14 +08:00
size_t *n_hit_result, struct maat_state **state);
int maat_scan_integer(struct maat *instance, int table_id, int thread_id,
2023-02-22 15:22:41 +08:00
unsigned int intval, long long *results, size_t n_result,
2023-01-30 21:59:35 +08:00
size_t *n_hit_result, struct maat_state **state);
int maat_scan_ipv4(struct maat *instance, int table_id, int thread_id,
2023-02-22 15:22:41 +08:00
uint32_t ip_addr, long long *results, size_t n_result,
2023-01-30 21:59:35 +08:00
size_t *n_hit_result, struct maat_state **state);
2022-11-17 05:05:35 +08:00
int maat_scan_ipv6(struct maat *instance, int table_id, int thread_id,
2023-02-22 15:22:41 +08:00
uint8_t *ip_addr, long long *results, size_t n_result,
2023-01-30 21:59:35 +08:00
size_t *n_hit_result, struct maat_state **state);
2022-11-17 05:05:35 +08:00
int maat_scan_string(struct maat *instance, int table_id, int thread_id,
2023-02-22 15:22:41 +08:00
const char *data, size_t data_len, long long *results,
size_t n_result, size_t *n_hit_result,
struct maat_state **state);
2022-11-17 05:05:35 +08:00
struct maat_stream;
struct maat_stream *maat_scan_stream_open(struct maat *instance, int table_id, int thread_id);
2022-11-17 05:05:35 +08:00
int maat_scan_stream(struct maat_stream **stream, const char* data, int data_len,
2023-02-22 15:22:41 +08:00
long long *results, size_t *n_result, struct maat_state **state);
2022-11-17 05:05:35 +08:00
void maat_scan_stream_close(struct maat_stream **stream);
2023-01-06 18:54:59 +08:00
/* maat state API */
2023-02-03 17:28:14 +08:00
int maat_state_set_scan_district(struct maat *instance, struct maat_state **state,
const char *district, size_t district_len);
2023-01-30 21:59:35 +08:00
int maat_state_set_last_scan(struct maat *maat_instance, struct maat_state **state);
int maat_state_set_scan_compile_tables(struct maat *maat_instance, struct maat_state **state,
const char *compile_table[], size_t n_table);
2023-01-30 21:59:35 +08:00
2023-02-03 17:28:14 +08:00
int maat_state_get_hit_paths(struct maat *instance, struct maat_state **state,
struct maat_hit_path *paths, size_t n_path);
2023-02-03 17:28:14 +08:00
int maat_state_get_hit_objects(struct maat *instance, struct maat_state **state,
struct maat_hit_object *objs, size_t n_obj);
2023-01-06 18:54:59 +08:00
void maat_state_free(struct maat_state **state);
2023-01-30 21:59:35 +08:00
/* return hit object compile_id */
int maat_hit_object_compile_id(struct maat *instance, struct maat_hit_object *obj);
2022-10-27 17:58:52 +08:00
#ifdef __cplusplus
2022-11-25 16:32:29 +08:00
}
#endif
2022-10-26 14:41:22 +08:00
2023-02-22 15:22:41 +08:00
#endif