1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
|
<?xml version="1.0" encoding='ISO-8859-1'?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
<!-- Include general documentation entities -->
<!ENTITY % docentities SYSTEM "../../../docbook/entities.xml">
%docentities;
]>
<!-- Module User's Guide -->
<chapter>
<title>&adminguide;</title>
<section>
<title>Overview</title>
<para>
The User location module module keeps a user location table and
provides access to the table for other modules. The module exports no
functions that can be used directly from routing scripts.
</para>
<section id="contact-matching-algs">
<title>Contact matching</title>
<para>
How the contacts are matched (for the same AOR - Address of Record) is an
important aspect of the usrloc module, especially in the context of NAT
traversal - this raises more problems since contacts from different
phones of the same user may overlap (if both are behind NATs with the same
configuration) or the re-register contact of the same phone may be
seen as a new one (due different binding via NAT).
</para>
<para>
The SIP RFC 3261 publishes a matching algorithm based only on the
contact string with Call-id and Cseq extra checking (if the Call-ID
is the same, it must have a higher Cseq number, otherwise it is invalid).
But as argumented above, this is not enough in NAT traversal context,
so the &kamailio; implementation of contact matching offers more algorithms:
</para>
<itemizedlist>
<listitem>
<para>
<emphasis>Contact based only</emphasis> - it is strict RFC 3261
compliancy - the Contact URI is matched as string and extra checked
via Call-ID and cseq (if Call-ID is the same, it must have a
higher cseq number, otherwise it is invalid).
</para>
</listitem>
<listitem>
<para>
<emphasis>Contact and Call-id based</emphasis> - it is an extension
of the first case - the contact and Call-ID must be matched as
string; the cseq must be higher than the previous one - so be
careful how you deal with REGISTER retransmissions in this
case.
</para>
</listitem>
<listitem>
<para>
<emphasis>contact and path based</emphasis> - it is an extension
of the first case - the contact and path must be matched as
string; the cseq must be higher than the previous one - so be
careful how you deal with REGISTER retransmissions in this
case.
</para>
</listitem>
</itemizedlist>
<para>
To find out how to control/select the contact maching algorithm, please see the
module parameter matching_mode - <xref linkend="usrloc.p.matching_mode"/>.
</para>
</section>
</section>
<section>
<title>Dependencies</title>
<section>
<title>&kamailio; Modules</title>
<para>
The following modules must be loaded before this module:
<itemizedlist>
<listitem>
<para>
<emphasis>Optionally a database module</emphasis>.
</para>
</listitem>
</itemizedlist>
</para>
</section>
<section>
<title>External Libraries or Applications</title>
<para>
The following libraries or applications must be installed before
running &kamailio; with this module loaded:
<itemizedlist>
<listitem>
<para>
<emphasis>None</emphasis>.
</para>
</listitem>
</itemizedlist>
</para>
</section>
</section>
<section>
<title>Parameters</title>
<section id="usrloc.p.nat_bflag">
<title><varname>nat_bflag</varname> (integer)</title>
<para>
The index of the branch flag to be used as NAT marker (if the contact
is or not natted). This is a branch flag and it will be imported and
used by all other modules depending of usrloc module.
</para>
<para>
<emphasis>
Default value is <quote>not set</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>nat_bflag</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "nat_bflag", 3)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.user_column">
<title><varname>user_column</varname> (string)</title>
<para>
Name of database column containing usernames.
</para>
<para>
<emphasis>
Default value is <quote>username</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>user_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "user_column", "username")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.domain_column">
<title><varname>domain_column</varname> (string)</title>
<para>
Name of database column containing domains.
</para>
<para>
<emphasis>
Default value is <quote>domain</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>user_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "domain_column", "domain")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.contact_column">
<title><varname>contact_column</varname> (string)</title>
<para>
Name of database column containing contacts.
</para>
<para>
<emphasis>
Default value is <quote>contact</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>contact_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "contact_column", "contact")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.expires_column">
<title><varname>expires_column</varname> (string)</title>
<para>
Name of database column containing expires value.
</para>
<para>
<emphasis>
Default value is <quote>expires</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>expires_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "expires_column", "expires")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.q_column">
<title><varname>q_column</varname> (string)</title>
<para>
Name of database column containing q values.
</para>
<para>
<emphasis>
Default value is <quote>q</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>q_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "q_column", "q")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.callid_column">
<title><varname>callid_column</varname> (string)</title>
<para>
Name of database column containing Call-ID values.
</para>
<para>
<emphasis>
Default value is <quote>callid</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>callid_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "callid_column", "callid")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.cseq_column">
<title><varname>cseq_column</varname> (string)</title>
<para>
Name of database column containing Cseq.
</para>
<para>
<emphasis>
Default value is <quote>cseq</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>cseq_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "cseq_column", "cseq")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.methods_column">
<title><varname>methods_column</varname> (string)</title>
<para>
Name of database column containing supported methods.
</para>
<para>
<emphasis>
Default value is <quote>methods</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>methods_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "methods_column", "methods")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.flags_column">
<title><varname>flags_column</varname> (string)</title>
<para>
Name of database column to save the internal flags of the record.
</para>
<para>
<emphasis>
Default value is <quote>flags</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>flags_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "flags_column", "flags")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.cflags_column">
<title><varname>cflags_column</varname> (string)</title>
<para>
Name of database column to save the branch/contact flags of the record.
</para>
<para>
<emphasis>
Default value is <quote>cflags</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>cflags_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "cflags_column", "cflags")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.user_agent_column">
<title><varname>user_agent_column</varname> (string)</title>
<para>
Name of database column containing user-agent values.
</para>
<para>
<emphasis>
Default value is <quote>user_agent</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>user_agent_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "user_agent_column", "user_agent")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.received_column">
<title><varname>received_column</varname> (string)</title>
<para>
Name of database column containing the source IP, port, and protocol from the REGISTER
message.
</para>
<para>
<emphasis>
Default value is <quote>received</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>received_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "received_column", "received")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.socket_column">
<title><varname>socket_column</varname> (string)</title>
<para>
Name of database column containing the received socket information (IP:port)
for the REGISTER message.
</para>
<para>
<emphasis>
Default value is <quote>socket</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>socket_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "socket_column", "socket")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.path_column">
<title><varname>path_column</varname> (string)</title>
<para>
Name of database column containing the Path header.
</para>
<para>
<emphasis>
Default value is <quote>path</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>path_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "path_column", "path")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.ruid_column">
<title><varname>ruid_column</varname> (string)</title>
<para>
Name of database column containing the Kamailio record unique id.
</para>
<para>
<emphasis>
Default value is <quote>ruid</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>ruid_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "ruid_column", "myruid")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.instance_column">
<title><varname>instance_column</varname> (string)</title>
<para>
Name of database column containing the SIP instance ID (GRUU - RFC5627).
This is a unique device identifier - UUID.
</para>
<para>
<emphasis>
Default value is <quote>instance</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>instance_column</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "instance_column", "myinstance")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.use_domain">
<title><varname>use_domain</varname> (integer)</title>
<para>
If the domain part of the user should be also saved and used for
identifing the user (along with the username part). Useful in
multi domain scenarios. Non 0 value means true.
</para>
<para>
<emphasis>
Default value is <quote>0 (false)</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>use_domain</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "use_domain", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.desc_time_order">
<title><varname>desc_time_order</varname> (integer)</title>
<para>
If the user's contacts should be kept timestamp ordered; otherwise the
contact will be ordered based on q value.
Non 0 value means true.
</para>
<para>
<emphasis>
Default value is <quote>0 (false)</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>desc_time_order</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "desc_time_order", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.timer_interval">
<title><varname>timer_interval</varname> (integer)</title>
<para>
Number of seconds between two timer runs. The module uses a timer to
delete expired contacts, synchronize with database and other tasks,
that need to be run periodically.
</para>
<para>
<emphasis>
Default value is 60.
</emphasis>
</para>
<example>
<title>Set <varname>timer_interval</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "timer_interval", 120)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.db_url">
<title><varname>db_url</varname> (string)</title>
<para>
&url; of the database that should be used.
</para>
<para>
<emphasis>
Default value is <quote>&defaultdb;</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>db_url</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "db_url", "&exampledb;")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.db_mode">
<title><varname>db_mode</varname> (integer)</title>
<para>
The usrloc module can utilize a database for persistent contact storage.
If a database is used, the location database (contacts) will survive
machine restarts or software crashes. The disadvantage is that accessing
a database can be very time consuming. Therefore, usrloc module implements
four database accessing modes:
</para>
<itemizedlist>
<listitem>
<para>
0 - This disables database completely. Only memory will be used.
Contacts will not survive restart. Use this value if you need a
really fast usrloc and contact persistence is not necessary or
is provided by other means.
</para>
</listitem>
<listitem>
<para>
1 - Write-Through scheme. All changes to usrloc are immediately
reflected in database too. This is very slow, but very reliable.
Use this scheme if speed is not your priority but need to make
sure that no registered contacts will be lost during crash or
reboot.
</para>
</listitem>
<listitem>
<para>
2 - Write-Back scheme. This is a combination of previous two
schemes. All changes are made to memory and database
synchronization is done in the timer. The timer deletes all
expired contacts and flushes all modified or new contacts to
database. Use this scheme if you encounter high-load peaks
and want them to process as fast as possible. The mode will
not help at all if the load is high all the time. Also, latency
of this mode is much lower than latency of mode 1, but slightly
higher than latency of mode 0.
</para>
</listitem>
<listitem>
<para>
3 - DB-Only scheme. No memory cache is kept, all operations being
directly performed with the database. The timer deletes all
expired contacts from database - cleans after clients that didn't
un-register or re-register. The mode is useful if you configure
more servers sharing the same DB without any replication at SIP
level. The mode may be slower due the high number of DB operation.
For example NAT pinging is a killer since during each ping cycle
all nated contact are loaded from the DB; The lack of memory
caching also disable the statistics exports.
</para>
</listitem>
<listitem>
<para>
4 - This uses database to load records at startup but uses only
memory during the runtime. Records are not written back at all,
not even at shutdown. Useful for scenarios when registrations are
replicated to a node that does the storage in database during
runtime.
</para>
</listitem>
</itemizedlist>
<warning>
<para>
In case of crash or restart contacts that are in memory only and
haven't been flushed yet will get lost. If you want minimize the
risk, use shorter timer interval.
</para>
</warning>
<para>
<emphasis>
Default value is 0.
</emphasis>
</para>
<example>
<title>Set <varname>db_mode</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "db_mode", 2)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.matching_mode">
<title><varname>matching_mode</varname> (integer)</title>
<para>
What contact matching algorithm to be used. Refer to section
<xref linkend="contact-matching-algs"/> for the description of the
algorithms.
</para>
<para>
The parameter may take the following values:
</para>
<itemizedlist>
<listitem>
<para><emphasis>0</emphasis> - CONTACT ONLY based matching
algorithm.
</para>
</listitem>
<listitem>
<para><emphasis>1</emphasis> - CONTACT and CALLID based
matching algorithm.
</para>
</listitem>
<listitem>
<para><emphasis>2</emphasis> - CONTACT and PATH based
matching algorithm. This mode is like mode <emphasis>0</emphasis>
but allows for duplicate contacts from differing paths.
If no path is available, it defaults to mode 0.
</para>
</listitem>
</itemizedlist>
<para>
<emphasis>
Default value is <emphasis>0 (CONTACT_ONLY)</emphasis>.
</emphasis>
</para>
<example>
<title>Set <varname>matching_mode</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "matching_mode", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.cseq_delay">
<title><varname>cseq_delay</varname> (integer)</title>
<para>
Delay (in seconds) for accepting as retransmissions register requests
with same Call-ID and Cseq. The delay is calculated starting from the
receiving time of the first register with that Call-ID and Cseq.
</para>
<para>
Retransmissions within this delay interval will be accepted and replied
as the original request, but no update will be done in location. If the
delay is exceeded, error is reported.
</para>
<para>
A value of 0 disable the retransmission detection.
</para>
<para>
<emphasis>
Default value is <quote>20 seconds</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>cseq_delay</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "cseq_delay", 5)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.fetch_rows">
<title><varname>fetch_rows</varname> (integer)</title>
<para>
The number of the rows to be fetched at once from database
when loading the location records. This value can be used
to tune the load time at startup. For 1MB of private memory (default)
it should be below 4000. The database driver must support
fetch_result() capability.
</para>
<para>
<emphasis>
Default value is <quote>2000</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>fetch_rows</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "fetch_rows", 3000)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.hash_size">
<title><varname>hash_size</varname> (integer)</title>
<para>
The number of entries of the hash table used by usrloc to store the
location records is 2^hash_size. For hash_size=4, the number of slots
of the hash table is 16.
</para>
<para>
<emphasis>
Default value is <quote>10</quote> (1024 slots).
</emphasis>
</para>
<example>
<title>Set <varname>hash_size</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "hash_size", 12)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.preload">
<title><varname>preload</varname> (string)</title>
<para>
Preload location table given as value. A location table is loaded
based on fixup of registrar functions, therefore you need to use this
parameter only to load tables that are not used by registrar module
directly in configuration file.
</para>
<para>
<emphasis>
Default value is <quote>NULL</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>preload</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "preload", "location")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.db_update_as_insert">
<title><varname>db_update_as_insert</varname> (string)</title>
<para>
Set this parameter if you want to do INSERT DB operations
instead of UPDATE DB operations. It is recommended to set this parameter
if you use Cassandra as a DB backend.
</para>
<para>
<emphasis>
Default value is <quote>0</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>db_update_as_insert</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "db_update_as_insert", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.db_check_update">
<title><varname>db_check_update</varname> (string)</title>
<para>
Set this parameter to 1 if you want to do DB INSERT if the number
of affected rows by contact DB UPDATE operation is 0. The
database module driver has to implement affected_rows() DB API
function, otherwise this parameter is ignored - e.g., MySQL and
Postgres DB connectors offer affected_rows().
</para>
<para>
<emphasis>
Default value is <quote>0</quote> (no DB INSERT).
</emphasis>
</para>
<example>
<title>Set <varname>db_check_update</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "db_check_update", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.timer_procs">
<title><varname>timer_procs</varname> (string)</title>
<para>
Number of timer processes to be started by module. Timer processes
take care of checking expired records and syncronization with
database. If set to 0, no dedicated timer is started, the one from
core will be used.
</para>
<para>
<emphasis>
Default value is <quote>0</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>timer_procs</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "timer_procs", 4)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.xavp_contact">
<title><varname>xavp_contact</varname> (string)</title>
<para>
The name of XAVP storring the attributes per contact. They are saved
in location record and restored at lookup.
</para>
<para>
<emphasis>
Default value is <quote>NULL</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>xavp_contact</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "xavp_contact", "ulattrs")
...
</programlisting>
</example>
</section>
<section id="usrloc.p.db_ops_ruid">
<title><varname>db_ops_ruid</varname> (int)</title>
<para>
If set to 1, database queries for update or delete are done using
ruid value. If it is set to 0, the old style using aor, contact and
call-id is done.
</para>
<para>
<emphasis>
Default value is <quote>1</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>db_ops_ruid</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "db_ops_ruid", 0)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.handle_lost_tcp">
<title><varname>handle_lost_tcp</varname> (int)</title>
<para>
If set to 1, Kamailio will remove location records made via
TCP/TLS/WS/WSS transports when it looses corresponding tcp connections.
</para>
<para>
<emphasis>
Default value is <quote>0</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>handle_lost_tcp</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "handle_lost_tcp", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.expires_type">
<title><varname>expires_type</varname> (int)</title>
<para>
If set to 1, &kamailio; expects to deal with BIGINT type on
database columns for expires and last modified values. It
allows to handle better the daylight time adjustmens. If set
to 0, those columns are expected to be on default type
'DATETIME'. When it is 1, the database columns types have
to be changed manually to 'BIGINT'.
</para>
<para>
<emphasis>
Default value is <quote>0</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>expires_type</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "expires_type", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.db_raw_fetch_type">
<title><varname>db_raw_fetch_type</varname> (int)</title>
<para>
This affect DB-only mode and controls what kind of
raw query is used to fetch the contacts from database for
specific needs (e.g., sending NAT keepalives). If it is set to 0,
then the common SQL query is used (working for MySQL, PostgreSQL,
...). If it is set to 1, the query required by Oracle is used.
</para>
<para>
<emphasis>
Default value is <quote>0</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>db_raw_fetch_type</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "db_raw_fetch_type", 1)
...
</programlisting>
</example>
</section>
<section id="usrloc.p.db_insert_null">
<title><varname>db_insert_null</varname> (int)</title>
<para>
If set to 1, the insert operation to database will add null values
in the sql statement.
</para>
<para>
<emphasis>
Default value is <quote>0</quote> (don't add null fields in insert
statement).
</emphasis>
</para>
<example>
<title>Set <varname>db_insert_null</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("usrloc", "db_insert_null", 1)
...
</programlisting>
</example>
</section>
</section>
<section>
<title>Functions</title>
<para>
There are no exported functions that could be used in scripts.
</para>
</section>
<section>
<title>MI Commands</title>
<section id="usrloc.m.ul_rm">
<title>
<function moreinfo="none">ul_rm</function>
</title>
<para>
Deletes an entire AOR record (including its contacts).
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the AOR
is removed from (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.m.ul_rm_contact">
<title>
<function moreinfo="none">ul_rm_contact</function>
</title>
<para>
Deletes a contact from an AOR record.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the AOR
is removed from (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
<listitem><para>
<emphasis>contact</emphasis> - exact contact to be removed
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.m.ul_dump">
<title>
<function moreinfo="none">ul_dump</function>
</title>
<para>
Dumps the entire content of the USRLOC in memory cache
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>brief</emphasis> - (optional, may not be present); if
equals to string <quote>brief</quote>, a brief dump will be
done (only AOR and contacts, with no other details)
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.m.ul_flush">
<title>
<function moreinfo="none">ul_flush</function>
</title>
<para>
Triggers the flush of USRLOC memory cache into DB.
</para>
</section>
<section id="usrloc.m.ul_add">
<title>
<function moreinfo="none">ul_add</function>
</title>
<para>
Adds a new contact for an user AOR.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the contact
will be added (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
<listitem><para>
<emphasis>contact</emphasis> - contact string to be added
</para></listitem>
<listitem><para>
<emphasis>expires</emphasis> - expires value of the contact
</para></listitem>
<listitem><para>
<emphasis>Q</emphasis> - Q value of the contact
</para></listitem>
<listitem><para>
<emphasis>path</emphasis> value of the contact
</para></listitem>
<listitem><para>
<emphasis>flags</emphasis> - internal USRLOC flags of the
contact
</para></listitem>
<listitem><para>
<emphasis>cflags</emphasis> - per branch flags of the
contact
</para></listitem>
<listitem><para>
<emphasis>methods</emphasis> - mask with supported requests
of the contact
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.m.ul_show_contact">
<title>
<function moreinfo="none">ul_show_contact</function>
</title>
<para>
Dumps the contacts of an user AOR.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the AOR
resides (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
</itemizedlist>
</section>
</section><!-- MI commands -->
<section>
<title>RPC Commands</title>
<section id="usrloc.r.dump">
<title>
<function moreinfo="none">ul.dump</function>
</title>
<para>
Dumps the content of the location table
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
None.
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.r.lookup">
<title>
<function moreinfo="none">ul.lookup table AOR</function>
</title>
<para>
Looks up the contents of an AOR entry in the location table
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the AOR
resides (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.r.rm">
<title>
<function moreinfo="none">ul.rm table AOR</function>
</title>
<para>
Deletes an entire AOR record (including its contacts).
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the AOR
resides (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.r.rm_contact">
<title>
<function moreinfo="none">ul.rm_contact table AOR contact</function>
</title>
<para>
Deletes a contact from an AOR record.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the AOR
is removed from (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
<listitem><para>
<emphasis>contact</emphasis> - exact contact to be removed
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.r.flush">
<title>
<function moreinfo="none">ul.flush</function>
</title>
<para>
Triggers the flush of USRLOC memory cache into DB.
</para>
</section>
<section id="usrloc.r.add">
<title>
<function moreinfo="none">ul.add</function>
</title>
<para>
Adds a new contact for an user AOR.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - table where the contact
will be added (Ex: location).
</para></listitem>
<listitem><para>
<emphasis>AOR</emphasis> - user AOR in username[@domain]
format (domain must be supplied only if use_domain option
is on).
</para></listitem>
<listitem><para>
<emphasis>contact</emphasis> - contact string to be added
</para></listitem>
<listitem><para>
<emphasis>expires</emphasis> - expires value of the contact
</para></listitem>
<listitem><para>
<emphasis>Q</emphasis> - Q value of the contact
</para></listitem>
<listitem><para>
<emphasis>path</emphasis> value of the contact
</para></listitem>
<listitem><para>
<emphasis>flags</emphasis> - internal USRLOC flags of the
contact
</para></listitem>
<listitem><para>
<emphasis>cflags</emphasis> - per branch flags of the
contact
</para></listitem>
<listitem><para>
<emphasis>methods</emphasis> - mask with supported requests
of the contact
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.r.db_users">
<title>
<function moreinfo="none">ul.db_users</function>
</title>
<para>
Tell number of different users (AoRs) in a location table that have unexpired contacts.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - location table where the users are looked for, for example, location.
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.r.db_contacts">
<title>
<function moreinfo="none">ul.db_contacts</function>
</title>
<para>
Tell number of unexpired contacts in a location table.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - location table where the contacts are looked for, for example, location.
</para></listitem>
</itemizedlist>
</section>
<section id="usrloc.r.db_expired_contacts">
<title>
<function moreinfo="none">ul.db_expired_contacts</function>
</title>
<para>
Tell number of expired contacts in a location table.
</para>
<para>Parameters: </para>
<itemizedlist>
<listitem><para>
<emphasis>table name</emphasis> - location table where the contacts are looked for, for example, location.
</para></listitem>
</itemizedlist>
</section>
</section><!-- RPC commands -->
<section>
<title>Statistics</title>
<para>
Exported statistics are listed in the next sections.
</para>
<section id="usrloc.s.users">
<title>users</title>
<para>
Number of AOR existing in the USRLOC memory cache for that domain
- can not be resetted; this statistic will be register for each
used domain (Ex: location).
</para>
</section>
<section id="usrloc.s.contacts">
<title>contacts</title>
<para>
Number of contacts existing in the USRLOC memory cache for that
domain - can not be resetted; this statistic will be register for
each used domain (Ex: location).
</para>
</section>
<section id="usrloc.s.expires">
<title>expires</title>
<para>
Total number of expired contacts for that domain - can be resetted;
this statistic will be register for each used domain
(Ex: location).
</para>
</section>
<section id="usrloc.s.registered_users">
<title>registered_users</title>
<para>
Total number of AOR existing in the USRLOC memory cache for all
domains - can not be resetted.
</para>
</section>
</section>
</chapter>
|