summaryrefslogtreecommitdiff
path: root/src/tsg_bridge.cpp
blob: efaf1371896ef694630ea0ea8a538008f5369919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include <MESA/MESA_prof_load.h>
#include <MESA/MESA_handle_logger.h>

#include "tsg_log.h"
#include "tsg_bridge.h"
#include "tsg_variable.h"
#include "tsg_sync_state.h"
#include "tsg_rule_internal.h"
#include "statistics_metrics.h"

extern int session_app_identify_result_cb(const struct streaminfo *a_stream, int bridge_id, void *data);
extern int session_flags_identify_result_cb(const struct streaminfo *a_stream, int bridge_id, void *data);
extern int matched_service_chaining_rules_deal(const struct streaminfo *a_stream, struct maat_rule *s_chaining_rules, size_t n_s_chaining_rules, int thread_seq);
extern int matched_shaping_rules_deal(const struct streaminfo * a_stream, struct maat_rule * shaping_results, size_t n_shaping_results, int thread_seq);

struct bridge_info
{
	int id;
	char name[MAX_BRIDGE_NAME_LEN];
	stream_bridge_free_cb_t *free_cb;
	stream_bridge_sync_cb_t *sync_cb;
};

struct bridge_info g_tsg_bridge_para[BRIDGE_TYPE_MAX];

void session_sce_log_update_free(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	if (data != NULL)
	{
		dictator_free(a_stream->threadnum, data);
		data = NULL;
	}

	return;
}

void session_shaper_log_update_free(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	if (data != NULL)
	{
		dictator_free(a_stream->threadnum, data);
		data = NULL;
	}

	return;
}

void session_proxy_log_update_free(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	struct proxy_log_update *proxy = (struct proxy_log_update *)data;
	if (proxy != NULL)
	{

		if (proxy->ssl_downstream_version != NULL)
		{
			dictator_free(a_stream->threadnum, (void *)proxy->ssl_downstream_version);
			proxy->ssl_downstream_version = NULL;
		}

		if (proxy->ssl_error != NULL)
		{
			dictator_free(a_stream->threadnum, (void *)proxy->ssl_error);
			proxy->ssl_error = NULL;
		}

		if (proxy->ssl_passthrough_reason != NULL)
		{
			dictator_free(a_stream->threadnum, (void *)proxy->ssl_passthrough_reason);
			proxy->ssl_passthrough_reason = NULL;
		}

		if (proxy->ssl_upstream_version != NULL)
		{
			dictator_free(a_stream->threadnum, (void *)proxy->ssl_upstream_version);
			proxy->ssl_upstream_version = NULL;
		}

		dictator_free(a_stream->threadnum, (void *)proxy);
		proxy = NULL;
	}

	data = NULL;
	return;
}

void session_runtime_process_context_free_cb(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	struct session_runtime_process_context *srt_process_context=(struct session_runtime_process_context *)data;
	if(srt_process_context!=NULL)
	{
		if(srt_process_context->domain!=NULL)
		{
			dictator_free(a_stream->threadnum, (void *)srt_process_context->domain);
			srt_process_context->domain=NULL;
		}

		if(srt_process_context->quic_ua!=NULL)
		{
			dictator_free(a_stream->threadnum, (void *)srt_process_context->quic_ua);
			srt_process_context->quic_ua=NULL;
		}

		if(srt_process_context->mid!=NULL)
		{
			tsg_maat_state_free(srt_process_context->mid);
			srt_process_context->mid=NULL;
		}

		dictator_free(a_stream->threadnum, (void *)srt_process_context);
		srt_process_context=NULL;
	}

	data=NULL;

	return ;
}

void session_runtime_action_context_free(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	if(data!=NULL)
	{
		struct session_runtime_action_context *srt_action_context=(struct session_runtime_action_context *)data;
		if(srt_action_context->para!=NULL)
		{
			switch(srt_action_context->method_type)
			{
				case	TSG_METHOD_TYPE_RATE_LIMIT:
					destroy_bucket(&(srt_action_context->bucket), a_stream->threadnum);
					break;
				default:
					break;
			}
		}
		
		if(srt_action_context->l4_protocol != NULL)
		{
			dictator_free(a_stream->threadnum, srt_action_context->l4_protocol);
		}

		if(srt_action_context->last_traffic_statis != NULL)
		{
			dictator_free(a_stream->threadnum, srt_action_context->last_traffic_statis);
		}
		
		dictator_free(a_stream->threadnum, data);
		data=NULL;
	}

	return ;
}

void session_matched_rules_free_by_bridge(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	if(data!=NULL)
	{
		dictator_free(a_stream->threadnum, data);
		data=NULL;
	}
}

void session_segment_id_free(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	if(data!=NULL)
	{
		dictator_free(a_stream->threadnum, data);
		data=NULL;
	}
}

void session_gather_app_results_free(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	if(data==NULL)
	{
		return ;
	}

	struct gather_app_result *gather_result=(struct gather_app_result *)data;
	
	if(gather_result->built_in!=NULL)
	{
		dictator_free(a_stream->threadnum, (void *)gather_result->built_in);
	}

	if(gather_result->l7_protocol!=NULL)
	{
		dictator_free(a_stream->threadnum, (void *)gather_result->l7_protocol);
	}

	if(gather_result->qm_engine!=NULL)
	{
		dictator_free(a_stream->threadnum, (void *)gather_result->qm_engine);
	}

	if(gather_result->user_define!=NULL)
	{
		dictator_free(a_stream->threadnum, (void *)gather_result->user_define);
	}
		
	dictator_free(a_stream->threadnum, data);
	data=NULL;
}

