TSG-20185 Proxy支持IP+Port组合object
TSG-19907 修复笔误doH日志中多次发送decoded_as字段 TSG-19820 Protocol Field中Request Body/Response Body选择非运算时,无法命中策略 TSG-19540 修复Manipulation策略中Protocol选择UDP/ICMP时,选择非无法命中策略 TSG-19337 界面展示一致性,Proxy的Manipulate日志中的IP Protocol统一小写 TSG-19480 修复Metric中命中策略统计和Throughput的时机不一致,造成界面展示歧义
This commit is contained in:
@@ -1189,6 +1189,77 @@ struct proxy_http_ctx
|
||||
int thread_id;
|
||||
};
|
||||
|
||||
static inline int ctx_actually_replaced(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_REPLACE &&
|
||||
ctx->rep_ctx->actually_replaced==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_ran_script(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_LUA_SCRIPT &&
|
||||
ctx->tsg_ctx->actually_executed==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_inserted(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_INSERT &&
|
||||
ctx->ins_ctx->actually_inserted==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_edited(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_ELEMENT && ctx->edit_ctx != NULL &&
|
||||
ctx->edit_ctx->actually_edited==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_manipulate(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
(ctx->param->action == MA_ACTION_REDIRECT ||
|
||||
ctx->param->action == MA_ACTION_HIJACK)&&
|
||||
ctx->manipulate_replaced==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
void http_repl_ctx_free(struct replace_ctx* rep_ctx)
|
||||
{
|
||||
if (rep_ctx->http_body)
|
||||
@@ -2743,6 +2814,8 @@ enum proxy_action http_scan(const struct tfe_http_session * session, enum tfe_ht
|
||||
|
||||
if ((events & EV_HTTP_REQ_BODY_END) | (events & EV_HTTP_RESP_BODY_END))
|
||||
{
|
||||
table_id = events & EV_HTTP_REQ_BODY_END ? g_proxy_rt->scan_table_id[PXY_CTRL_HTTP_REQ_BODY] : g_proxy_rt
|
||||
->scan_table_id[PXY_CTRL_HTTP_RES_BODY];
|
||||
scan_ret = maat_scan_not_logic(g_proxy_rt->feather, table_id, result + hit_cnt, MAX_SCAN_RESULT - hit_cnt,
|
||||
&n_hit_result, ctx->scan_mid);
|
||||
if (scan_ret == MAAT_SCAN_HIT)
|
||||
@@ -2829,7 +2902,12 @@ void enforce_control_policy(const struct tfe_stream * stream, const struct tfe_h
|
||||
if(ctx->log_resp_body == NULL) ctx->log_resp_body = evbuffer_new();
|
||||
evbuffer_add(ctx->log_resp_body, body_frag, frag_size);
|
||||
}
|
||||
proxy_send_metric_log(stream, ctx, thread_id, 1);
|
||||
|
||||
if((((ctx_actually_replaced(ctx)) || (ctx_actually_inserted(ctx)) || (ctx_actually_edited(ctx)) || (ctx_actually_manipulate(ctx))
|
||||
|| ctx_actually_ran_script(ctx)) || ctx->action == PX_ACTION_REJECT || (ctx->action == PX_ACTION_MONIT)))
|
||||
{
|
||||
proxy_send_metric_log(stream, ctx, thread_id, 1);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
@@ -2910,80 +2988,6 @@ void proxy_on_http_begin(const struct tfe_stream *stream, const struct tfe_http_
|
||||
return;
|
||||
}
|
||||
|
||||
static inline int ctx_actually_replaced(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_REPLACE &&
|
||||
ctx->rep_ctx->actually_replaced==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_ran_script(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_LUA_SCRIPT &&
|
||||
ctx->tsg_ctx->actually_executed==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_inserted(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_INSERT &&
|
||||
ctx->ins_ctx->actually_inserted==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_edited(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
ctx->param->action == MA_ACTION_ELEMENT && ctx->edit_ctx != NULL &&
|
||||
ctx->edit_ctx->actually_edited==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static inline int ctx_actually_manipulate(struct proxy_http_ctx * ctx)
|
||||
{
|
||||
if(ctx->action == PX_ACTION_MANIPULATE &&
|
||||
(ctx->param->action == MA_ACTION_REDIRECT ||
|
||||
ctx->param->action == MA_ACTION_HIJACK)&&
|
||||
ctx->manipulate_replaced==1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
void proxy_on_http_end(const struct tfe_stream * stream,
|
||||
const struct tfe_http_session * session, unsigned int thread_id, void ** pme)
|
||||
{
|
||||
|
||||
@@ -253,7 +253,7 @@ int proxy_send_log(struct proxy_logger* handle, const struct proxy_log* log_msg)
|
||||
|
||||
cJSON_AddStringToObject(common_obj, "http_version", app_proto[http->major_version]);
|
||||
cJSON_AddStringToObject(common_obj, "decoded_as", "HTTP");
|
||||
cJSON_AddStringToObject(common_obj, "ip_protocol", "TCP");
|
||||
cJSON_AddStringToObject(common_obj, "ip_protocol", "tcp");
|
||||
cJSON_AddNumberToObject(common_obj, "out_link_id", 0);
|
||||
cJSON_AddNumberToObject(common_obj, "in_link_id", 0);
|
||||
cJSON_AddStringToObject(common_obj, "sled_ip", handle->kafka_logger->local_ip_str);
|
||||
|
||||
Reference in New Issue
Block a user