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
|
<!-- Module User's Guide -->
<chapter>
<chapterinfo>
<revhistory>
<revision>
<revnumber>$Revision: 1.17 $</revnumber>
<date>$Date: 2006/06/09 16:16:07 $</date>
</revision>
</revhistory>
</chapterinfo>
<title>User's Guide</title>
<section>
<title>Overview</title>
<para>
<acronym>TM</acronym> module enables stateful processing of SIP
transactions. The main use of stateful logic, which is costly in
terms of memory and <acronym>CPU</acronym>, is some services
inherently need state. For example, transaction-based accounting
(module acc) needs to process transaction state as opposed to
individual messages, and any kinds of forking must be implemented
statefully. Other use of stateful processing is it trading
<acronym>CPU</acronym> caused by retransmission processing for memory.
That makes however only sense if <acronym>CPU</acronym> consumption
per request is huge. For example, if you want to avoid costly
<acronym>DNS</acronym> resolution for every retransmission of a
request to an unresolvable destination, use stateful mode. Then,
only the initial message burdens server by <acronym>DNS</acronym>
queries, subsequent retransmissions will be dropped and will not
result in more processes blocked by <acronym>DNS</acronym> resolution.
The price is more memory consumption and higher processing latency.
</para>
<para>
From user's perspective, there are these major functions : t_relay,
t_relay_to_udp and t_relay_to_tcp. All of them setup transaction state,
absorb retransmissions from upstream, generate downstream
retransmissions and correlate replies to requests. t_relay forwards
to current URI; (be it original request's URI or a URI changed by
some of URI-modifying functions, such as sethost). t_relay_to_udp and
t_relay_to_tcp forward to a specific address over UDP or TCP
respectively.
</para>
<para>
In general, if <acronym>TM</acronym> is used, it copies clones of
received SIP messages in shared memory. That costs the memory and
also <acronym>CPU</acronym> time (memcpys, lookups, shmem locks, etc.)
Note that non-<acronym>TM</acronym> functions operate over the
received message in private memory, that means that any core
operations will have no effect on statefully processed messages after
creating the transactional state. For example, calling record_route
<emphasis>after</emphasis> t_relay is pretty useless, as the
<acronym>RR</acronym> is added to privately held message whereas its
<acronym>TM</acronym> clone is being forwarded.
</para>
<para>
<acronym>TM</acronym> is quite big and uneasy to program--lot of
mutexes, shared memory access, malloc & free, timers--you really
need to be careful when you do anything. To simplify
<acronym>TM</acronym> programming, there is the instrument of
callbacks. The callback mechanisms allow programmers to register
their functions to specific event. See t_hooks.h for a list of
possible events.
</para>
<para>
Other things programmers may want to know is UAC--it is a very
simplistic code which allows you to generate your own transactions.
Particularly useful for things like NOTIFYs or <acronym>IM</acronym>
gateways. The UAC takes care of all the transaction machinery:
retransmissions , FR timeouts, forking, etc. See t_uac prototype
in uac.h for more details. Who wants to see the transaction result
may register for a callback.
</para>
<section id="branch-flags">
<title>Per-Branch flags</title>
<para>
First what is the idea with the branch concept: branch route is a
route to be execute separately for each branch before being sent
out - changes in that route should reflect only on that branch.
</para>
<para>
There are two types of flags in &ser; :
</para>
<itemizedlist>
<listitem>
<para>
<emphasis>global</emphasis> flags - global because they are
visible everywhere in the transaction (in all routes and in
all sequential replies/request).
</para>
</listitem>
<listitem>
<para>
<emphasis>branch</emphasis> flags - flags that are visible only
from a specific branch - in all replies and routes connected
to this branch.
</para>
</listitem>
</itemizedlist>
<para>
For example: I have a call parallel forking to GW and to a user. And I
would like to know from which branch I will get the final negative
reply (if so). I will set a branch route before relaying the calls
(with the 2 branches). The branch route will be separately executed for
each branch; in the branch going to GW (I can identified it by looking
to RURI), I will set a branch flag. This flag will appear only in the
onreply route run for replied from GW. It will be also be visible in
failure route if the final elected reply belongs to the GW branch.
This flags will not be visible in the other branch (in routes executing
replies from the other branch).
</para>
<para>
For how to define branch flags and use via script, see
<xref linkend="branch-flag-mask"> and <xref linkend="branch-route">.
</para>
<para>
Also, modules may set branch flags before transaction creation
(for the moment this feature is not available in script). The REGISTRAR
module is the first to use this feature. If the
<quote>use_branch_flags</quote> param is enabled, the NAT flag will be
push in branch flags instead in message flags - IMPORTANT: be sure that
NAT flag is in the range of the branch flags ad defined in TM. Using
this, NAT traversal per branch may be implemented.
</para>
</section>
</section>
<section>
<title>Dependencies</title>
<section>
<title>&ser; Modules</title>
<para>
The following modules must be loaded before this module:
<itemizedlist>
<listitem>
<para>
<emphasis>No dependencies on other &ser; modules</emphasis>.
</para>
</listitem>
</itemizedlist>
</para>
</section>
<section>
<title>External Libraries or Applications</title>
<para>
The following libraries or applications must be installed before
running &ser; with this module loaded:
<itemizedlist>
<listitem>
<para>
<emphasis>None</emphasis>.
</para>
</listitem>
</itemizedlist>
</para>
</section>
</section>
<section>
<title>Exported Parameters</title>
<section>
<title><varname>fr_timer</varname> (integer)</title>
<para>
Timer which hits if no final reply for a request or ACK for a
negative INVITE reply arrives (in seconds).
</para>
<para>
<emphasis>
Default value is 30 seconds.
</emphasis>
</para>
<example>
<title>Set <varname>fr_timer</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "fr_timer", 10)
...
</programlisting>
</example>
</section>
<section>
<title><varname>fr_inv_timer</varname> (integer)</title>
<para>
Timer which hits if no final reply for an INVITE arrives after a
provisional message was received (in seconds).
</para>
<para>
<emphasis>
Default value is 120 seconds.
</emphasis>
</para>
<example>
<title>Set <varname>fr_inv_timer</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "fr_inv_timer", 200)
...
</programlisting>
</example>
</section>
<section>
<title><varname>wt_timer</varname> (integer)</title>
<para>
Time for which a transaction stays in memory to absorb delayed
messages after it completed; also, when this timer hits,
retransmission of local cancels is stopped (a puristic but complex
behavior would be not to enter wait state until local branches
are finished by a final reply or FR timer--we simplified).
</para>
<para>
<emphasis>
Default value is 5 seconds.
</emphasis>
</para>
<example>
<title>Set <varname>wt_timer</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "wt_timer", 10)
...
</programlisting>
</example>
</section>
<section>
<title><varname>delete_timer</varname> (integer)</title>
<para>
Time after which a to-be-deleted transaction currently ref-ed by a
process will be tried to be deleted again.
</para>
<para>
<emphasis>
Default value is 2 seconds.
</emphasis>
</para>
<example>
<title>Set <varname>delete_timer</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "delete_timer", 5)
...
</programlisting>
</example>
</section>
<section>
<title><varname>retr_timer1p1</varname> (integer)</title>
<para>
Retransmission period.
</para>
<para>
<emphasis>
Default value is 1 second.
</emphasis>
</para>
<example>
<title>Set <varname>retr_timer1p1</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "retr_timer1p1", 2)
...
</programlisting>
</example>
</section>
<section>
<title><varname>retr_timer1p2</varname> (integer)</title>
<para>
Retransmission period.
</para>
<para>
<emphasis>
Default value is 2 * <varname>retr_timer1p1</varname> second.
</emphasis>
</para>
<example>
<title>Set <varname>retr_timer1p2</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "retr_timer1p2", 4)
...
</programlisting>
</example>
</section>
<section>
<title><varname>retr_timer1p3</varname> (integer)</title>
<para>
Retransmission period.
</para>
<para>
<emphasis>
Default value is 4 * <varname>retr_timer1p1</varname> second.
</emphasis>
</para>
<example>
<title>Set <varname>retr_timer1p4</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "retr_timer1p3", 8)
...
</programlisting>
</example>
</section>
<section>
<title><varname>retr_timer2</varname> (integer)</title>
<para>
Maximum retransmission period.
</para>
<para>
<emphasis>
Default value is 4 seconds.
</emphasis>
</para>
<example>
<title>Set <varname>retr_timer2</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "retr_timer2", 8)
...
</programlisting>
</example>
</section>
<section>
<title><varname>noisy_ctimer</varname> (integer)</title>
<para>
If set, on FR timer INVITE transactions will be explicitly canceled
if possible, silently dropped otherwise. Preferably, it is turned off
to allow very long ringing. This behavior is overridden if a request
is forked, or some functionality explicitly turned it off for a
transaction (like acc does to avoid unaccounted transactions due to
expired timer).
</para>
<para>
<emphasis>
Default value is 0 (false).
</emphasis>
</para>
<example>
<title>Set <varname>noisy_ctimer</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "noisy_ctimer", 1)
...
</programlisting>
</example>
</section>
<section>
<title><varname>ruri_matching</varname> (integer)</title>
<para>
Should be request-uri matching used as a part of pre-3261 transaction
matching as the standard wants us to do so? Turn only off for better
interaction with devices that are broken and send different r-uri in
CANCEL/ACK than in original INVITE.
</para>
<para>
<emphasis>
Default value is 1 (true).
</emphasis>
</para>
<example>
<title>Set <varname>ruri_matching</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "ruri_matching", 0)
...
</programlisting>
</example>
</section>
<section>
<title><varname>via1_matching</varname> (integer)</title>
<para>
Should be top most VIA matching used as a part of pre-3261 transaction
matching as the standard wants us to do so? Turn only off for better
interaction with devices that are broken and send different top most
VIA in CANCEL/ACK than in original INVITE.
</para>
<para>
<emphasis>
Default value is 1 (true).
</emphasis>
</para>
<example>
<title>Set <varname>via1_matching</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "via1_matching", 0)
...
</programlisting>
</example>
</section>
<section>
<title><varname>unix_tx_timeout</varname> (integer)</title>
<para>
Send timeout to be used by function which use UNIX sockets
(as t_write_unix).
</para>
<para>
<emphasis>
Default value is 2 seconds.
</emphasis>
</para>
<example>
<title>Set <varname>unix_tx_timeout</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "unix_tx_timeout", 5)
...
</programlisting>
</example>
</section>
<section>
<title><varname>restart_fr_on_each_reply</varname> (integer)</title>
<para>
If true (non null value), the final response timer will be re-triggered
for each received provisional reply. In this case, final response
timeout may occure after a time longe than fr_inv_timer (if UAS keeps
sending provisional replies)
</para>
<para>
<emphasis>
Default value is 1 (true).
</emphasis>
</para>
<example>
<title>Set <varname>restart_fr_on_each_reply</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "restart_fr_on_each_reply", 0)
...
</programlisting>
</example>
</section>
<section>
<title><varname>fr_timer_avp</varname> (string)</title>
<para>
Full specification (NAME, ID, Alias) of an AVP which contains a final
response timeout value. If present, ths value will overeide the
static fr_timer parameter.
</para>
<para>
If set to empty string, the whole mechanism for variable timeout will
be disabled, falling back to the static value.
</para>
<para>
<emphasis>
Default value is "callee_fr_timer".
</emphasis>
</para>
<example>
<title>Set <varname>fr_timer_avp</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "fr_timer_avp", "i:24")
...
</programlisting>
</example>
</section>
<section>
<title><varname>fr_inv_timer_avp</varname> (string)</title>
<para>
Full specification (NAME, ID, Alias) of an AVP which contains a final
INVITE response timeout value. If present, ths value will overeide the
static fr_inv_timer parameter.
</para>
<para>
If set to empty string, the whole mechanism for variable timeout will
be disabled, falling back to the static value.
</para>
<para>
<emphasis>
Default value is "callee_fr_inv_timer".
</emphasis>
</para>
<example>
<title>Set <varname>fr_inv_timer_avp</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "fr_inv_timer_avp", "i:25")
...
</programlisting>
</example>
</section>
<section>
<title><varname>tw_append</varname> (string)</title>
<para>
List of additional information to be appended by t_write_fifo and
t_write_unix functions.
</para>
<para>
<emphasis>
Default value is null string.
</emphasis>
</para>
<para>
Syntax of the parameter is:
<itemizedlist>
<listitem><para><emphasis>
tw_append = append_name':' element (';'element)*
</emphasis></para></listitem>
<listitem><para><emphasis>
element = ( [name '='] pseudo_variable)
</emphasis></para></listitem>
</itemizedlist>
</para>
<para>
The full list of supported pseudo-variables in &ser; is availabe at:
<ulink url="http://openser.org/docs/pseudo-variables.html-1.1.x">
http://openser.org/docs/pseudo-variables-1.1.x.html</ulink>
</para>
<para>
Each element will be appended per line in
<quote>name: value</quote> format. Element
<quote>$rb (message body)</quote>
is the only one which does not accept name; the body it will be
printed all the time at the end, disregarding its position in the
definition string.
</para>
<example>
<title>Set <varname>tw_append</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "tw_append",
"test: ua=$hdr(User-Agent) ;avp=$avp(i:10);$rb;time=$Ts")
...
</programlisting>
</example>
</section>
<section id="branch-flag-mask">
<title><varname>branch_flag_mask</varname> (string)</title>
<para>
Defined which flags shall be as branch flags. The branch flags will be
visible only in the messages belonging to that branch (in branch,
onreply and failure route). The global flags are visible for all
messages of the corresponding transaction.
</para>
<para>
The value of the parameter is a 32-bits mask. It may be defined using
2, 10 or 16 bases.
</para>
<para>
<emphasis>
Default value is NULL (no branch flags, all being global).
</emphasis>
</para>
<example>
<title>Set <varname>branch_flag_mask</varname> parameter</title>
<programlisting format="linespecific">
...
# using base 16
modparam("tm", "branch_flag_mask", "0xff000000")
# or using base 2
modparam("tm", "branch_flag_mask", "b11111111000000000000000000000000")
# or using base 10
modparam("tm", "branch_flag_mask", "4278190080")
...
</programlisting>
</example>
</section>
<section>
<title><varname>pass_provisional_replies</varname> (integer)</title>
<para>
Enable/disable passing of provisional replies to FIFO applications.
</para>
<para>
<emphasis>
Default value is 0.
</emphasis>
</para>
<example>
<title>Set <varname>pass_provisional_replies</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("tm", "pass_provisional_replies", 1)
...
</programlisting>
</example>
</section>
</section>
<section>
<title>Exported Functions</title>
<section>
<title>
<function moreinfo="none">t_newtran()</function>
</title>
<para>
Creates a new transaction, returns a negative value on error. This is
the only way a script can add a new transaction in an atomic way.
Typically, it is used to deploy a &uas;.
</para>
<warning>
<para>
NOTE that the changes on the request that are made after this
function call will not be saved into transaction!!!
</para>
</warning>
<para>
This function can be used from REQUEST_ROUTE.
</para>
<example>
<title><function>t_newtran</function> usage</title>
<programlisting format="linespecific">
...
if (t_newtran()) {
log("UAS logic");
t_reply("999","hello");
} else sl_reply_error();
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_lookup_request()</function>
</title>
<para>
Checks if a transaction exists. Returns a positive value if so,
negative otherwise. Most likely you will not want to use it, as a
typical application of a looku-up is to introduce a new transaction if
none was found. However this is safely (atomically) done using
<function>t_newtran</function>.
</para>
<para>
This function can be used from REQUEST_ROUTE.
</para>
<example>
<title><function>t_lookup_request</function> usage</title>
<programlisting format="linespecific">
...
if (t_lookup_request()) {
...
};
...
</programlisting>
</example>
</section>
<section id="trelay-1">
<title>
<function moreinfo="none">t_relay(proto:host:port)</function>,
</title>
<para>
Relay a message statefully to a fixed destination. The destination is
specified as <quote>[proto:]host[:port]</quote>.
</para>
<para>
This functions can be used from REQUEST_ROUTE, FAILURE_ROUTE.
</para>
<example>
<title><function>t_relay</function> usage</title>
<programlisting format="linespecific">
...
t_relay("tcp:192.168.1.10:5060");
t_relay("mydomain.com:5070");
t_relay("udp:mydomain.com");
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_relay()</function>
</title>
<para>
Relay a message statefully to destination indicated in current URI.
(If the original URI was rewritten by UsrLoc, RR, strip/prefix, etc.,
the new URI will be taken). Returns a negative value on failure--you
may still want to send a negative reply upstream statelessly not to
leave upstream UAC in lurch.
</para>
<para>
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE.
</para>
<example>
<title><function>t_relay</function> usage</title>
<programlisting format="linespecific">
...
if (!t_relay()) { sl_reply_error(); break; };
...
</programlisting>
</example>
</section>
<section id="tforwardnonack">
<title>
<function moreinfo="none">t_forward_nonack()</function>
<function moreinfo="none">t_forward_nonack(proto:host:port)</function>
</title>
<para>
Similar to t_relay() but it expects the transaction to be already
created - this why it cannot handle ACK (which are statelessly
forwarded). It should be used along with t_newtran().
</para>
<para>
The destination is specified either as parameter ( in
<quote>[proto:]host[:port]</quote> format), either is taken from
the current URI.
</para>
<para>
This functions can be used from REQUEST_ROUTE.
</para>
<example>
<title><function>t_forward_nonack</function> usage</title>
<programlisting format="linespecific">
...
t_forward_nonack("tcp:1.2.3.4:5060");
t_forward_nonack("udp:1.2.3.4");
t_forward_nonack(); # use RURI for destination
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_reply(code, reason_phrase)</function>
</title>
<para>
Sends a stateful reply after a transaction has been established. See
<function>t_newtran</function> for usage.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
<para><emphasis>code</emphasis> - Reply code number.
</para>
</listitem>
<listitem>
<para><emphasis>reason_phrase</emphasis> - Reason string.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE.
</para>
<example>
<title><function>t_reply</function> usage</title>
<programlisting format="linespecific">
...
t_reply("404", "Not found");
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_retransmit_reply()</function>
</title>
<para>
Retransmits a reply sent previously by &uas; transaction.
</para>
<para>
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE and
BRANCH_ROUTE.
</para>
<example>
<title><function>t_retransmit_reply</function> usage</title>
<programlisting format="linespecific">
...
t_retransmit_reply();
...
</programlisting>
</example>
</section>
<section id="treplicate">
<title>
<function moreinfo="none">t_replicate(URI)</function>
</title>
<para>
Replicates a request to another destination. No information due the
replicated request (like reply code) will be forwarded to the
original SIP UAC.
</para>
<para>
The destination is specified by a SIP URI. If multiple destinations are
to be used, the additional SIP URIs have to be set as branches.
</para>
<para>
This functions can be used from REQUEST_ROUTE.
</para>
<example>
<title><function>t_replicate</function> usage</title>
<programlisting format="linespecific">
...
t_replicate("sip:1.2.3.4:5060");
t_replicate("sip:1.2.3.4:5060;transport=tcp");
t_replicate("sip:1.2.3.4");
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_release()</function>
</title>
<para>
Remove transaction from memory (it will be first put on a wait timer
to absorb delayed messages).
</para>
<para>
This function can be used from REQUEST_ROUTE.
</para>
<example>
<title><function>t_release</function> usage</title>
<programlisting format="linespecific">
...
t_release();
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_check_status(re)</function>
</title>
<para>
Returns true if the regualr expresion <quote>re</quote> match the
reply code of the response message as follows:
<itemizedlist>
<listitem>
<para><emphasis>in routing block</emphasis> - the code of the
last sent reply.
</para>
</listitem>
<listitem>
<para><emphasis>in on_reply block</emphasis> - the code of the
current received reply.
</para>
</listitem>
<listitem>
<para><emphasis>in on_failure block</emphasis> - the code of the
selected negative final reply.
</para>
</listitem>
</itemizedlist>
</para>
<para>
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE and BRANCH_ROUTE .
</para>
<example>
<title><function>t_check_status</function> usage</title>
<programlisting format="linespecific">
...
if (t_check_status("(487)|(408)")) {
log("487 or 408 negative reply\n");
}
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_flush_flags()</function>
</title>
<para>
Flush the flags from current request into the already created
transaction. It make sens only in routing block if the trnasaction was
created via t_newtran() and the flags have been altered since.
</para>
<para>
This function can be used from REQUEST_ROUTE and BRANCH_ROUTE .
</para>
<example>
<title><function>t_flush_flags</function> usage</title>
<programlisting format="linespecific">
...
t_flush_flags();
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_local_replied(reply)</function>
</title>
<para>
Returns true if all or last (depending of the parameter) reply(es) were
local generated (and not received).
</para>
<para>
Parameter may be <quote>all</quote> or <quote>last</quote>.
</para>
<para>
This function can be used from REQUEST_ROUTE, BRANCH_ROUTE,
FAILURE_ROUTE and ONREPLY_ROUTE.
</para>
<example>
<title><function>t_local_replied</function> usage</title>
<programlisting format="linespecific">
...
if (t_local_replied("all")) {
log ("no reply received\n");
}
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_write_fifo(info,fifo)</function>
<function moreinfo="none">t_write_unix(info,sock)</function>
</title>
<para>
Write via FIFO file or UNIX socket a lot of information regarding the
request. Which information should be written may be control via the
<quote>tw_append</quote> parameter.
</para>
<para>
This functions can be used from REQUEST_ROUTE, FAILURE_ROUTE and
BRANCH_ROUTE.
</para>
<example>
<title><function>t_write_fifo/unix</function> usage</title>
<programlisting format="linespecific">
...
modparam("tm","tw_append","append1:Email=avp[i:12];UA=hdr[User-Agent]")
modparam("tm","tw_append","append2:body=msg[body]")
...
t_write_fifo("voicemail/append1","/tmp/appx_fifo");
...
t_write_unix("logger/append2","/var/run/logger.sock");
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_check_trans()</function>
</title>
<para>
Returns true if the current request is associated to a transaction.
The relationship between the request ans transaction is defined as
follow:
</para>
<itemizedlist>
<listitem>
<para><emphasis>non-CANCEL/non-ACK requests</emphasis> - is true
if the request belongs to a transaction; if so, it means that the
request is a retransmision.
</para>
</listitem>
<listitem>
<para><emphasis>CANCEL request</emphasis> - true if the cancelled
INVITE transaction exists.
</para>
</listitem>
<listitem>
<para><emphasis>ACK request</emphasis> - true if the ACK is a
local end-to-end ACK for an existent INVITE transaction.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE and BRANCH_ROUTE.
</para>
<example>
<title><function>t_check_trans</function> usage</title>
<programlisting format="linespecific">
...
if ( is_method("CANCEL") ) {
if ( t_check_trans() )
t_relay();
exit;
}
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_was_cancelled()</function>
</title>
<para>
Retuns true if called for an INVITE transaction that was explicitly
cancelled by UAC side via a CANCEL request.
</para>
<para>
This function can be used from ONREPLY_ROUTE, FAILURE_ROUTE.
</para>
<example>
<title><function>t_was_cancelled</function> usage</title>
<programlisting format="linespecific">
...
if (t_was_cancelled()) {
log("transaction was cancelled by UAC\n");
}
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_on_failure(failure_route)</function>
</title>
<para>
Sets reply routing block, to which control is passed after a
transaction completed with a negative result but before sending a
final reply. In the referred block, you can either start a new branch
(good for services such as forward_on_no_reply) or send a final reply
on your own (good for example for message silo, which received a
negative reply from upstream and wants to tell upstream <quote>202 I
will take care of it</quote>).
</para>
<para>
As not all functions are available from failure route, please check
the documentation for each function to see the permissions.
Any other commands may result in unpredictable behavior and
possible server failure.
</para>
<para>
Only one failure_route can be armed for a request. If you use many
times t_on_failure(), only the last one has effect.
</para>
<para>
Note that whenever failure_route is entered, RURI is set to value
of the winning branch.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
<para><emphasis>failure_route</emphasis> - Reply route block to be
called.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE, BRANCH_ROUTE,
ONREPLY_ROUTE and FAILURE_ROUTE.
</para>
<example>
<title><function>t_on_failure</function> usage</title>
<programlisting format="linespecific">
...
route {
t_on_failure("1");
t_relay();
}
failure_route[1] {
seturi("sip:user@voicemail");
append_branch();
t_relay();
}
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">t_on_reply(reply_route)</function>
</title>
<para>
Sets reply routing block, to which control is passed each time a reply
(provisional or final) for the transaction is received.
The route is not called for local generated replies! In the referred
block, you can inspect the reply and perform text operations on it.
</para>
<para>
As not all functions are available from this type of route, please
check the documentation for each function to see the permissions.
Any other commands may result in unpredictable behavior and
possible server failure.
</para>
<para>
Only one onreply_route can be armed for a request. If you use many
times t_on_reply(), only the last one has effect.
</para>
<para>
If the processed reply is provisionla reply (1xx code), by calling
the drop() function (exported by core), the execution of the route
will end and the reply will not be forwarded further.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
<para><emphasis>reply_route</emphasis> - Reply route block to be
called.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE, BRANCH_ROUTE,
ONREPLY_ROUTE and FAILURE_ROUTE.
</para>
<example>
<title><function>t_on_reply</function> usage</title>
<programlisting format="linespecific">
...
route {
t_on_reply("1");
t_relay();
}
onreply_route[1] {
if (t_check_status("1[0-9][0-9]")) {
setflag(1);
log("provisional reply received\n");
if (t_check_status("183"))
drop;
}
}
...
</programlisting>
</example>
</section>
<section id="branch-route">
<title>
<function moreinfo="none">t_on_branch(branch_route)</function>
</title>
<para>
Sets a branch route to be execute separately for each branch of the
transaction before being sent out - changes in that route should
reflect only on that branch.
</para>
<para>
As not all functions are available from this type of route, please
check the documentation for each function to see the permissions.
Any other commands may result in unpredictable behavior and
possible server failure.
</para>
<para>
Only one branch_route can be armed for a request. If you use many
time t_on_branch(), only the last one has effect.
</para>
<para>
The per-branch flags which are modified in the branch route will be
visible only in the replies related to that branch.
See <xref linkend="branch-flag-mask"> also.
</para>
<para>
By calling the drop() function (exported by core), the execution of
the branch route will end and the branch will not be forwarded further.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
<para><emphasis>branch_route</emphasis> - Branch route block to be
called.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE, BRANCH_ROUTE,
ONREPLY_ROUTE and FAILURE_ROUTE.
</para>
<example>
<title><function>t_on_branch</function> usage</title>
<programlisting format="linespecific">
...
route {
t_on_reply("1");
t_relay();
}
branch_route[1] {
if (uri=~"bad_uri") {
xlog("dropping branch $ru \n");
drop;
}
if (uri=~"GW_uri") {
append_rpid();
}
}
...
</programlisting>
</example>
</section>
</section>
<section>
<title>Pseudo-Variables</title>
<para>
This module exports the follong pseudo-variables:
</para>
<itemizedlist>
<listitem>
<para>
<emphasis>$T_branch_index</emphasis> - the index (starting with 1
for the first branch) of the branch for which is executed the
branch_route[]. If used outside of branch_route[] block, the value
is '0'.
</para>
</listitem>
</itemizedlist>
</section>
</chapter>
<!-- Keep this element at the end of the file
Local Variables:
sgml-parent-document: ("tm.sgml" "Book" "chapter")
End:
-->
|