void session_runtime_attribute_free(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)data;

	if(srt_attribute!=NULL)
	{
		plugin_ex_data_asn_number_free(srt_attribute->client_asn);
		plugin_ex_data_asn_number_free(srt_attribute->server_asn);

		plugin_ex_data_location_free(srt_attribute->client_location);
		plugin_ex_data_location_free(srt_attribute->server_location);

		plugin_ex_data_subscriber_id_free(srt_attribute->client_subscribe_id);
		plugin_ex_data_subscriber_id_free(srt_attribute->server_subscribe_id);

		plugin_ex_data_gtp_c_free(srt_attribute->user_info);

		plugin_ex_data_tunnel_endpoint_free(srt_attribute->client_endpoint);
		plugin_ex_data_tunnel_endpoint_free(srt_attribute->server_endpoint);

		if(srt_attribute->ja3_fingerprint!=NULL)
		{
			dictator_free(a_stream->threadnum, (void *)srt_attribute->ja3_fingerprint);
			srt_attribute->ja3_fingerprint=NULL;
		}

		if(srt_attribute->proxy_tcp_attr != NULL)
		{
			dictator_free(a_stream->threadnum, (void *)srt_attribute->proxy_tcp_attr);
			srt_attribute->proxy_tcp_attr = NULL;
		}

		if(srt_attribute->client_os!=NULL)
		{
			dictator_free(a_stream->threadnum, (void *)srt_attribute->client_os);
			srt_attribute->client_os=NULL;
		}

		if(srt_attribute->server_os!=NULL)
		{
			dictator_free(a_stream->threadnum, (void *)srt_attribute->server_os);
			srt_attribute->server_os=NULL;
		}

		dictator_free(a_stream->threadnum, data);
		data=NULL;
	}
}

int session_async_bridge_set_data(const struct streaminfo *a_stream, int bridge_id, void *data)
{
	if(a_stream==NULL || bridge_id<0)
	{
		return 0;
	}
	
	int ret=stream_bridge_async_data_put(a_stream, bridge_id, data);
	if(ret<0)
	{
		MASTER_LOG(g_tsg_para.logger, RLOG_LV_INFO, LOG_MODULE_BRIDGE, "Add project failed, bridge_id: %d addr: %s", bridge_id, printaddr(&(a_stream->addr), a_stream->threadnum));
		return 0;
	}

	return 1;
}

void *session_async_bridge_get_data(const struct streaminfo *a_stream, int bridge_id)
{
	if(a_stream!=NULL && bridge_id>=0)
	{
		return stream_bridge_async_data_get(a_stream, bridge_id);
	}

	return NULL;
}

const struct session_runtime_attribute *session_runtime_attribute_new(const struct streaminfo *a_stream)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ATTRIBUTE].id);
	if(srt_attribute==NULL)
	{
		srt_attribute=(struct session_runtime_attribute *)dictator_malloc(a_stream->threadnum, sizeof(struct session_runtime_attribute));
		memset(srt_attribute, 0, sizeof(struct session_runtime_attribute));

		int ret=session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ATTRIBUTE].id, (void *)srt_attribute);
		if(ret<0)
		{
			session_runtime_attribute_free(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ATTRIBUTE].id, (void *)srt_attribute);
			srt_attribute=NULL;
			return NULL;
		}
	}

	return (const struct session_runtime_attribute *)srt_attribute;
}

const struct session_runtime_attribute *session_runtime_attribute_get(const struct streaminfo *a_stream)
{
	return (struct session_runtime_attribute *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ATTRIBUTE].id);
}

void srt_attribute_free_proxy_tcp_option(const struct streaminfo *a_stream)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_get(a_stream);
	if(srt_attribute!=NULL && srt_attribute->proxy_tcp_attr!=NULL)
	{
		dictator_free(a_stream->threadnum, (void *)srt_attribute->proxy_tcp_attr);
		srt_attribute->proxy_tcp_attr=NULL;
	}
}

int srt_attribute_set_establish_latecy(const struct streaminfo *a_stream)
{
	unsigned long long create_time=0;
	unsigned long long current_time=0;
	int size=sizeof(create_time);

	int ret=MESA_get_stream_opt(a_stream, MSO_STREAM_CREATE_TIMESTAMP_MS, (void *)&create_time, &size);
	if(ret<0)
	{
		return 0;
	}
	
	size=sizeof(current_time);
	ret=sapp_get_platform_opt(SPO_CURTIME_TIMET_MS, (void *)&current_time, &size);
	if(ret<0)
	{
		return 0;
	}

	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->establish_latency_ms=current_time-create_time;
		return 1;
	}
	
	return 0;
}

int srt_attribute_set_protocol(const struct streaminfo *a_stream, TSG_PROTOCOL protocol)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->proto=protocol;
		return 1;
	}
	
	return 0;
}

int srt_attribute_set_reponse_size(const struct streaminfo *a_stream, int http_action_file_size)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->http_action_file_size=http_action_file_size;
		return 1;
	}
	
	return 0;
}

int srt_attribute_set_ja3_fingprint(const struct streaminfo *a_stream, const char *ja3_fingerprint, int ja3_fingerprint_len)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->ja3_fingerprint=(char *)dictator_malloc(a_stream->threadnum, ja3_fingerprint_len+1);
		memcpy((void *)srt_attribute->ja3_fingerprint, ja3_fingerprint, ja3_fingerprint_len);
		((char *)srt_attribute->ja3_fingerprint)[ja3_fingerprint_len]='\0';
		return 1;
	}
	
	return 0;
}

int srt_attribute_set_client_os(const struct streaminfo *a_stream, const char *os_name)
{
	if(os_name==NULL)
	{
		return 0;
	}

	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		size_t os_name_len=strlen(os_name);
		srt_attribute->client_os=(char *)dictator_malloc(a_stream->threadnum, os_name_len+1);
		memcpy((void *)srt_attribute->client_os, os_name, os_name_len);
		srt_attribute->client_os[os_name_len]='\0';
		return 1;
	}

	return 0;
}

int srt_attribute_set_server_os(const struct streaminfo *a_stream, const char *os_name)
{
	if(os_name==NULL)
	{
		return 0;
	}

	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		size_t os_name_len=strlen(os_name);
		srt_attribute->server_os=(char *)dictator_malloc(a_stream->threadnum, os_name_len+1);
		memcpy((void *)srt_attribute->server_os, os_name, os_name_len);
		srt_attribute->server_os[os_name_len]='\0';
		return 1;
	}

	return 0;
}

