-
Notifications
You must be signed in to change notification settings - Fork 3
/
cdr.c
1751 lines (1532 loc) · 53.8 KB
/
cdr.c
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
#include <ctype.h>
#include <json.h>
#include "cdr.h"
#include "medmysql.h"
#include "medredis.h"
#include "config.h"
#include "mediator.h"
static int cdr_create_cdrs(GQueue *records,
cdr_entry_t **cdrs, uint64_t *cdr_count, uint64_t *alloc_size, uint8_t *trash, int do_intermediate);
static int cdr_fill_record(cdr_entry_t *cdr);
static void cdr_set_provider(cdr_entry_t *cdr);
static const char* cdr_map_status(const char *sip_status)
{
if(strncmp("200", sip_status, 3) == 0)
{
return CDR_STATUS_OK;
}
if(strncmp("480", sip_status, 3) == 0)
{
return CDR_STATUS_NA;
}
if(strncmp("487", sip_status, 3) == 0)
{
return CDR_STATUS_CANCEL;
}
if(strncmp("486", sip_status, 3) == 0)
{
return CDR_STATUS_BUSY;
}
if(strncmp("408", sip_status, 3) == 0)
{
return CDR_STATUS_TIMEOUT;
}
if(strncmp("404", sip_status, 3) == 0)
{
return CDR_STATUS_OFFLINE;
}
return CDR_STATUS_UNKNOWN;
}
static void free_cdrs(cdr_entry_t **cdrs, uint64_t cdr_count) {
if (!*cdrs)
return;
for (uint64_t i = 0; i < cdr_count; i++) {
cdr_entry_t *cdr = &(*cdrs)[i];
#define F(f, x) g_string_free(cdr->f, TRUE);
#define FA(f, a, x) for (unsigned int j = 0; j < a; j++) g_string_free(cdr->f[j], TRUE);
#include "cdr_field_names.inc"
#undef F
#undef FA
}
g_free(*cdrs);
*cdrs = NULL;
}
int cdr_process_records(GQueue *records, uint64_t *ext_count,
struct medmysql_batches *batches, int do_intermediate)
{
int ret = 0;
uint8_t trash = 0;
int timed_out = 0;
uint16_t msg_invites = 0;
uint16_t msg_byes = 0;
uint16_t msg_unknowns = 0;
uint16_t invite_200 = 0;
med_entry_t *first = g_queue_peek_head(records);
char *callid = first->callid;
int has_redis = 0, has_mysql = 0;
cdr_entry_t *cdrs = NULL;
uint64_t cdr_count, alloc_size = 0;
*ext_count = 0;
for (GList *l = records->head; l; l = l->next)
{
med_entry_t *e = l->data;
if (e->timed_out)
timed_out = 1;
if(e->method == MED_INVITE)
{
++msg_invites;
if(strncmp("200", e->sip_code, 3) == 0)
{
++invite_200;
}
}
else if(e->method == MED_BYE)
{
++msg_byes;
}
else
{
if (e->valid)
L_DEBUG("Unrecognized record with method '%s' for cid '%s'\n", e->sip_method, callid);
++msg_unknowns;
}
if (check_shutdown())
return 1;
if (e->redis)
has_redis = 1;
else
has_mysql = 1;
}
L_DEBUG("%d INVITEs, %d BYEs, %d unrecognized", msg_invites, msg_byes, msg_unknowns);
if(msg_invites > 0)
{
if(msg_byes > 0 || do_intermediate || timed_out || invite_200 == 0)
{
if(/*msg_byes > 2*/ 0)
{
L_WARNING("Multiple (%d) BYE messages for callid '%s' found, trashing...",
msg_byes, callid);
trash = 1;
}
else
{
if(cdr_create_cdrs(records, &cdrs, &cdr_count, &alloc_size, &trash, do_intermediate) != 0)
goto error;
else
{
*ext_count = cdr_count;
if(cdr_count > 0)
{
if(config_dumpcdr)
{
/* cdr_log_records(cdrs, cdr_count); */
}
int insert_ret = medmysql_insert_cdrs(cdrs, cdr_count, batches);
if(insert_ret < 0)
{
goto error;
}
else if (insert_ret == 0)
{
if (has_redis)
{
if(medredis_backup_entries(records) != 0)
goto error;
}
if (has_mysql)
{
if(medmysql_backup_entries(callid, batches) != 0)
goto error;
}
if (config_intermediate_interval)
{
if(medmysql_delete_intermediate(cdrs, cdr_count, batches) != 0)
goto error;
}
}
else if (insert_ret == 1)
; // do nothing - intermediate CDR has been created
else
goto error;
}
else
{
/* TODO: no CDRs created? */
}
free_cdrs(&cdrs, alloc_size);
cdrs = NULL;
}
}
}
else
{
/*
L_DEBUG("No BYE message for callid '%s' found, skipping...",
callid);
*/
trash = 1;
}
}
else
{
/*L_WARNING("No INVITE message for callid '%s' found, trashing...", callid);*/
trash = 1;
}
if(trash)
{
if (has_redis)
{
if(medredis_trash_entries(records) != 0)
goto error;
}
if (has_mysql)
{
if(medmysql_trash_entries(callid, batches) != 0)
goto error;
}
}
return ret;
error:
if(cdrs)
free_cdrs(&cdrs, alloc_size);
return -1;
}
static inline int hexval(unsigned char c) {
if (c >= '0' && c <= '9')
return c - '0';
if (c >= 'a' && c <= 'f')
return 10 + c - 'a';
if (c >= 'A' && c <= 'F')
return 10 + c - 'A';
return -1;
}
/* un-uri-escape string in place */
static void uri_unescape(GString *str) {
unsigned char *s;
unsigned int c;
int cv;
GString *dup = g_string_new("");
s = (unsigned char *) str->str;
while (*s) {
if (*s != '%') {
copy:
g_string_append_c(dup, *s);
s++;
continue;
}
cv = hexval(s[1]);
if (cv == -1)
goto copy;
c = cv << 4;
cv = hexval(s[2]);
if (cv == -1)
goto copy;
c |= cv;
if (!c) /* disallow null bytes */
goto copy;
g_string_append_c(dup, c);
s += 3;
}
g_string_truncate(str, 0);
g_string_append_len(str, dup->str, dup->len);
g_string_free(dup, TRUE);
}
static int cdr_parse_json_get_uint8(json_object *obj, const char *key, uint8_t *outp) {
json_object *int_obj;
if (!json_object_object_get_ex(obj, key, &int_obj))
return 0;
if (!json_object_is_type(int_obj, json_type_int))
return 0;
*outp = json_object_get_int64(int_obj);
return 1;
}
static int cdr_parse_json_get_uint8_clamped(json_object *obj, const char *key, uint8_t *outp, uint8_t min, uint8_t max) {
if(!cdr_parse_json_get_uint8(obj, key, outp))
return 0;
if (*outp > max)
*outp = max;
else if (*outp < min)
*outp = min;
return 1;
}
static int cdr_parse_json_get_uint64(json_object *obj, const char *key, uint64_t *outp) {
json_object *int_obj;
if (!json_object_object_get_ex(obj, key, &int_obj))
return 0;
if (!json_object_is_type(int_obj, json_type_int))
return 0;
*outp = json_object_get_int64(int_obj);
return 1;
}
static int cdr_parse_json_get_int(json_object *obj, const char *key, int *outp) {
json_object *int_obj;
if (!json_object_object_get_ex(obj, key, &int_obj))
return 0;
if (!json_object_is_type(int_obj, json_type_int))
return 0;
*outp = json_object_get_int64(int_obj);
return 1;
}
static int cdr_parse_json_get_int_clamped(json_object *obj, const char *key, int *outp, int min, int max) {
if(!cdr_parse_json_get_int(obj, key, outp))
return 0;
if (*outp > max)
*outp = max;
else if (*outp < min)
*outp = min;
return 1;
}
static int cdr_parse_json_get_double(json_object *obj, const char *key, double *outp) {
json_object *int_obj;
if (!json_object_object_get_ex(obj, key, &int_obj))
return 0;
if (!json_object_is_type(int_obj, json_type_double))
return 0;
*outp = json_object_get_double(int_obj);
return 1;
}
static int cdr_parse_json_get_double_clamped(json_object *obj, const char *key, double *outp, double min, double max) {
if(!cdr_parse_json_get_double(obj, key, outp))
return 0;
if (*outp > max)
*outp = max;
else if (*outp < min)
*outp = min;
return 1;
}
static int cdr_parse_json_get_g_string(json_object *obj, const char *key, GString *outp) {
json_object *str_obj;
if (!json_object_object_get_ex(obj, key, &str_obj))
return 0;
if (!json_object_is_type(str_obj, json_type_string))
return 0;
// TODO: if string equals to <null>, null or NULL set it to an empty string '\0'
g_string_assign(outp, json_object_get_string(str_obj));
return 1;
}
static int cdr_parse_srcleg_json(json_object *json, cdr_entry_t *cdr)
{
// source_user_id
if (!cdr_parse_json_get_g_string(json, "uuid", cdr->source_user_id)) {
L_ERROR("Call-Id '%s' does not contain 'uuid' key (source user id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_user
if (!cdr_parse_json_get_g_string(json, "u", cdr->source_user)) {
L_ERROR("Call-Id '%s' does not contain 'u' key (source user), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_domain
if (!cdr_parse_json_get_g_string(json, "d", cdr->source_domain)) {
L_ERROR("Call-Id '%s' does not contain 'd' key (source domain), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_cli
if (!cdr_parse_json_get_g_string(json, "cli", cdr->source_cli)) {
L_ERROR("Call-Id '%s' does not contain 'cli' key (source cli), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_ext_subscriber_id
if (!cdr_parse_json_get_g_string(json, "s_id", cdr->source_ext_subscriber_id)) {
L_ERROR("Call-Id '%s' does not contain 's_id' key (source external subscriber id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
uri_unescape(cdr->source_ext_subscriber_id);
// source_ext_contract_id
if (!cdr_parse_json_get_g_string(json, "c_id", cdr->source_ext_contract_id)) {
L_ERROR("Call-Id '%s' does not contain 'c_id' key (source external contract id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
uri_unescape(cdr->source_ext_contract_id);
// source_account_id
if (!cdr_parse_json_get_uint64(json, "a_id", &cdr->source_account_id)) {
L_ERROR("Call-Id '%s' does not contain 'a_id' key (source account id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// peer_auth_user
if (!cdr_parse_json_get_g_string(json, "pau", cdr->peer_auth_user)) {
L_ERROR("Call-Id '%s' does not contain 'pau' key (peer auth user), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// peer_auth_realm
if (!cdr_parse_json_get_g_string(json, "par", cdr->peer_auth_realm)) {
L_ERROR("Call-Id '%s' does not contain 'par' key (peer auth realm), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_clir
if (!cdr_parse_json_get_uint8_clamped(json, "clir", &cdr->source_clir, 0, 1)) {
L_ERROR("Call-Id '%s' does not contain 'clir' key (source account id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// call_type
if (!cdr_parse_json_get_g_string(json, "s", cdr->call_type)) {
L_ERROR("Call-Id '%s' does not contain 's' key (call type), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_ip
if (!cdr_parse_json_get_g_string(json, "ip", cdr->source_ip)) {
L_ERROR("Call-Id '%s' does not contain 'ip' key (source ip), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// init_time
if (!cdr_parse_json_get_double(json, "t", &cdr->init_time)) {
L_ERROR("Call-Id '%s' does not contain 't' key (source init time), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
json_object *temp_value;
// source_gpp
if(!json_object_object_get_ex(json, "gpp", &temp_value))
{
L_ERROR("Call-Id '%s' does not contain 'gpp' key (source gpp list), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
if (!json_object_is_type(temp_value, json_type_array)) {
L_ERROR("Call-Id '%s' key 'gpp' doesn't contain an array, '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
if(json_object_array_length(temp_value) != 10)
{
L_ERROR("Call-Id '%s' has only '%zu' source gpp fields, they should be 10, '%s'", cdr->call_id->str, json_object_array_length(temp_value), json_object_get_string(json));
goto err;
}
int i;
for(i = 0; i < 10; ++i)
{
g_string_assign(cdr->source_gpp[i], json_object_get_string(json_object_array_get_idx(temp_value, i)) ? : "");
}
// source_lnp_prefix
if(!json_object_object_get_ex(json, "lnp_p", &temp_value))
{
if (strict_leg_tokens) { // TODO: "Strict acc fields (move to trash otherwise)" What is the meaning of this param??? is it still necessary
L_ERROR("Call-Id '%s' does not contain 'lnp_p' key (source lnp prefix), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
} else {
g_string_truncate(cdr->source_lnp_prefix, 0);
g_string_truncate(cdr->source_user_out, 0);
L_WARNING("Call-Id '%s' does not contain 'lnp_p' key, using empty source lnp prefix and source user out '%s'", cdr->call_id->str, json_object_get_string(json));
goto ret;
}
}
g_string_assign(cdr->source_lnp_prefix, json_object_get_string(temp_value));
// source_user_out
if(!json_object_object_get_ex(json, "cli_out", &temp_value))
{
if (strict_leg_tokens) { // TODO: "Strict acc fields (move to trash otherwise)" What is the meaning of this param??? is it still necessary
L_ERROR("Call-Id '%s' does not contain 'cli_out' key (source user out), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
} else {
g_string_truncate(cdr->source_user_out, 0);
L_WARNING("Call-Id '%s' does not contain 'cli_out' key, using empty source user out '%s'", cdr->call_id->str, json_object_get_string(json));
goto ret;
}
}
g_string_assign(cdr->source_user_out, json_object_get_string(temp_value));
uri_unescape(cdr->source_user_out);
// source_lnp_type
if (!cdr_parse_json_get_g_string(json, "lnp_t", cdr->source_lnp_type)) {
L_ERROR("Call-Id '%s' does not contain 'lnp_t' key (source lnp type), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// header_pai
if (!cdr_parse_json_get_g_string(json, "pai", cdr->header_pai)) {
L_ERROR("Call-Id '%s' does not contain 'pai' key (P-Asserted-Identity header), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// header_diversion
if (!cdr_parse_json_get_g_string(json, "div", cdr->header_diversion)) {
L_ERROR("Call-Id '%s' does not contain 'div' key (Diversion header), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// group
if (!cdr_parse_json_get_g_string(json, "cid", cdr->group)) {
L_ERROR("Call-Id '%s' does not contain 'cid' key (group info), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// header_u2u
if (!cdr_parse_json_get_g_string(json, "u2u", cdr->header_u2u)) {
L_ERROR("Call-Id '%s' does not contain 'u2u' key (User-to-User header), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_lcr_id
if (!cdr_parse_json_get_uint64(json, "lcr", &cdr->source_lcr_id)) {
L_DEBUG("Call-Id '%s' does not contain 'lcr' key (source lcr id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_concurrent_calls_quota
if (!cdr_parse_json_get_g_string(json, "cc_quota", cdr->source_concurrent_calls_quota)) {
L_DEBUG("Call-Id '%s' does not contain 'cc_quota' key (source concurrent calls quota), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_concurrent_calls_count
if (!cdr_parse_json_get_g_string(json, "cc_sub", cdr->source_concurrent_calls_count)) {
L_DEBUG("Call-Id '%s' does not contain 'cc_sub' key (source concurrent calls count), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_concurrent_calls_count_customer
if (!cdr_parse_json_get_g_string(json, "cc_cust", cdr->source_concurrent_calls_count_customer)) {
L_DEBUG("Call-Id '%s' does not contain 'cc_cust' key (source concurrent calls count customer), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// source_last_hih
if (!cdr_parse_json_get_g_string(json, "last_hih", cdr->source_last_hih)) {
L_DEBUG("Call-Id '%s' does not contain 'last_hih' key (source last hih), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// header_ppi
if (!cdr_parse_json_get_g_string(json, "ppi", cdr->header_ppi)) {
L_ERROR("Call-Id '%s' does not contain 'ppi' key (P-Preferred-Identity header), '%s'", cdr->call_id->str, json_object_get_string(json));
/// Simply return 0 in order to avoid issues with ACC records in the OLD format during an upgrade
/// Added in mr12.5, it should be changed to 'err' in mr13.+
/// goto err;
goto ret;
}
ret:
return 0;
err:
return -1;
}
static int cdr_parse_dstleg_json(json_object *json, cdr_entry_t *cdr)
{
// split
if (!cdr_parse_json_get_uint8(json, "plu", &cdr->split)) {
L_ERROR("Call-Id '%s' does not contain 'plu' key (split flag), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_ext_subscriber_id
if (!cdr_parse_json_get_g_string(json, "s_id", cdr->destination_ext_subscriber_id)) {
L_ERROR("Call-Id '%s' does not contain 's_id' key (destination external subscriber id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
uri_unescape(cdr->destination_ext_subscriber_id);
// destination_ext_contract_id
if (!cdr_parse_json_get_g_string(json, "c_id", cdr->destination_ext_contract_id)) {
L_ERROR("Call-Id '%s' does not contain 'c_id' key (destination external contract id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
uri_unescape(cdr->destination_ext_contract_id);
// destination_account_id
if (!cdr_parse_json_get_uint64(json, "a_id", &cdr->destination_account_id)) {
L_ERROR("Call-Id '%s' does not contain 'a_id' key (destination account id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_dialed
if (!cdr_parse_json_get_g_string(json, "dialed", cdr->destination_dialed)) {
L_ERROR("Call-Id '%s' does not contain 'dialed' key (dialed digit), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_user_id
if (!cdr_parse_json_get_g_string(json, "uuid", cdr->destination_user_id)) {
L_ERROR("Call-Id '%s' does not contain 'uuid' key (destination user id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_user
if (!cdr_parse_json_get_g_string(json, "u", cdr->destination_user)) {
L_ERROR("Call-Id '%s' does not contain 'u' key (destination user), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_domain
if (!cdr_parse_json_get_g_string(json, "d", cdr->destination_domain)) {
L_ERROR("Call-Id '%s' does not contain 'd' key (destination domain), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_user_in
if (!cdr_parse_json_get_g_string(json, "u_in", cdr->destination_user_in)) {
L_ERROR("Call-Id '%s' does not contain 'u_in' key (incoming destination user), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_domain_in
if (!cdr_parse_json_get_g_string(json, "d_in", cdr->destination_domain_in)) {
L_ERROR("Call-Id '%s' does not contain 'd_in' key (incoming destination domain), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_lcr_id
if (!cdr_parse_json_get_uint64(json, "lcr", &cdr->destination_lcr_id)) {
L_ERROR("Call-Id '%s' does not contain 'lcr' key (lcr id), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
json_object *temp_value;
// destination_gpp
if(!json_object_object_get_ex(json, "gpp", &temp_value))
{
L_ERROR("Call-Id '%s' does not contain 'gpp' key (source gpp list), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
if (!json_object_is_type(temp_value, json_type_array)) {
L_ERROR("Call-Id '%s' key 'gpp' doesn't contain an array, '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
if(json_object_array_length(temp_value) != 10)
{
L_ERROR("Call-Id '%s' has only '%zu' destination gpp fields, they should be 10, '%s'", cdr->call_id->str, json_object_array_length(temp_value), json_object_get_string(json));
goto err;
}
int i;
for(i = 0; i < 10; ++i)
{
g_string_assign(cdr->destination_gpp[i], json_object_get_string(json_object_array_get_idx(temp_value, i)) ? : "");
}
// destination_lnp_prefix
if(!json_object_object_get_ex(json, "lnp_p", &temp_value))
{
if (strict_leg_tokens) { // TODO: "Strict acc fields (move to trash otherwise)" What is the meaning of this param??? is it still necessary
L_ERROR("Call-Id '%s' does not contain 'lnp_p' key (destination lnp prefix), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
} else {
g_string_truncate(cdr->destination_lnp_prefix, 0);
g_string_truncate(cdr->destination_user_out, 0);
L_WARNING("Call-Id '%s' does not contain 'lnp_p' key, using empty destination lnp prefix and destination user out '%s'", cdr->call_id->str, json_object_get_string(json));
goto ret;
}
}
g_string_assign(cdr->destination_lnp_prefix, json_object_get_string(temp_value));
// destination_user_out
if(!json_object_object_get_ex(json, "u_out", &temp_value))
{
if (strict_leg_tokens) { // TODO: "Strict acc fields (move to trash otherwise)" What is the meaning of this param??? is it still necessary
L_ERROR("Call-Id '%s' does not contain 'cli_out' key (source user out), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
} else {
g_string_truncate(cdr->destination_user_out, 0);
L_WARNING("Call-Id '%s' does not contain 'cli_out' key, using empty destination user out '%s'", cdr->call_id->str, json_object_get_string(json));
goto ret;
}
}
g_string_assign(cdr->destination_user_out, json_object_get_string(temp_value));
uri_unescape(cdr->destination_user_out);
// destination_lnp_type
if (!cdr_parse_json_get_g_string(json, "lnp_t", cdr->destination_lnp_type)) {
L_ERROR("Call-Id '%s' does not contain 'lnp_t' key (destination lnp type), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// furnished_charging_info
if (!cdr_parse_json_get_g_string(json, "fci", cdr->furnished_charging_info)) {
L_ERROR("Call-Id '%s' does not contain 'fci' key (furnished charging info), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_concurrent_calls_quota
if (!cdr_parse_json_get_g_string(json, "cc_quota", cdr->destination_concurrent_calls_quota)) {
L_DEBUG("Call-Id '%s' does not contain 'cc_quota' key (destination concurrent calls quota), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_concurrent_calls_count
if (!cdr_parse_json_get_g_string(json, "cc_sub", cdr->destination_concurrent_calls_count)) {
L_DEBUG("Call-Id '%s' does not contain 'cc_sub' key (destination concurrent calls count), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// destination_concurrent_calls_count_customer
if (!cdr_parse_json_get_g_string(json, "cc_cust", cdr->destination_concurrent_calls_count_customer)) {
L_DEBUG("Call-Id '%s' does not contain 'cc_cust' key (destination concurrent calls count customer), '%s'", cdr->call_id->str, json_object_get_string(json));
goto err;
}
// hg_ext_response
if (!cdr_parse_json_get_g_string(json, "hg_ext_response", cdr->hg_ext_response)) {
L_DEBUG("Call-Id '%s' does not contain 'hg_ext_response' key (hunt group extension response), '%s'", cdr->call_id->str, json_object_get_string(json));
}
// r_user
if (!cdr_parse_json_get_g_string(json, "r_user", cdr->r_user)) {
L_DEBUG("Call-Id '%s' does not contain 'r_user' key, '%s'", cdr->call_id->str, json_object_get_string(json));
}
// responder_number
if (!cdr_parse_json_get_g_string(json, "r_ua", cdr->r_ua)) {
L_DEBUG("Call-Id '%s' does not contain 'r_ua' key, '%s'", cdr->call_id->str, json_object_get_string(json));
}
ret:
return 0;
err:
return -1;
}
static int cdr_parse_srcleg_list(char *srcleg, cdr_entry_t *cdr)
{
char *tmp1, *tmp2;
tmp2 = srcleg;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source user id, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_user_id, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source user, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_user, tmp2);
uri_unescape(cdr->source_user);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source domain, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_domain, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source cli, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_cli, tmp2);
uri_unescape(cdr->source_cli);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source external subscriber id, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_ext_subscriber_id, tmp2);
uri_unescape(cdr->source_ext_subscriber_id);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source external contract id, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_ext_contract_id, tmp2);
uri_unescape(cdr->source_ext_contract_id);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source account id, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
cdr->source_account_id = atoll(tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated peer auth user, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->peer_auth_user, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated peer auth realm, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->peer_auth_realm, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source clir status, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
cdr->source_clir = atoi(tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated call type, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->call_type, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source ip, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_ip, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source init time, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
cdr->init_time = g_strtod(tmp2, NULL);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
int i;
for(i = 0; i < 10; ++i)
{
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source gpp %d, '%s'", cdr->call_id->str, i, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_gpp[i], tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
}
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
if (strict_leg_tokens) {
L_ERROR("Call-Id '%s' has no separated source lnp prefix, '%s'", cdr->call_id->str, tmp2);
return -1;
} else {
g_string_truncate(cdr->source_lnp_prefix, 0);
g_string_truncate(cdr->source_user_out, 0);
L_WARNING("Call-Id '%s' src leg has missing tokens (using empty lnp prefix, user out) '%s'", cdr->call_id->str, tmp2);
return 0;
}
}
*tmp1 = '\0';
g_string_assign(cdr->source_lnp_prefix, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
if (strict_leg_tokens) {
L_ERROR("Call-Id '%s' has no separated source user out, '%s'", cdr->call_id->str, tmp2);
return -1;
} else {
g_string_truncate(cdr->source_user_out, 0);
L_WARNING("Call-Id '%s' src leg has missing tokens (using empty user out) '%s'", cdr->call_id->str, tmp2);
return 0;
}
}
*tmp1 = '\0';
g_string_assign(cdr->source_user_out, tmp2);
uri_unescape(cdr->source_user_out);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated source lnp type, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->source_lnp_type, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated P-Asserted-Identity header, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->header_pai, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated Diversion header, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->header_diversion, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated group info, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->group, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{
L_ERROR("Call-Id '%s' has no separated User-to-User header, '%s'", cdr->call_id->str, tmp2);
return -1;
}
*tmp1 = '\0';
g_string_assign(cdr->header_u2u, tmp2);
*tmp1 = MED_SEP;
tmp2 = ++tmp1;
tmp1 = strchr(tmp2, MED_SEP);
if(tmp1 == NULL)
{