forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.c
1671 lines (1586 loc) · 44.5 KB
/
action.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
/*
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* Kamailio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
/*!
* \file
* \brief Kamailio core :: Config file actions
* \ingroup core
* Module: \ref core
*/
#include "comp_defs.h"
#include "action.h"
#include "config.h"
#include "error.h"
#include "dprint.h"
#include "proxy.h"
#include "forward.h"
#include "udp_server.h"
#include "route.h"
#include "parser/msg_parser.h"
#include "parser/parse_uri.h"
#include "ut.h"
#include "lvalue.h"
#include "sr_module.h"
#include "select_buf.h"
#include "mem/mem.h"
#include "globals.h"
#include "dset.h"
#include "onsend.h"
#include "fmsg.h"
#include "resolve.h"
#ifdef USE_TCP
#include "tcp_server.h"
#endif
#ifdef USE_SCTP
#include "sctp_core.h"
#endif
#include "switch.h"
#include "events.h"
#include "cfg/cfg_struct.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
#ifdef DEBUG_DMALLOC
#include <dmalloc.h>
#endif
int _last_returned_code = 0;
struct onsend_info* p_onsend=0; /* onsend route send info */
/* current action executed from config file */
static cfg_action_t *_cfg_crt_action = 0;
/*!< maximum number of recursive calls for blocks of actions */
static unsigned int max_recursive_level = 256;
void set_max_recursive_level(unsigned int lev)
{
max_recursive_level = lev;
}
/* return current action executed from config file */
cfg_action_t *get_cfg_crt_action(void)
{
return _cfg_crt_action;
}
/* return line in config for current executed action */
int get_cfg_crt_line(void)
{
if(_cfg_crt_action==0)
return 0;
return _cfg_crt_action->cline;
}
/* return name of config for current executed action */
char *get_cfg_crt_name(void)
{
if(_cfg_crt_action==0)
return 0;
return _cfg_crt_action->cfile;
}
/* handle the exit code of a module function call.
* (used internally in do_action())
* @param h - script handle (h->last_retcode and h->run_flags will be set).
* @param ret - module function (v0 or v2) retcode
* Side-effects: sets _last_returned_code
*/
#define MODF_HANDLE_RETCODE(h, ret) \
do { \
/* if (unlikely((ret)==0)) (h)->run_flags|=EXIT_R_F; */ \
(h)->run_flags |= EXIT_R_F & (((ret) != 0) -1); \
(h)->last_retcode=(ret); \
_last_returned_code = (h)->last_retcode; \
} while(0)
/* frees parameters converted using MODF_RVE_PARAM_CONVERT() from dst.
* (used internally in do_action())
* Assumes src is unchanged.
* Side-effects: clobbers i (int).
*/
#define MODF_RVE_PARAM_FREE(cmd, src, dst) \
for (i=0; i < (dst)[1].u.number; i++) { \
if ((src)[i+2].type == RVE_ST && (dst)[i+2].u.data) { \
if ((dst)[i+2].type == RVE_FREE_FIXUP_ST) {\
/* call free_fixup (which should restore the original
string) */ \
(void)call_fixup((cmd)->free_fixup, &(dst)[i+2].u.data, i+1); \
} else if ((dst)[i+2].type == FPARAM_DYN_ST) {\
/* completely frees fparam and restore original string */\
fparam_free_restore(&(dst)[i+2].u.data); \
} \
/* free allocated string */ \
pkg_free((dst)[i+2].u.data); \
(dst)[i+2].u.data = 0; \
} \
}
/* fills dst from src, converting RVE_ST params to STRING_ST.
* (used internally in do_action())
* @param src - source action_u_t array, as in the action structure
* @param dst - destination action_u_t array, will be filled from src.
* WARNING: dst must be cleaned when done, use MODULE_RVE_PARAM_FREE()
* Side-effects: clobbers i (int), s (str), rv (rvalue*), might jump to error.
*/
#define MODF_RVE_PARAM_CONVERT(h, msg, cmd, src, dst) \
do { \
(dst)[1]=(src)[1]; \
for (i=0; i < (src)[1].u.number; i++) { \
if ((src)[2+i].type == RVE_ST) { \
rv=rval_expr_eval((h), (msg), (src)[i+2].u.data); \
if (unlikely(rv == 0 || \
rval_get_str((h), (msg), &s, rv, 0) < 0)) { \
rval_destroy(rv); \
ERR("failed to convert RVE to string\n"); \
(dst)[1].u.number = i; \
MODF_RVE_PARAM_FREE(cmd, src, dst); \
goto error; \
} \
(dst)[i+2].type = STRING_RVE_ST; \
(dst)[i+2].u.string = s.s; \
(dst)[i+2].u.str.len = s.len; \
rval_destroy(rv); \
if ((cmd)->fixup) {\
if ((cmd)->free_fixup) {\
if (likely( call_fixup((cmd)->fixup, \
&(dst)[i+2].u.data, i+1) >= 0) ) { \
/* success => mark it for calling free fixup */ \
if (likely((dst)[i+2].u.data != s.s)) \
(dst)[i+2].type = RVE_FREE_FIXUP_ST; \
} else { \
/* error calling fixup => mark conv. parameter \
and return error */ \
(dst)[1].u.number = i; \
ERR("runtime fixup failed for %s param %d\n", \
(cmd)->name, i+1); \
MODF_RVE_PARAM_FREE(cmd, src, dst); \
goto error; \
} \
} else if ((cmd)->fixup_flags & FIXUP_F_FPARAM_RVE) { \
if (likely( call_fixup((cmd)->fixup, \
&(dst)[i+2].u.data, i+1) >= 0)) { \
if ((dst)[i+2].u.data != s.s) \
(dst)[i+2].type = FPARAM_DYN_ST; \
} else { \
/* error calling fixup => mark conv. parameter \
and return error */ \
(dst)[1].u.number = i; \
ERR("runtime fixup failed for %s param %d\n", \
(cmd)->name, i+1); \
MODF_RVE_PARAM_FREE(cmd, src, dst); \
goto error; \
}\
} \
} \
} else \
(dst)[i+2]=(src)[i+2]; \
} \
} while(0)
/* call a module function with normal STRING_ST params.
* (used internally in do_action())
* @param f_type - cmd_function type
* @param h
* @param msg
* @param src - source action_u_t array (e.g. action->val)
* @param params... - variable list of parameters, passed to the module
* function
* Side-effects: sets ret, clobbers i (int), s (str), rv (rvalue*), cmd,
* might jump to error.
*
*/
#ifdef __SUNPRO_C
#define MODF_CALL(f_type, h, msg, src, ...) \
do { \
cmd=(src)[0].u.data; \
ret=((f_type)cmd->function)((msg), __VAR_ARGS__); \
MODF_HANDLE_RETCODE(h, ret); \
} while (0)
#else /* ! __SUNPRO_C (gcc, icc a.s.o) */
#define MODF_CALL(f_type, h, msg, src, params...) \
do { \
cmd=(src)[0].u.data; \
ret=((f_type)cmd->function)((msg), ## params ); \
MODF_HANDLE_RETCODE(h, ret); \
} while (0)
#endif /* __SUNPRO_C */
/* call a module function with possible RVE params.
* (used internally in do_action())
* @param f_type - cmd_function type
* @param h
* @param msg
* @param src - source action_u_t array (e.g. action->val)
* @param dst - temporary action_u_t array used for conversions. It can be
* used for the function parameters. It's contents it's not
* valid after the call.
* @param params... - variable list of parameters, passed to the module
* function
* Side-effects: sets ret, clobbers i (int), s (str), rv (rvalue*), f, dst,
* might jump to error.
*
*/
#ifdef __SUNPRO_C
#define MODF_RVE_CALL(f_type, h, msg, src, dst, ...) \
do { \
cmd=(src)[0].u.data; \
MODF_RVE_PARAM_CONVERT(h, msg, cmd, src, dst); \
ret=((f_type)cmd->function)((msg), __VAR_ARGS__); \
MODF_HANDLE_RETCODE(h, ret); \
/* free strings allocated by us or fixups */ \
MODF_RVE_PARAM_FREE(cmd, src, dst); \
} while (0)
#else /* ! __SUNPRO_C (gcc, icc a.s.o) */
#define MODF_RVE_CALL(f_type, h, msg, src, dst, params...) \
do { \
cmd=(src)[0].u.data; \
MODF_RVE_PARAM_CONVERT(h, msg, cmd, src, dst); \
ret=((f_type)cmd->function)((msg), ## params ); \
MODF_HANDLE_RETCODE(h, ret); \
/* free strings allocated by us or fixups */ \
MODF_RVE_PARAM_FREE(cmd, src, dst); \
} while (0)
#endif /* __SUNPRO_C */
/* ret= 0! if action -> end of list(e.g DROP),
> 0 to continue processing next actions
and <0 on error */
int do_action(struct run_act_ctx* h, struct action* a, struct sip_msg* msg)
{
int ret;
int v;
struct dest_info dst;
char* tmp;
char *new_uri, *end, *crt;
sr31_cmd_export_t* cmd;
int len;
int user;
struct sip_uri uri, next_hop;
struct sip_uri *u;
unsigned short port;
str* dst_host;
int i, flags;
avp_t* avp;
struct search_state st;
struct switch_cond_table* sct;
struct switch_jmp_table* sjt;
struct rval_expr* rve;
struct match_cond_table* mct;
struct rvalue* rv;
struct rvalue* rv1;
struct rval_cache c1;
str s;
void *srevp[2];
/* temporary storage space for a struct action.val[] working copy
(needed to transform RVE intro STRING before calling module
functions). [0] is not used (corresp. to the module export pointer),
[1] contains the number of params, and [2..] the param values.
We need [1], because some fixup function use it
(see fixup_get_param_count()). */
static action_u_t mod_f_params[MAX_ACTIONS];
/* reset the value of error to E_UNSPEC so avoid unknowledgable
functions to return with error (status<0) and not setting it
leaving there previous error; cache the previous value though
for functions which want to process it */
prev_ser_error=ser_error;
ser_error=E_UNSPEC;
/* hook for every executed action (in use by cfg debugger) */
if(unlikely(sr_event_enabled(SREV_CFG_RUN_ACTION)))
{
srevp[0] = (void*)a;
srevp[1] = (void*)msg;
sr_event_exec(SREV_CFG_RUN_ACTION, (void*)srevp);
}
ret=E_BUG;
switch ((unsigned char)a->type){
case DROP_T:
switch(a->val[0].type){
case NUMBER_ST:
ret=(int) a->val[0].u.number;
break;
case RVE_ST:
rve=(struct rval_expr*)a->val[0].u.data;
rval_expr_eval_int(h, msg, &ret, rve);
break;
case RETCODE_ST:
ret=h->last_retcode;
break;
default:
BUG("unexpected subtype %d in DROP_T\n",
a->val[0].type);
ret=0;
goto error;
}
h->run_flags|=(unsigned int)a->val[1].u.number;
break;
case FORWARD_T:
#ifdef USE_TCP
case FORWARD_TCP_T:
#endif
#ifdef USE_TLS
case FORWARD_TLS_T:
#endif
#ifdef USE_SCTP
case FORWARD_SCTP_T:
#endif
case FORWARD_UDP_T:
/* init dst */
init_dest_info(&dst);
if (a->type==FORWARD_UDP_T) dst.proto=PROTO_UDP;
#ifdef USE_TCP
else if (a->type==FORWARD_TCP_T) dst.proto= PROTO_TCP;
#endif
#ifdef USE_TLS
else if (a->type==FORWARD_TLS_T) dst.proto= PROTO_TLS;
#endif
#ifdef USE_SCTP
else if (a->type==FORWARD_SCTP_T) dst.proto=PROTO_SCTP;
#endif
else dst.proto=PROTO_NONE;
if (a->val[0].type==URIHOST_ST){
/*parse uri*/
if (msg->dst_uri.len) {
ret = parse_uri(msg->dst_uri.s, msg->dst_uri.len,
&next_hop);
u = &next_hop;
} else {
ret = parse_sip_msg_uri(msg);
u = &msg->parsed_uri;
}
if (ret<0) {
LM_ERR("forward: bad_uri dropping packet\n");
goto error;
}
switch (a->val[1].type){
case URIPORT_ST:
port=u->port_no;
break;
case NUMBER_ST:
port=a->val[1].u.number;
break;
default:
LM_CRIT("bad forward 2nd param type (%d)\n", a->val[1].type);
ret=E_UNSPEC;
goto error_fwd_uri;
}
if (dst.proto == PROTO_NONE){ /* only if proto not set get it
from the uri */
switch(u->proto){
case PROTO_NONE:
/*dst.proto=PROTO_UDP; */
/* no proto, try to get it from the dns */
break;
case PROTO_UDP:
#ifdef USE_TCP
case PROTO_TCP:
case PROTO_WS:
#endif
#ifdef USE_TLS
case PROTO_TLS:
case PROTO_WSS:
#endif
#ifdef USE_SCTP
case PROTO_SCTP:
#endif
dst.proto=u->proto;
break;
default:
LM_ERR("forward: bad uri transport %d\n", u->proto);
ret=E_BAD_PROTO;
goto error_fwd_uri;
}
#ifdef USE_TLS
if (u->type==SIPS_URI_T){
if (u->proto==PROTO_UDP){
LM_ERR("forward: secure uri incompatible with transport %d\n",
u->proto);
ret=E_BAD_PROTO;
goto error_fwd_uri;
} else if (u->proto!=PROTO_WSS)
dst.proto=PROTO_TLS;
else
dst.proto=PROTO_WSS;
}
#endif
}
#ifdef HONOR_MADDR
if (u->maddr_val.s && u->maddr_val.len)
dst_host=&u->maddr_val;
else
#endif
dst_host=&u->host;
#ifdef USE_COMP
dst.comp=u->comp;
#endif
ret=forward_request(msg, dst_host, port, &dst);
if (ret>=0){
ret=1;
}
}else if ((a->val[0].type==PROXY_ST) && (a->val[1].type==NUMBER_ST)){
if (dst.proto==PROTO_NONE)
dst.proto=msg->rcv.proto;
proxy2su(&dst.to, (struct proxy_l*)a->val[0].u.data);
ret=forward_request(msg, 0, 0, &dst);
if (ret>=0){
ret=1;
proxy_mark((struct proxy_l*)a->val[0].u.data, ret);
}else if (ser_error!=E_OK){
proxy_mark((struct proxy_l*)a->val[0].u.data, ret);
}
}else{
LM_CRIT("bad forward() types %d, %d\n",
a->val[0].type, a->val[1].type);
ret=E_BUG;
goto error;
}
break;
case LOG_T:
if ((a->val[0].type!=NUMBER_ST)|(a->val[1].type!=STRING_ST)){
LM_CRIT("bad log() types %d, %d\n",
a->val[0].type, a->val[1].type);
ret=E_BUG;
goto error;
}
LOG_(DEFAULT_FACILITY, a->val[0].u.number, "<script>: ", "%s",
a->val[1].u.string);
ret=1;
break;
/* jku -- introduce a new branch */
case APPEND_BRANCH_T:
if (unlikely(a->val[0].type!=STR_ST)) {
LM_CRIT("bad append_branch_t %d\n", a->val[0].type );
ret=E_BUG;
goto error;
}
getbflagsval(0, (flag_t*)&flags);
ret=append_branch(msg, &a->val[0].u.str, &msg->dst_uri,
&msg->path_vec, a->val[1].u.number,
(flag_t)flags, msg->force_send_socket,
0, 0, 0, 0);
/* if the uri is the ruri and q was also not changed, mark
ruri as consumed, to avoid having an identical branch */
if ((a->val[0].u.str.s == 0 || a->val[0].u.str.len == 0) &&
a->val[1].u.number == Q_UNSPECIFIED)
ruri_mark_consumed();
break;
/* remove last branch */
case REMOVE_BRANCH_T:
if (a->val[0].type!=NUMBER_ST) {
ret=drop_sip_branch(0) ? -1 : 1;
} else {
ret=drop_sip_branch(a->val[0].u.number) ? -1 : 1;
}
break;
/* remove all branches */
case CLEAR_BRANCHES_T:
clear_branches();
ret=1;
break;
/* jku begin: is_length_greater_than */
case LEN_GT_T:
if (a->val[0].type!=NUMBER_ST) {
LM_CRIT("bad len_gt type %d\n", a->val[0].type );
ret=E_BUG;
goto error;
}
/* LM_DBG("message length %d, max %d\n",
msg->len, a->val[0].u.number ); */
ret = msg->len >= a->val[0].u.number ? 1 : -1;
break;
/* jku end: is_length_greater_than */
/* jku - begin : flag processing */
case SETFLAG_T:
if (a->val[0].type!=NUMBER_ST) {
LM_CRIT("bad setflag() type %d\n", a->val[0].type );
ret=E_BUG;
goto error;
}
if (!flag_in_range( a->val[0].u.number )) {
ret=E_CFG;
goto error;
}
setflag( msg, a->val[0].u.number );
ret=1;
break;
case RESETFLAG_T:
if (a->val[0].type!=NUMBER_ST) {
LM_CRIT("bad resetflag() type %d\n", a->val[0].type );
ret=E_BUG;
goto error;
}
if (!flag_in_range( a->val[0].u.number )) {
ret=E_CFG;
goto error;
}
resetflag( msg, a->val[0].u.number );
ret=1;
break;
case ISFLAGSET_T:
if (a->val[0].type!=NUMBER_ST) {
LM_CRIT("bad isflagset() type %d\n", a->val[0].type );
ret=E_BUG;
goto error;
}
if (!flag_in_range( a->val[0].u.number )) {
ret=E_CFG;
goto error;
}
ret=isflagset( msg, a->val[0].u.number );
break;
/* jku - end : flag processing */
case AVPFLAG_OPER_T:
ret = 0;
if ((a->val[0].u.attr->type & AVP_INDEX_ALL) == AVP_INDEX_ALL ||
(a->val[0].u.attr->type & AVP_NAME_RE)!=0) {
for (avp=search_first_avp(a->val[0].u.attr->type,
a->val[0].u.attr->name, NULL, &st);
avp;
avp = search_next_avp(&st, NULL)) {
switch (a->val[2].u.number) {
/* oper: 0..reset, 1..set, -1..no change */
case 0:
avp->flags &= ~(avp_flags_t)a->val[1].u.number;
break;
case 1:
avp->flags |= (avp_flags_t)a->val[1].u.number;
break;
default:;
}
ret = ret ||
((avp->flags & (avp_flags_t)a->val[1].u.number) != 0);
}
} else {
avp = search_avp_by_index(a->val[0].u.attr->type,
a->val[0].u.attr->name, NULL,
a->val[0].u.attr->index);
if (avp) {
switch (a->val[2].u.number) {
/* oper: 0..reset, 1..set, -1..no change */
case 0:
avp->flags &= ~(avp_flags_t)a->val[1].u.number;
break;
case 1:
avp->flags |= (avp_flags_t)a->val[1].u.number;
break;
default:;
}
ret = (avp->flags & (avp_flags_t)a->val[1].u.number) != 0;
}
}
if (ret==0)
ret = -1;
break;
case ERROR_T:
if ((a->val[0].type!=STRING_ST)|(a->val[1].type!=STRING_ST)){
LM_CRIT("bad error() types %d, %d\n", a->val[0].type, a->val[1].type);
ret=E_BUG;
goto error;
}
LM_NOTICE("error(\"%s\", \"%s\") "
"not implemented yet\n", a->val[0].u.string, a->val[1].u.string);
ret=1;
break;
case ROUTE_T:
if (likely(a->val[0].type == NUMBER_ST))
i = a->val[0].u.number;
else if (a->val[0].type == RVE_ST) {
rv = rval_expr_eval(h, msg, a->val[0].u.data);
rval_cache_init(&c1);
if (unlikely(rv == 0 ||
rval_get_tmp_str(h, msg, &s, rv, 0, &c1) < 0)) {
rval_destroy(rv);
rval_cache_clean(&c1);
ERR("failed to convert RVE to string\n");
ret = E_UNSPEC;
goto error;
}
i = route_lookup(&main_rt, s.s);
if (unlikely(i < 0)) {
ERR("route \"%s\" not found at %s:%d\n",
s.s, (a->cfile)?a->cfile:"line", a->cline);
rval_destroy(rv);
rval_cache_clean(&c1);
s.s = 0;
ret = E_SCRIPT;
goto error;
}
rval_destroy(rv);
rval_cache_clean(&c1);
s.s = 0;
} else {
LM_CRIT("bad route() type %d\n", a->val[0].type);
ret=E_BUG;
goto error;
}
if (unlikely((i>=main_rt.idx)||(i<0))){
LM_ERR("invalid routing table number in"
"route(%lu) at %s:%d\n", a->val[0].u.number,
(a->cfile)?a->cfile:"line", a->cline);
ret=E_CFG;
goto error;
}
/*ret=((ret=run_actions(rlist[a->val[0].u.number],msg))<0)?ret:1;*/
ret=run_actions(h, main_rt.rlist[i], msg);
h->last_retcode=ret;
_last_returned_code = h->last_retcode;
h->run_flags&=~(RETURN_R_F|BREAK_R_F); /* absorb return & break */
break;
case EXEC_T:
if (a->val[0].type!=STRING_ST){
LM_CRIT("bad exec() type %d\n", a->val[0].type);
ret=E_BUG;
goto error;
}
LM_NOTICE("exec(\"%s\") not fully implemented,"
" using dumb version...\n", a->val[0].u.string);
ret=system(a->val[0].u.string);
if (ret!=0){
LM_NOTICE("exec() returned %d\n", ret);
}
ret=1;
break;
case REVERT_URI_T:
if (msg->new_uri.s) {
pkg_free(msg->new_uri.s);
msg->new_uri.len=0;
msg->new_uri.s=0;
msg->parsed_uri_ok=0; /* invalidate current parsed uri*/
ruri_mark_new(); /* available for forking */
};
ret=1;
break;
case SET_HOST_T:
case SET_HOSTPORT_T:
case SET_HOSTPORTTRANS_T:
case SET_HOSTALL_T:
case SET_USER_T:
case SET_USERPASS_T:
case SET_PORT_T:
case SET_URI_T:
case PREFIX_T:
case STRIP_T:
case STRIP_TAIL_T:
case SET_USERPHONE_T:
user=0;
if (a->type==STRIP_T || a->type==STRIP_TAIL_T) {
if (a->val[0].type!=NUMBER_ST) {
LM_CRIT("bad set*() type %d\n", a->val[0].type);
ret=E_BUG;
goto error;
}
} else if (a->type!=SET_USERPHONE_T) {
if (a->val[0].type!=STRING_ST) {
LM_CRIT("bad set*() type %d\n", a->val[0].type);
ret=E_BUG;
goto error;
}
}
if (a->type==SET_URI_T){
if (msg->new_uri.s) {
pkg_free(msg->new_uri.s);
msg->new_uri.len=0;
}
msg->parsed_uri_ok=0;
len=strlen(a->val[0].u.string);
msg->new_uri.s=pkg_malloc(len+1);
if (msg->new_uri.s==0){
LM_ERR("memory allocation failure\n");
ret=E_OUT_OF_MEM;
goto error;
}
memcpy(msg->new_uri.s, a->val[0].u.string, len);
msg->new_uri.s[len]=0;
msg->new_uri.len=len;
ruri_mark_new(); /* available for forking */
ret=1;
break;
}
if (msg->parsed_uri_ok==0) {
if (msg->new_uri.s) {
tmp=msg->new_uri.s;
len=msg->new_uri.len;
}else{
tmp=msg->first_line.u.request.uri.s;
len=msg->first_line.u.request.uri.len;
}
if (parse_uri(tmp, len, &uri)<0){
LM_ERR("bad uri <%s>, dropping packet\n", tmp);
ret=E_UNSPEC;
goto error;
}
} else {
uri=msg->parsed_uri;
}
/* skip SET_USERPHONE_T action if the URI is already
* a tel: or tels: URI, or contains the user=phone param */
if ((a->type==SET_USERPHONE_T)
&& ((uri.type==TEL_URI_T) || (uri.type==TELS_URI_T)
|| ((uri.user_param_val.len==5) && (memcmp(uri.user_param_val.s, "phone", 5)==0)))
) {
ret=1;
break;
}
/* SET_PORT_T does not work with tel: URIs */
if ((a->type==SET_PORT_T)
&& ((uri.type==TEL_URI_T) || (uri.type==TELS_URI_T))
&& ((uri.flags & URI_SIP_USER_PHONE)==0)
) {
LM_ERR("port number of a tel: URI cannot be set\n");
ret=E_UNSPEC;
goto error;
}
new_uri=pkg_malloc(MAX_URI_SIZE);
if (new_uri==0){
LM_ERR("memory allocation failure\n");
ret=E_OUT_OF_MEM;
goto error;
}
end=new_uri+MAX_URI_SIZE;
crt=new_uri;
/* begin copying */
/* Preserve the URI scheme unless the host part needs
* to be rewritten, and the shceme is tel: or tels: */
switch (uri.type) {
case SIP_URI_T:
len=s_sip.len;
tmp=s_sip.s;
break;
case SIPS_URI_T:
len=s_sips.len;
tmp=s_sips.s;
break;
case TEL_URI_T:
if ((uri.flags & URI_SIP_USER_PHONE)
|| (a->type==SET_HOST_T)
|| (a->type==SET_HOSTPORT_T)
|| (a->type==SET_HOSTPORTTRANS_T)
) {
len=s_sip.len;
tmp=s_sip.s;
break;
}
len=s_tel.len;
tmp=s_tel.s;
break;
case TELS_URI_T:
if ((uri.flags & URI_SIP_USER_PHONE)
|| (a->type==SET_HOST_T)
|| (a->type==SET_HOSTPORT_T)
|| (a->type==SET_HOSTPORTTRANS_T)
) {
len=s_sips.len;
tmp=s_sips.s;
break;
}
len=s_tels.len;
tmp=s_tels.s;
break;
default:
LM_ERR("Unsupported URI scheme (%d), reverted to sip:\n",
uri.type);
len=s_sip.len;
tmp=s_sip.s;
}
if(crt+len+1 /* colon */ >end) goto error_uri;
memcpy(crt,tmp,len);crt+=len;
*crt=':'; crt++;
/* user */
/* prefix (-jiri) */
if (a->type==PREFIX_T) {
tmp=a->val[0].u.string;
len=strlen(tmp); if(crt+len>end) goto error_uri;
memcpy(crt,tmp,len);crt+=len;
/* whatever we had before, with prefix we have username
now */
user=1;
}
if ((a->type==SET_USER_T)||(a->type==SET_USERPASS_T)) {
tmp=a->val[0].u.string;
len=strlen(tmp);
} else if (a->type==STRIP_T) {
if (a->val[0].u.number>uri.user.len) {
LM_WARN("too long strip asked; deleting username: %lu of <%.*s>\n",
a->val[0].u.number, uri.user.len, uri.user.s );
len=0;
} else if (a->val[0].u.number==uri.user.len) {
len=0;
} else {
tmp=uri.user.s + a->val[0].u.number;
len=uri.user.len - a->val[0].u.number;
}
} else if (a->type==STRIP_TAIL_T) {
if (a->val[0].u.number>uri.user.len) {
LM_WARN("too long strip_tail asked; "
" deleting username: %lu of <%.*s>\n",
a->val[0].u.number, uri.user.len, uri.user.s );
len=0;
} else if (a->val[0].u.number==uri.user.len) {
len=0;
} else {
tmp=uri.user.s;
len=uri.user.len - a->val[0].u.number;
}
} else {
tmp=uri.user.s;
len=uri.user.len;
}
if (len){
if(crt+len>end) goto error_uri;
memcpy(crt,tmp,len);crt+=len;
user=1; /* we have an user field so mark it */
}
if (a->type==SET_USERPASS_T) tmp=0;
else tmp=uri.passwd.s;
/* passwd - keep it only if user is set */
if (user && tmp){
len=uri.passwd.len; if(crt+len+1>end) goto error_uri;
*crt=':'; crt++;
memcpy(crt,tmp,len);crt+=len;
}
/* tel: URI parameters */
if ((uri.type==TEL_URI_T)
|| (uri.type==TELS_URI_T)
) {
tmp=uri.params.s;
if (tmp){
len=uri.params.len; if(crt+len+1>end) goto error_uri;
*crt=';'; crt++;
memcpy(crt,tmp,len);crt+=len;
}
}
/* host */
if ((a->type==SET_HOST_T)
|| (a->type==SET_HOSTPORT_T)
|| (a->type==SET_HOSTALL_T)
|| (a->type==SET_HOSTPORTTRANS_T)
) {
tmp=a->val[0].u.string;
if (tmp) len = strlen(tmp);
else len=0;
} else if ((uri.type==SIP_URI_T)
|| (uri.type==SIPS_URI_T)
|| (uri.flags & URI_SIP_USER_PHONE)
) {
tmp=uri.host.s;
len=uri.host.len;
} else {
tmp=0;
}
if (tmp){
if (user) { /* add @ */
if(crt+1>end) goto error_uri;
*crt='@'; crt++;
}
if(crt+len>end) goto error_uri;
memcpy(crt,tmp,len);crt+=len;
}
if(a->type==SET_HOSTALL_T)
goto done_seturi;
/* port */
if ((a->type==SET_HOSTPORT_T)
|| (a->type==SET_HOSTPORTTRANS_T))
tmp=0;
else if (a->type==SET_PORT_T) {
tmp=a->val[0].u.string;
if (tmp) {
len = strlen(tmp);
if(len==0) tmp = 0;
} else len = 0;
} else {
tmp=uri.port.s;
len = uri.port.len;
}
if (tmp){
if(crt+len+1>end) goto error_uri;
*crt=':'; crt++;
memcpy(crt,tmp,len);crt+=len;
}
/* params */
if ((a->type==SET_HOSTPORTTRANS_T)
&& uri.sip_params.s
&& uri.transport.s
) {
/* bypass the transport parameter */
if (uri.sip_params.s < uri.transport.s) {
/* there are parameters before transport */
len = uri.transport.s - uri.sip_params.s - 1;
/* ignore the ';' at the end */
if (crt+len+1>end) goto error_uri;
*crt=';'; crt++;
memcpy(crt,uri.sip_params.s,len);crt+=len;
}
len = (uri.sip_params.s + uri.sip_params.len) -
(uri.transport.s + uri.transport.len);
if (len > 0) {
/* there are parameters after transport */
if (crt+len>end) goto error_uri;
tmp = uri.transport.s + uri.transport.len;
memcpy(crt,tmp,len);crt+=len;
}
} else {
tmp=uri.sip_params.s;
if (tmp){
len=uri.sip_params.len; if(crt+len+1>end) goto error_uri;
*crt=';'; crt++;
memcpy(crt,tmp,len);crt+=len;
}
}
/* Add the user=phone param if a tel: or tels:
* URI was converted to sip: or sips:.
* (host part of a tel/tels URI was set.)
* Or in case of sip: URI and SET_USERPHONE_T action */
if (((((uri.type==TEL_URI_T) || (uri.type==TELS_URI_T))
&& ((uri.flags & URI_SIP_USER_PHONE)==0))