int srt_atttribute_set_umts_user_info(const struct streaminfo *a_stream, struct umts_user_info *user_info)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->user_info=user_info;
		return 1;
	}
	
	return 0;
}

int srt_atttribute_set_subscriber_id(const struct streaminfo *a_stream, struct subscribe_id_info *c_subscribe_id, struct subscribe_id_info *s_subscribe_id)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->client_subscribe_id=c_subscribe_id;
		srt_attribute->server_subscribe_id=s_subscribe_id;
		return 1;
	}
	
	return 0;
}

int srt_atttribute_set_ip_asn(const struct streaminfo *a_stream, struct asn_info *c_asn, struct asn_info *s_asn)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->client_asn=c_asn;
		srt_attribute->server_asn=s_asn;
		return 1;
	}
	
	return 0;
}

int srt_atttribute_set_ip_location(const struct streaminfo *a_stream, struct location_info *c_location, struct location_info *s_location)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->client_location=c_location;
		srt_attribute->server_location=s_location;
		return 1;
	}
	
	return 0;
}

int srt_attribute_set_category_ids(const struct streaminfo *a_stream, unsigned int *category_ids, int n_category_ids)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		if(n_category_ids<=0 || n_category_ids>MAX_CATEGORY_ID_NUM)
		{
			return 0;
		}
		memcpy(srt_attribute->fqdn_category_ids, category_ids, sizeof(unsigned int)*n_category_ids);
		srt_attribute->n_fqdn_category_ids=n_category_ids;

		return 1;
	}
	
	return 0;
}

int srt_attribute_set_flags(const struct streaminfo *a_stream, unsigned long s_flags)
{
	struct session_runtime_attribute *srt_attribute=(struct session_runtime_attribute *)session_runtime_attribute_new(a_stream);
	if(srt_attribute)
	{
		srt_attribute->session_flags=s_flags;
		return 1;
	}
	
	return 0;
}

const char *srt_attribute_get_ja3_fingerprint(const struct session_runtime_attribute *srt_attribute)
{
	if(srt_attribute)
	{
		return (const char *)(srt_attribute->ja3_fingerprint);
	}

	return NULL;
}
const char *srt_attribute_get_client_subscriber_id(const struct session_runtime_attribute *srt_attribute)
{
	if(srt_attribute!=NULL && srt_attribute->client_subscribe_id!=NULL)
	{
		return (const char *)(srt_attribute->client_subscribe_id->subscribe_id);
	}

	return NULL;
}
const char *srt_attribute_get_server_subscriber_id(const struct session_runtime_attribute *srt_attribute)
{
	if(srt_attribute!=NULL && srt_attribute->server_subscribe_id!=NULL)
	{
		return (const char *)(srt_attribute->server_subscribe_id->subscribe_id);
	}

	return NULL;
}

const struct asn_info *srt_attribute_get_client_ip_asn(const struct session_runtime_attribute *srt_attribute)
{
	if(srt_attribute)
	{
		return (const struct asn_info *)(srt_attribute->client_asn);
	}

	return NULL;
}

const struct asn_info *srt_attribute_get_server_ip_asn(const struct session_runtime_attribute *srt_attribute)
{
	if(srt_attribute)
	{
		return (const struct asn_info *)(srt_attribute->server_asn);
	}

	return NULL;
}

const struct location_info *srt_attribute_get_client_ip_location(const struct session_runtime_attribute *srt_attribute)
{
	if(srt_attribute)
	{
		return (const struct location_info *)(srt_attribute->client_location);
	}

	return NULL;
}

const struct location_info *srt_attribute_get_server_ip_location(const struct session_runtime_attribute *srt_attribute)
{
	if(srt_attribute)
	{
		return (const struct location_info *)(srt_attribute->server_location);
	}

	return NULL;
}

size_t srt_attribute_get_category_ids(const struct session_runtime_attribute *srt_attribute, unsigned int *category_ids, size_t n_category_ids)
{
	if(srt_attribute==NULL || srt_attribute->n_fqdn_category_ids==0 || category_ids==NULL || n_category_ids==0)
	{
		return 0;
	}

	size_t n_real_category_ids=MIN(n_category_ids, srt_attribute->n_fqdn_category_ids);
	memcpy(category_ids, srt_attribute->fqdn_category_ids, n_real_category_ids*sizeof(unsigned int));

	return n_real_category_ids;
}

int session_runtime_process_context_async(const struct streaminfo *a_stream, void *data)
{
	return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].id, data);
}

const struct session_runtime_process_context *session_runtime_process_context_new(const struct streaminfo *a_stream)
{
	struct session_runtime_process_context *srt_process_context=(struct session_runtime_process_context *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].id);
	if(srt_process_context==NULL)
	{
		srt_process_context=(struct session_runtime_process_context *)dictator_malloc(a_stream->threadnum, sizeof(struct session_runtime_process_context));
		memset(srt_process_context, 0, sizeof(struct session_runtime_process_context));

		int ret=session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].id, (void *)srt_process_context);
		if(ret<0)
		{
			session_runtime_process_context_free_cb(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].id, (void *)srt_process_context);
			srt_process_context=NULL;
			return NULL;
		}
	}

	return (const struct session_runtime_process_context *)srt_process_context;
}

const struct session_runtime_process_context *session_runtime_process_context_get(const struct streaminfo *a_stream)
{
	return (struct session_runtime_process_context *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].id);
}

void session_runtime_process_context_free(const struct streaminfo *a_stream)
{
	const struct session_runtime_process_context *srt_process_context=session_runtime_process_context_get(a_stream);
	if(srt_process_context!=NULL)
	{
		session_runtime_process_context_free_cb(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].id, (void *)srt_process_context);
		session_runtime_process_context_async(a_stream, NULL);
	}
}

enum TSG_PROTOCOL srt_process_context_get_protocol(const struct session_runtime_process_context *srt_process_context)
{
	if(srt_process_context!=NULL)
	{
		return srt_process_context->proto;
	}
	
	return PROTO_UNKONWN;
}

