2019-05-17 17:04:50 +08:00
|
|
|
|
#include "kni_utils.h"
|
|
|
|
|
|
#include "ssl_utils.h"
|
|
|
|
|
|
#include "marsio.h"
|
|
|
|
|
|
#include "kni_maat.h"
|
|
|
|
|
|
#include "MESA/http.h"
|
2019-06-03 20:19:04 +08:00
|
|
|
|
#include "kni_cmsg.h"
|
|
|
|
|
|
#include "uuid/uuid.h"
|
|
|
|
|
|
#include "cjson/cJSON.h"
|
|
|
|
|
|
#include "kni_send_logger.h"
|
2019-06-08 20:28:21 +08:00
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
#include <linux/if_ether.h>
|
2019-05-17 17:04:50 +08:00
|
|
|
|
|
|
|
|
|
|
extern int g_iThreadNum;
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-18 12:41:31 +08:00
|
|
|
|
struct kni_handle *g_kni_handle = NULL;
|
|
|
|
|
|
struct kni_field_stat_handle *g_kni_fs_handle = NULL;
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
#define HTTP_PROJECT_NAME "kni_http_tag"
|
|
|
|
|
|
#define BURST_MAX 1
|
2019-06-08 20:28:21 +08:00
|
|
|
|
#define stream_traceid_LEN 37
|
2019-06-03 20:19:04 +08:00
|
|
|
|
#define TFE_COUNT_MAX 16
|
2019-06-08 20:28:21 +08:00
|
|
|
|
#define CALLER_SAPP 0
|
|
|
|
|
|
#define CALLER_TFE 1
|
2019-06-03 20:19:04 +08:00
|
|
|
|
|
2019-06-05 11:32:11 +08:00
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
enum kni_protocol{
|
|
|
|
|
|
KNI_PROTOCOL_UNKNOWN = 0,
|
|
|
|
|
|
KNI_PROTOCOL_SSL,
|
|
|
|
|
|
KNI_PROTOCOL_HTTP,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2019-06-06 17:07:17 +08:00
|
|
|
|
enum stream_error{
|
|
|
|
|
|
STREAM_ERROR_PENDING_NO_SYN = -1,
|
|
|
|
|
|
STREAM_ERROR_SINGLE_DIR = -2,
|
|
|
|
|
|
STREAM_ERROR_PROTOCOL_UNKNOWN = -3,
|
|
|
|
|
|
STREAM_ERROR_NO_SYN_ACK = -4,
|
|
|
|
|
|
STREAM_ERROR_INVALID_ACTION = -5,
|
2019-06-08 20:28:21 +08:00
|
|
|
|
STREAM_ERROR_NO_DATA = -6,
|
2019-06-06 17:07:17 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
struct http_project{
|
|
|
|
|
|
int host_len;
|
|
|
|
|
|
char host[KNI_DOMAIN_MAX];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct pme_info{
|
|
|
|
|
|
int protocol;
|
|
|
|
|
|
int policy_id;
|
2019-06-04 15:38:27 +08:00
|
|
|
|
int maat_hit;
|
2019-06-04 16:37:42 +08:00
|
|
|
|
enum kni_action action;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
int service;
|
|
|
|
|
|
struct kni_tcpopt_info *client_tcpopt;
|
|
|
|
|
|
struct kni_tcpopt_info *server_tcpopt;
|
2019-06-05 15:42:46 +08:00
|
|
|
|
uint16_t client_window;
|
|
|
|
|
|
uint16_t server_window;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
int tfe_id;
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pthread_mutex_t lock;
|
|
|
|
|
|
enum stream_error error;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
char stream_traceid[stream_traceid_LEN];
|
|
|
|
|
|
//TODO: union, cjson check protocol
|
|
|
|
|
|
union{
|
|
|
|
|
|
char host[KNI_DOMAIN_MAX]; //http only
|
|
|
|
|
|
char sni[KNI_DOMAIN_MAX]; //ssl only
|
|
|
|
|
|
};
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//tfe_release = 1: tfe don't need pmeinfo
|
|
|
|
|
|
int tfe_release;
|
|
|
|
|
|
int sapp_release;
|
|
|
|
|
|
//kafka log
|
2019-06-05 16:32:40 +08:00
|
|
|
|
struct layer_addr *addr;
|
|
|
|
|
|
unsigned char dir;
|
|
|
|
|
|
uint64_t server_bytes;
|
|
|
|
|
|
uint64_t client_bytes;
|
|
|
|
|
|
uint64_t server_pkts;
|
|
|
|
|
|
uint64_t client_pkts;
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
time_t start_time;
|
2019-06-05 11:32:11 +08:00
|
|
|
|
time_t end_time;
|
|
|
|
|
|
uint64_t con_duration_ms;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//from tfe, kafka log
|
2019-06-04 21:18:55 +08:00
|
|
|
|
uint64_t intercept_state;
|
|
|
|
|
|
uint64_t pinningst; //defalut 0
|
2019-06-03 20:19:04 +08:00
|
|
|
|
uint64_t ssl_server_side_latency;
|
|
|
|
|
|
uint64_t ssl_client_side_latency;
|
|
|
|
|
|
char ssl_server_side_version[KNI_SYMBOL_MAX];
|
|
|
|
|
|
char ssl_client_side_version[KNI_SYMBOL_MAX];
|
2019-06-04 21:18:55 +08:00
|
|
|
|
uint64_t ssl_cert_verify;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
char ssl_error[KNI_STRING_MAX];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct wrapped_packet{
|
|
|
|
|
|
char data[KNI_MTU];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct tcp_option_restore{
|
|
|
|
|
|
uint8_t kind;
|
|
|
|
|
|
uint8_t len;
|
|
|
|
|
|
uint16_t offset;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct tfe_instance{
|
|
|
|
|
|
struct mr_vdev *dev_eth_handler;
|
|
|
|
|
|
struct mr_sendpath *dev_eth_sendpath;
|
|
|
|
|
|
char mac_addr[6];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct kni_marsio_handle{
|
|
|
|
|
|
struct mr_instance *instance;
|
|
|
|
|
|
struct tfe_instance *tfe_instance_list[TFE_COUNT_MAX];
|
|
|
|
|
|
struct mr_vdev *dev_vxlan_handler;
|
|
|
|
|
|
struct mr_sendpath *dev_vxlan_sendpath;
|
|
|
|
|
|
char src_mac_addr[6];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct protocol_identify_result{
|
|
|
|
|
|
int protocol;
|
|
|
|
|
|
char domain[KNI_DOMAIN_MAX];
|
|
|
|
|
|
int domain_len;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct thread_tfe_data_receiver_args{
|
|
|
|
|
|
void *logger;
|
|
|
|
|
|
struct kni_marsio_handle *marsio_handle;
|
|
|
|
|
|
int tfe_id;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct thread_tfe_cmsg_receiver_args{
|
|
|
|
|
|
void *logger;
|
|
|
|
|
|
char profile[KNI_SYMBOL_MAX];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct pkt_info{
|
|
|
|
|
|
struct iphdr *iphdr;
|
|
|
|
|
|
int iphdr_len;
|
|
|
|
|
|
int ip_totlen;
|
|
|
|
|
|
struct tcphdr *tcphdr;
|
|
|
|
|
|
int tcphdr_len;
|
|
|
|
|
|
char *data;
|
|
|
|
|
|
int data_len;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct kni_handle{
|
|
|
|
|
|
int http_project_id;
|
|
|
|
|
|
struct kni_marsio_handle *marsio_handle;
|
|
|
|
|
|
struct kni_maat_handle *maat_handle;
|
|
|
|
|
|
struct kni_send_logger *send_logger;
|
|
|
|
|
|
MESA_htable_handle traceid2pme_htable;
|
|
|
|
|
|
int tfe_count;
|
|
|
|
|
|
uint32_t local_ipv4;
|
|
|
|
|
|
void *local_logger;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct traceid2pme_search_cb_args{
|
|
|
|
|
|
struct kni_cmsg *cmsg;
|
|
|
|
|
|
void *logger;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2019-06-06 17:07:17 +08:00
|
|
|
|
static void pme_info_destroy(void *data){
|
|
|
|
|
|
struct pme_info *pmeinfo = (struct pme_info *)data;
|
|
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
|
|
|
|
|
if(pmeinfo != NULL){
|
|
|
|
|
|
//free client_tcpopt
|
|
|
|
|
|
if(pmeinfo->client_tcpopt != NULL){
|
|
|
|
|
|
FREE(&(pmeinfo->client_tcpopt));
|
|
|
|
|
|
}
|
|
|
|
|
|
//free server tcpopt
|
|
|
|
|
|
if(pmeinfo->server_tcpopt != NULL){
|
|
|
|
|
|
FREE(&(pmeinfo->server_tcpopt));
|
|
|
|
|
|
}
|
|
|
|
|
|
//free layer_addr
|
|
|
|
|
|
layer_addr_free(pmeinfo->addr);
|
|
|
|
|
|
pmeinfo->addr=NULL;
|
|
|
|
|
|
//free lock
|
|
|
|
|
|
pthread_mutex_destroy(&(pmeinfo->lock));
|
|
|
|
|
|
FREE(&pmeinfo);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_PME_FREE], 0, FS_OP_ADD, 1);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
else{
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at pme_info_destroy, pmeinfo is null");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct pme_info* pme_info_new(const struct streaminfo *stream, int thread_seq){
|
|
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
struct pme_info* pmeinfo = ALLOC(struct pme_info, 1);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
pmeinfo->tfe_id = g_kni_handle->tfe_count > 0 ? thread_seq % g_kni_handle->tfe_count : -1;
|
|
|
|
|
|
uuid_t uu;
|
|
|
|
|
|
uuid_generate_random(uu);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
uuid_unparse(uu, pmeinfo->stream_traceid);
|
2019-06-05 16:32:40 +08:00
|
|
|
|
pmeinfo->addr = layer_addr_dup(&(stream->addr));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
pmeinfo->start_time = time(NULL);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
char stream_addr[KNI_SYMBOL_MAX] = "";
|
2019-06-06 17:07:17 +08:00
|
|
|
|
//init pme_lock
|
|
|
|
|
|
int ret = pthread_mutex_init(&(pmeinfo->lock), NULL);
|
|
|
|
|
|
if(ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at init pthread mutex, stream_traceid is %s", pmeinfo->stream_traceid);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
kni_stream_addr_trans((struct ipaddr*)(&stream->addr), stream_addr, sizeof(stream_addr));
|
|
|
|
|
|
KNI_LOG_INFO(logger, "stream addr is %s, stream traceid is %s", stream_addr, pmeinfo->stream_traceid);
|
|
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_TOT_STM], 0, FS_OP_ADD, 1);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return pmeinfo;
|
2019-06-06 17:07:17 +08:00
|
|
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
|
|
pme_info_destroy(pmeinfo);
|
|
|
|
|
|
return NULL;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
static int sendlog_to_kafka(struct pme_info *pmeinfo, void *local_logger){
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//create cjson
|
2019-06-03 20:19:04 +08:00
|
|
|
|
cJSON *log_obj = cJSON_CreateObject();
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//stream_traceid
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "stream_traceid", pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//policy_id
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "policy_id", pmeinfo->policy_id);
|
|
|
|
|
|
//action
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "action", pmeinfo->action);
|
|
|
|
|
|
//service
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "service", pmeinfo->service);
|
|
|
|
|
|
//start_time
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "start_time", pmeinfo->start_time);
|
|
|
|
|
|
//end_time
|
2019-06-05 11:32:11 +08:00
|
|
|
|
cJSON_AddNumberToObject(log_obj, "end_time", pmeinfo->end_time);
|
|
|
|
|
|
//con_duration_ms
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "con_duration_ms", (pmeinfo->end_time - pmeinfo->start_time) * 1000);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//stream_info: addr_type, trans_proto, client_ip, client_port, server_ip, server_port
|
2019-06-05 16:32:40 +08:00
|
|
|
|
const struct layer_addr *addr = pmeinfo->addr;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
char client_ip_str[INET6_ADDRSTRLEN] = "";
|
|
|
|
|
|
char server_ip_str[INET6_ADDRSTRLEN] = "";
|
|
|
|
|
|
switch(addr->addrtype){
|
|
|
|
|
|
case ADDR_TYPE_IPV4:
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "addr_type", 4);
|
|
|
|
|
|
inet_ntop(AF_INET, &addr->tuple4_v4->saddr, client_ip_str, sizeof(client_ip_str));
|
|
|
|
|
|
inet_ntop(AF_INET, &addr->tuple4_v4->daddr, server_ip_str, sizeof(server_ip_str));
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "client_ip", client_ip_str);
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "server_ip", server_ip_str);
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "client_port", ntohs(addr->tuple4_v4->source));
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "server_port", ntohs(addr->tuple4_v4->dest));
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "trans_proto", "IPv4_TCP");
|
|
|
|
|
|
break;
|
|
|
|
|
|
case ADDR_TYPE_IPV6:
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "addr_type", 6);
|
|
|
|
|
|
inet_ntop(AF_INET6, &addr->tuple4_v6->saddr, client_ip_str, sizeof(client_ip_str));
|
|
|
|
|
|
inet_ntop(AF_INET6, &addr->tuple4_v6->daddr, server_ip_str, sizeof(server_ip_str));
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "client_ip", client_ip_str);
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "server_ip", server_ip_str);
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "client_port", ntohs(addr->tuple4_v6->source));
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "server_port", ntohs(addr->tuple4_v6->dest));
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "trans_proto", "IPv6_TCP");
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
//entrance_id: 0
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "entrance_id", 0);
|
|
|
|
|
|
//device_id: 0
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "device_id", 0);
|
|
|
|
|
|
//link_id: 0
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "link_id", 0);
|
|
|
|
|
|
//isp: null
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "isp", "");
|
|
|
|
|
|
//encap_type: from sapp, 先填0
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "encap_type", 0);
|
|
|
|
|
|
|
|
|
|
|
|
//pinning state: from tfe
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "pinningst", pmeinfo->pinningst);
|
|
|
|
|
|
//intercept state: from tfe
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "intercept_state", pmeinfo->intercept_state);
|
|
|
|
|
|
//ssl upstream latency: from tfe
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "ssl_server_side_latency", pmeinfo->ssl_server_side_latency);
|
|
|
|
|
|
//ssl downstream latency: from tfe
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "ssl_client_side_latency", pmeinfo->ssl_client_side_latency);
|
|
|
|
|
|
//ssl upstream version: from tfe
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "ssl_server_side_version", pmeinfo->ssl_server_side_version);
|
|
|
|
|
|
//ssl downstream version: from tfe
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "ssl_client_side_version", pmeinfo->ssl_client_side_version);
|
|
|
|
|
|
//ssl cert verify
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "ssl_cert_verify", pmeinfo->ssl_cert_verify);
|
|
|
|
|
|
|
|
|
|
|
|
//direction: 0
|
|
|
|
|
|
cJSON_AddNumberToObject(log_obj, "direction", 0);
|
|
|
|
|
|
//stream_dir: from sapp
|
2019-06-05 16:32:40 +08:00
|
|
|
|
cJSON_AddNumberToObject(log_obj, "stream_dir", pmeinfo->dir);
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//cap_ip: kni ip
|
2019-06-03 20:19:04 +08:00
|
|
|
|
char local_ipv4_str[INET6_ADDRSTRLEN];
|
|
|
|
|
|
inet_ntop(AF_INET, &(g_kni_handle->local_ipv4), local_ipv4_str, sizeof(local_ipv4_str));
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "cap_ip", local_ipv4_str);
|
|
|
|
|
|
//addr_list
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "addr_list", "");
|
|
|
|
|
|
//host: http_only
|
2019-06-08 20:28:21 +08:00
|
|
|
|
if(pmeinfo->protocol == KNI_PROTOCOL_HTTP){
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "host", pmeinfo->host);
|
|
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//sni: ssl only
|
2019-06-08 20:28:21 +08:00
|
|
|
|
if(pmeinfo->protocol == KNI_PROTOCOL_SSL){
|
|
|
|
|
|
cJSON_AddStringToObject(log_obj, "sni", pmeinfo->sni);
|
|
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//c2s_pkt_num
|
2019-06-05 16:32:40 +08:00
|
|
|
|
cJSON_AddNumberToObject(log_obj, "c2s_pkt_num", pmeinfo->server_pkts);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//s2c_pkt_num
|
2019-06-05 16:32:40 +08:00
|
|
|
|
cJSON_AddNumberToObject(log_obj, "s2c_pkt_num", pmeinfo->client_pkts);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//c2s_byte_num
|
2019-06-05 16:32:40 +08:00
|
|
|
|
cJSON_AddNumberToObject(log_obj, "c2s_byte_num", pmeinfo->server_bytes);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//s2c_byte_num
|
2019-06-05 16:32:40 +08:00
|
|
|
|
cJSON_AddNumberToObject(log_obj, "s2c_byte_num", pmeinfo->client_bytes);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
int ret = -1;
|
2019-06-05 11:32:11 +08:00
|
|
|
|
char *log_msg = cJSON_PrintUnformatted(log_obj);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
cJSON_Delete(log_obj);
|
|
|
|
|
|
if(log_msg == NULL){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at cJSON_Print, stream_treaceid is %s", pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
KNI_LOG_DEBUG(local_logger, "log_msg is %s\n", log_msg);
|
|
|
|
|
|
ret = kni_send_logger_sendlog(g_kni_handle->send_logger, log_msg, strlen(log_msg));
|
|
|
|
|
|
if(ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at kni_send_logger_sendlog, ret is %d, strem_traceid is %s",
|
|
|
|
|
|
ret, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
cJSON_free(log_msg);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
|
|
if(log_msg != NULL){
|
2019-06-04 19:50:34 +08:00
|
|
|
|
cJSON_free(log_msg);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
|
|
|
|
|
|
static void judge_pme_destroy(struct pme_info *pmeinfo, int caller){
|
2019-06-06 17:07:17 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
|
|
|
|
|
if(pmeinfo != NULL){
|
|
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
pthread_mutex_lock(&(pmeinfo->lock));
|
|
|
|
|
|
if(caller == CALLER_SAPP){
|
|
|
|
|
|
KNI_LOG_DEBUG(logger, "set sapp_release = 1, caller is %d, stream_trace_id is %s, thread id is %p",
|
|
|
|
|
|
caller, pmeinfo->stream_traceid, pthread_self());
|
|
|
|
|
|
pmeinfo->sapp_release = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
if(caller == CALLER_TFE){
|
|
|
|
|
|
KNI_LOG_DEBUG(logger, "set tfe_release = 1, caller is %d, stream_trace_id is %s, thread id is %p",
|
|
|
|
|
|
caller, pmeinfo->stream_traceid, pthread_self());
|
|
|
|
|
|
pmeinfo->tfe_release = 1;
|
|
|
|
|
|
}
|
2019-06-06 17:07:17 +08:00
|
|
|
|
if(pmeinfo->sapp_release == 1 && pmeinfo->tfe_release == 1){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//sendlog
|
2019-06-06 17:07:17 +08:00
|
|
|
|
int ret = sendlog_to_kafka(pmeinfo, logger);
|
|
|
|
|
|
if(ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at sendlog to kafka, stream traceid is %s", pmeinfo->stream_traceid);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_SENDLOG_FAIL], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
}
|
|
|
|
|
|
else{
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_DEBUG(logger, "Succeed sendlog to kafka, stream traceid is %s", pmeinfo->stream_traceid);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_SENDLOG_SUCC], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//only intercetp stream need del htable
|
|
|
|
|
|
if(pmeinfo->action == KNI_ACTION_INTERCEPT){
|
|
|
|
|
|
int key_size = strnlen(pmeinfo->stream_traceid, sizeof(pmeinfo->stream_traceid));
|
|
|
|
|
|
ret = MESA_htable_del(g_kni_handle->traceid2pme_htable, (const unsigned char *)pmeinfo->stream_traceid,
|
|
|
|
|
|
key_size, NULL);
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_htable: failed at del, table is %s, key is %s, key_size is %d, ret is %d",
|
|
|
|
|
|
"traceid2pme_htable", pmeinfo->stream_traceid, key_size, ret);
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_ID2PME_DEL_FAIL], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
}
|
|
|
|
|
|
else{
|
|
|
|
|
|
KNI_LOG_DEBUG(logger, "MESA_htable: succeed at del, table is %s, key is %s, key_size is %d",
|
|
|
|
|
|
"traceid2pme_htable", pmeinfo->stream_traceid, key_size);
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_ID2PME_DEL_SUCC], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
//free pme
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pme_info_destroy(pmeinfo);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
return;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_DEBUG(logger, "can not destroy pmeinfo, sapp_release = %d, tfe_release = %d", pmeinfo->sapp_release, pmeinfo->tfe_release);
|
|
|
|
|
|
pthread_mutex_unlock(&(pmeinfo->lock));
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
2019-06-05 11:32:11 +08:00
|
|
|
|
else{
|
2019-06-06 17:07:17 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at judge_pme_info, pmeinfo is null");
|
2019-06-05 11:32:11 +08:00
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int protocol_identify(const struct streaminfo* stream, char *buf, int len, struct protocol_identify_result *result){
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//http
|
2019-05-17 17:04:50 +08:00
|
|
|
|
struct http_project* project = (struct http_project*)project_req_get_struct(stream, g_kni_handle->http_project_id);
|
|
|
|
|
|
if(project != NULL){
|
|
|
|
|
|
result->protocol = KNI_PROTOCOL_HTTP;
|
|
|
|
|
|
result->domain_len = project->host_len;
|
2019-06-05 11:32:11 +08:00
|
|
|
|
strncpy(result->domain, project->host, strnlen(project->host, sizeof(result->domain) - 1));
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//ssl
|
2019-05-17 17:04:50 +08:00
|
|
|
|
enum chello_parse_result chello_status = CHELLO_PARSE_INVALID_FORMAT;
|
|
|
|
|
|
struct ssl_chello *chello = NULL;
|
|
|
|
|
|
chello = ssl_chello_parse((const unsigned char*)buf, len, &chello_status);
|
|
|
|
|
|
if(chello_status == CHELLO_PARSE_SUCCESS){
|
|
|
|
|
|
result->protocol = KNI_PROTOCOL_SSL;
|
2019-05-19 17:23:18 +08:00
|
|
|
|
if(chello->sni == NULL){
|
|
|
|
|
|
result->domain_len = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
else{
|
|
|
|
|
|
result->domain_len = strnlen(chello->sni, KNI_DOMAIN_MAX);
|
2019-06-05 11:32:11 +08:00
|
|
|
|
strncpy(result->domain, chello->sni, strnlen(chello->sni, sizeof(result->domain) - 1));
|
2019-05-19 17:23:18 +08:00
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
ssl_chello_free(chello);
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ssl_chello_free(chello);
|
|
|
|
|
|
result->protocol = KNI_PROTOCOL_UNKNOWN;
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
static int wrapped_kni_cmsg_set(struct kni_cmsg *cmsg, uint16_t type, const unsigned char *value,
|
|
|
|
|
|
uint16_t size, char *stream_traceid){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
|
|
|
|
|
int ret = kni_cmsg_set(cmsg, type, value, size);
|
|
|
|
|
|
if(ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed set cmsg, type is %d, stream traceid is %s", type, stream_traceid);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
return ret;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
static unsigned char* kni_cmsg_serialize_header_new(struct pme_info *pmeinfo, struct pkt_info *pktinfo, uint16_t *len){
|
|
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
|
|
|
|
|
uint16_t bufflen = 0, serialize_len = 0;
|
|
|
|
|
|
unsigned char *buff = NULL;
|
2019-05-21 17:14:07 +08:00
|
|
|
|
uint8_t protocol_type = pmeinfo->protocol == KNI_PROTOCOL_SSL ? 0x1 : 0x0;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
struct kni_cmsg *cmsg = kni_cmsg_init();
|
|
|
|
|
|
int policy_id = -1;
|
|
|
|
|
|
char *trace_id = NULL;
|
|
|
|
|
|
uint32_t seq = pktinfo->tcphdr->seq;
|
|
|
|
|
|
uint32_t ack = pktinfo->tcphdr->ack_seq;
|
|
|
|
|
|
uint16_t client_mss = htons(pmeinfo->client_tcpopt->mss);
|
|
|
|
|
|
uint16_t server_mss = htons(pmeinfo->server_tcpopt->mss);
|
2019-06-05 15:42:46 +08:00
|
|
|
|
uint16_t client_window = htons(pmeinfo->client_window);
|
|
|
|
|
|
uint16_t server_window = htons(pmeinfo->server_window);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//seq
|
2019-06-08 20:28:21 +08:00
|
|
|
|
int ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_SEQ, (const unsigned char*)&seq, 4, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//ack
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_ACK, (const unsigned char*)&ack, 4, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//client mss
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_MSS_CLIENT, (const unsigned char*)&client_mss, 2, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//server mss
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_MSS_SERVER, (const unsigned char*)&server_mss, 2, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//client wscale
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_WSACLE_CLIENT, (const unsigned char*)&(pmeinfo->client_tcpopt->wscale), 1, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//server wscale
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_WSACLE_SERVER, (const unsigned char*)&(pmeinfo->server_tcpopt->wscale), 1, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//client sack
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_SACK_CLIENT, (const unsigned char*)&(pmeinfo->client_tcpopt->sack), 1, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//server sack
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_SACK_SERVER, (const unsigned char*)&(pmeinfo->server_tcpopt->sack), 1, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//client timestamp
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_TS_CLIENT, (const unsigned char*)&(pmeinfo->client_tcpopt->ts), 1, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//server timestamp
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_TS_SERVER, (const unsigned char*)&(pmeinfo->server_tcpopt->ts), 1, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//protocol
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_PROTOCOL, (const unsigned char*)&protocol_type, 1, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
2019-06-05 15:42:46 +08:00
|
|
|
|
//client window
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_WINDOW_CLIENT, (const unsigned char*)&client_window, 2, pmeinfo->stream_traceid);
|
2019-06-05 15:42:46 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//server window
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_TCP_RESTORE_WINDOW_SERVER, (const unsigned char*)&server_window, 2, pmeinfo->stream_traceid);
|
2019-06-05 15:42:46 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//maat policy id
|
|
|
|
|
|
policy_id = pmeinfo->policy_id;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_POLICY_ID, (const unsigned char*)&policy_id, sizeof(policy_id), pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
//stream trace id
|
2019-06-08 20:28:21 +08:00
|
|
|
|
trace_id = pmeinfo->stream_traceid;
|
2019-06-05 11:32:11 +08:00
|
|
|
|
ret = wrapped_kni_cmsg_set(cmsg, TFE_CMSG_STREAM_TRACE_ID, (const unsigned char*)trace_id,
|
2019-06-08 20:28:21 +08:00
|
|
|
|
strnlen(pmeinfo->stream_traceid, sizeof(pmeinfo->stream_traceid)), pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0) goto error_out;
|
|
|
|
|
|
|
|
|
|
|
|
bufflen = kni_cmsg_serialize_size_get(cmsg);
|
|
|
|
|
|
buff = (unsigned char*)ALLOC(char, bufflen);
|
|
|
|
|
|
serialize_len = 0;
|
|
|
|
|
|
ret = kni_cmsg_serialize(cmsg, buff, bufflen, &serialize_len);
|
|
|
|
|
|
if(ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at serialize cmsg, ret is %d, stream traceid is %s",
|
|
|
|
|
|
ret, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
*len = serialize_len;
|
|
|
|
|
|
kni_cmsg_destroy(cmsg);
|
|
|
|
|
|
return buff;
|
|
|
|
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
|
|
kni_cmsg_destroy(cmsg);
|
|
|
|
|
|
return NULL;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
static char* add_cmsg_to_packet(struct pme_info *pmeinfo, struct pkt_info *pktinfo, int *len){
|
2019-05-17 17:04:50 +08:00
|
|
|
|
//tcp option: kind 88, len 4, control_info_len
|
|
|
|
|
|
char *new_pkt = (char*)ALLOC(struct wrapped_packet, 1);
|
|
|
|
|
|
struct iphdr *iphdr = (struct iphdr*)new_pkt;
|
|
|
|
|
|
int offset = 0;
|
|
|
|
|
|
//iphdr
|
|
|
|
|
|
memcpy(new_pkt, (void*)pktinfo->iphdr, pktinfo->iphdr_len);
|
|
|
|
|
|
offset += pktinfo->iphdr_len;
|
|
|
|
|
|
//tcphdr
|
|
|
|
|
|
struct tcphdr *tcphdr = (struct tcphdr*)(new_pkt + offset);
|
|
|
|
|
|
memcpy(new_pkt + offset, (void*)pktinfo->tcphdr, 20);
|
|
|
|
|
|
offset += 20;
|
|
|
|
|
|
tcphdr->doff = pktinfo->tcphdr->doff + 1;
|
|
|
|
|
|
struct tcp_option_restore *opt = ALLOC(struct tcp_option_restore, 1);
|
|
|
|
|
|
opt->kind = 88;
|
|
|
|
|
|
opt->len = 4;
|
|
|
|
|
|
opt->offset = htons(pktinfo->data_len);
|
|
|
|
|
|
memcpy(new_pkt + offset, (void*)opt, 4);
|
|
|
|
|
|
offset += 4;
|
|
|
|
|
|
memcpy(new_pkt + offset, (void*)((char*)pktinfo->tcphdr + 20), pktinfo->tcphdr_len - 20);
|
|
|
|
|
|
offset += pktinfo->tcphdr_len - 20;
|
|
|
|
|
|
//data
|
|
|
|
|
|
memcpy(new_pkt + offset, (void*)pktinfo->data, pktinfo->data_len);
|
|
|
|
|
|
offset += pktinfo->data_len;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//kni_cmsg_serialize_header
|
|
|
|
|
|
uint16_t header_len = 0;
|
|
|
|
|
|
unsigned char* header = kni_cmsg_serialize_header_new(pmeinfo, pktinfo, &header_len);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
memcpy(new_pkt + offset, (void*)header, header_len);
|
|
|
|
|
|
offset += header_len;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
FREE(&header);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
//iphdr: tot_len
|
|
|
|
|
|
iphdr->tot_len = htons(offset);
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//must set check = 0
|
2019-05-17 17:04:50 +08:00
|
|
|
|
iphdr->check = 0;
|
|
|
|
|
|
iphdr->check = kni_ip_checksum((void*)iphdr, pktinfo->iphdr_len);
|
|
|
|
|
|
//tcphdr: checkdum
|
|
|
|
|
|
tcphdr->check = 0;
|
|
|
|
|
|
tcphdr->check = kni_tcp_checksum((void*)tcphdr, offset - pktinfo->iphdr_len, iphdr->saddr, iphdr->daddr);
|
|
|
|
|
|
*len = offset;
|
|
|
|
|
|
return new_pkt;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
static int send_to_tfe(struct kni_marsio_handle *handle, char *raw_data, int raw_len, int thread_seq, int tfe_id){
|
|
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
marsio_buff_t *tx_buffs[BURST_MAX];
|
2019-06-03 20:19:04 +08:00
|
|
|
|
struct mr_vdev *dev_eth_handler = handle->tfe_instance_list[tfe_id]->dev_eth_handler;
|
|
|
|
|
|
struct mr_sendpath *dev_eth_sendpath = handle->tfe_instance_list[tfe_id]->dev_eth_sendpath;
|
|
|
|
|
|
char *src_mac = handle->src_mac_addr;
|
|
|
|
|
|
char *dst_mac = handle->tfe_instance_list[tfe_id]->mac_addr;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//only send one packet
|
|
|
|
|
|
int nr_send = 1;
|
|
|
|
|
|
int alloc_ret = marsio_buff_malloc_device(dev_eth_handler, tx_buffs, nr_send, 0, thread_seq);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if (alloc_ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at alloc marsio buffer, ret is %d, thread_seq is %d",
|
|
|
|
|
|
alloc_ret, thread_seq);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
for(int i = 0; i < nr_send; i++){
|
|
|
|
|
|
char* dst_data = marsio_buff_append(tx_buffs[i], raw_len + 14);
|
|
|
|
|
|
//ethernet_header[14]
|
|
|
|
|
|
struct ethhdr *ether_hdr = (struct ethhdr*)dst_data;
|
|
|
|
|
|
memcpy(ether_hdr->h_dest, dst_mac, sizeof(ether_hdr->h_dest));
|
|
|
|
|
|
memcpy(ether_hdr->h_source, src_mac, sizeof(ether_hdr->h_source));
|
|
|
|
|
|
ether_hdr->h_proto = htons(ETH_P_IP);
|
|
|
|
|
|
memcpy((char*)dst_data + sizeof(*ether_hdr), raw_data, raw_len);
|
|
|
|
|
|
}
|
|
|
|
|
|
marsio_send_burst(dev_eth_sendpath, thread_seq, tx_buffs, nr_send);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char pending_opstate(const struct streaminfo *stream, struct pme_info *pmeinfo, struct pkt_info *pktinfo){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(!pktinfo->tcphdr->syn){
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//pending_opstate not syn, bypass and dropme
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_DEBUG(logger, "pending opstate: not syn, stream traceid is %s", pmeinfo->stream_traceid);
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_NO_SYN_EXP], 0, FS_OP_ADD, 1);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_STM], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pmeinfo->error = STREAM_ERROR_PENDING_NO_SYN;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
|
|
|
|
|
}
|
2019-06-05 15:42:46 +08:00
|
|
|
|
pmeinfo->client_window = pktinfo->tcphdr->window;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
pmeinfo->client_tcpopt = kni_get_tcpopt(pktinfo->tcphdr, pktinfo->tcphdr_len);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char data_opstate(const struct streaminfo *stream, struct pme_info *pmeinfo, struct pkt_info *pktinfo, int thread_seq){
|
2019-06-05 11:32:11 +08:00
|
|
|
|
//pmeinfo->tfe_release = 1: intercept, tfe end first. so droppkt and dropme
|
|
|
|
|
|
if(pmeinfo->tfe_release == 1){
|
|
|
|
|
|
return APP_STATE_DROPPKT | APP_STATE_DROPME;
|
|
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
char *buf = (char*)pktinfo->iphdr;
|
|
|
|
|
|
int len = pktinfo->ip_totlen;
|
2019-06-04 13:25:44 +08:00
|
|
|
|
int ret;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
char stream_addr[KNI_SYMBOL_MAX] = "";
|
2019-06-04 13:25:44 +08:00
|
|
|
|
kni_stream_addr_trans((struct ipaddr*)(&stream->addr), stream_addr, sizeof(stream_addr));
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//pmeinfo->action has only 3 value: KNI_ACTION_NONE, KNI_ACTION_INTERCEPT, KNI_ACTION_BYPASS
|
2019-06-04 13:25:44 +08:00
|
|
|
|
switch (pmeinfo->action){
|
|
|
|
|
|
case KNI_ACTION_NONE:
|
|
|
|
|
|
break;
|
|
|
|
|
|
case KNI_ACTION_INTERCEPT:
|
|
|
|
|
|
ret = send_to_tfe(g_kni_handle->marsio_handle, buf, len, thread_seq, pmeinfo->tfe_id);
|
|
|
|
|
|
if(ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at send continue packet to tfe%d, stream traceid is %s", pmeinfo->tfe_id, pmeinfo->stream_traceid);
|
2019-06-04 13:25:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_INTCP_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
return APP_STATE_DROPPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
case KNI_ACTION_BYPASS:
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
default:
|
2019-06-08 20:28:21 +08:00
|
|
|
|
assert(0);
|
2019-06-04 13:25:44 +08:00
|
|
|
|
break;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
// syn/ack
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(pktinfo->tcphdr->syn && pktinfo->tcphdr->ack){
|
2019-06-05 15:42:46 +08:00
|
|
|
|
pmeinfo->server_window = pktinfo->tcphdr->window;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
pmeinfo->server_tcpopt = kni_get_tcpopt(pktinfo->tcphdr, pktinfo->tcphdr_len);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//no data, maybe ack
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(pktinfo->data_len <= 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//not double dir, bypass and dropme
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(stream->dir != DIR_DOUBLE){
|
2019-06-04 13:25:44 +08:00
|
|
|
|
KNI_LOG_INFO(logger, "dir is %d, bypass, stream addr is %s", stream->dir, stream_addr);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_STM], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pmeinfo->error = STREAM_ERROR_SINGLE_DIR;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
|
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
struct protocol_identify_result protocol_identify_res;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
memset(&protocol_identify_res, 0, sizeof(protocol_identify_res));
|
2019-06-04 19:50:34 +08:00
|
|
|
|
protocol_identify(stream, pktinfo->data, pktinfo->data_len, &protocol_identify_res);
|
|
|
|
|
|
pmeinfo->protocol = protocol_identify_res.protocol;
|
|
|
|
|
|
switch(pmeinfo->protocol){
|
|
|
|
|
|
//can not identify protocol from first data packet, bypass and dropme
|
|
|
|
|
|
case KNI_PROTOCOL_UNKNOWN:
|
|
|
|
|
|
KNI_LOG_INFO(logger, "Failed at protocol_identify, bypass and dropme, stream addr is %s\n",
|
2019-06-04 13:25:44 +08:00
|
|
|
|
pmeinfo->protocol, stream_addr);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_STM], 0, FS_OP_ADD, 1);
|
2019-06-04 19:50:34 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_UNKNOWN_STM], 0, FS_OP_ADD, 1);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pmeinfo->error = STREAM_ERROR_PROTOCOL_UNKNOWN;
|
2019-06-04 19:50:34 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
|
|
|
|
|
case KNI_PROTOCOL_SSL:
|
2019-06-05 11:32:11 +08:00
|
|
|
|
strncpy(pmeinfo->sni, protocol_identify_res.domain, strnlen(protocol_identify_res.domain, sizeof(pmeinfo->sni) - 1));
|
2019-06-04 19:50:34 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_SSL_STM], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case KNI_PROTOCOL_HTTP:
|
2019-06-05 11:32:11 +08:00
|
|
|
|
strncpy(pmeinfo->host, protocol_identify_res.domain, strnlen(protocol_identify_res.domain, sizeof(pmeinfo->host) - 1));
|
2019-06-04 19:50:34 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_HTTP_STM], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
pmeinfo->action = intercept_policy_scan(g_kni_handle->maat_handle, (struct ipaddr*)(&stream->addr),
|
|
|
|
|
|
protocol_identify_res.domain, protocol_identify_res.domain_len,
|
2019-06-04 15:38:27 +08:00
|
|
|
|
thread_seq, &(pmeinfo->policy_id), &(pmeinfo->maat_hit));
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//policy scan log
|
2019-06-04 15:38:27 +08:00
|
|
|
|
char action_str[KNI_SYMBOL_MAX];
|
|
|
|
|
|
kni_maat_action_trans(pmeinfo->action, action_str);
|
2019-06-04 16:37:42 +08:00
|
|
|
|
KNI_LOG_DEBUG(logger, "intercept_policy_scan: %s, %s, policy_id = %d, action = %d(%s), maat_hit = %d",
|
2019-06-04 19:50:34 +08:00
|
|
|
|
stream_addr, protocol_identify_res.domain, pmeinfo->policy_id, pmeinfo->action, action_str, pmeinfo->maat_hit);
|
|
|
|
|
|
//receive client hello, but no syn/ack, bypass and dropme
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(pmeinfo->client_tcpopt == NULL || pmeinfo->server_tcpopt == NULL){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at intercept, %s, %s, stream traceid is %s", pmeinfo->client_tcpopt == NULL ? "no syn" : "",
|
|
|
|
|
|
pmeinfo->server_tcpopt == NULL ? "no syn/ack" : "", pmeinfo->stream_traceid);
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_NO_SA_EXP], 0, FS_OP_ADD, 1);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_STM], 0, FS_OP_ADD, 1);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pmeinfo->error = STREAM_ERROR_NO_SYN_ACK;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
int key_size;
|
2019-06-04 13:25:44 +08:00
|
|
|
|
switch(pmeinfo->action){
|
|
|
|
|
|
case KNI_ACTION_BYPASS:
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_STM], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
case KNI_ACTION_INTERCEPT:
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//only intercept: add to hash table
|
|
|
|
|
|
key_size = strnlen(pmeinfo->stream_traceid, sizeof(pmeinfo->stream_traceid));
|
|
|
|
|
|
ret = MESA_htable_add(g_kni_handle->traceid2pme_htable, (const unsigned char *)(pmeinfo->stream_traceid),
|
|
|
|
|
|
key_size, (const void*)pmeinfo);
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_htable: failed at MESA_htable_add,"
|
|
|
|
|
|
"table is traceid2pme_htable, key is %s", pmeinfo->stream_traceid);
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_ID2PME_ADD_FAIL], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
}
|
|
|
|
|
|
else{
|
|
|
|
|
|
KNI_LOG_DEBUG(logger, "MESA_htable: succeed at MESA_htable_add,"
|
|
|
|
|
|
"table is traceid2pme_htable, key is %s", pmeinfo->stream_traceid);
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_ID2PME_ADD_SUCC], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//action = KNI_ACTION_INTERCEPT, sendto tfe
|
2019-06-04 13:25:44 +08:00
|
|
|
|
buf = add_cmsg_to_packet(pmeinfo, pktinfo, &len);
|
|
|
|
|
|
ret = send_to_tfe(g_kni_handle->marsio_handle, buf, len, thread_seq, pmeinfo->tfe_id);
|
|
|
|
|
|
if(ret < 0){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at send first packet to tfe%d, stream traceid is %s", pmeinfo->tfe_id, pmeinfo->stream_traceid);
|
2019-06-04 13:25:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
FREE(&buf);
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_INTCP_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_INTCP_STM], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
return APP_STATE_DROPPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
default:
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//action != intercept && action != bypass,bypass and dropme
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Action %d(%s) is invalid, bypass(dropme): policy_id is %d, stream addr is %s, domain is ",
|
|
|
|
|
|
pmeinfo->action, action_str, pmeinfo->policy_id, stream_addr, protocol_identify_res.domain);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_STM], 0, FS_OP_ADD, 1);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pmeinfo->error = STREAM_ERROR_INVALID_ACTION;
|
2019-06-04 13:25:44 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
|
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
static char close_opstate(const struct streaminfo *stream, struct pme_info *pmeinfo, struct pkt_info *pktinfo, int thread_seq){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//close: a_packet = null, do not sendto tfe
|
2019-06-05 11:32:11 +08:00
|
|
|
|
pmeinfo->end_time = time(NULL);
|
2019-06-04 13:25:44 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-06-05 16:32:40 +08:00
|
|
|
|
pmeinfo->server_bytes=stream->ptcpdetail->serverbytes;
|
|
|
|
|
|
pmeinfo->client_bytes=stream->ptcpdetail->clientbytes;
|
|
|
|
|
|
pmeinfo->server_pkts=stream->ptcpdetail->serverpktnum;
|
|
|
|
|
|
pmeinfo->client_pkts=stream->ptcpdetail->clientpktnum;
|
|
|
|
|
|
pmeinfo->dir=stream->dir;
|
2019-06-04 13:25:44 +08:00
|
|
|
|
switch(pmeinfo->action){
|
|
|
|
|
|
case KNI_ACTION_INTERCEPT:
|
2019-06-05 11:32:11 +08:00
|
|
|
|
//reset clock: when sapp end, start clock
|
2019-06-08 20:28:21 +08:00
|
|
|
|
MESA_htable_search(g_kni_handle->traceid2pme_htable, (const unsigned char*)pmeinfo->stream_traceid,
|
|
|
|
|
|
strnlen(pmeinfo->stream_traceid, sizeof(pmeinfo->stream_traceid)));
|
2019-06-04 13:25:44 +08:00
|
|
|
|
return APP_STATE_DROPPKT | APP_STATE_DROPME;
|
2019-06-06 17:07:17 +08:00
|
|
|
|
case KNI_ACTION_BYPASS:
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_DEBUG(logger, "set tfe_release = 1, stream_trace_id is %s", pmeinfo->stream_traceid);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
pmeinfo->tfe_release = 1;
|
2019-06-04 13:25:44 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//stream has only syn, ack. not data. do not send to tfe
|
2019-06-06 17:07:17 +08:00
|
|
|
|
default:
|
|
|
|
|
|
char action_str[KNI_SYMBOL_MAX];
|
|
|
|
|
|
kni_maat_action_trans(pmeinfo->action, action_str);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
pmeinfo->error = STREAM_ERROR_NO_DATA;
|
|
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_STM_NO_DATA], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
KNI_LOG_DEBUG(logger, "close_opstate: action %d(%s) is abnormal, stream_traceid is %s",
|
|
|
|
|
|
pmeinfo->action, action_str, pmeinfo->stream_traceid);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//from syn
|
2019-06-03 20:19:04 +08:00
|
|
|
|
extern "C" char kni_tcpall_entry(const struct streaminfo *stream, void** pme, int thread_seq, const void* a_packet){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_TOT_PKT], 0, FS_OP_ADD, 1);
|
|
|
|
|
|
int ret;
|
2019-06-06 17:07:17 +08:00
|
|
|
|
struct pme_info *pmeinfo = *(struct pme_info **)pme;
|
|
|
|
|
|
//pktinfo
|
|
|
|
|
|
struct pkt_info pktinfo;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
memset(&pktinfo, 0, sizeof(pktinfo));
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//TODO: ipv6
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(stream->addr.addrtype == ADDR_TYPE_IPV6){
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_IPV6_PKT], 0, FS_OP_ADD, 1);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
|
|
|
|
|
|
//a_packet == NULL && not op_state_close, continue
|
|
|
|
|
|
//close: a_packet may be null, if a_packet = null, do not send to tfe
|
|
|
|
|
|
if(a_packet == NULL && stream->pktstate != OP_STATE_CLOSE){
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_NULL_PKT], 0, FS_OP_ADD, 1);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_GIVEME;
|
|
|
|
|
|
}
|
2019-06-06 17:07:17 +08:00
|
|
|
|
|
2019-06-08 20:28:21 +08:00
|
|
|
|
if(a_packet != NULL){
|
|
|
|
|
|
pktinfo.iphdr = (struct iphdr*)a_packet;
|
|
|
|
|
|
pktinfo.iphdr_len = pktinfo.iphdr->ihl * 4;
|
|
|
|
|
|
pktinfo.ip_totlen = ntohs(pktinfo.iphdr->tot_len);
|
|
|
|
|
|
pktinfo.tcphdr = (struct tcphdr*)((char*)pktinfo.iphdr + pktinfo.iphdr_len);
|
|
|
|
|
|
pktinfo.tcphdr_len = pktinfo.tcphdr->doff * 4;
|
|
|
|
|
|
pktinfo.data = (char*)pktinfo.tcphdr + pktinfo.tcphdr_len;
|
|
|
|
|
|
pktinfo.data_len = pktinfo.ip_totlen - pktinfo.iphdr_len - pktinfo.tcphdr_len;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-05-17 17:04:50 +08:00
|
|
|
|
switch(stream->pktstate){
|
|
|
|
|
|
case OP_STATE_PENDING:
|
2019-06-08 20:28:21 +08:00
|
|
|
|
*pme = pmeinfo = pme_info_new(stream, thread_seq);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
if(pmeinfo == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at new pmeinfo");
|
|
|
|
|
|
return APP_STATE_FAWPKT | APP_STATE_DROPME;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_PME_NEW], 0, FS_OP_ADD, 1);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
ret = pending_opstate(stream, pmeinfo, &pktinfo);
|
|
|
|
|
|
if(pmeinfo->error < 0){
|
|
|
|
|
|
goto error_out;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
break;
|
|
|
|
|
|
case OP_STATE_DATA:
|
2019-06-06 17:07:17 +08:00
|
|
|
|
ret = data_opstate(stream, pmeinfo, &pktinfo, thread_seq);
|
|
|
|
|
|
//exception stream, dropme and destroy pmeinfo
|
|
|
|
|
|
if(pmeinfo->error < 0){
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
break;
|
|
|
|
|
|
case OP_STATE_CLOSE:
|
2019-06-06 17:07:17 +08:00
|
|
|
|
//sapp stream close
|
|
|
|
|
|
ret = close_opstate(stream, pmeinfo, &pktinfo, thread_seq);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
if(pmeinfo->error < 0){
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
break;
|
|
|
|
|
|
default:
|
2019-05-18 12:41:31 +08:00
|
|
|
|
ret = APP_STATE_FAWPKT | APP_STATE_GIVEME;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_BYP_PKT], 0, FS_OP_ADD, 1);
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_operate(g_kni_fs_handle->handle, g_kni_fs_handle->fields[KNI_FIELD_UNKNOWN_STATE_EXP], 0, FS_OP_ADD, 1);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Unknown stream opstate %d, stream traceid is %s", stream->pktstate, pmeinfo->stream_traceid);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
break;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//sapp release: bypass or intercept
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if((ret & APP_STATE_DROPME)){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
judge_pme_destroy(pmeinfo, CALLER_SAPP);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//error out: no hash, no sendlog, just destroy_pme
|
2019-06-06 17:07:17 +08:00
|
|
|
|
error_out:
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_DEBUG(logger, "stream error = %d, ret is %d, stream traceid is %s", pmeinfo->error, ret, pmeinfo->stream_traceid);
|
2019-06-06 17:07:17 +08:00
|
|
|
|
if(pmeinfo != NULL){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
pme_info_destroy(pmeinfo);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void http_project_free(int thread_seq, void *project_req_value){
|
|
|
|
|
|
FREE(&project_req_value);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int http_project_init(){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
int id = project_producer_register(HTTP_PROJECT_NAME, PROJECT_VAL_TYPE_STRUCT, http_project_free);
|
|
|
|
|
|
if(id < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at project_producer_register, project name is %s, ret is %d", HTTP_PROJECT_NAME, id);
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
id = project_customer_register(HTTP_PROJECT_NAME, PROJECT_VAL_TYPE_STRUCT);
|
|
|
|
|
|
if(id < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at project_customer_register, project name is %s, ret is %d", HTTP_PROJECT_NAME, id);
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
return id;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" char kni_http_entry(stSessionInfo* session_info, void **pme, int thread_seq, struct streaminfo *a_stream, const void *a_packet){
|
|
|
|
|
|
http_infor* http_info = (http_infor*)(session_info->app_info);
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//only process first http session
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(http_info->http_session_seq != 1){
|
|
|
|
|
|
return PROT_STATE_DROPME;
|
|
|
|
|
|
}
|
|
|
|
|
|
if(session_info->prot_flag != HTTP_HOST){
|
|
|
|
|
|
return PROT_STATE_GIVEME;
|
|
|
|
|
|
}
|
|
|
|
|
|
int host_len = MIN(session_info->buflen, KNI_DEFAULT_MTU);
|
|
|
|
|
|
struct http_project* host_info = ALLOC(struct http_project, 1);
|
|
|
|
|
|
host_info->host_len = host_len;
|
|
|
|
|
|
memcpy(host_info->host, session_info->buf, host_len);
|
|
|
|
|
|
if(project_req_add_struct(a_stream, g_kni_handle->http_project_id, host_info) < 0){
|
|
|
|
|
|
FREE(&host_info);
|
|
|
|
|
|
host_info = NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
return PROT_STATE_DROPME;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void kni_marsio_destroy(struct kni_marsio_handle *handle){
|
|
|
|
|
|
if(handle != NULL){
|
|
|
|
|
|
if(handle->instance != NULL){
|
|
|
|
|
|
marsio_destory(handle->instance);
|
|
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
for(int i = 0; i < TFE_COUNT_MAX; i++){
|
|
|
|
|
|
FREE(&handle->tfe_instance_list[i]);
|
|
|
|
|
|
}
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
FREE(&handle);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
handle = NULL;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void* thread_tfe_data_receiver(void *args){
|
|
|
|
|
|
struct thread_tfe_data_receiver_args *_args = (struct thread_tfe_data_receiver_args*)args;
|
2019-05-21 17:14:07 +08:00
|
|
|
|
struct kni_marsio_handle *marsio_handle = _args->marsio_handle;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
int tfe_id = _args->tfe_id;
|
|
|
|
|
|
struct mr_vdev *dev_eth_handler = marsio_handle->tfe_instance_list[tfe_id]->dev_eth_handler;
|
|
|
|
|
|
FREE(&args);
|
2019-05-21 17:14:07 +08:00
|
|
|
|
marsio_buff_t * rx_buff[BURST_MAX];
|
|
|
|
|
|
int nr_burst = 1;
|
|
|
|
|
|
int thread_seq = 0;
|
|
|
|
|
|
while(true){
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//receive from tfe
|
2019-06-08 20:28:21 +08:00
|
|
|
|
int nr_recv = marsio_recv_burst(dev_eth_handler, thread_seq, rx_buff, nr_burst);
|
|
|
|
|
|
if(nr_recv <= 0){
|
2019-05-21 17:14:07 +08:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//tag
|
2019-05-21 17:14:07 +08:00
|
|
|
|
struct mr_tunnat_ctrlzone mr_ctrlzone;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
mr_ctrlzone.action |= (TUNNAT_CZ_ACTION_ENCAP_INNER | TUNNAT_CZ_ACTION_ENCAP_OUTER);
|
|
|
|
|
|
for(int i = 0; i < nr_recv; i++){
|
2019-05-21 17:14:07 +08:00
|
|
|
|
marsio_buff_ctrlzone_set(rx_buff[i], 0, &mr_ctrlzone, sizeof(struct mr_tunnat_ctrlzone));
|
|
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//send to vxlan
|
2019-06-08 20:28:21 +08:00
|
|
|
|
marsio_send_burst_with_options(marsio_handle->dev_vxlan_sendpath, thread_seq, rx_buff, nr_recv, MARSIO_SEND_OPT_FAST);
|
2019-05-21 17:14:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-08 20:28:21 +08:00
|
|
|
|
static int wrapped_kni_cmsg_get(struct pme_info *pmeinfo, struct kni_cmsg *cmsg, uint16_t type,
|
|
|
|
|
|
uint16_t value_size_max, void *logger){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
uint16_t value_size = 0;
|
|
|
|
|
|
unsigned char *value = NULL;
|
|
|
|
|
|
int ret = kni_cmsg_get(cmsg, type, &value_size, &value);
|
|
|
|
|
|
if(ret < 0){
|
2019-06-04 21:18:55 +08:00
|
|
|
|
if(ret == KNI_CMSG_INVALID_TYPE){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at kni_cmsg_get: type is %d, ret is %d, stream traceid is %s",
|
|
|
|
|
|
type, ret, pmeinfo->stream_traceid);
|
2019-06-04 21:18:55 +08:00
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
if(value_size > value_size_max){
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "kni_cmsg_get: type is %d, size is %d, which should <= %d, stream traceid is %s",
|
|
|
|
|
|
type, value_size, value_size_max, pmeinfo->stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
switch(type)
|
|
|
|
|
|
{
|
|
|
|
|
|
case TFE_CMSG_SSL_INTERCEPT_STATE:
|
|
|
|
|
|
memcpy((char*)&(pmeinfo->intercept_state), value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case TFE_CMSG_SSL_UPSTREAM_LATENCY:
|
|
|
|
|
|
memcpy((char*)&(pmeinfo->ssl_server_side_latency), value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case TFE_CMSG_SSL_DOWNSTREAM_LATENCY:
|
|
|
|
|
|
memcpy((char*)&(pmeinfo->ssl_client_side_latency), value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case TFE_CMSG_SSL_UPSTREAM_VERSION:
|
|
|
|
|
|
memcpy(pmeinfo->ssl_server_side_version, value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case TFE_CMSG_SSL_DOWNSTREAM_VERSION:
|
|
|
|
|
|
memcpy(pmeinfo->ssl_client_side_version, value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case TFE_CMSG_SSL_PINNING_STATE:
|
|
|
|
|
|
memcpy((char*)&(pmeinfo->pinningst), value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case TFE_CMSG_SSL_CERT_VERIFY:
|
|
|
|
|
|
memcpy((char*)&(pmeinfo->ssl_cert_verify), value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case TFE_CMSG_SSL_ERROR:
|
|
|
|
|
|
memcpy((char*)&(pmeinfo->ssl_error), value, value_size);
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static long traceid2pme_htable_search_cb(void *data, const uchar *key, uint size, void *user_args){
|
|
|
|
|
|
struct traceid2pme_search_cb_args *args = (struct traceid2pme_search_cb_args*)user_args;
|
|
|
|
|
|
void *logger = args->logger;
|
|
|
|
|
|
struct kni_cmsg *cmsg = args->cmsg;
|
|
|
|
|
|
struct pme_info *pmeinfo = (struct pme_info*)data;
|
|
|
|
|
|
if(pmeinfo != NULL){
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_INTERCEPT_STATE, sizeof(pmeinfo->intercept_state), logger);
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_UPSTREAM_LATENCY, sizeof(pmeinfo->ssl_server_side_latency), logger);
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_DOWNSTREAM_LATENCY, sizeof(pmeinfo->ssl_client_side_latency), logger);
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_UPSTREAM_VERSION, sizeof(pmeinfo->ssl_server_side_version) - 1, logger);
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_DOWNSTREAM_VERSION, sizeof(pmeinfo->ssl_client_side_version) - 1, logger);
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_PINNING_STATE, sizeof(pmeinfo->pinningst), logger);
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_CERT_VERIFY, sizeof(pmeinfo->ssl_cert_verify), logger);
|
|
|
|
|
|
wrapped_kni_cmsg_get(pmeinfo, cmsg, TFE_CMSG_SSL_ERROR, sizeof(pmeinfo->ssl_error), logger);
|
2019-06-05 11:32:11 +08:00
|
|
|
|
pmeinfo->end_time = time(NULL);
|
2019-06-08 20:28:21 +08:00
|
|
|
|
KNI_LOG_INFO(logger, "recv cmsg from tfe, stream traceid is %s", pmeinfo->stream_traceid);
|
|
|
|
|
|
judge_pme_destroy(pmeinfo, CALLER_TFE);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
}
|
2019-06-05 16:32:40 +08:00
|
|
|
|
kni_cmsg_destroy(cmsg);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void* thread_tfe_cmsg_receiver(void *args){
|
|
|
|
|
|
struct thread_tfe_cmsg_receiver_args *_args = (struct thread_tfe_cmsg_receiver_args*)args;
|
|
|
|
|
|
const char *profile = _args->profile;
|
|
|
|
|
|
const char *section = "tfe_cmsg_receiver";
|
|
|
|
|
|
void *logger = _args->logger;
|
|
|
|
|
|
char listen_eth[INET_ADDRSTRLEN];
|
|
|
|
|
|
uint32_t listen_ip;
|
|
|
|
|
|
int listen_port = -1;
|
|
|
|
|
|
char buff[KNI_MTU];
|
|
|
|
|
|
int sockfd;
|
|
|
|
|
|
struct sockaddr_in server_addr, client_addr;
|
|
|
|
|
|
int ret = MESA_load_profile_string_nodef(profile, section, "listen_eth", listen_eth, sizeof(listen_eth));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: listen_eth not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = MESA_load_profile_int_nodef(profile, section, "listen_port", &listen_port);
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: listen_port not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
KNI_LOG_INFO(logger, "MESA_prof_load, [%s]:\n listen_eth: %s\n listen_port: %d",
|
|
|
|
|
|
section, listen_eth, listen_port);
|
|
|
|
|
|
FREE(&args);
|
|
|
|
|
|
//create socket
|
|
|
|
|
|
sockfd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
|
|
if(sockfd < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at create udp socket, errno is %d, %s", errno, strerror(errno));
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
memset(&server_addr, 0, sizeof(server_addr));
|
|
|
|
|
|
memset(&client_addr, 0, sizeof(client_addr));
|
|
|
|
|
|
ret = kni_ipv4_addr_get_by_eth(listen_eth, &listen_ip);
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at get bind ipv4 addr, eth is %s", listen_eth);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
server_addr.sin_family = AF_INET; // IPv4
|
|
|
|
|
|
server_addr.sin_addr.s_addr = listen_ip;
|
|
|
|
|
|
server_addr.sin_port = htons(listen_port);
|
|
|
|
|
|
//bind
|
|
|
|
|
|
ret = bind(sockfd, (const struct sockaddr *)&server_addr, sizeof(server_addr));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at bind udp socket, errno is %d, %s", errno, strerror(errno));
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
//receive
|
|
|
|
|
|
while(true){
|
|
|
|
|
|
socklen_t client_len = sizeof(client_addr);
|
|
|
|
|
|
int recv_len = recvfrom(sockfd, (char *)buff, sizeof(buff), MSG_WAITALL,
|
|
|
|
|
|
(struct sockaddr*)&client_addr, &client_len);
|
|
|
|
|
|
if(recv_len < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at recv udp data, errno is %d, %s", errno, strerror(errno));
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
KNI_LOG_DEBUG(logger, "recv udp data: recv_len is %d\n", recv_len);
|
|
|
|
|
|
struct kni_cmsg *cmsg = NULL;
|
|
|
|
|
|
ret = kni_cmsg_deserialize((const unsigned char*)buff, recv_len, &cmsg);
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at deserialize cmsg, ret is %d", ret);
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//get stream_traceid
|
|
|
|
|
|
unsigned char *stream_traceid = NULL;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
uint16_t value_size;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
ret = kni_cmsg_get(cmsg, TFE_CMSG_STREAM_TRACE_ID, &value_size, &stream_traceid);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at kni_cmsg_get: type is %d, ret is %d", TFE_CMSG_STREAM_TRACE_ID, ret);
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
//get pme
|
|
|
|
|
|
long cb_ret = -1;
|
|
|
|
|
|
struct traceid2pme_search_cb_args cb_args;
|
2019-06-06 17:07:17 +08:00
|
|
|
|
memset((void*)&cb_args, 0, sizeof(cb_args));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
cb_args.cmsg = cmsg;
|
|
|
|
|
|
cb_args.logger = logger;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
MESA_htable_search_cb(g_kni_handle->traceid2pme_htable, (const unsigned char *)stream_traceid,
|
2019-06-05 11:32:11 +08:00
|
|
|
|
value_size, traceid2pme_htable_search_cb, &cb_args, &cb_ret);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
|
|
if(sockfd >= 0){
|
|
|
|
|
|
close(sockfd);
|
|
|
|
|
|
}
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
2019-05-21 17:14:07 +08:00
|
|
|
|
|
2019-05-17 17:04:50 +08:00
|
|
|
|
static struct kni_marsio_handle* kni_marsio_init(const char* profile){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
const char* section = "marsio";
|
|
|
|
|
|
char appsym[KNI_SYMBOL_MAX];
|
2019-05-21 17:14:07 +08:00
|
|
|
|
char dev_vxlan_symbol[KNI_SYMBOL_MAX];
|
2019-06-03 20:19:04 +08:00
|
|
|
|
char src_mac_addr_str[KNI_SYMBOL_MAX];
|
|
|
|
|
|
unsigned int opt_value = 1;
|
|
|
|
|
|
int tfe_count;
|
|
|
|
|
|
struct mr_instance *mr_inst = NULL;
|
|
|
|
|
|
struct mr_vdev *dev_vxlan_handler = NULL;
|
|
|
|
|
|
struct mr_sendpath *dev_vxlan_sendpath = NULL;
|
|
|
|
|
|
struct mr_vdev *dev_eth_handler = NULL;
|
|
|
|
|
|
struct mr_sendpath *dev_eth_sendpath = NULL;
|
|
|
|
|
|
struct tfe_instance *tfe_inst = NULL;
|
|
|
|
|
|
struct kni_marsio_handle *handle = NULL;
|
|
|
|
|
|
int ret = MESA_load_profile_string_nodef(profile, section, "appsym", appsym, sizeof(appsym));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: appsym not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = MESA_load_profile_string_nodef(profile, section, "dev_vxlan_symbol", dev_vxlan_symbol, sizeof(dev_vxlan_symbol));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: dev_vxlan_symbol not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = MESA_load_profile_string_nodef(profile, section, "src_mac_addr", src_mac_addr_str, sizeof(src_mac_addr_str));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: src_mac_addr not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
KNI_LOG_INFO(logger, "MESA_prof_load, [%s]:\n appsym: %s\n dev_vxlan_symbol: %s\n src_mac_addr: %s",
|
|
|
|
|
|
section, appsym, dev_vxlan_symbol, src_mac_addr_str);
|
|
|
|
|
|
mr_inst = marsio_create();
|
|
|
|
|
|
if(mr_inst == NULL){
|
2019-05-21 17:14:07 +08:00
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at create marsio instance");
|
2019-06-03 20:19:04 +08:00
|
|
|
|
goto error_out;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
handle = ALLOC(struct kni_marsio_handle, 1);
|
|
|
|
|
|
handle->instance = mr_inst;
|
|
|
|
|
|
ret = sscanf(src_mac_addr_str, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
|
|
|
|
|
|
&(handle->src_mac_addr[0]), &(handle->src_mac_addr[1]),
|
|
|
|
|
|
&(handle->src_mac_addr[2]), &(handle->src_mac_addr[3]),
|
|
|
|
|
|
&(handle->src_mac_addr[4]), &(handle->src_mac_addr[5]));
|
|
|
|
|
|
if(ret != 6){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: src_mac_addr is invalid, ret is %d, profile is %s, section is %s", ret, profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
marsio_option_set(mr_inst, MARSIO_OPT_EXIT_WHEN_ERR, &opt_value, sizeof(opt_value));
|
|
|
|
|
|
marsio_init(mr_inst, appsym);
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//eth_handler receive thread = 1, send thread = g_iThreadNum
|
2019-06-03 20:19:04 +08:00
|
|
|
|
tfe_count = g_kni_handle->tfe_count;
|
|
|
|
|
|
for(int i = 0; i < tfe_count; i++){
|
|
|
|
|
|
//load tfe conf
|
|
|
|
|
|
char _section[KNI_SYMBOL_MAX];
|
|
|
|
|
|
char mac_addr_str[KNI_SYMBOL_MAX];
|
|
|
|
|
|
char dev_eth_symbol[KNI_SYMBOL_MAX];
|
|
|
|
|
|
snprintf(_section, sizeof(_section), "tfe%d", i);
|
|
|
|
|
|
int ret = MESA_load_profile_string_nodef(profile, _section, "mac_addr", mac_addr_str, sizeof(mac_addr_str));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: mac_addr not set, profile is %s, section is %s", profile, _section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
tfe_inst = ALLOC(struct tfe_instance, 1);
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//ff:ee:dd:cc:bb:aa ---> 0xff 0xee 0xdd 0xcc 0xbb 0xaa
|
2019-06-03 20:19:04 +08:00
|
|
|
|
ret = sscanf(mac_addr_str, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
|
|
|
|
|
|
&tfe_inst->mac_addr[0], &tfe_inst->mac_addr[1],
|
|
|
|
|
|
&tfe_inst->mac_addr[2], &tfe_inst->mac_addr[3],
|
|
|
|
|
|
&tfe_inst->mac_addr[4], &tfe_inst->mac_addr[5]);
|
|
|
|
|
|
if(ret != 6){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: mac_addr is invalid, ret is %d, profile is %s, section is %s", ret, profile, _section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = MESA_load_profile_string_nodef(profile, _section, "dev_eth_symbol", dev_eth_symbol, sizeof(dev_eth_symbol));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: dev_eth_symbol not set, profile is %s, section is %s", profile, _section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
KNI_LOG_INFO(logger, "MESA_prof_load, [%s]:\n mac_addr: %s\n dev_eth_symbol: %s",
|
|
|
|
|
|
_section, mac_addr_str, dev_eth_symbol);
|
|
|
|
|
|
//handler
|
|
|
|
|
|
dev_eth_handler = marsio_open_device(mr_inst, dev_eth_symbol, 1, g_iThreadNum);
|
|
|
|
|
|
if(dev_eth_handler == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at marsio_open_device, dev_symbol is %s", dev_eth_symbol);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
//sendpath
|
|
|
|
|
|
dev_eth_sendpath = marsio_sendpath_create_by_vdev(dev_eth_handler);
|
|
|
|
|
|
if(dev_eth_sendpath == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at create marsio sendpath, dev_symbol is %s", dev_eth_symbol);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
//tfe_instance
|
|
|
|
|
|
tfe_inst->dev_eth_handler = dev_eth_handler;
|
|
|
|
|
|
tfe_inst->dev_eth_sendpath = dev_eth_sendpath;
|
|
|
|
|
|
handle->tfe_instance_list[i] = tfe_inst;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//vxlan_handler: receive: 0 thread, send: 1
|
2019-06-03 20:19:04 +08:00
|
|
|
|
dev_vxlan_handler = marsio_open_device(mr_inst, dev_vxlan_symbol, 0, 1);
|
2019-05-21 17:14:07 +08:00
|
|
|
|
if(dev_vxlan_handler == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at marsio_open_device, dev_symbol is %s", dev_vxlan_symbol);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
goto error_out;
|
2019-05-21 17:14:07 +08:00
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
handle->dev_vxlan_handler = dev_vxlan_handler;
|
|
|
|
|
|
//vxlan sendpath
|
|
|
|
|
|
dev_vxlan_sendpath = marsio_sendpath_create_by_vdev(dev_vxlan_handler);
|
2019-05-21 17:14:07 +08:00
|
|
|
|
if(dev_eth_sendpath == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at create marsio sendpath, dev_symbol is %s", dev_vxlan_symbol);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
2019-05-21 17:14:07 +08:00
|
|
|
|
handle->dev_vxlan_sendpath = dev_vxlan_sendpath;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
//marsio_thread_init(mr_instance);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
return handle;
|
2019-05-21 17:14:07 +08:00
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
error_out:
|
|
|
|
|
|
kni_marsio_destroy(handle);
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
2019-05-21 17:14:07 +08:00
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
static void fs_destroy(struct kni_field_stat_handle *fs_handle){
|
|
|
|
|
|
if(fs_handle != NULL){
|
|
|
|
|
|
FS_stop(&(fs_handle->handle));
|
|
|
|
|
|
}
|
|
|
|
|
|
FREE(&fs_handle);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-05-18 12:41:31 +08:00
|
|
|
|
static struct kni_field_stat_handle * fs_init(const char *profile){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
void *logger = g_kni_handle->local_logger;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
const char *section = "field_stat";
|
|
|
|
|
|
char stat_path[KNI_PATH_MAX];
|
2019-06-03 20:19:04 +08:00
|
|
|
|
struct kni_field_stat_handle *fs_handle = NULL;
|
|
|
|
|
|
screen_stat_handle_t handle = NULL;
|
|
|
|
|
|
const char *app_name = "fs2_kni";
|
|
|
|
|
|
int value = 0;
|
|
|
|
|
|
int ret = MESA_load_profile_string_nodef(profile, section, "stat_path", stat_path, sizeof(stat_path));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "MESA_prof_load: stat_path not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
2019-05-18 12:41:31 +08:00
|
|
|
|
KNI_LOG_INFO(logger, "MESA_prof_load, [%s]:\n stat_path: %s\n", "field_stat", stat_path);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
handle = FS_create_handle();
|
2019-05-18 12:41:31 +08:00
|
|
|
|
if(handle == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(logger, "Failed at create FS_create_handle");
|
2019-06-03 20:19:04 +08:00
|
|
|
|
goto error_out;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
fs_handle = ALLOC(struct kni_field_stat_handle, 1);
|
|
|
|
|
|
fs_handle->handle = handle;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_set_para(handle, APP_NAME, app_name, strlen(app_name) + 1);
|
|
|
|
|
|
FS_set_para(handle, OUTPUT_DEVICE, stat_path, strlen(stat_path)+1);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
value = 0;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_set_para(handle, FLUSH_BY_DATE, &value, sizeof(value));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
value = 1;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_set_para(handle, PRINT_MODE, &value, sizeof(value));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
value = 1;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_set_para(handle, CREATE_THREAD, &value, sizeof(value));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
value = 5;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_set_para(handle, STAT_CYCLE, &value, sizeof(value));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
value = 4096;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
FS_set_para(handle, MAX_STAT_FIELD_NUM, &value, sizeof(value));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
fs_handle = ALLOC(struct kni_field_stat_handle, 1);
|
2019-05-18 12:41:31 +08:00
|
|
|
|
fs_handle->handle = handle;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//fs_handle->fields[KNI_FIELD_TOT_PKT] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "tot_pkt");
|
2019-05-18 12:41:31 +08:00
|
|
|
|
fs_handle->fields[KNI_FIELD_BYP_PKT] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "byp_pkt");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_INTCP_PKT] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "intcp_pkt");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_IPV6_PKT] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "ipv6_pkt");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_NULL_PKT] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "null_pkt");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_NO_SYN_EXP] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "no_syn_pkt");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_UNKNOWN_STATE_EXP] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "unknown_state");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_NO_SA_EXP] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "no_s/a_pkt");
|
2019-06-08 20:28:21 +08:00
|
|
|
|
//fs_handle->fields[KNI_FIELD_TOT_STM] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "tot_stm");
|
2019-05-18 12:41:31 +08:00
|
|
|
|
fs_handle->fields[KNI_FIELD_BYP_STM] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "byp_stm");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_INTCP_STM] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "intcp_stm");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_SSL_STM] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "ssl_stm");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_HTTP_STM] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "http_stm");
|
2019-06-03 20:19:04 +08:00
|
|
|
|
fs_handle->fields[KNI_FIELD_SENDLOG_SUCC] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "sendlog_succ");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_SENDLOG_FAIL] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "sendlog_fail");
|
2019-05-18 12:41:31 +08:00
|
|
|
|
fs_handle->fields[KNI_FIELD_UNKNOWN_STM] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "unknown_stm");
|
2019-06-08 20:28:21 +08:00
|
|
|
|
fs_handle->fields[KNI_FIELD_STM_NO_DATA] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "stm_no_data");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_PME_NEW] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "pme_new");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_PME_FREE] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "pme_free");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_ID2PME_ADD_SUCC] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "id2pme_add_succ");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_ID2PME_ADD_FAIL] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "id2pme_add_fail");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_ID2PME_DEL_SUCC] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "id2pme_del_succ");
|
|
|
|
|
|
fs_handle->fields[KNI_FIELD_ID2PME_DEL_FAIL] = FS_register(handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "id2pme_del_fail");
|
2019-05-19 17:23:18 +08:00
|
|
|
|
fs_handle->handle = handle;
|
|
|
|
|
|
FS_start(handle);
|
2019-05-18 12:41:31 +08:00
|
|
|
|
return fs_handle;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
|
|
fs_destroy(fs_handle);
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" void kni_destroy(struct kni_handle *handle){
|
|
|
|
|
|
if(handle != NULL){
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
FREE(&handle);
|
|
|
|
|
|
handle = NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//eliminate_type: 0:FIFO; 1:LRU
|
|
|
|
|
|
//ret: 1: the item can be eliminated; 0: the item can't be eliminated
|
|
|
|
|
|
static int traceid2pme_htable_expire_notify_cb(void *data, int eliminate_type){
|
|
|
|
|
|
struct pme_info *pmeinfo = (struct pme_info*)data;
|
2019-06-08 20:28:21 +08:00
|
|
|
|
if(pmeinfo->sapp_release == 1){
|
|
|
|
|
|
judge_pme_destroy(pmeinfo, CALLER_TFE);
|
2019-06-03 20:19:04 +08:00
|
|
|
|
}
|
2019-06-08 20:28:21 +08:00
|
|
|
|
return 0;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-17 17:04:50 +08:00
|
|
|
|
extern "C" int kni_init(){
|
|
|
|
|
|
const char *profile = "./conf/kni/kni.conf";
|
|
|
|
|
|
const char *section = "global";
|
|
|
|
|
|
//init logger
|
2019-06-03 20:19:04 +08:00
|
|
|
|
char log_path[KNI_PATH_MAX] = "";
|
|
|
|
|
|
int tfe_count = 0;
|
|
|
|
|
|
char local_eth[KNI_SYMBOL_MAX] = "";
|
|
|
|
|
|
struct kni_send_logger *send_logger = NULL;
|
|
|
|
|
|
struct kni_field_stat_handle *fs_handle = NULL;
|
|
|
|
|
|
int id = -1;
|
|
|
|
|
|
void *local_logger = NULL;
|
|
|
|
|
|
int log_level = -1;
|
|
|
|
|
|
pthread_t thread_id = -1;
|
|
|
|
|
|
struct thread_tfe_cmsg_receiver_args *cmsg_receiver_args;
|
|
|
|
|
|
MESA_htable_handle traceid2pme_htable = NULL;
|
|
|
|
|
|
int ret = MESA_load_profile_string_nodef(profile, section, "log_path", log_path, sizeof(log_path));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
printf("MESA_prof_load: log_path not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = MESA_load_profile_int_nodef(profile, section, "log_level", &log_level);
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
printf("MESA_prof_load: log_level not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
2019-06-03 20:19:04 +08:00
|
|
|
|
local_logger = MESA_create_runtime_log_handle(log_path, log_level);
|
|
|
|
|
|
if (unlikely(local_logger == NULL)){
|
|
|
|
|
|
printf("Failed at create logger: %s", log_path);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = MESA_load_profile_int_nodef(profile, section, "tfe_count", &tfe_count);
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "MESA_prof_load: tfe_count not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
if(tfe_count > TFE_COUNT_MAX){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "tfe_count is %d, exceed the max_tfe_count %d", tfe_count, TFE_COUNT_MAX);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
if(tfe_count <= 0){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "tfe_count is %d, <= 0", tfe_count);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = MESA_load_profile_string_nodef(profile, section, "local_eth", local_eth, sizeof(local_eth));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
printf("MESA_prof_load: local_eth not set, profile is %s, section is %s", profile, section);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
KNI_LOG_INFO(local_logger, "MESA_prof_load, [%s]:\n log_path: %s\n log_level: %d\n tfe_count: %d\n local_eth: %s",
|
|
|
|
|
|
section, log_path, log_level, tfe_count, local_eth);
|
|
|
|
|
|
g_kni_handle = ALLOC(struct kni_handle, 1);
|
|
|
|
|
|
g_kni_handle->local_logger = local_logger;
|
|
|
|
|
|
g_kni_handle->tfe_count = tfe_count;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
|
|
|
|
|
|
//init http_project
|
2019-06-03 20:19:04 +08:00
|
|
|
|
id = http_project_init();
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(id < 0){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at init http project, ret is %d", id);
|
|
|
|
|
|
goto error_out;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
g_kni_handle->http_project_id = id;
|
|
|
|
|
|
|
|
|
|
|
|
//init marsio
|
|
|
|
|
|
g_kni_handle->marsio_handle = kni_marsio_init(profile);
|
|
|
|
|
|
if(g_kni_handle->marsio_handle == NULL){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at init marsio");
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//create thread_tfe_data_receiver
|
2019-06-03 20:19:04 +08:00
|
|
|
|
for(int i = 0; i < tfe_count; i++){
|
|
|
|
|
|
struct thread_tfe_data_receiver_args *args = ALLOC(struct thread_tfe_data_receiver_args, 1);
|
|
|
|
|
|
args->logger = local_logger;
|
|
|
|
|
|
args->marsio_handle = g_kni_handle->marsio_handle;
|
|
|
|
|
|
args->tfe_id = i;
|
|
|
|
|
|
int ret = pthread_create(&thread_id, NULL, thread_tfe_data_receiver, (void *)args);
|
|
|
|
|
|
if(unlikely(ret != 0)){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at pthread_create, thread_func is thread_tfe_data_receiver, ret is %d", ret);
|
|
|
|
|
|
FREE(&args);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-04 19:50:34 +08:00
|
|
|
|
//create thread_tfe_cmsg_receiver
|
2019-06-03 20:19:04 +08:00
|
|
|
|
cmsg_receiver_args = ALLOC(struct thread_tfe_cmsg_receiver_args, 1);
|
|
|
|
|
|
cmsg_receiver_args->logger = local_logger;
|
2019-06-05 11:32:11 +08:00
|
|
|
|
strncpy(cmsg_receiver_args->profile, profile, strnlen(profile, sizeof(cmsg_receiver_args->profile) - 1));
|
2019-06-03 20:19:04 +08:00
|
|
|
|
ret = pthread_create(&thread_id, NULL, thread_tfe_cmsg_receiver, (void *)cmsg_receiver_args);
|
|
|
|
|
|
if(unlikely(ret != 0)){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at pthread_create, thread_func is thread_tfe_cmsg_receiver, ret is %d", ret);
|
|
|
|
|
|
FREE(&cmsg_receiver_args);
|
|
|
|
|
|
goto error_out;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//init maat
|
2019-06-03 20:19:04 +08:00
|
|
|
|
g_kni_handle->maat_handle = kni_maat_init(profile, local_logger);
|
2019-05-17 17:04:50 +08:00
|
|
|
|
if(g_kni_handle->maat_handle == NULL){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at init maat");
|
|
|
|
|
|
goto error_out;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
}
|
2019-05-18 12:41:31 +08:00
|
|
|
|
|
|
|
|
|
|
//init_filedstat
|
2019-06-03 20:19:04 +08:00
|
|
|
|
fs_handle = fs_init(profile);
|
2019-05-18 12:41:31 +08:00
|
|
|
|
if(fs_handle == NULL){
|
2019-06-03 20:19:04 +08:00
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at init field_stat");
|
|
|
|
|
|
goto error_out;
|
2019-05-18 12:41:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
g_kni_fs_handle = fs_handle;
|
|
|
|
|
|
|
2019-06-03 20:19:04 +08:00
|
|
|
|
//init local_ipv4
|
|
|
|
|
|
ret = kni_ipv4_addr_get_by_eth(local_eth, &(g_kni_handle->local_ipv4));
|
|
|
|
|
|
if(ret < 0){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at get bind ipv4 addr, eth is %s", local_eth);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//init kni_send_logger
|
|
|
|
|
|
send_logger = kni_send_logger_init(profile, local_logger);
|
|
|
|
|
|
if(send_logger == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at init kni_send_logger", local_eth);
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
g_kni_handle->send_logger = send_logger;
|
|
|
|
|
|
|
|
|
|
|
|
//init traceid2pme_htable
|
2019-06-08 20:28:21 +08:00
|
|
|
|
traceid2pme_htable = kni_create_htable(profile, "traceid2pme_htable", NULL,
|
2019-06-03 20:19:04 +08:00
|
|
|
|
(void*)traceid2pme_htable_expire_notify_cb, local_logger);
|
|
|
|
|
|
if(traceid2pme_htable == NULL){
|
|
|
|
|
|
KNI_LOG_ERROR(local_logger, "Failed at create traceid2pme_htable");
|
|
|
|
|
|
goto error_out;
|
|
|
|
|
|
}
|
|
|
|
|
|
g_kni_handle->traceid2pme_htable = traceid2pme_htable;
|
2019-05-17 17:04:50 +08:00
|
|
|
|
return 0;
|
2019-06-03 20:19:04 +08:00
|
|
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
|
|
kni_destroy(g_kni_handle);
|
|
|
|
|
|
return -1;
|
2019-06-04 16:37:42 +08:00
|
|
|
|
}
|