const char *srt_process_context_get_domain(const struct session_runtime_process_context *srt_process_context)
{
	if(srt_process_context!=NULL)
	{
		return (const char *)(srt_process_context->domain);
	}
	
	return NULL;
}

const char *srt_process_context_get_http_url(const struct session_runtime_process_context *srt_process_context)
{
	if(srt_process_context!=NULL && srt_process_context->proto==PROTO_HTTP)
	{
		return (const char *)(srt_process_context->http_url);
	}
	
	return NULL;
}

const char *srt_process_context_get_quic_ua(const struct session_runtime_process_context *srt_process_context)
{
	if(srt_process_context!=NULL && srt_process_context->proto==PROTO_QUIC)
	{
		return (const char *)(srt_process_context->quic_ua);
	}
	
	return NULL;
}

unsigned char srt_process_context_get_hitted_allow_flag(const struct session_runtime_process_context *srt_process_context)
{
	if(srt_process_context!=NULL)
	{
		return srt_process_context->is_hitted_allow;
	}
	
	return 0;
}

int session_runtime_action_context_async(const struct streaminfo *a_stream, void *data)
{
	return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ACTION_CONTEXT].id, data);
}

const struct session_runtime_action_context *session_runtime_action_context_new(const struct streaminfo *a_stream)
{
	struct session_runtime_action_context *srt_action_context=(struct session_runtime_action_context *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ACTION_CONTEXT].id);
	if(srt_action_context==NULL)
	{
		srt_action_context=(struct session_runtime_action_context *)dictator_malloc(a_stream->threadnum, sizeof(struct session_runtime_action_context));
		memset(srt_action_context, 0, sizeof(struct session_runtime_action_context));

		int ret=session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ACTION_CONTEXT].id, (void *)srt_action_context);
		if(ret<0)
		{
			session_runtime_action_context_free(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ACTION_CONTEXT].id, (void *)srt_action_context);
			srt_action_context=NULL;
			return NULL;
		}
	}

	return (const struct session_runtime_action_context *)srt_action_context;
}

const struct session_runtime_action_context *session_runtime_action_context_get(const struct streaminfo *a_stream)
{
	return (const struct session_runtime_action_context *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ACTION_CONTEXT].id);
}

int srt_action_context_set_after_n_packet(const struct streaminfo *a_stream, int after_n_packets, int thread_seq)
{
	struct session_runtime_action_context *srt_action_context=(struct session_runtime_action_context *)session_runtime_action_context_new(a_stream);
	if(srt_action_context==NULL)
	{
		srt_action_context=(struct session_runtime_action_context *)dictator_malloc(thread_seq, sizeof(struct session_runtime_action_context));
		memset(srt_action_context, 0, sizeof(struct session_runtime_action_context));
		session_runtime_action_context_async(a_stream, (void *)srt_action_context);
	}
			
	srt_action_context->hited_para.after_n_packets=after_n_packets;
	srt_action_context->is_drop_after_n_packets=1;
	
	return 1;
}

int srt_action_context_set_hitted_app_id(const struct streaminfo *a_stream, int matched_app_id, int thread_seq)
{
	struct session_runtime_action_context *srt_action_context=(struct session_runtime_action_context *)session_runtime_action_context_new(a_stream);
	if(srt_action_context==NULL)
	{
		srt_action_context=(struct session_runtime_action_context *)dictator_malloc(thread_seq, sizeof(struct session_runtime_action_context));
		memset(srt_action_context, 0, sizeof(struct session_runtime_action_context));
		session_runtime_action_context_async(a_stream, (void *)srt_action_context);
	}
			
	srt_action_context->hited_para.matched_app_id=matched_app_id;
	
	return 1;
}

int srt_action_context_set_l7_protocol(const struct streaminfo *a_stream, enum TSG_PROTOCOL protocol, int thread_seq)
{
	struct session_runtime_action_context *srt_action_context=(struct session_runtime_action_context *)session_runtime_action_context_new(a_stream);
	if(srt_action_context==NULL)
	{
		srt_action_context=(struct session_runtime_action_context *)dictator_malloc(thread_seq, sizeof(struct session_runtime_action_context));
		memset(srt_action_context, 0, sizeof(struct session_runtime_action_context));
		session_runtime_action_context_async(a_stream, (void *)srt_action_context);
	}
			
	srt_action_context->protocol=protocol;
	
	return 1;
}

int srt_action_context_set_rule_method(const struct streaminfo *a_stream, enum TSG_METHOD_TYPE method_type, int thread_seq)
{
	struct session_runtime_action_context *srt_action_context=(struct session_runtime_action_context *)session_runtime_action_context_new(a_stream);
	if(srt_action_context==NULL)
	{
		srt_action_context=(struct session_runtime_action_context *)dictator_malloc(thread_seq, sizeof(struct session_runtime_action_context));
		memset(srt_action_context, 0, sizeof(struct session_runtime_action_context));
		session_runtime_action_context_async(a_stream, (void *)srt_action_context);
	}

	if(method_type==TSG_METHOD_TYPE_SHUNT)
	{
		if(srt_action_context->method_type==TSG_METHOD_TYPE_RATE_LIMIT)
		{
			destroy_bucket(&(srt_action_context->bucket), thread_seq);
			srt_action_context->bucket=NULL;
		}
		srt_action_context->method_type=method_type;
	}

	switch(srt_action_context->method_type)
	{
		case	TSG_METHOD_TYPE_UNKNOWN:
		case	TSG_METHOD_TYPE_DEFAULT:
		case	TSG_METHOD_TYPE_MIRRORED:
			srt_action_context->method_type=method_type;
			break;
		default:
			return 0;
			break;
	}

	return 1;
}

int srt_action_context_set_leaky_bucket(const struct streaminfo *a_stream, struct leaky_bucket *bucket, int thread_seq)
{
	struct session_runtime_action_context *srt_action_context=(struct session_runtime_action_context *)session_runtime_action_context_new(a_stream);
	if(srt_action_context==NULL)
	{
		srt_action_context=(struct session_runtime_action_context *)dictator_malloc(thread_seq, sizeof(struct session_runtime_action_context));
		memset(srt_action_context, 0, sizeof(struct session_runtime_action_context));
		session_runtime_action_context_async(a_stream, (void *)srt_action_context);
	}

	switch(srt_action_context->method_type)
	{
		case	TSG_METHOD_TYPE_RATE_LIMIT:
			return 1;
			break;
		case	TSG_METHOD_TYPE_DEFAULT:
		case	TSG_METHOD_TYPE_UNKNOWN:
			break;
		default:
			return 0;
			break;
	}

	srt_action_context->method_type=TSG_METHOD_TYPE_RATE_LIMIT;
	srt_action_context->bucket=bucket;

	return 1;
}

char srt_action_context_get_direction(const struct session_runtime_action_context *srt_action_context)
{
	if(srt_action_context!=NULL)
	{
		return srt_action_context->direction;
	}

	return -1;
}

char *srt_action_context_get_l4_protocol(const struct session_runtime_action_context *srt_action_context)
{
	if(srt_action_context!=NULL)
	{
		return srt_action_context->l4_protocol;
	}

	return NULL;
}

enum TSG_METHOD_TYPE srt_action_context_get_method_type(const struct session_runtime_action_context *srt_action_context)
{
	if(srt_action_context!=NULL)
	{
		return srt_action_context->method_type;
	}

	return TSG_METHOD_TYPE_UNKNOWN;
}


int session_mirror_packets_sync(const struct streaminfo *a_stream, struct maat_rule *rules, struct mirrored_vlan *vlan)
{
	struct tsg_notify_data notify_data={0};

	notify_data.compile_id=rules->rule_id;
	notify_data.type=NOTIFY_TYPE_MIRRORED;
	notify_data.vlan=vlan;
	stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SEND_CONN_SKETCH_DATA].id, (void *)&(notify_data));

	return 1;
}

int session_capture_packets_sync(const struct streaminfo *a_stream, struct maat_rule *result, int depth)
{
	struct tsg_notify_data notify_data={0};

	notify_data.compile_id=result->rule_id;
	notify_data.type=NOTIFY_TYPE_CAPTURE;
	notify_data.capture_depth=depth;
	stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SEND_CONN_SKETCH_DATA].id, (void *)&(notify_data));

	return 1;
}

size_t session_matched_rules_copy(const struct streaminfo *a_stream, enum TSG_SERVICE service, struct maat_rule *rules, size_t n_rules)
{
	if(rules==NULL || n_rules==0)
	{
		return 0;
	}

	struct matched_policy_rules *matched_policy=NULL;
	switch(service)
	{
		case	TSG_SERVICE_SECURITY:
			matched_policy=(struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SECURITY_RESULT].id);
			break;
		case	TSG_SERVICE_CHAINING:
			matched_policy=(struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SERVICE_CHAINING_RESULT].id);
			break;
		case	TSG_SERVICE_SHAPING:
			matched_policy=(struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SHAPING_RESULT].id);
			break;
		case	TSG_SERVICE_INTERCEPT:
			matched_policy=(struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_INTERCEPT_RESULT].id);
			break;
		default:
			break;
	}
	
	if(matched_policy!=NULL)
	{
		size_t num=MIN(matched_policy->n_rules, n_rules);
		memcpy(rules, matched_policy->rules, num*sizeof(struct maat_rule));
		return num;
	}

	return 0;
}

const struct matched_policy_rules *session_matched_rules_get(const struct streaminfo *a_stream, enum TSG_SERVICE service)
{
	switch(service)
	{
		case	TSG_SERVICE_SECURITY:
			return (struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SECURITY_RESULT].id);
		case	TSG_SERVICE_CHAINING:
			return (struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SERVICE_CHAINING_RESULT].id);
		case	TSG_SERVICE_SHAPING:
			return (struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SHAPING_RESULT].id);
		case	TSG_SERVICE_INTERCEPT:
			return (struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_INTERCEPT_RESULT].id);
		case 	TSG_SERVICE_SIGNATURE:
			return (struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_APP_SIGNATURE_RESULT].id);
		default:
			break;
	}

	return NULL;
}

int session_matched_rules_sync(const struct streaminfo *a_stream, TSG_SERVICE service, void *data)
{
	switch(service)
	{
		case	TSG_SERVICE_SECURITY:
			break;
		case	TSG_SERVICE_CHAINING:
			return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SERVICE_CHAINING_RESULT].id, data);
		case	TSG_SERVICE_SHAPING:
			return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SHAPING_RESULT].id, data);
		case	TSG_SERVICE_INTERCEPT:
			return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_INTERCEPT_RESULT].id, data);
		case	TSG_SERVICE_SIGNATURE:
			return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_APP_SIGNATURE_RESULT].id, data);
		default:
			break;
	}

	return 0;
}

int session_matched_rules_async(const struct streaminfo *a_stream, TSG_SERVICE service, void *data)
{
	switch(service)
	{
		case	TSG_SERVICE_SECURITY:
			return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SECURITY_RESULT].id, data);
			break;
		case	TSG_SERVICE_CHAINING:
			return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SERVICE_CHAINING_RESULT].id, data);
			break;
		case	TSG_SERVICE_SHAPING:
			return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SHAPING_RESULT].id, data);
			break;
		case	TSG_SERVICE_INTERCEPT:
			return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_INTERCEPT_RESULT].id, data);
		case	TSG_SERVICE_SIGNATURE:
			return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_APP_SIGNATURE_RESULT].id, data);
		default:
			break;
	}

	return 0;
}

void session_matched_rules_free(const struct streaminfo *a_stream, TSG_SERVICE service, void *data)
{
	switch(service)
	{
		case	TSG_SERVICE_SECURITY:
			session_matched_rules_free_by_bridge(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SECURITY_RESULT].id, data);
			break;
		case	TSG_SERVICE_CHAINING:
			session_matched_rules_free_by_bridge(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SERVICE_CHAINING_RESULT].id, data);
			break;
		case	TSG_SERVICE_SHAPING:
			session_matched_rules_free_by_bridge(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SHAPING_RESULT].id, data);
			break;
		case	TSG_SERVICE_INTERCEPT:
			session_matched_rules_free_by_bridge(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_INTERCEPT_RESULT].id, data);
			break;
		case	TSG_SERVICE_SIGNATURE:
			session_matched_rules_free_by_bridge(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_APP_SIGNATURE_RESULT].id, data);
		default:
			break;
	}
}

int sort_matched_rules(const void * a, const void * b)
{
	struct maat_rule *x = (struct maat_rule *) a;
	struct maat_rule *y = (struct maat_rule *) b;

	if((y->action) == (x->action))
	{
		return (int)((y->rule_id) > (x->rule_id) ? 1 : -1);
	}

	return (int)((y->action) - (x->action));
}

void session_matched_rules_notify(const struct streaminfo *a_stream, TSG_SERVICE service, struct maat_rule *rules, size_t n_rules, int thread_seq)
{
	if(rules==NULL || n_rules==0)
	{
		return ;
	}

	enum BRIDGE_TYPE bridge_idx;
	switch(service)
	{
		case	TSG_SERVICE_SECURITY:
			bridge_idx=BRIDGE_TYPE_SECURITY_RESULT;
			break;
		case	TSG_SERVICE_INTERCEPT:
			//bridge_idx=BRIDGE_TYPE_INTERCEPT_RESULT;
			return;
		case	TSG_SERVICE_CHAINING:
			matched_service_chaining_rules_deal(a_stream, rules, n_rules, thread_seq);
			return;
		case	TSG_SERVICE_SHAPING:
			matched_shaping_rules_deal(a_stream, rules, n_rules, thread_seq);
			return;
		default:
			return ;
	}

	struct matched_policy_rules *matched_policy=(struct matched_policy_rules *)session_async_bridge_get_data(a_stream, g_tsg_bridge_para[bridge_idx].id);
	if(matched_policy==NULL)
	{
		matched_policy=(struct matched_policy_rules *)dictator_malloc(thread_seq, sizeof(struct matched_policy_rules));
		memset(matched_policy, 0, sizeof(struct matched_policy_rules));

		int ret=session_async_bridge_set_data(a_stream, g_tsg_bridge_para[bridge_idx].id, (void *)matched_policy);
		if(ret<0)
		{
			session_matched_rules_free_by_bridge(a_stream, g_tsg_bridge_para[bridge_idx].id, (void *)matched_policy);
			return ;
		}
	}
	
	size_t num=MIN(MAX_RESULT_NUM-matched_policy->n_rules, n_rules);
	for(size_t i=0; i<num; i++)
	{
		int repeat_result=0;
		for(size_t j=0; j<matched_policy->n_rules; j++)
		{
			if((rules[i].rule_id==matched_policy->rules[j].rule_id) || (rules[i].action==TSG_ACTION_BYPASS && matched_policy->rules[j].action==TSG_ACTION_BYPASS))
			{
				repeat_result=1;
				break;
			}
		}

		if(repeat_result==0)
		{
			memcpy(&(matched_policy->rules[matched_policy->n_rules++]), &(rules[i]), sizeof(struct maat_rule));
		}
	}

	if(matched_policy->n_rules>1)
	{
		qsort(matched_policy->rules, matched_policy->n_rules, sizeof(struct maat_rule), sort_matched_rules);
	}
	
	return ;
}

int session_dimension_server_fqdn_sync(const struct streaminfo *a_stream, char *server_fqdn)
{
	if(server_fqdn==NULL)
	{
		return 0;
	}

	struct statistics_dimensions dimension;
	dimension.type=DIMENSION_FQDN;
	dimension.server_fqdn=server_fqdn;
	return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_STATISTICS_DIMENSION].id, (void *)&(dimension));
}

int session_dimension_application_sync(const struct streaminfo *a_stream, char *application)
{
	if(application==NULL)
	{
		return 0;
	}

	struct statistics_dimensions dimension;
	dimension.type=DIMENSION_APPLICATION;
	dimension.application=application;
	return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_STATISTICS_DIMENSION].id, (void *)&(dimension));
}

int session_dimension_maat_state_sync(const struct streaminfo *a_stream, struct maat_state *state)
{
	if(state==NULL)
	{
		return 0;
	}

	struct statistics_dimensions dimension;
	dimension.type=DIMENSION_MAAT_STATE;
	dimension.maat_state=state;
	return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_STATISTICS_DIMENSION].id, (void *)&(dimension));
}

int session_dimension_maat_rule_sync(const struct streaminfo *a_stream, struct matched_policy_rules *policy)
{
	if(policy==NULL)
	{
		return 0;
	}

	struct statistics_dimensions dimension;
	dimension.type=DIMENSION_MAAT_RULE;
	dimension.policy=policy;
	return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_STATISTICS_DIMENSION].id, (void *)&(dimension));
}

int session_dimension_category_id_sync(const struct streaminfo *a_stream, unsigned int *category_id, int n_category_id)
{
	if(category_id==NULL || n_category_id==0)
	{
		return 0;
	}
	
	struct server_fqdn_category category;
	category.n_ids=MIN(n_category_id, MAX_CATEGORY_ID_NUM);
	memcpy(category.ids, category_id, category.n_ids*sizeof(unsigned int));

	struct statistics_dimensions dimension;
	dimension.type=DIMENSION_CATEGORY_ID;
	dimension.category=&category;
	return stream_bridge_sync_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_STATISTICS_DIMENSION].id, (void *)&(dimension));
}

void *session_mac_linkinfo_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_MAC_LINKINFO].id);
}

void *session_nat_c2s_linkinfo_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_NAT_C2S_LINKINFO].id);
}

void *session_nat_s2c_linkinfo_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_NAT_S2C_LINKINFO].id);
}

void *session_gather_app_results_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_GATHER_APP_RESULT].id);
}

int session_gather_app_results_async(const struct streaminfo *a_stream, void *data)
{
	return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_GATHER_APP_RESULT].id, data);
}

int session_control_segment_ids_async(const struct streaminfo *a_stream, void *data)
{
	return session_async_bridge_set_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SEGMENT_IDS].id, data);
}

void *session_control_segment_ids_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_SEGMENT_IDS].id);
}

void *session_conn_sketch_notify_data_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_RECV_CONN_SKETCH_DATA].id);
}

void *session_business_data_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_BUSINESS_S3_FILENAME].id);
}

void *session_session_flags_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_ASYNC_SESSION_FLAGS].id);
}

void *session_application_behavior_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_APP_BEHAVIOR_RESULT].id);
}

void *session_mirrored_and_capture_packets_exec_result_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_POLICY_ACTION_PARA_EXEC_RESULT].id);
}

void *session_lua_user_defined_attribute_get(const struct streaminfo *a_stream)
{
	return session_async_bridge_get_data(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_APP_LUA_RESULT].id);
}

void *session_log_update_data_get(const struct streaminfo *a_stream, enum TSG_SERVICE service)
{
	switch (service)
	{
		case TSG_SERVICE_INTERCEPT:
			return stream_bridge_async_data_get(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_PROXY].id);

		case TSG_SERVICE_CHAINING:
			return stream_bridge_async_data_get(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SCE].id);

		case TSG_SERVICE_SHAPING:
			return stream_bridge_async_data_get(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SHAPER].id);
			
		default:
			return NULL;
	}
}

int session_log_update_data_put(const struct streaminfo *a_stream, enum TSG_SERVICE service, void *data)
{
	switch (service)
	{
		case TSG_SERVICE_INTERCEPT:
			return stream_bridge_async_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_PROXY].id, data);

		case TSG_SERVICE_CHAINING:
			return stream_bridge_async_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SCE].id, data);

		case TSG_SERVICE_SHAPING:
			return stream_bridge_async_data_put(a_stream, g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SHAPER].id, data);

		default:
			return 0;
		}
}

int tsg_bridge_init(const char *conffile)
{
	MESA_load_profile_string_def(conffile, "BRIDGE", "APP_IDENTIFY_RESULT_BRIDGE", g_tsg_bridge_para[BRIDGE_TYPE_SYNC_APP_IDENTIFY_RESULT].name, MAX_BRIDGE_NAME_LEN, "APP_IDENTIFY_RESULT_BRIDGE");
	g_tsg_bridge_para[BRIDGE_TYPE_SYNC_APP_IDENTIFY_RESULT].sync_cb=session_app_identify_result_cb;

	MESA_load_profile_string_def(conffile, "BRIDGE", "SKETCH_NOTIFY_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_RECV_CONN_SKETCH_DATA].name, MAX_BRIDGE_NAME_LEN, "TSG_CONN_SKETCH_NOTIFY_DATA");
	MESA_load_profile_string_def(conffile, "BRIDGE", "MASTER_NOTIFY_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_SEND_CONN_SKETCH_DATA].name, MAX_BRIDGE_NAME_LEN, "TSG_MASTER_NOTIFY_DATA");

	MESA_load_profile_string_def(conffile, "SESSION_FLAGS", "FLAGS_NOTIFY_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_SYNC_SESSION_FLAGS].name, MAX_BRIDGE_NAME_LEN, "SESSION_FLAGS_SYNC_NOTIFY_DATA");
	g_tsg_bridge_para[BRIDGE_TYPE_SYNC_SESSION_FLAGS].sync_cb=session_flags_identify_result_cb;

	MESA_load_profile_string_def(conffile, "BRIDGE", "SHAPING_RESULT_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_SHAPING_RESULT].name, MAX_BRIDGE_NAME_LEN, "NOTIFY_SHAPING_RESULT");
	g_tsg_bridge_para[BRIDGE_TYPE_SHAPING_RESULT].free_cb=session_matched_rules_free_by_bridge;

	MESA_load_profile_string_def(conffile, "BRIDGE", "DATA_CONTEXT_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].name, MAX_BRIDGE_NAME_LEN, "TSG_DATA_CONTEXT");
	g_tsg_bridge_para[BRIDGE_TYPE_SESSION_PROCESS_CONTEXT].free_cb=session_runtime_process_context_free_cb;

	MESA_load_profile_string_def(conffile, "BRIDGE", "ALL_RESULT_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ACTION_CONTEXT].name, MAX_BRIDGE_NAME_LEN, "TSG_ALL_CONTEXT");
	g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ACTION_CONTEXT].free_cb=session_runtime_action_context_free;

	MESA_load_profile_string_def(conffile, "BRIDGE", "GATHER_APP_RESULT_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_GATHER_APP_RESULT].name, MAX_BRIDGE_NAME_LEN, "GATHER_APP_IDENTIFY_RESULT");
	g_tsg_bridge_para[BRIDGE_TYPE_GATHER_APP_RESULT].free_cb=session_gather_app_results_free;

	MESA_load_profile_string_def(conffile, "BRIDGE", "SECURITY_RESULT_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_SECURITY_RESULT].name, MAX_BRIDGE_NAME_LEN, "TSG_POLICY_PRIORITY");
	g_tsg_bridge_para[BRIDGE_TYPE_SECURITY_RESULT].free_cb=session_matched_rules_free_by_bridge;

	MESA_load_profile_string_def(conffile, "BRIDGE", "SESSION_ATTRIBUTE_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ATTRIBUTE].name, MAX_BRIDGE_NAME_LEN, "TSG_SESSION_ATTRIBUTE");
	g_tsg_bridge_para[BRIDGE_TYPE_SESSION_ATTRIBUTE].free_cb=session_runtime_attribute_free;

	MESA_load_profile_string_def(conffile, "BRIDGE", "LINKINFO_FROM_MAC", g_tsg_bridge_para[BRIDGE_TYPE_MAC_LINKINFO].name, MAX_BRIDGE_NAME_LEN, "mirror_linkinfo_from_mac");
	MESA_load_profile_string_def(conffile, "BRIDGE", "NAT_C2S_LINKINFO", g_tsg_bridge_para[BRIDGE_TYPE_NAT_C2S_LINKINFO].name, MAX_BRIDGE_NAME_LEN, "common_link_info_c2s");
	MESA_load_profile_string_def(conffile, "BRIDGE", "NAT_S2C_LINKINFO", g_tsg_bridge_para[BRIDGE_TYPE_NAT_S2C_LINKINFO].name, MAX_BRIDGE_NAME_LEN, "common_link_info_s2c");
	MESA_load_profile_string_def(conffile, "BRIDGE", "APP_LUA_SCRIPTS_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_APP_LUA_RESULT].name, MAX_BRIDGE_NAME_LEN, "LUA_USER_DEFINED_ATTRIBUTE");
	MESA_load_profile_string_def(conffile, "BRIDGE", "BUSINESS_S3_FILENAME", g_tsg_bridge_para[BRIDGE_TYPE_BUSINESS_S3_FILENAME].name, MAX_BRIDGE_NAME_LEN, "TSG_BUSINESS_S3_FILENAME");
	MESA_load_profile_string_def(conffile, "BRIDGE", "APP_BEHAVIOR_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_APP_BEHAVIOR_RESULT].name, MAX_BRIDGE_NAME_LEN, "TSG_APPLICATION_BEHAVIOR");
	MESA_load_profile_string_def(conffile, "BRIDGE", "POLICY_ACTION_PARA_EXEC_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_POLICY_ACTION_PARA_EXEC_RESULT].name, MAX_BRIDGE_NAME_LEN, "TSG_NOTIFICATION_EXECUTION_RESULT");
	MESA_load_profile_string_def(conffile, "BRIDGE", "NOTIFY_ASYNC_FLAGS_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_ASYNC_SESSION_FLAGS].name, MAX_BRIDGE_NAME_LEN, "SESSION_FLAGS_ASYNC_NOTIFY_DATA");

	MESA_load_profile_string_def(conffile, "BRIDGE", "SYNC_APP_SIGNATURE_ID_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_APP_SIGNATURE_RESULT].name, MAX_BRIDGE_NAME_LEN, "TSG_SYNC_APP_SIGNATURE_ID");

	MESA_load_profile_string_def(conffile, "BRIDGE", "S_CHAINING_RESULT_BRIDGE_NAME",g_tsg_bridge_para[BRIDGE_TYPE_SERVICE_CHAINING_RESULT].name, MAX_BRIDGE_NAME_LEN, "SERVICE_CHAINING_RESULT");
	g_tsg_bridge_para[BRIDGE_TYPE_SERVICE_CHAINING_RESULT].free_cb=session_matched_rules_free_by_bridge;

	MESA_load_profile_string_def(conffile, "BRIDGE", "INTERCEPT_RESULT_BRIDGE_NAME",g_tsg_bridge_para[BRIDGE_TYPE_INTERCEPT_RESULT].name, MAX_BRIDGE_NAME_LEN, "INTERCEPT_RESULT");
	g_tsg_bridge_para[BRIDGE_TYPE_INTERCEPT_RESULT].free_cb=session_matched_rules_free_by_bridge;

	MESA_load_profile_string_def(conffile, "BRIDGE", "SEGMENT_IDS_BRIDGE_NAME",g_tsg_bridge_para[BRIDGE_TYPE_SEGMENT_IDS].name, MAX_BRIDGE_NAME_LEN, "SEGMENT_IDS");
	g_tsg_bridge_para[BRIDGE_TYPE_SEGMENT_IDS].free_cb=session_segment_id_free;

	MESA_load_profile_string_def(conffile, "BRIDGE", "SCE_LOG_UPDATE_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SCE].name, MAX_BRIDGE_NAME_LEN, "SCE_LOG_UPDATE");
	g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SCE].free_cb = session_sce_log_update_free;

	MESA_load_profile_string_def(conffile, "BRIDGE", "SHAPER_LOG_UPDATE_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SHAPER].name, MAX_BRIDGE_NAME_LEN, "SHAPER_LOG_UPDATE");
	g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_SHAPER].free_cb = session_shaper_log_update_free;

	MESA_load_profile_string_def(conffile, "BRIDGE", "PROXY_LOG_UPDATE_BRIDGE_NAME", g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_PROXY].name, MAX_BRIDGE_NAME_LEN, "PROXY_LOG_UPDATE");
	g_tsg_bridge_para[BRIDGE_TYPE_LOG_UPDATE_PROXY].free_cb = session_proxy_log_update_free;

	// statistics dimensions
    MESA_load_profile_string_def(conffile, "BRIDGE", "STATISTICS_DIMENSIONS", g_tsg_bridge_para[BRIDGE_TYPE_STATISTICS_DIMENSION].name, MAX_BRIDGE_NAME_LEN, "STATISTICS_DIMENSIONS");

	for(int i=0; i<BRIDGE_TYPE_MAX; i++)
	{
		g_tsg_bridge_para[i].id=stream_bridge_build(g_tsg_bridge_para[i].name, "w");
		if(g_tsg_bridge_para[i].id<0)
		{
			MASTER_LOG(g_tsg_para.logger, RLOG_LV_FATAL, LOG_MODULE_BRIDGE, "stream_bridge_build is error, bridge_name: %s", g_tsg_bridge_para[i].name);
			return -1;
		}

		if(g_tsg_bridge_para[i].sync_cb)
		{	
			int ret=stream_bridge_register_data_sync_cb(g_tsg_bridge_para[i].id, g_tsg_bridge_para[i].sync_cb);
			if(ret<0)
			{
				MASTER_LOG(g_tsg_para.logger, RLOG_LV_FATAL, LOG_MODULE_BRIDGE, "Register callback failed, bridge_name: %d",g_tsg_bridge_para[i].name);
				return -1;
			}
		}

		if(g_tsg_bridge_para[i].free_cb)
		{
			int ret=stream_bridge_register_data_free_cb(g_tsg_bridge_para[i].id, g_tsg_bridge_para[i].free_cb);
			if(ret<0)
			{
				MASTER_LOG(g_tsg_para.logger, RLOG_LV_FATAL, LOG_MODULE_BRIDGE, "Register async free callback failed, bridge_name: %d", g_tsg_bridge_para[i].name);
				return -1;
			}
		}
	}

	return 0;
}