/usr/share/amsn/sip.tcl is in amsn-data 0.98.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 | #SIP : vp.sip.messenger.msn.com
#TURN : relay.voice.messenger.msn.com
::Version::setSubversionId {$Id: sip.tcl 12001 2010-03-11 13:55:13Z billiob $}
snit::type SIPConnection {
option -user -default ""
option -password -default ""
option -request_handler -default ""
option -error_handler -default ""
option -user_agent -default "aTSC/0.1"
option -registered_host -default ""
option -local_audio_codecs -default ""
option -local_audio_candidates -default ""
option -local_video_codecs -default ""
option -local_video_candidates -default ""
option -remote_audio_codecs -default ""
option -remote_audio_candidates -default ""
option -remote_video_codecs -default ""
option -remote_video_candidates -default ""
option -active_audio_candidates -default "" -configuremethod ActiveCandidatesChanged
option -active_video_candidates -default "" -configuremethod ActiveCandidatesChanged
option -tunneled -default 0
option -socket -default ""
option -ice 6
delegate option {-host -port -transport
-proxy -proxy_host -proxy_port
-proxy_authenticate -proxy_user -proxy_password} to socket
variable compact_form
variable reasons
variable state ""
variable callid_handler
variable call_from
variable call_to
variable call_cseq
variable call_route
variable call_contact
variable call_via
variable trying_afterid
variable timeout_afterid
variable respond_reinvite ""
variable sip_instance "0E04CFC3-0272-5A5C-B7C3-6FBE8DA71EAD"
variable register_callid ""
constructor { args } {
install socket using SIPSocket %AUTO%
$self configurelist $args
if {$options(-socket) != ""} {
$socket destroy
set socket $options(-socket)
}
$socket configure -sipconnection $self
if {$options(-tunneled) } {
set options(-registered_host) ""
} else {
set options(-registered_host) [$socket cget -host]
}
array set compact_form [list "call-id" "i" \
"contact" "m" \
"content-encoding" "e" \
"content-length" "l" \
"content-type" "c" \
"from" "f" \
"subject" "s" \
"supported" "k" \
"to" "t" \
"via" "v" \
"event" "o" \
"allow-events" "u"]
array set reasons [list 100 "Trying" \
180 "Ringing" \
181 "Call Is Being Forwarded" \
182 "Queues" \
183 "Session Progress" \
200 "OK" \
300 "Multiple Choices" \
301 "Moved Permanently" \
302 "Moved Temporarily" \
305 "Use Proxy" \
380 "Alternative Service" \
400 "Bad Request" \
401 "Unauthorized" \
402 "Payment Required" \
403 "Forbidden" \
404 "Not Found" \
405 "Method Not Allowed" \
406 "Not Acceptable" \
407 "Proxy Authentication Required" \
408 "Request Timeout" \
410 "Gone" \
413 "Request Entity Too Large" \
414 "Request-URI Too Long" \
415 "Unsupported Media Type" \
416 "Unsupported URI Scheme" \
420 "Bad Extension" \
421 "Extension Required" \
423 "Interval Too Brief" \
480 "Temporarily Unavailable" \
481 "Call/Transaction Does Not Exist" \
482 "Loop Detected" \
483 "Too Many Hops" \
484 "Address Incomplete" \
485 "Ambiguous" \
486 "Busy Here" \
487 "Request Terminated" \
488 "Not Acceptable Here" \
491 "Request Pending" \
493 "Undecipherable" \
500 "Server Internal Error" \
501 "Not Implemented" \
502 "Bad Gateway" \
503 "Service Unavailable" \
504 "Server Time-out" \
505 "Version Not Supported" \
513 "Message Too Large" \
600 "Busy Everywhere" \
603 "Decline" \
604 "Does Not Exist Anywhere" \
606 "Not Acceptable"]
}
destructor {
$self Disconnect
catch {$socket destroy}
}
########################################
############# Connection ###############
########################################
method Connect { } {
if {[$socket IsConnected] } {
return
}
set state "CONNECTING"
if { [catch {$socket Connect}] == 0 } {
after 20000 [list $self KeepAlive]
}
}
method Disconnect { } {
if {$state != "" } {
$self Unregister
}
set state ""
}
method Disconnected { } {
status_log "Got Disconnected from SIP"
if {$state != "" } {
if {$options(-error_handler) != "" } {
if {[catch {eval [linsert $options(-error_handler) end DISCONNECTED]} result]} {
bgerror $result
}
}
}
set state ""
after cancel [list $self KeepAlive]
after cancel [list $self RegisterExpires]
foreach callid [array names trying_afterid] {
after cancel $trying_afterid($callid)
}
foreach callid [array names timeout_afterid] {
after cancel $timeout_afterid($callid)
}
}
method KeepAlive { } {
if {$options(-tunneled) == 0} {
status_log "SIP Keepalive" green
if { [$socket Send "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"] } {
after 20000 [list $self KeepAlive]
} else {
$self Disconnect
}
}
}
method HandleMessage { start headers body } {
if {[string range $start 0 6] == "SIP/2.0" } {
set type "status"
} elseif {[string range $start end-6 end] == "SIP/2.0" } {
set type "request"
} else {
status_log "Received a non SIP message " red
if {$options(-error_handler) != "" } {
if {[catch {eval [linsert $options(-error_handler) end NOT_SIP]} result]} {
bgerror $result
}
}
return
}
set callid [$self GetHeader $headers "Call-ID"]
if { ![info exists call_to($callid)] ||
[$self GetCallee $callid] ==
[$self GetRecipient [$self GetHeader $headers "To"]] } {
set call_from($callid) [$self GetHeader $headers "From"]
set call_to($callid) [$self GetHeader $headers "To"]
}
set route [$self GetHeader $headers "Record-Route"]
set contact [$self GetHeader $headers "Contact"]
set call_via($callid) [$self GetHeaders $headers "Via"]
if {$route != "" && $contact != "" } {
set call_route($callid) $route
set call_contact($callid) $contact
}
set call_cseq($callid) [lindex [$self GetHeader $headers "CSeq"] 0]
if {$type == "status" } {
if { ![info exists callid_handler($callid)] } {
# Answer with 'Call/Transaction does not exit error
$self Send [$self BuildResponse $callid [$self GetCommand $headers] 481]
status_log "ERROR : unknown callid : $callid" red
if {$options(-error_handler) != "" } {
if {[catch {eval [linsert $options(-error_handler) end UNKNOWN_CALL]} result]} {
bgerror $result
}
}
} else {
set handler $callid_handler($callid)
eval [linsert $handler end $start $headers $body]
}
} else {
if { [info exists callid_handler($callid)] } {
eval [linsert $callid_handler($callid) end $start $headers $body]
} elseif {$options(-request_handler) != ""} {
if {[$self GetCommand $headers] == "INVITE" } {
$self SendTrying $callid
$self ParseSDP $body
if {$options(-ice) == 6} {
if {$options(-remote_video_codecs) != "" &&
$options(-remote_video_candidates) != "" } {
set mode "AV6"
} else {
set mode "A6"
}
} else {
if {$options(-remote_video_codecs) != "" &&
$options(-remote_video_candidates) != "" } {
set mode "AV19"
} else {
set mode "A19"
}
}
set callid_handler($callid) [list $self InviteRequestHandler $callid]
eval [linsert $options(-request_handler) end $callid INVITE $mode]
} else {
status_log "SIP ERROR: Received non-INVITE Request" red
if {$options(-error_handler) != "" } {
if {[catch {eval [linsert $options(-error_handler) end NOT_INVITE]} result]} {
bgerror $result
}
}
}
}
}
}
########################################
############### REGISTER ###############
########################################
method Register { {callbk ""} } {
if {$options(-tunneled)} {
set state "REGISTERED"
}
$self Connect
if {![$socket IsConnected] } {
return
}
status_log "SIP : Registering : $state"
if { $state == "REGISTERED" } {
if {$callbk != "" } {
if {[catch {eval $callbk} result]} {
bgerror $result
}
}
return
}
set auth "msmsgs:RPS_$options(-password)"
set auth [string map {"\n" "" } [base64::encode $auth]]
if {[info exists call_cseq($register_callid)] } {
incr call_cseq($register_callid)
}
set request [$self BuildRequest REGISTER [lindex [split $options(-user) @] 1] $options(-user) $register_callid]
set callid [lindex $request 0]
set register_callid $callid
set msg [lindex $request 1]
append msg "ms-keep-alive: UAC;hop-hop=yes\r\n"
append msg "o: registration\r\n"
append msg "Authorization: Basic $auth\r\n"
set callid_handler($callid) [list $self RegisterResponse $callbk]
$self Send $msg
}
method RegisterExpires { } {
status_log "SIP : Register expired"
after cancel [list $self RegisterExpires]
set state ""
$self Register
}
method RegisterResponse {callbk response headers body} {
if {[lindex $response 1] == "200" } {
set options(-registered_host) [lindex $response 3]
set state "REGISTERED"
status_log "SIP : Registered"
set expires [$self GetHeader $headers "Expires"]
if {$expires != "" } {
after [expr {$expires * 1000}] [list $self RegisterExpires]
} else {
after 30000 [list $self RegisterExpires]
}
#puts "Current time is [clock seconds]"
if {$callbk != "" } {
if {[catch {eval $callbk} result]} {
bgerror $result
}
}
} else {
status_log "SIP :error on registration : $response"
if {$options(-error_handler) != "" } {
if {[catch {eval [linsert $options(-error_handler) end REGISTRATION]} result]} {
bgerror $result
}
}
}
}
method Unregister { } {
if {$options(-tunneled)} {
return
}
status_log "SIP : Unregistering"
set auth "$options(-user):$options(-password)"
set auth [string map {"\n" "" } [base64::encode $auth]]
if {[info exists call_cseq($register_callid)] } {
incr call_cseq($register_callid)
}
set request [$self BuildRequest REGISTER [lindex [split $options(-user) @] 1] $options(-user) $register_callid]
set callid [lindex $request 0]
set register_callid $callid
set msg [lindex $request 1]
append msg "ms-keep-alive: UAC;hop-hop=yes\r\n"
append msg "Expires: 0\r\n"
append msg "Authorization: Basic $auth\r\n"
set callid_handler($callid) [list $self UnregisterResponse]
$self Send $msg
after cancel [list $self KeepAlive]
after cancel [list $self RegisterExpires]
}
method UnregisterResponse { response headers body } {
$socket Disconnect
}
########################################
################ INVITE ################
########################################
method Invite {destination {callbk ""}} {
set sdp [$self BuildSDP]
set request [$self BuildRequest INVITE $destination $destination]
set callid [lindex $request 0]
set msg [lindex $request 1]
if {[info exists ::crash_wlm] && $::crash_wlm } {
append msg "Ms-Conversation-ID: f=12345\r\n"
} elseif { $options(-local_video_codecs) != "" &&
$options(-local_video_candidates) != "" } {
append msg "Ms-Conversation-ID: f=1\r\n"
} else {
append msg "Ms-Conversation-ID: f=0\r\n"
}
set callid_handler($callid) [list $self InviteResponse $callid $callbk]
$self Register [list $self InviteCB $msg $sdp $callbk]
return $callid
}
method InviteCB {msg sdp callbk} {
status_log "SIP : Sending Invite"
$self Send $msg "application/sdp" $sdp
}
method InviteResponse {callid callbk response headers body } {
status_log "Received INVITE response"
# Answer with ACK to any INVITE response (200 ok, or call terminated, or busy..)
# Answer only to INVITE responses
if {[$self GetCommand $headers] == "INVITE"} {
set status [lindex $response 1]
if {$status >= "200" } {
$self SendACK $callid
}
if {$status == "100" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid TRYING ""]} result]} {
bgerror $result
}
}
} elseif {$status == "180" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid RINGING ""]} result]} {
bgerror $result
}
}
} elseif {$status == "200" } {
$self ParseSDP $body
# Do not notify of the re-invite...
if {[string first "remote-candidate" $body] == -1} {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid OK ""]} result]} {
bgerror $result
}
}
}
} elseif {$status == "408" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid NOANSWER ""]} result]} {
bgerror $result
}
}
} elseif {$status == "480" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid UNAVAILABLE ""]} result]} {
bgerror $result
}
}
} elseif {$status == "486" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid BUSY ""]} result]} {
bgerror $result
}
}
} elseif {$status == "487" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid TERMINATED ""]} result]} {
bgerror $result
}
}
} elseif {$status == "488" && [lindex [$self GetHeader $headers "CSeq"] 0] == "2" } {
# Ignore not acceptable here if it's as an answer to a reinvite
} elseif {$status == "603" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid DECLINED ""]} result]} {
bgerror $result
}
}
} elseif {$status == "504" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid TIMEOUT ""]} result]} {
bgerror $result
}
}
} else {
$self Bye $callid
# TODO : Maybe some other messages are not errors..
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid ERROR [lrange $response 1 end]]} result]} {
bgerror $result
}
}
}
} elseif {[$self GetCommand $headers] == "BYE"} {
# Answer 200 OK only when receiving the BYE request
if {[lindex $response 0] == "BYE" } {
$self Send [$self BuildResponse $callid BYE 200]
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid CLOSED REMOTE_BYE]} result]} {
bgerror $result
}
}
} elseif { [lindex $response 1] == "200" ||
[lindex $response 1] == "403" } {
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid CLOSED LOCAL_BYE]} result]} {
bgerror $result
}
}
} elseif { [lindex $response 1] == "500"} {
# Stale CSeq, change it...
incr call_cseq($callid)
$self Bye $callid
}
} elseif {[$self GetCommand $headers] == "CANCEL"} {
set status [lrange $response 1 end]
if {$callbk != "" } {
if {[catch {eval [linsert $callbk end $callid CANCEL $status]} result]} {
bgerror $result
}
}
}
}
method SendReInvite { callid {local_audio ""} {remote_audio ""} {local_video ""} {remote_video ""}} {
set content [$self BuildSDP $local_audio $remote_audio $local_video $remote_video]
set uri [string range $call_route($callid) [expr {[string first "<sip:" $call_route($callid)] + 5}] [expr {[string first ">" $call_route($callid)] - 1}]]
incr call_cseq($callid)
set msg [lindex [$self BuildRequest INVITE $uri [$self GetCallee $callid] $callid 1] 1]
$self Send $msg "application/sdp" $content
}
method SendTrying { callid } {
$self Send [$self BuildResponse $callid INVITE 100]
set trying_afterid($callid) [after 25000 [list $self SendSecondTrying $callid]]
}
method SendSecondTrying { callid } {
unset trying_afterid($callid)
$self Send [$self BuildResponse $callid INVITE 100]
set timeout_afterid($callid) [after 25000 [list $self SendTimeout $callid]]
}
method SendTimeout { callid } {
unset timeout_afterid($callid)
$self Send [$self BuildResponse $callid INVITE 408]
if {[catch {eval [linsert $options(-request_handler) end $callid TIMEOUT ""]} result]} {
bgerror $result
}
}
method InviteRequestHandler {callid response headers body } {
status_log "SIP : InviteRequestHandler called "
if {[$self GetCommand $headers] == "ACK"} {
if {[catch {eval [linsert $options(-request_handler) end $callid ACK ""]} result]} {
bgerror $result
}
} elseif {[$self GetCommand $headers] == "BYE"} {
# Answer 200 OK only when receiving the BYE request
if {[lindex $response 0] == "BYE" } {
$self Send [$self BuildResponse $callid BYE 200]
if {[catch {eval [linsert $options(-request_handler) end $callid CLOSED REMOTE_BYE]} result]} {
bgerror $result
}
} elseif { [lindex $response 1] == "200" ||
[lindex $response 1] == "403" } {
# Forbidden means 'call ended' for WLM it seems...
if {[catch {eval [linsert $options(-request_handler) end $callid CLOSED LOCAL_BYE]} result]} {
bgerror $result
}
} elseif { [lindex $response 1] == "500"} {
$self Bye $callid
}
} elseif {[$self GetCommand $headers] == "CANCEL"} {
if {[info exists trying_afterid($callid)] } {
after cancel $trying_afterid($callid)
unset trying_afterid($callid)
}
if {[info exists timeout_afterid($callid)] } {
after cancel $timeout_afterid($callid)
unset timeout_afterid($callid)
}
$self Send [$self BuildResponse $callid CANCEL 200]
if {[catch {eval [linsert $options(-request_handler) end $callid CANCEL ""]} result]} {
bgerror $result
}
} elseif {[$self GetCommand $headers] == "INVITE" } {
status_log "Received re-invite!!!!"
$self Send [$self BuildResponse $callid INVITE 100]
if {$options(-active_audio_candidates) != "" &&
($options(-local_video_candidates) == "" ||
$options(-active_video_candidates) != "")} {
set local_audio [lindex $options(-active_audio_candidates) 0]
set remote_audio [lindex $options(-active_audio_candidates) 1]
set local_video [lindex $options(-active_video_candidates) 0]
set remote_video [lindex $options(-active_video_candidates) 1]
set sdp [$self BuildSDP $local_audio $remote_audio $local_video $remote_audio]
set message [$self BuildResponse $callid INVITE 200]
$self Send $message "application/sdp" $sdp
set respond_reinvite ""
} else {
set respond_reinvite $callid
}
}
}
method ActiveCandidatesChanged {option value} {
set options($option) $value
if {$respond_reinvite != "" &&
$options(-active_audio_candidates) != "" &&
($options(-local_video_candidates) == "" ||
$options(-active_video_candidates) != "")} {
set local_audio [lindex $options(-active_audio_candidates) 0]
set remote_audio [lindex $options(-active_audio_candidates) 1]
set local_video [lindex $options(-active_video_candidates) 0]
set remote_video [lindex $options(-active_video_candidates) 1]
set sdp [$self BuildSDP $local_audio $remote_audio $local_video $remote_audio]
set callid $respond_reinvite
set message [$self BuildResponse $callid INVITE 200]
$self Send $message "application/sdp" $sdp
set respond_reinvite ""
}
}
method AnswerInvite { callid status } {
switch -- $status {
"RINGING" {
set status 180
set content_type ""
set content ""
}
"UNAVAILABLE" {
set status 480
set content_type ""
set content ""
}
"BUSY" {
set status 486
set content_type ""
set content ""
}
"OK" {
set status 200
set content_type "application/sdp"
set content [$self BuildSDP]
}
"DECLINE" {
set status 603
set content_type ""
set content ""
}
default {
error "Unknown Status"
}
}
status_log "SIP : Answering Invite with status $status"
$self Send [$self BuildResponse $callid INVITE $status] $content_type $content
if {$status != 180 } {
if {[info exists trying_afterid($callid)] } {
after cancel $trying_afterid($callid)
unset trying_afterid($callid)
}
if {[info exists timeout_afterid($callid)] } {
after cancel $timeout_afterid($callid)
unset timeout_afterid($callid)
}
}
}
method SendACK { callid } {
if {[info exists call_route($callid)] } {
set uri [string range $call_route($callid) [expr {[string first "<sip:" $call_route($callid)] + 5}] [expr {[string first ">" $call_route($callid)] - 1}]]
} else {
set uri [$self GetCallee $callid]
}
$self Send [lindex [$self BuildRequest ACK $uri [$self GetCallee $callid] $callid 1] 1]
}
########################################
################ CANCEL ################
########################################
method Cancel { callid } {
if { ![info exists call_to($callid)] } {
return
}
$self Register [list $self CancelCB $callid]
}
method CancelCB { callid } {
$self Send [lindex [$self BuildRequest CANCEL [$self GetCallee $callid] [$self GetCallee $callid] $callid] 1]
}
########################################
################# BYE ##################
########################################
method Bye { callid } {
if { ![info exists call_route($callid)] ||
![info exists call_contact($callid)] } {
return
}
$self Register [list $self ByeCB $callid]
}
method ByeCB { callid } {
set uri [string range $call_route($callid) [expr {[string first "<sip:" $call_route($callid)] + 5}] [expr {[string first ">" $call_route($callid)] - 1}]]
incr call_cseq($callid)
set msg [lindex [$self BuildRequest BYE $uri [$self GetCallee $callid] $callid 1] 1]
$self Send $msg
}
########################################
######### Message Builders #############
########################################
# new_request here is not really whether it's a new request
# or not, it's rather whether it's a new request relating to
# an existing callid. Useful because INVITE renegociation
# and BYE need to be sent with the 'From' field set to self
method BuildRequest { request uri to {callid ""} {new_request 0}} {
$self Connect
if {![$socket IsConnected] } {
return
}
set sockname [$socket GetInfo]
if {$callid == "" } {
set callid [$self GenerateCallID]
if {$request == "REGISTER" } {
set name ""
} else {
set name "\"0\" "
}
if { $options(-tunneled) } {
set call_from($callid) "<sip:$options(-user);mepid=[$self GetMepid]>;tag=[$self GenerateTag];epid=[$self GenerateEpid]"
} else {
set call_from($callid) "$name<sip:$options(-user)>;tag=[$self GenerateTag];epid=[$self GenerateEpid]"
}
set call_to($callid) "<sip:$to>"
}
if {![info exists call_cseq($callid)] } {
set call_cseq($callid) 1
}
set msg "$request sip:$uri SIP/2.0\r\n"
append msg "v: SIP/2.0/[string toupper [$socket cget -transport]] [lindex $sockname 0]:[lindex $sockname 2]\r\n"
append msg "Max-Forwards: 70\r\n"
# Switch the from/to only if we send a new invite of an existing
# call, where we were the original recipient..
if { $new_request == 1 &&
[$self GetCallee $callid] == $options(-user)} {
append msg "f: $call_to($callid)\r\n"
append msg "t: $call_from($callid)\r\n"
} else {
append msg "f: $call_from($callid)\r\n"
append msg "t: $call_to($callid)\r\n"
}
append msg "i: $callid\r\n"
append msg "CSeq: $call_cseq($callid) $request\r\n"
if {$request == "REGISTER"} {
append msg "m: <sip:[lindex $sockname 0]:[lindex $sockname 2];"
append msg "transport=[$socket cget -transport]>;proxy=replace\r\n"
} elseif { $request == "INVITE" } {
if { $options(-tunneled) } {
append msg "m: <sip:$options(-user);mepid=[$self GetMepid]>;"
append msg "proxy=replace;+sip.instance=\"<urn:uuid:$sip_instance>\"\r\n"
} else {
append msg "m: \"0\" <sip:$options(-user):[lindex $sockname 2];"
append msg "maddr=[lindex $sockname 0];transport=[$socket cget -transport]>;proxy=replace\r\n"
}
append msg "Record-Route: <sip:127.0.0.1:50930;transport=tcp>\r\n"
}
append msg "User-Agent: $options(-user_agent)\r\n"
if {$new_request == 1 && [info exists call_contact($callid)] } {
if {[string first ">;" $call_contact($callid)] != -1} {
set idx [string first ">;" $call_contact($callid)]
set route [string range $call_contact($callid) 0 $idx]
} else {
set route $call_contact($callid)
}
append msg "Route: $route\r\n"
append msg "k: ms-dialog-route-set-update\r\n"
}
return [list $callid $msg]
}
method BuildResponse { callid request status } {
$self Connect
if {![$socket IsConnected] } {
return
}
set sockname [$socket GetInfo]
set reason ""
if {[info exists reasons($status)] } {
set reason $reasons($status)
}
set msg "SIP/2.0 $status $reason\r\n"
foreach via $call_via($callid) {
append msg "v: $via\r\n"
}
if {$request == "INVITE" && $status >= 180 &&
[info exists call_route($callid)]} {
append msg "Record-Route: $call_route($callid)\r\n"
}
if {$status != 100 &&
$call_to($callid) == "<sip:$options(-user)>" } {
if {$options(-tunneled) } {
set call_to($callid) "\"\" <sip:$options(-user);mepid=[$self GetMepid]>;tag=[$self GenerateTag]"
} else {
set call_to($callid) "\"0\" <sip:$options(-user)>;tag=[$self GenerateTag]"
}
}
append msg "Max-Forwards: 70\r\n"
append msg "f: $call_from($callid)\r\n"
append msg "t: $call_to($callid)\r\n"
append msg "i: $callid\r\n"
append msg "CSeq: $call_cseq($callid) $request\r\n"
if {$request == "INVITE" && $status == 200} {
if { $options(-tunneled) } {
append msg "m: <sip:$options(-user);mepid=[$self GetMepid]>;"
append msg "proxy=replace;+sip.instance=\"<urn:uuid:$sip_instance>\"\r\n"
} else {
append msg "m: \"0\" <sip:$options(-user):[lindex $sockname 2];"
append msg "maddr=[lindex $sockname 0];transport=[$socket cget -transport]>;proxy=replace\r\n"
}
}
append msg "User-Agent: $options(-user_agent)\r\n"
return $msg
}
method BuildIceCandidates { local_candidates remote_candidates {local ""} {remote ""} } {
set sdp ""
set first_line 1
foreach candidate [lsort $local_candidates] {
foreach {foundation component_id ip port base_ip base_port transport priority type username password} $candidate break
if {$options(-ice) == 6} {
if {[info exists ::farsight_test_turn] &&
$::farsight_test_turn &&
$priority >= "0.5" } {continue}
if {$username != "" && $password != "" } {
if {$local == "" || $foundation == $local} {
append sdp "a=candidate:$username $component_id $password $transport [format %.3f $priority] $ip $port\r\n"
}
}
} else {
if {[info exists ::farsight_test_turn] &&
$::farsight_test_turn &&
$type != "relay" } {continue}
if {$foundation != "" && $username != "" && $password != "" } {
if {$first_line} {
append sdp "a=ice-ufrag:$username\r\n"
append sdp "a=ice-pwd:$password\r\n"
set first_line 0
}
if {$local == "" || $foundation == $local} {
append sdp "a=candidate:$foundation $component_id $transport $priority $ip $port"
if {$type != "" } {
append sdp " typ $type"
if {$type != "host" } {
if {$base_ip != "" &&
$base_port != 0 } {
append sdp " raddr $base_ip rport $base_port"
}
}
}
append sdp "\r\n"
}
}
}
}
if {$remote != ""} {
set components [list]
foreach candidate $remote_candidates {
foreach {foundation component_id ip port base_ip base_port transport priority type username password} $candidate break
if {$options(-ice) == 6 } {
if {$foundation == $remote} {
append sdp "a=remote-candidate:$username\r\n"
break;
}
} elseif {$options(-ice) == 19 } {
if {[lsearch $components $component_id] == -1} {
if {$components == [list] } {
append sdp "a=remote-candidates:"
} else {
append sdp " "
}
append sdp "$component_id $ip $port"
lappend components $component_id
}
}
}
if {$components != [list] } {
append sdp "\r\n"
}
}
return $sdp
}
method BuildMedia {media local_codecs local_candidates remote_candidates {local ""} {remote ""}} {
set pt_list ""
foreach codec $local_codecs {
foreach {encoding_name payload_type bitrate fmtp} $codec break
append pt_list " $payload_type"
}
set rtcp_port 0
set default_ip 0
set default_port 0
set lowest_priority 0
if {$local == ""} {
foreach candidate $local_candidates {
foreach {foundation component_id ip port base_ip base_port transport priority type username password} $candidate break
if {$transport != "UDP" } { continue }
if {$priority < $lowest_priority} {
set lowest_priority $priority
}
if {$options(-ice) == 6 } {
if {$priority < "0.5"} {
set lowest_priority $priority
break
}
} elseif {$options(-ice) == 19 } {
if {$type == "relay" } {
set lowest_priority $priority
break
}
}
}
}
foreach candidate $local_candidates {
foreach {foundation component_id ip port base_ip base_port transport priority type username password} $candidate break
if {($local == "" || $foundation == $local) &&
$component_id == 1 && $default_ip == 0 &&
($lowest_priority == 0 || $priority == $lowest_priority)} {
set default_ip $ip
set default_port $port
}
}
foreach candidate $local_candidates {
foreach {foundation component_id ip port base_ip base_port transport priority type username password} $candidate break
if { $component_id == 2 && $ip == $default_ip} {
set rtcp_port $port
break
}
}
if {$media == "audio" } {
set sdp "v=0\r\n"
append sdp "o=- 0 0 IN IP4 $default_ip\r\n"
append sdp "s=session\r\n"
append sdp "b=CT:99980\r\n"
append sdp "t=0 0\r\n"
append sdp "m=$media $default_port RTP/AVP$pt_list\r\n"
append sdp "c=IN IP4 $default_ip\r\n"
} else {
set sdp "m=$media $default_port RTP/AVP$pt_list\r\n"
append sdp "c=IN IP4 $default_ip\r\n"
append sdp "a=x-caps:34 65537:352:288:15.0:256000:1;131074:176:144:15.0:180000:1\r\n"
}
if {$options(-ice) > 0} {
append sdp [$self BuildIceCandidates $local_candidates $remote_candidates $local $remote]
}
if {$rtcp_port != 0 } {
append sdp "a=rtcp:$rtcp_port\r\n"
}
foreach codec $local_codecs {
foreach {encoding_name payload_type bitrate fmtp} $codec break
append sdp "a=rtpmap:$payload_type $encoding_name/$bitrate\r\n"
if { $fmtp != "" } {
append sdp "a=fmtp:$payload_type $fmtp\r\n"
}
}
append sdp "a=encryption:rejected\r\n"
return $sdp
}
method BuildSDP { {local_audio ""} {remote_audio ""} {local_video ""} {remote_video ""}} {
set sdp [$self BuildMedia "audio" \
$options(-local_audio_codecs) \
$options(-local_audio_candidates) \
$options(-remote_audio_candidates) \
$local_audio $remote_audio]
if { $options(-local_video_codecs) != "" &&
$options(-local_video_candidates) != "" } {
append sdp [$self BuildMedia "video" \
$options(-local_video_codecs) \
$options(-local_video_candidates) \
$options(-remote_video_candidates) \
$local_video $remote_video]
}
return $sdp
}
method Send { headers {content_type ""} {body ""}} {
$self Connect
if {![$socket IsConnected] } {
return
}
set msg $headers
if {$content_type != ""} {
append msg "c: $content_type\r\n"
}
append msg "l: [string length $body]\r\n"
append msg "\r\n"
append msg "$body"
if { ![$socket Send $msg] } {
$self Disconnect
}
}
########################################
######### Helper Functions #############
########################################
method GetCallids { } {
return [array names call_from]
}
method GetHeader { headers name} {
return [lindex [$self GetHeaders $headers $name] 0]
}
method GetHeaders { headers name} {
if {[info exist compact_form([string tolower $name])] } {
set short_name $compact_form([string tolower $name])
} else {
set short_name $name
}
set reg {^}
append reg "($name|$short_name)"
append reg {:[ \t]*(.*)[ \t]*$}
set result [regexp -nocase -all -inline -line $reg $headers]
set header [list]
foreach {match field value} $result {
lappend header [string trim $value]
}
return $header
}
method GetRecipient { field } {
set recipient [string range $field [expr {[string first "<sip:" $field] + 5}] [expr {[string first ">" $field] - 1}]]
set recipient [lindex [split $recipient ";"] 0]
set recipient [lindex [split $recipient ":"] 0]
return $recipient
}
method GetCaller { callid } {
return [$self GetRecipient $call_from($callid)]
}
method GetCallee { callid } {
return [$self GetRecipient $call_to($callid)]
}
method GetCommand { headers } {
set cseq [$self GetHeader $headers "CSeq"]
return [lindex [split $cseq " "] 1]
}
method Random { min max } {
return [expr {int($min + rand() * (1+$max-$min))}]
}
method GenerateHex { num } {
set res ""
while { $num > 0 } {
append res [format %x [$self Random 0 15]]
incr num -1
}
return $res
}
method GetMepid { } {
set guid [::config::getGlobalKey machineguid]
set mepid [string map {"{" "" "}" "" "-" ""} $guid]
return [string toupper $mepid]
}
method GenerateEpid { } {
return [$self GenerateHex 10]
}
method GenerateTag { } {
return [$self GenerateHex 10]
}
method GenerateCallID { } {
return [$self GenerateHex 32]
}
method ParseSDP { body } {
set media "audio"
set options(-remote_audio_codecs) [list]
set audio_ice_candidates [list]
set audio_ip ""
set audio_port ""
set audio_rtcp_port 0
set audio_ufrag ""
set audio_pwd ""
set options(-remote_video_codecs) [list]
set video_ufrag ""
set video_pwd ""
set video_ip ""
set video_port ""
set video_rtcp_port 0
set video_ice_candidates [list]
foreach line [split $body "\n"] {
set line [string trim $line]
set field [string range $line 0 0]
set value [string range $line 2 end]
switch -- $field {
"m" {
set media [lindex [split $value " "] 0]
if {$media == "audio" } {
set audio_port [lindex [split $value " "] 1]
} else {
set video_port [lindex [split $value " "] 1]
}
}
"c" {
if {$media == "audio" } {
set audio_ip [lindex [split $value " "] 2]
} else {
set video_ip [lindex [split $value " "] 2]
}
}
"a" {
set attribute [lindex [split $value ":"] 0]
set attr [string range $value [expr {[string length $attribute] +1}] end]
#puts "$attribute -- $attr"
switch -- $attribute {
"ice-ufrag" {
if {$media == "audio" } {
set audio_ufrag $attr
} else {
set video_ufrag $attr
}
}
"ice-pwd" {
if {$media == "audio" } {
set audio_pwd $attr
} else {
set video_pwd $attr
}
}
"candidate" {
if {$media == "audio" } {
lappend audio_ice_candidates [split $attr " "]
} else {
lappend video_ice_candidates [split $attr " "]
}
}
"rtcp" {
if {$media == "audio" } {
set audio_rtcp_port $attr
} else {
set video_rtcp_port $attr }
}
"rtpmap" {
set pt [lindex $attr 0]
set codec [lindex $attr 1]
set encoding_name [lindex [split $codec "/"] 0]
set bitrate [lindex [split $codec "/"] 1]
if {$media == "audio" } {
lappend options(-remote_audio_codecs) [list $encoding_name $pt $bitrate]
} else {
lappend options(-remote_video_codecs) [list $encoding_name $pt $bitrate]
}
}
}
}
}
}
if {$audio_rtcp_port == 0 } {
set audio_rtcp_port $audio_port
incr audio_rtcp_port
}
if {$video_rtcp_port == 0 && $video_port != ""} {
set video_rtcp_port $video_port
incr video_rtcp_port
}
set options(-remote_audio_candidates) [list]
if {$audio_ice_candidates == [list] } {
set options(-ice) 0
lappend options(-remote_audio_candidates) [list "" 1 $audio_ip $audio_port "" 0 "UDP" 1 "host" "" ""]
lappend options(-remote_audio_candidates) [list "" 2 $audio_ip $audio_rtcp_port "" 0 "UDP" 1 "host" "" ""]
}
set options(-remote_video_candidates) [list]
if {$video_ice_candidates == [list] && $video_ip != "" } {
set options(-ice) 0
lappend options(-remote_video_candidates) [list "" 1 $video_ip $video_port "" 0 "UDP" 1 "host" "" ""]
lappend options(-remote_video_candidates) [list "" 2 $video_ip $video_rtcp_port "" 0 "UDP" 1 "host" "" ""]
}
foreach candidate $audio_ice_candidates {
if {$audio_ufrag != "" && $audio_pwd != "" } {
set options(-ice) 19
set base_ip ""
set base_port 0
set type ""
for {set i 0 } { $i < [llength $candidate] } { incr i } {
if {$i == 0 } {
set foundation [lindex $candidate $i]
} elseif {$i == 1 } {
set component_id [lindex $candidate $i]
} elseif {$i == 2 } {
set transport [lindex $candidate $i]
} elseif {$i == 3 } {
set priority [lindex $candidate $i]
} elseif {$i == 4 } {
set ip [lindex $candidate $i]
} elseif {$i == 5 } {
set port [lindex $candidate $i]
} else {
if {[lindex $candidate $i] == "typ" } {
incr i
set type [lindex $candidate $i]
} elseif {[lindex $candidate $i] == "raddr" } {
incr i
set base_ip [lindex $candidate $i]
} elseif {[lindex $candidate $i] == "rport" } {
incr i
set base_port [lindex $candidate $i]
}
}
}
lappend options(-remote_audio_candidates) [list $foundation $component_id $ip $port $base_ip $base_port $transport $priority $type $audio_ufrag $audio_pwd]
} else {
set options(-ice) 6
foreach {username component_id password transport priority ip port} $candidate break
set foundation [string range $username 0 31]
lappend options(-remote_audio_candidates) [list $foundation $component_id $ip $port "" 0 $transport $priority "" $username $password]
}
}
if {$video_ice_candidates != [list] &&
($video_ufrag == "" || $video_pwd == "") &&
$options(-ice) == 19} {
return
}
foreach candidate $video_ice_candidates {
if {$video_ufrag != "" && $video_pwd != "" } {
set options(-ice) 19
set base_ip ""
set base_port 0
set type ""
for {set i 0 } { $i < [llength $candidate] } { incr i } {
if {$i == 0 } {
set foundation [lindex $candidate $i]
} elseif {$i == 1 } {
set component_id [lindex $candidate $i]
} elseif {$i == 2 } {
set transport [lindex $candidate $i]
} elseif {$i == 3 } {
set priority [lindex $candidate $i]
} elseif {$i == 4 } {
set ip [lindex $candidate $i]
} elseif {$i == 5 } {
set port [lindex $candidate $i]
} else {
if {[lindex $candidate $i] == "typ" } {
incr i
set type [lindex $candidate $i]
} elseif {[lindex $candidate $i] == "raddr" } {
incr i
set base_ip [lindex $candidate $i]
} elseif {[lindex $candidate $i] == "rport" } {
incr i
set base_port [lindex $candidate $i]
}
}
}
lappend options(-remote_video_candidates) [list $foundation $component_id $ip $port $base_ip $base_port $transport $priority $type $video_ufrag $video_pwd]
} else {
set options(-ice) 6
foreach {username component_id password transport priority ip port} $candidate break
set foundation [string range $username 0 31]
lappend options(-remote_video_candidates) [list $foundation $component_id $ip $port "" 0 $transport $priority "" $username $password]
}
}
}
}
snit::type TURN {
option -user -default ""
option -password -default ""
option -host -default "relay.voice.messenger.msn.com"
option -port -default "443"
option -transport -default "tls"
option -proxy -default "direct" -configuremethod ProxyChanged
option -proxy_host -default ""
option -proxy_port -default ""
option -proxy_authenticate -default 0
option -proxy_user -default ""
option -proxy_password -default ""
option -callback -default ""
variable sock ""
variable message_types
variable attribute_types
variable messages
variable relay_info [list]
constructor { args } {
$self configurelist $args
array set message_types [list "1" "BINDING-REQUEST" \
"2" "SHARED-SECRET-REQUEST" \
"3" "ALLOCATE-REQUEST" \
"257" "BINDING-RESPONSE" \
"258" "SHARED-SECRET-RESPONSE" \
"259" "ALLOCATE-RESPONSE" \
"273" "BINDING-ERROR" \
"274" "SHARED-SECRET-ERROR" \
"275" "ALLOCATE-ERROR"]
array set attribute_types [list "1" "MAPPED-ADDRESS" \
"2" "RESPONSE_ADDRESS" \
"3" "CHANGE_REQUEST" \
"4" "SOURCE_ADDRESS" \
"5" "CHANGED-ADDRESS" \
"6" "USERNAME" \
"7" "PASSWORD" \
"8" "MESSAGE-INTEGRITY" \
"9" "ERROR-CODE" \
"10" "UNKNOWN-ATTRIBUTES" \
"11" "REFLECTED-FROM" \
"12" "TRANSPORT-PREFERENCES" \
"13" "LIFETIME" \
"14" "ALTERNATE-SERVER" \
"15" "MAGIC-COOKIE" \
"16" "BANDWIDTH" \
"17" "MORE-AVAILABLE" \
"18" "REMOTE-ADDRESS" \
"19" "DATA" \
"20" "REALM" \
"21" "NONCE" \
"22" "RELAY-ADDRESS" \
"23" "REQUESTED-ADDRESS-TYPE" \
"24" "REQUESTED-PORT" \
"25" "REQUESTED-TRANSPORT" \
"26" "XOR-MAPPED-ADDRESS" \
"27" "TIMER-VAL" \
"28" "REQUESTED-IP" \
"29" "FINGERPRINT" \
"32802" "SERVER" \
"32803" "ALTERNATE-SERVER" \
"32804" "REFRESH-INTERVAL"]
}
destructor {
$self Disconnect
}
method Disconnect { } {
status_log "TURN: Disconnecting"
catch {close $sock}
set sock ""
}
method IsConnected { } {
return [expr {$sock != ""}]
}
method ProxyChanged {option value} {
switch -- $value {
"direct" -
"socks" -
"http" {
set options($option) $value
}
default {
error "Unknown value '$value' to -proxy option. Accepted values are : 'direct', 'socks' and 'http'"
}
}
}
method Connect {} {
status_log "TURN: Connecting"
if { $options(-transport) == "tls" } {
package require tls
} else {
error "Only 'tls' transport currently supported!"
}
switch -- $options(-proxy) {
"direct" {
set sock [::tls::socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1 -async $options(-host) $options(-port)]
}
"socks" {
# FIXME : we should 'package require socks' ...
# But socks.tcl must first be made into a proper package
set socket [socket -async $options(-proxy_host) $options(-proxy_port)]
set res [::Socks5::Init $socket $options(-host) $options(-port) \
$options(-proxy_authenticate) \
$options(-proxy_user) $options(-proxy_pass)]
if { $res != "OK" } {
error $res
}
# now add tls to the socket and return it
fconfigure $socket -blocking 1 -buffering none -translation binary
set sock [::tls::import $socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1]
# We need to foce the handshake while the socket is blocking
# for tls to actually work
::tls::handshake $sock
fconfigure $sock -blocking 0 -buffering none -translation binary
}
"http" {
set socket [socket -async $options(-proxy_host) $options(-proxy_port)]
fconfigure $socket -buffering line -translation crlf
puts $socket "CONNECT $options(-host):$options(-port) HTTP/1.0"
puts $socket "Host: $options(-host)"
puts $socket "User-Agent: $options(-user_agent)"
puts $socket "Content-Length: 0"
puts $socket "Proxy-Connection: Keep-Alive"
puts $socket "Connection: Keep-Alive"
puts $socket "Cache-Control: no-cache"
puts $socket "Pragma: no-cache"
if { $options(-proxy_authenticate) } {
set auth "$options(-proxy_user):$options(-proxy_pass)"
set auth [string map {"\n" "" } [base64::encode $auth]]
puts $socket "Proxy-Authorization: Basic $auth"
}
puts $socket ""
set reply ""
while {[gets $socket r] > 0} {
lappend reply $r
}
set result [lindex $reply 0]
set code [lindex [split $result { }] 1]
if {! [regexp {^HTTP/1\.[01] +2[0-9][0-9]} $result]} {
return -code error $result
}
# now add tls to the socket and return it
fconfigure $socket -blocking 1 -buffering none -translation binary
set sock [::tls::import $socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1]
# We need to foce the handshake while the socket is blocking
# for tls to actually work
::tls::handshake $sock
fconfigure $sock -blocking 0 -buffering none -translation binary
}
default {
error "Unkwown proxy method : $options(-proxy)"
}
}
set state "NONE"
fconfigure $sock -buffering none -translation binary -blocking 0
fileevent $sock readable [list $self SocketReadable]
return 1
}
method Send { data } {
status_log "TURN: Sending [hexify $data]"
if {[catch {puts -nonewline $sock $data} res] } {
status_log "TURN : Unable to send data : $res"
$self Disconnect
if {$options(-callback) != "" } {
if {[catch {eval [linsert $options(-callback) end [list]]} result]} {
bgerror $result
}
}
return 0
} else {
return 1
}
}
method SocketReadable { } {
if { [eof $sock] } {
status_log "TURN: $sock reached eof"
$self Disconnect
if {$options(-callback) != "" } {
if {[catch {eval [linsert $options(-callback) end [list]]} result]} {
bgerror $result
}
}
return
}
if { [catch {set header [read $sock 20] } res]} {
status_log "TURN: Reading line got error $res"
$self Disconnect
if {$options(-callback) != "" } {
if {[catch {eval [linsert $options(-callback) end [list]]} result]} {
bgerror $result
}
}
return
}
if {![info exists header] || [string length $header] != 20 } {
status_log "TURN: Not enough header : [string length $header]"
return
}
binary scan $header SSH32 message_type payload_size id
set message_type [expr {$message_type & 0xFFFF}]
set message_type [$self MessageTypeToString $message_type]
status_log "TURN: Received message of type $message_type"
if { [catch {set payload [read $sock $payload_size] } res]} {
status_log "TURN: Reading line got error $res"
$self Disconnect
if {$options(-callback) != "" } {
if {[catch {eval [linsert $options(-callback) end [list]]} result]} {
bgerror $result
}
}
return
}
if {![info exists payload] || [string length $payload] != $payload_size } {
status_log "TURN: Not enough payload : [string length $payload] != $payload_size"
return
}
status_log "TURN: Received [hexify $payload]"
set attributes [list]
set total_size 0
while {$total_size < $payload_size } {
binary scan $payload @${total_size}SS attribute_type attribute_size
set attribute_type [expr {$attribute_type & 0xFFFF}]
incr total_size 4
set attribute_value [string range $payload $total_size [expr {$total_size + $attribute_size - 1}]]
incr total_size $attribute_size
lappend attributes [$self AttributeTypeToString $attribute_type]
lappend attributes $attribute_value
status_log "TURN: Received attribute [$self AttributeTypeToString $attribute_type] : [hexify_c $attribute_value]"
}
$self HandleResponse $id $message_type $attributes
}
method MessageTypeToString { message_type } {
if {[info exists message_types($message_type)] } {
return $message_types($message_type)
} else {
return "UNKNOWN_MESSAGE_$message_type"
}
}
method AttributeTypeToString { attribute_type } {
if {[info exists attribute_types($attribute_type)] } {
return $attribute_types($attribute_type)
} else {
return "UNKNOWN_ATTRIBUTE_$attribute_type"
}
}
method StringToMessageType { message_type } {
foreach value [array names message_types] {
if {$message_types($value) == $message_type } {
return $value
}
}
return 0
}
method StringToAttributeType { attribute_type } {
foreach value [array names attribute_types] {
if {$attribute_types($value) == $attribute_type } {
return $value
}
}
return 0
}
method RequestSharedSecret { {total 4} } {
set relay_info [list]
$self Connect
for {set i 0} { $i < $total} { incr i} {
set id [$self GenerateId]
set message [$self BuildMessage $id "SHARED-SECRET-REQUEST" \
[list "USERNAME" "RPS_$options(-password)\x00\x00\x00"]]
set messages($id) $message
$self Send $message
}
}
method HandleResponse { id message_type attributes } {
status_log "TURN: Received response $message_type for id $id"
if {[info exists messages($id)] } {
unset messages($id)
if {$message_type == "SHARED-SECRET-ERROR" } {
foreach {attr_type value} $attributes {
status_log "TURN: Parsing $attr_type"
if {$attr_type == "REALM" } {
set realm $value
} elseif {$attr_type == "NONCE" } {
set nonce $value
} elseif {$attr_type == "ERROR-CODE" } {
binary scan $value Ia* error_code error_message
}
}
if {$error_message == "Unauthorized" } {
set id [$self GenerateId]
set message [$self BuildMessage $id \
"SHARED-SECRET-REQUEST" \
[list "USERNAME" "RPS_$options(-password)\x00\x00\x00" \
"REALM" $realm \
"NONCE" $nonce ] 24]
status_log "TURN: Doing integrity check ($nonce) on [hexify $message] "
set message_integrity [$self BuildSharedSecretIntegrity $message $nonce]
set message [$self BuildMessage $id \
"SHARED-SECRET-REQUEST" \
[list "USERNAME" "RPS_$options(-password)\x00\x00\x00" \
"REALM" $realm \
"NONCE" $nonce \
"MESSAGE-INTEGRITY" $message_integrity]]
set messages($id) $message
$self Send $message
}
} elseif {$message_type == "SHARED-SECRET-RESPONSE" } {
foreach {attr_type value} $attributes {
if {$attr_type == "USERNAME" } {
set username [base64::encode $value]
} elseif {$attr_type == "PASSWORD" } {
set password [base64::encode $value]
} elseif {$attr_type == "ALTERNATE-SERVER" } {
binary scan $value SScccc ipv4 port i1 i2 i3 i4
set ipv4 [expr {$ipv4 & 0xFFFF}]
set port [expr {$port & 0xFFFF}]
set server_ip "[expr {$i1 & 0xFF}].[expr {$i2 & 0xFF}].[expr {$i3 & 0xFF}].[expr {$i4 & 0xFF}]"
set server_port $port
status_log "TURN: TURN server $server_ip : $server_port"
}
}
if {[info exists username] &&
[info exists password] &&
[info exists server_ip] &&
[info exists server_port] } {
lappend relay_info [list $server_ip \
$server_port \
$username \
$password]
}
}
} else {
status_log "TURN: Received unknown id $id"
return
}
if {[llength [array names messages]] == 0} {
$self Disconnect
if {$options(-callback) != "" } {
if {[catch {eval [linsert $options(-callback) end $relay_info]} result]} {
bgerror $result
}
}
}
}
method BuildMessage { id message_type attributes {extra_size 0}} {
set message_type [$self StringToMessageType $message_type]
if {$message_type == 0 } {
error "Unknown message type $message_type"
}
set message ""
foreach {attr_type value} $attributes {
set attribute_type [$self StringToAttributeType $attr_type]
append message [binary format SS $attribute_type [string length $value]]
append message $value
}
set header [binary format SSH32 $message_type [expr {[string length $message] + $extra_size}] $id]
return "${header}${message}"
}
method BuildSharedSecretIntegrity { message nonce } {
set nonce [string trim $nonce "\""]
set md5 [::md5::md5 "RPS_$options(-password)\x00\x00\x00:$nonce:$options(-user)"]
set key "[binary format H* $md5][string repeat \x00 16]"
set len [string length $message]
set padding [expr {64 - ($len % 64)}]
if {$padding == 64} {
set padding 0
}
set hash [::sha1::hmac $key "$message[string repeat \x00 $padding]"]
return [binary format H* $hash]
}
method Random { min max } {
return [expr {int($min + rand() * (1+$max-$min))}]
}
method GenerateHex { num } {
set res ""
while { $num > 0 } {
append res [format %x [$self Random 0 15]]
incr num -1
}
return $res
}
method GenerateId { } {
return [$self GenerateHex 32]
}
}
###########################################
# SIPSocket is a socket wrapper for SIP #
###########################################
snit::type SIPSocket {
option -host -default "vp.sip.messenger.msn.com"
option -port -default "443"
option -transport -default "tls"
option -proxy -default "direct" -configuremethod ProxyChanged
option -proxy_host -default ""
option -proxy_port -default ""
option -proxy_authenticate -default 0
option -proxy_user -default ""
option -proxy_password -default ""
option -sipconnection -default ""
variable sock ""
variable state "NONE"
variable start ""
variable headers ""
constructor { args } {
$self configurelist $args
}
destructor {
$self Disconnect
}
method Disconnect { } {
catch {close $sock}
set sock ""
if {$options(-sipconnection) != "" } {
$options(-sipconnection) Disconnected
}
set state "NONE"
}
method IsConnected { } {
return [expr {$sock != ""}]
}
method ProxyChanged {option value} {
switch -- $value {
"direct" -
"socks" -
"http" {
set options($option) $value
}
default {
error "Unknown value '$value' to -proxy option. Accepted values are : 'direct', 'socks' and 'http'"
}
}
}
method Connect {} {
if { $options(-transport) == "tls" } {
package require tls
} else {
error "Only 'tls' transport currently supported!"
}
switch -- $options(-proxy) {
"direct" {
set sock [::tls::socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1 -async $options(-host) $options(-port)]
}
"socks" {
# FIXME : we should 'package require socks' ...
# But socks.tcl must first be made into a proper package
set socket [socket -async $options(-proxy_host) $options(-proxy_port)]
set res [::Socks5::Init $socket $options(-host) $options(-port) \
$options(-proxy_authenticate) \
$options(-proxy_user) $options(-proxy_pass)]
if { $res != "OK" } {
error $res
}
# now add tls to the socket and return it
fconfigure $socket -blocking 1 -buffering none -translation binary
set sock [::tls::import $socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1]
# We need to foce the handshake while the socket is blocking
# for tls to actually work
::tls::handshake $sock
fconfigure $sock -blocking 0 -buffering none -translation binary
}
"http" {
set socket [socket -async $options(-proxy_host) $options(-proxy_port)]
fconfigure $socket -buffering line -translation crlf
puts $socket "CONNECT $options(-host):$options(-port) HTTP/1.0"
puts $socket "Host: $options(-host)"
puts $socket "User-Agent: $options(-user_agent)"
puts $socket "Content-Length: 0"
puts $socket "Proxy-Connection: Keep-Alive"
puts $socket "Connection: Keep-Alive"
puts $socket "Cache-Control: no-cache"
puts $socket "Pragma: no-cache"
if { $options(-proxy_authenticate) } {
set auth "$options(-proxy_user):$options(-proxy_pass)"
set auth [string map {"\n" "" } [base64::encode $auth]]
puts $socket "Proxy-Authorization: Basic $auth"
}
puts $socket ""
set reply ""
while {[gets $socket r] > 0} {
lappend reply $r
}
set result [lindex $reply 0]
set code [lindex [split $result { }] 1]
if {! [regexp {^HTTP/1\.[01] +2[0-9][0-9]} $result]} {
return -code error $result
}
# now add tls to the socket and return it
fconfigure $socket -blocking 1 -buffering none -translation binary
set sock [::tls::import $socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1]
# We need to foce the handshake while the socket is blocking
# for tls to actually work
::tls::handshake $sock
fconfigure $sock -blocking 0 -buffering none -translation binary
}
default {
error "Unkwown proxy method : $options(-proxy)"
}
}
set state "NONE"
fconfigure $sock -buffering none -translation binary -blocking 0
fileevent $sock readable [list $self SocketReadable]
return 1
}
method Send { data } {
if {[string trim $data] != "" } {
degt_protocol "-->SIP ($options(-host)) $data" "sbsend"
}
if {[catch {puts -nonewline $sock $data} res] } {
status_log "SIPSocket : Unable to send data : $res"
$self Disconnect
return 0
} else {
return 1
}
}
method SocketReadable { } {
if { [eof $sock] } {
status_log "SIPSocket: $sock reached eof"
$self Disconnect
return
}
if {$state == "BODY" } {
set content_length [$options(-sipconnection) GetHeader $headers "Content-Length"]
status_log "Going to Read : $content_length"
set body [nbread $sock $content_length]
if {$body == "" } {
status_log "SIPSocket: Error reading Body"
$self Disconnect
return
}
set done 1
} else {
if { [catch {nbgets $sock line} res]} {
status_log "SIPSocket: Reading line got error $res"
$self Disconnect
return
}
set line [string trim $line]
set done 0
}
if {$state == "NONE" } {
set start $line
set state "HEADERS"
set headers ""
} elseif {$state == "HEADERS" } {
append headers "$line\n"
if {$line == "" } {
set content_length [$options(-sipconnection) GetHeader $headers "Content-Length"]
if {$content_length > 0 } {
set state "BODY"
} else {
set body ""
set done 1
}
}
}
if {$done} {
set state "NONE"
degt_protocol "<--SIP ($options(-host)) $start\n$headers\n\n$body" "sbrecv"
$options(-sipconnection) HandleMessage $start $headers $body
}
}
method GetInfo { } {
return "127.0.0.1 kakaroto 50390"
#return [fconfigure $sock -sockname]
}
}
snit::type TunneledSIPSocket {
option -sipconnection
option -destination
option -transport -default "tcp"
option -host -default ""
option -port -default ""
option -proxy -default ""
option -proxy_host -default ""
option -proxy_port -default ""
option -proxy_authenticate -default 0
option -proxy_user -default ""
option -proxy_password -default ""
variable call_ids [list]
destructor {
foreach cid $call_ids {
::MSNSIP::TunneledSIPDestroyed $cid
}
}
method Disconnect { } {
}
method IsConnected { } {
return 1
}
method Connect {} {
return 1
}
method Send { data } {
set call_id [$options(-sipconnection) GetHeader $data "Call-ID"]
if {[lsearch $call_ids $call_id] == -1 } {
lappend call_ids $call_id
::MSNSIP::TunneledSIPCreated $call_id $self
}
set msg "<sip e=\"base64\" fid=\"1\" i=\"$call_id\"><msg>[base64::encode $data]</msg></sip>"
set msg [string map {"\n" "\r\n"} [string map {"\r\n" "\n"} $msg]]
degt_protocol "-->SIP (Tunneled) $data"
::MSN::WriteSBNoNL ns "UUN" "$options(-destination) 12 [string length $msg]\r\n$msg"
return 1
}
method GotData { data } {
set xml [xml2list $data]
set msg [base64::decode [GetXmlEntry $xml "sip:msg"]]
set idx [string first "\r\n\r\n" $msg]
set head [string range $msg 0 [expr {$idx - 1}]]
set body [string range $msg [expr {$idx + 4}] end]
set idx [string first "\r\n" $head]
set status [string range $head 0 [expr {$idx - 1}]]
set headers [string range $head [expr {$idx + 2}] end]
degt_protocol "<--SIP (Tunneled) $status\n$headers\n\n$body"
$options(-sipconnection) HandleMessage $status $headers $body
}
method GetInfo { } {
return "127.0.0.1 kakaroto 50390"
#"[lindex [fconfigure [ns cget -sock] -sockname] 2]"
}
}
snit::type Farsight {
variable loaded 0
variable audio_local_codecs [list]
variable audio_local_candidates [list]
variable audio_remote_candidates [list]
variable audio_remote_codecs [list]
variable video_local_codecs [list]
variable video_local_candidates [list]
variable video_remote_candidates [list]
variable video_remote_codecs [list]
variable known_bitrates
variable prepare_ticket ""
variable prepare_relay_info ""
variable specialLogger ""
variable call_type ""
variable preparing 0
option -audio-source -default "" -configuremethod ConfigureFarsight
option -audio-source-device -default "" -configuremethod ConfigureFarsight
option -audio-source-pipeline -default "" -configuremethod ConfigureFarsight
option -audio-sink -default "" -configuremethod ConfigureFarsight
option -audio-sink-device -default "" -configuremethod ConfigureFarsight
option -audio-sink-pipeline -default "" -configuremethod ConfigureFarsight
option -video-source -default "" -configuremethod ConfigureFarsight
option -video-source-device -default "" -configuremethod ConfigureFarsight
option -video-source-pipeline -default "" -configuremethod ConfigureFarsight
option -video-preview-xid -default 0 -configuremethod ConfigureFarsight
option -video-sink -default "" -configuremethod ConfigureFarsight
option -video-sink-xid -default 0 -configuremethod ConfigureFarsight
option -video-sink-pipeline -default "" -configuremethod ConfigureFarsight
option -level -default "" -configuremethod ConfigureFarsight
option -closed -default ""
option -prepared -default ""
option -active -default ""
option -sipconnection -default ""
constructor { args } {
$self configurelist $args
$self Reset
array set known_bitrates [list "SIREN" 16000 \
"x-msrta" 29000 \
"G7221" 24000]
}
method ConfigureFarsight {option value} {
set options($option) $value
if {$loaded} {
::Farsight::Config $option $value
}
}
method setSpecialLogger {newSpecialLogger} {
set specialLogger $newSpecialLogger
}
method Debug {msg} {
if {$specialLogger != ""} {
catch {eval $specialLogger {"Farsight debug : $msg"}}
}
status_log "Farsight debug : $msg"
}
method Reset { } {
set audio_local_codecs [list]
set audio_local_candidates [list]
set audio_remote_candidates [list]
set audio_remote_codecs [list]
set video_local_codecs [list]
set video_local_candidates [list]
set video_remote_candidates [list]
set video_remote_codecs [list]
set options(-sipconnection) ""
set preparing 0
}
method Closed { } {
status_log "Farsight : Closed"
if {$options(-closed) != "" } {
if {[catch {eval $options(-closed)} result]} {
bgerror $result
}
}
}
method Close { } {
if {$loaded } {
::Farsight::Stop
$self Reset
}
}
method SetRemoteAudioCandidates { candidates} {
set audio_remote_candidates [list]
foreach candidate $candidates {
foreach {foundation component_id ip port base_ip base_port transport priority type username password} $candidate break
if {$call_type == "A6" || $call_type == "AV6" } {
if {[info exists ::farsight_test_turn] &&
$::farsight_test_turn &&
$priority >= "0.5" } {continue}
if {$username != "" &&
$password != "" &&
$transport == "UDP"} {
if {[string range $username end end] != "="} {
append username "="
}
if {[string range $password end end] != "="} {
append password "=="
}
set foundation [string range $username 0 31]
lappend audio_remote_candidates [list $foundation $component_id $ip $port $base_ip $base_port $transport $priority $type $username $password]
}
} else {
if {[info exists ::farsight_test_turn] &&
$::farsight_test_turn &&
$type != "relay" } {continue}
if {$foundation != "" &&
$username != "" &&
$password != "" &&
$transport == "UDP"} {
lappend audio_remote_candidates [list $foundation $component_id $ip $port $base_ip $base_port $transport $priority $type $username $password]
}
}
}
}
method SetRemoteVideoCandidates { candidates} {
set video_remote_candidates [list]
foreach candidate $candidates {
foreach {foundation component_id ip port base_ip base_port transport priority type username password} $candidate break
if {$call_type == "A6" || $call_type == "AV6" } {
if {[info exists ::farsight_test_turn] &&
$::farsight_test_turn &&
$priority >= "0.5" } {continue}
if {$username != "" &&
$password != "" &&
$transport == "UDP"} {
if {[string range $username end end] != "="} {
append username "="
}
if {[string range $password end end] != "="} {
append password "=="
}
set foundation [string range $username 0 31]
lappend video_remote_candidates [list $foundation $component_id $ip $port $base_ip $base_port $transport $priority $type $username $password]
}
} else {
if {[info exists ::farsight_test_turn] &&
$::farsight_test_turn &&
$type != "relay" } {continue}
if {$foundation != "" &&
$username != "" &&
$password != "" &&
$transport == "UDP"} {
lappend video_remote_candidates [list $foundation $component_id $ip $port $base_ip $base_port $transport $priority $type $username $password]
}
}
}
}
method SetRemoteAudioCodecs { codecs } {
set audio_remote_codecs $codecs
}
method SetRemoteVideoCodecs { codecs } {
set video_remote_codecs $codecs
}
method GetLocalAudioCandidates { } {
return $audio_local_candidates
}
method GetLocalVideoCandidates { } {
return $video_local_candidates
}
method GetLocalAudioCodecs { } {
return [lsort -decreasing -command [list $self CompareAudioCodecs] $audio_local_codecs]
}
method GetLocalVideoCodecs { } {
return [lsort -decreasing -command [list $self CompareVideoCodecs] $video_local_codecs]
}
method CompareAudioCodecs {codec1 codec2} {
foreach {name1 payload_type bitrate} $codec1 break
foreach {name2 payload_type bitrate} $codec2 break
if {$name1 == "x-msrta" } {
return 1
} elseif {$name2 == "x-msrta" } {
return -1
}
if {$name1 == "SIREN" } {
return 1
} elseif {$name2 == "SIREN" } {
return -1
}
return 0
}
method CompareVideoCodecs {codec1 codec2} {
foreach {name1 payload_type bitrate} $codec1 break
foreach {name2 payload_type bitrate} $codec2 break
if {$name1 == "H263" } {
return 1
} elseif {$name2 == "H263" } {
return -1
}
return 0
}
method IsInUse { } {
if {$preparing} {
return 1
}
if {!$loaded} {
return 0
}
return [::Farsight::InUse]
}
method IsVideo { } {
if {$call_type == "AV6" || $call_type == "AV19" } {
return 1
} else {
return 0
}
}
method Test { } {
$self configure -audio-source "-" -video-source "-"
if {[catch {$self Prepare 1} res] } {
if {$specialLogger != ""} {
catch {eval $specialLogger {"Farsight Prepare error : $res"}}
}
status_log "Farsight Prepare error : $res"
return 0
}
return -1
}
method Prepare { controlling {mode "A6"} } {
if {[catch {$self Prepare2 $controlling $mode } res] } {
set preparing 0
return -code error $res
} else {
return $res
}
}
method Prepare2 { controlling {mode "A6"} } {
set preparing 1
if {[info exists ::sso] && $::sso != ""} {
set prepare_ticket ""
$::sso RequireSecurityToken MessengerSecure [list $self PrepareSSOCB $controlling]
if {$prepare_ticket == "" } {
tkwait variable [myvar prepare_ticket]
}
}
$self Close
set preparing 1
set call_type $mode
if {$specialLogger != ""} {
catch {eval $specialLogger {"Farsight : Preparing"}}
}
status_log "Farsight : Preparing"
if {[OnWin] } {
set ::env(GST_PLUGIN_PATH) [file join [pwd] utils windows gstreamer]
set ::env(FS_PLUGIN_PATH) [file join [pwd] utils windows gstreamer]
set ::env(PATH) "[file join [pwd] utils windows gstreamer];[set ::env(PATH)]"
} elseif { [OnMac] } {
set ::env(GST_PLUGIN_PATH) [file join [pwd] utils macosx gstreamer]
set ::env(FS_PLUGIN_PATH) [file join [pwd] utils macosx gstreamer]
}
package require Farsight
set loaded 1
::Farsight::Config \
-audio-source $options(-audio-source) \
-audio-source-device $options(-audio-source-device) \
-audio-source-pipeline $options(-audio-source-pipeline) \
-audio-sink $options(-audio-sink) \
-audio-sink-device $options(-audio-sink-device) \
-audio-sink-pipeline $options(-audio-sink-pipeline) \
-video-source $options(-video-source) \
-video-source-device $options(-video-source-device) \
-video-source-pipeline $options(-video-source-pipeline) \
-video-preview-xid $options(-video-preview-xid) \
-video-sink $options(-video-sink) \
-video-sink-xid $options(-video-sink-xid) \
-video-sink-pipeline $options(-video-sink-pipeline) \
-level $options(-level) \
-debug [list $self Debug] \
set prepare_relay_info ""
if {$prepare_ticket != "" } {
set turn [TURN create %AUTO% -user [::config::getKey login] \
-password $prepare_ticket]
$turn configure -callback [list $self TurnPrepared $controlling $turn]
if {$mode == "AV6" || $mode == "AV19" } {
$turn RequestSharedSecret 4
} else {
$turn RequestSharedSecret 2
}
tkwait variable [myvar prepare_relay_info]
}
set preparing 0
::Farsight::Prepare [list $self FarsightReady] $controlling $mode $prepare_relay_info 64.14.48.28
}
method PrepareSSOCB {controlling ticket} {
set prepare_ticket $ticket
}
method TurnPrepared { controlling turn relay_info } {
after 0 [list $turn destroy]
set prepare_relay_info [list]
set component 1
set stream 1
set type "udp"
foreach relay $relay_info {
foreach {ip port user pass} $relay break
lappend prepare_relay_info [list $ip $port $user $pass $stream $component $type]
incr component
if {$component > 2} {
set component 1
set stream 2
}
}
status_log "Turn prepared $prepare_relay_info"
}
method Start { } {
if {$loaded} {
status_log "Farsight starting : $audio_remote_codecs - $audio_remote_candidates -- $video_remote_codecs - $video_remote_candidates"
if {$call_type == "AV6" || $call_type == "AV19" } {
if {[catch {::Farsight::Start $audio_remote_codecs $audio_remote_candidates $video_remote_codecs $video_remote_candidates} res] } {
status_log "Farsight::Start Error : $res"
$self Closed
return 0
}
} else {
if {[catch {::Farsight::Start $audio_remote_codecs $audio_remote_candidates} res] } {
status_log "Farsight::Start Error : $res"
$self Closed
return 0
}
}
return 1
}
return 0
}
method FarsightReady { status obj1 obj2 } {
if { $status == "ERROR" } {
set error $obj1
if {$specialLogger != ""} {
catch {eval $specialLogger {"Farsight : got error $obj1"}}
}
status_log "Farsight : got error $obj1"
$self Closed
return
} elseif {$status == "PREPARED_AUDIO" } {
set codecs $obj1
set candidates $obj2
foreach codec $codecs {
foreach {name pt rate} $codec break
if {$name == "PCMA" || $name == "PCMU" ||
$name == "SIREN" || $name == "G723" ||
$name == "AAL2-G726-32" } {
if {[info exists known_bitrates($name)] } {
lappend audio_local_codecs [list $name $pt $rate "bitrate=$known_bitrates($name)"]
} else {
lappend audio_local_codecs [list $name $pt $rate]
}
}
if {$name == "telephone-event" && $rate == "8000"} {
lappend audio_local_codecs [list $name $pt $rate "0-16"]
}
}
set audio_local_candidates $candidates
if {$specialLogger != ""} {
catch {eval $specialLogger {"Farsight : Farsight Audio is now prepared!\nlocal codecs : $audio_local_codecs\nlocal candidates : $audio_local_candidates"}}
}
status_log "Farsight : Farsight audio is now prepared!\nlocal codecs : $audio_local_codecs\nlocal candidates : $audio_local_candidates"
if {($call_type == "A6" || $call_type == "A19") || $video_local_candidates != [list] } {
if {$options(-prepared) != "" } {
if {[catch {eval $options(-prepared)} result]} {
bgerror $result
}
}
} else {
if {$specialLogger != ""} {
catch {eval $specialLogger {"Fasight :Waiting for video preparation"}}
}
status_log "Fasight :Waiting for video preparation"
}
} elseif {$status == "PREPARED_VIDEO" } {
set codecs $obj1
set candidates $obj2
foreach codec $codecs {
foreach {name pt rate} $codec break
if {$name == "H263" || $name == "x-rtvc1"} {
lappend video_local_codecs [list $name $pt $rate]
}
}
set video_local_candidates $candidates
if {$specialLogger != ""} {
catch {eval $specialLogger {"Farsight : Farsight Video is now prepared!\nlocal codecs : $video_local_codecs\nlocal candidates : $video_local_candidates"}}
}
status_log "Farsight : Farsight Video is now prepared!\nlocal codecs : $video_local_codecs\nlocal candidates : $video_local_candidates"
if {$audio_local_candidates != [list] } {
if {$options(-prepared) != "" } {
if {[catch {eval $options(-prepared)} result]} {
bgerror $result
}
}
} else {
if {$specialLogger != ""} {
catch {eval $specialLogger {"Fasight :Waiting for audio preparation"}}
}
status_log "Fasight :Waiting for audio preparation"
}
} elseif {$status == "AUDIO_ACTIVE" ||
$status == "VIDEO_ACTIVE"} {
if {$specialLogger != ""} {
catch {eval $specialLogger {"Farsight : New $status active candidate pair"}}
}
status_log "Farsight : New $status active candidate pair"
set local $obj1
set remote $obj2
if {$status == "AUDIO_ACTIVE" } {
set media "audio"
} else {
set media "video"
}
if {$options(-active) != "" } {
if {[catch {eval $options(-active) $media $local $remote} result]} {
bgerror $result
}
}
}
}
}
namespace eval ::MSNSIP {
namespace export ReceivedTunneledSIP ReceivedInvite InviteUser AcceptInvite DeclineInvite HangUp CancelCall
variable sipconnections [list]
variable tunneled_sips [list]
proc createSIP {callbk {host "vp.sip.messenger.msn.com"}} {
$::sso RequireSecurityToken MessengerSecure [list ::MSNSIP::createSIPSSOCB $callbk $host]
}
proc createSIPSSOCB {callbk host ticket} {
variable sipconnections
status_log "MSNSIP : Creating SIP connection to $host"
set sip [SIPConnection create %AUTO% -user [::config::getKey login] -password $ticket -host $host]
$sip configure -error_handler [list ::MSNSIP::errorSIP $sip] -request_handler [list ::MSNSIP::requestSIP $sip]
lappend sipconnections $sip
status_log "MSNSIP : SIP connection created : $sip"
eval $callbk $sip
}
proc destroySIP { sip } {
variable sipconnections
# TODO : Make sure the sip connection is not used by another call..
# Imagine you talk on a SIP server, and you receive an invite from
# someone else on the same server, you decline it with BUSY
# we shouldn't destroy our sip connection and close farsight from
# our first call...
# if we do a '$sip destroy' here... Tcl segfaults!!! :D
status_log "MSNSIP : Destroying $sip"
set idx [lsearch $sipconnections $sip]
if {$idx >= 0} {
set sipconnections [lreplace $sipconnections $idx $idx]
$sip Unregister
after 10000 [list $sip destroy]
}
if {[$::farsight cget -sipconnection] == $sip } {
$::farsight Close
$::farsight configure -sipconnection "" -closed "" -prepared "" -active ""
}
}
proc GetTunneledSIP { cid } {
variable tunneled_sips
for {set i 0 } {$i < [llength $tunneled_sips] } {incr i} {
set v [lindex $tunneled_sips $i]
if {[lindex $v 0] == $cid} {
return [lindex $v 1]
}
}
return ""
}
proc TunneledSIPDestroyed { cid } {
variable tunneled_sips
for {set i 0 } {$i < [llength $tunneled_sips] } {incr i} {
set v [lindex $tunneled_sips $i]
if {[lindex $v 0] == $cid} {
set tunneled_sips [lreplace $tunneled_sips $i $i]
return
}
}
}
proc TunneledSIPCreated { cid sip } {
variable tunneled_sips
lappend tunneled_sips [list $cid $sip]
}
proc ReceivedTunneledSIP { from msg } {
variable sipconnections
status_log "Got Tunneled SIP invite from $from"
set cid [GetXmlAttribute [xml2list $msg] "sip" "i"]
set sock ""
if {$cid != "" } {
set sock [GetTunneledSIP $cid]
} else {
status_log "NO CID FOUND!" red
}
if {$sock == "" } {
set sock [TunneledSIPSocket create %AUTO% -destination $from]
set sip [SIPConnection create %AUTO% -user [::config::getKey login] -tunneled 1 -socket $sock]
$sip configure -error_handler [list ::MSNSIP::errorSIP $sip] -request_handler [list ::MSNSIP::requestSIP $sip]
lappend sipconnections $sip
status_log "MSNSIP : SIP connection created : $sip"
}
$sock GotData $msg
}
proc ReceivedInvite { ip } {
variable sipconnections
status_log "MSNSIP : Received SIP invite on $ip"
foreach sip $sipconnections {
if {[$sip cget -registered_host] == $ip } {
# Just in case we're connected but registration expired
# and the timer didn't re-register us..
status_log "MSNSIP : $sip already registered on $ip"
$sip RegisterExpires
return
}
}
createSIP ::MSNSIP::ReceivedInviteCB $ip
}
proc ReceivedInviteCB { sip } {
$sip Register
}
proc InviteUser { email video} {
variable sipconnections
status_log "MSNSIP : Inviting user $email to a SIP call"
if {[$::farsight IsInUse] } {
# Signal the UI
::amsn::SIPCallYouAreBusy $video $email
return "BUSY"
} elseif {[::config::getKey protocol] >= 18 &&
[::MSN::hasCapability [::abook::getContactData $email clientid] tunnelsip]} {
status_log "Sending Tunneled SIP invite to $email"
set sock [TunneledSIPSocket create %AUTO% -destination $email]
set sip [SIPConnection create %AUTO% -user [::config::getKey login] -tunneled 1 -socket $sock -ice 19]
$sip configure -error_handler [list ::MSNSIP::errorSIP $sip] -request_handler [list ::MSNSIP::requestSIP $sip]
lappend sipconnections $sip
InviteUserCB $email $video $sip
} else {
createSIP [list ::MSNSIP::InviteUserCB $email $video]
}
}
proc InviteUserCB { email video sip } {
$::farsight configure -sipconnection $sip \
-prepared [list ::MSNSIP::invitePrepared $sip $video $email] \
-closed [list ::MSNSIP::inviteClosed $sip $video $email "" -1] \
-active ""
if {[$sip cget -ice] == 19} {
if {$video} {
set mode "AV19"
} else {
set mode "A19"
}
} else {
if {$video} {
set mode "AV6"
} else {
set mode "A6"
}
}
::amsn::SIPPreparing $video $email $sip ""
$::farsight configure \
-audio-source [::config::getKey fsaudiosrc] \
-audio-source-device [::config::getKey fsaudiosrcdev] \
-audio-sink [::config::getKey fsaudiosink] \
-audio-sink-device [::config::getKey fsaudiosinkdev] \
-video-source [::config::getKey fsvideosrc] \
-video-source-device [::config::getKey fsvideosrcdev]
if {[catch {$::farsight Prepare 1 $mode} err] } {
status_log "Call is impossible : $err"
::amsn::SIPCallImpossible $video $email
return "IMPOSSIBLE"
} else {
# Reset the SipConnection because the Prepare clears it
$::farsight configure -sipconnection $sip
return $sip
}
}
proc invitePrepared { sip video email } {
$sip configure -local_audio_candidates [$::farsight GetLocalAudioCandidates]
$sip configure -local_audio_codecs [$::farsight GetLocalAudioCodecs]
$sip configure -local_video_candidates [$::farsight GetLocalVideoCandidates]
$sip configure -local_video_codecs [$::farsight GetLocalVideoCodecs]
if {[$::farsight IsVideo] && [llength [$::farsight GetLocalVideoCodecs] ] == 0} {
# Signal the UI
::amsn::SIPCallNoVideoCodecs $chatid
destroySIP $sip
} else {
set callid [$sip Invite $email [list ::MSNSIP::inviteSIPCB $sip $email]]
$::farsight configure \
-closed [list ::MSNSIP::inviteClosed $sip $video $email $callid 0] \
-active [list ::MSNSIP::activeCandidates $email $sip $callid 1]
# Signal the UI
::amsn::SIPInviteSent $video $email $sip $callid
}
}
proc inviteClosed { sip video email callid {started 0}} {
status_log "MSNSIP : InviteClosed $sip $email $callid $started"
if {$started == 1} {
$sip Bye $callid
# Signal the UI
::amsn::SIPCallEnded $video $email $sip $callid
} elseif {$started == 0 } {
$sip Cancel $callid
# Signal the UI
::amsn::SIPCallEnded $video $email $sip $callid
} else {
# Signal the UI
::amsn::SIPCallImpossible $video $email
}
destroySIP $sip
}
proc Level {chatid sip callid direction value} {
set window [::ChatWindow::For $chatid]
if {$window != 0} {
if {$direction == "IN" } {
set frame [::ChatWindow::GetInDisplayPictureFrame $window].voip
} else {
set frame [::ChatWindow::GetOutDisplayPicturesFrame $window].voip
}
if {[winfo exists $frame]} {
if {$direction == "OUT" &&
[$frame cget -volumestate] == "disabled" } {
::ChatWindow::UpdateVoipControls $chatid [$::farsight IsVideo] $sip $callid
}
$frame setLevel $value
}
}
}
proc activeCandidates { email sip callid send media local remote } {
if {$media == "audio" } {
$sip configure -active_audio_candidates [list $local $remote]
} elseif {$media == "video" } {
$sip configure -active_video_candidates [list $local $remote]
}
if {$send &&
[$sip cget -active_audio_candidates] != "" &&
([$sip cget -local_video_candidates] == "" ||
[$sip cget -active_video_candidates] != "")} {
set local_audio [lindex [$sip cget -active_audio_candidates] 0]
set remote_audio [lindex [$sip cget -active_audio_candidates] 1]
set local_video [lindex [$sip cget -active_video_candidates] 0]
set remote_video [lindex [$sip cget -active_video_candidates] 1]
$sip SendReInvite $callid $local_audio $remote_audio $local_video $remote_video
}
::amsn::SIPCallConnected [$::farsight IsVideo] $email $sip $callid
$::farsight configure -level [list ::MSNSIP::Level $email $sip $callid]
}
proc CancelCall { sip callid } {
status_log "MSNSIP : Canceling SIP call"
$sip Cancel $callid
destroySIP $sip
}
proc HangUp { sip callid } {
status_log "MSNSIP : Hanging up SIP call"
$sip Bye $callid
destroySIP $sip
}
proc inviteSIPCB { sip email callid status detail} {
status_log "MSNSIP : inviteSIPCB : $sip $email $callid $status $detail" green
if { $status == "OK" } {
# Signal the UI
::amsn::SIPCalleeAccepted [$::farsight IsVideo] $email $sip $callid
$::farsight configure -closed [list ::MSNSIP::inviteClosed $sip [$::farsight IsVideo] $email $callid 1]
$::farsight SetRemoteAudioCandidates [$sip cget -remote_audio_candidates]
$::farsight SetRemoteAudioCodecs [$sip cget -remote_audio_codecs]
$::farsight SetRemoteVideoCandidates [$sip cget -remote_video_candidates]
$::farsight SetRemoteVideoCodecs [$sip cget -remote_video_codecs]
$::farsight Start
} elseif {$status == "BUSY"} {
# Signal the UI
::amsn::SIPCalleeBusy [$::farsight IsVideo] $email $sip $callid
} elseif {$status == "DECLINED"} {
# Signal the UI
::amsn::SIPCalleeDeclined [$::farsight IsVideo] $email $sip $callid
} elseif {$status == "CLOSED"} {
# Signal the UI
if {$detail == "LOCAL_BYE" } {
::amsn::SIPCallEnded [$::farsight IsVideo] $email $sip $callid
} elseif {$detail == "REMOTE_BYE" } {
::amsn::SIPCalleeClosed [$::farsight IsVideo] $email $sip $callid
}
} elseif {$status == "UNAVAILABLE"} {
# Signal the UI
::amsn::SIPCalleeUnavailable [$::farsight IsVideo] $email $sip $callid
} elseif {$status == "NOANSWER"} {
# Signal the UI
::amsn::SIPCalleeNoAnswer [$::farsight IsVideo] $email $sip $callid
} elseif {$status != "TRYING" && $status != "RINGING" && $status != "CANCEL"} {
# Signal the UI
::amsn::SIPCallEnded [$::farsight IsVideo] $email $sip $callid
}
if {$status != "OK" && $status != "TRYING" && $status != "RINGING"} {
destroySIP $sip
}
}
proc requestSIP { sip callid what detail } {
status_log "MSNSIP : requestSIP : $sip $callid $what" green
if {$what == "INVITE" } {
if {[$::farsight IsInUse] } {
# Signal the UI
::amsn::SIPCallMissed [expr {[$sip cget -remote_video_candidates] != ""}] [$sip GetCaller $callid]
$sip AnswerInvite $callid BUSY
destroySIP $sip
} else {
set caller [$sip GetCaller $callid]
$::farsight configure \
-prepared [list ::MSNSIP::requestPrepared $sip $callid] \
-closed [list ::MSNSIP::answerClosed $sip $callid 0] \
-sipconnection $sip \
-active [list ::MSNSIP::activeCandidates $caller $sip $callid 0]
$sip configure -active_audio_candidates "" -active_video_candidates ""
if {[$sip cget -ice] == 19} {
if {[$sip cget -remote_video_candidates] != "" } {
set mode "AV19"
set video 1
} else {
set mode "A19"
set video 0
}
} else {
if {[$sip cget -remote_video_candidates] != "" } {
set mode "AV6"
set video 1
} else {
set mode "A6"
set video 0
}
}
::amsn::SIPPreparing $video $caller $sip $callid
$::farsight configure \
-audio-source [::config::getKey fsaudiosrc] \
-audio-source-device [::config::getKey fsaudiosrcdev] \
-audio-sink [::config::getKey fsaudiosink] \
-audio-sink-device [::config::getKey fsaudiosinkdev] \
-video-source [::config::getKey fsvideosrc] \
-video-source-device [::config::getKey fsvideosrcdev]
if {[catch {$::farsight Prepare 0 $mode}] } {
$::farsight configure -sipconnection $sip
# Signal the UI
::amsn::SIPCallImpossible $video $caller
$sip AnswerInvite $callid UNAVAILABLE
destroySIP $sip
} else {
# Reset the SipConnection because the Prepare clears it
$::farsight configure -sipconnection $sip
$::farsight SetRemoteAudioCandidates [$sip cget -remote_audio_candidates]
$::farsight SetRemoteAudioCodecs [$sip cget -remote_audio_codecs]
$::farsight SetRemoteVideoCandidates [$sip cget -remote_video_candidates]
$::farsight SetRemoteVideoCodecs [$sip cget -remote_video_codecs]
}
}
} elseif {$what == "CLOSED" } {
# Signal the UI
if {$detail == "REMOTE_BYE" } {
::amsn::SIPCalleeClosed [$::farsight IsVideo] [$sip GetCaller $callid] $sip $callid
} elseif {$detail == "LOCAL_BYE" } {
::amsn::SIPCallEnded [$::farsight IsVideo] [$sip GetCaller $callid] $sip $callid
}
destroySIP $sip
} elseif {$what == "CANCEL" } {
# Signal the UI
::amsn::SIPCalleeCanceled [$::farsight IsVideo] [$sip GetCaller $callid] $sip $callid
destroySIP $sip
} elseif {$what == "TIMEOUT" } {
# Signal the UI
::amsn::SIPCallMissed [$::farsight IsVideo] [$sip GetCaller $callid] $callid
destroySIP $sip
}
}
proc answerClosed { sip callid {started 0}} {
status_log "MSNSIP: answerClosed : $sip $callid $started"
if {$started } {
# Signal the UI
::amsn::SIPCallEnded [$::farsight IsVideo] [$sip GetCaller $callid] $sip $callid
$sip Bye $callid
} else {
# Signal the UI
::amsn::SIPCallImpossible [$::farsight IsVideo] [$sip GetCaller $callid]
$sip AnswerInvite $callid UNAVAILABLE
}
destroySIP $sip
}
proc requestPrepared { sip callid } {
status_log "MSNSIP : request Prepared for $sip $callid"
# Signal the UI
::amsn::SIPCallReceived [$::farsight IsVideo] [$sip GetCaller $callid] $sip $callid
$sip AnswerInvite $callid RINGING
}
proc DeclineInvite {sip callid } {
status_log "MSNSIP: Declining invite"
$sip AnswerInvite $callid DECLINE
destroySIP $sip
}
proc AcceptInvite { sip callid } {
status_log "MSNSIP: Accepting invite"
# no prepare since it's already done before it started RINGING
$sip configure -local_audio_candidates [$::farsight GetLocalAudioCandidates]
$sip configure -local_audio_codecs [$::farsight GetLocalAudioCodecs]
$sip configure -local_video_candidates [$::farsight GetLocalVideoCandidates]
$sip configure -local_video_codecs [$::farsight GetLocalVideoCodecs]
$sip AnswerInvite $callid OK
$::farsight configure -closed [list ::MSNSIP::answerClosed $sip $callid 1]
$::farsight Start
}
proc errorSIP { sip reason } {
status_log "MSNSIP: Got an error"
# This could happen if we loose the connection to the SIP server,
# in which case, farsight gets closed, and the UI needs to be updated
foreach callid [$sip GetCallids] {
set caller [$sip GetCaller $callid]
set callee [$sip GetCallee $callid]
if {$caller != [::config::getKey login]} {
set chatid $caller
} else {
set chatid $callee
}
if { [::amsn::SIPchatidExistsInList $chatid] } {
::amsn::SIPCallEnded [$::farsight IsVideo] $chatid $sip $callid
}
}
destroySIP $sip
}
proc FarsightTestFailed { callbk } {
if {[::MSN::hasCapability [::config::getKey clientid 0] sip] ||
[::MSN::hasCapability [::config::getKey clientid 0] tunnelsip] } {
::MSN::setClientCap sip 0
::MSN::setClientCap tunnelsip 0
::MSN::setClientCap rtcvideo 0
}
if { [::config::getKey wanttosharecam] && [::CAMGUI::camPresent] == 1 } {
::MSN::setClientCap webcam
} else {
::MSN::setClientCap webcam 0
}
if {[::MSN::myStatusIs] != "FLN" } {
::MSN::changeStatus [::MSN::myStatusIs]
}
$::farsight setSpecialLogger ""
$::farsight configure -prepared "" -closed "" -active ""
$::farsight Close
if {$callbk != "" } {
eval [linsert $callbk end 0]
}
}
proc FarsightTestSucceeded { callbk {force_video 1}} {
set changed 0
if { [::config::getKey protocol] >= 15 &&
![::MSN::hasCapability [::config::getKey clientid 0] sip]} {
::MSN::setClientCap sip
set changed 1
}
if {$force_video ||
( [$::farsight GetLocalVideoCandidates] != "" &&
[$::farsight GetLocalVideoCodecs] != "") } {
if {[::config::getKey protocol] >= 15 &&
![::MSN::hasCapability [::config::getKey clientid 0] rtcvideo] } {
::MSN::setClientCap rtcvideo
set changed 1
}
} else {
if {[::config::getKey protocol] >= 15 &&
[::MSN::hasCapability [::config::getKey clientid 0] rtcvideo] } {
::MSN::setClientCap rtcvideo 0
set changed 1
}
}
if { [::config::getKey fsvideosrc ""] != "-" &&
![::MSN::hasCapability [::config::getKey clientid 0] webcam]} {
::MSN::setClientCap webcam
set changed 1
}
if {$changed } {
if {[::MSN::myStatusIs] != "FLN" } {
::MSN::changeStatus [::MSN::myStatusIs]
}
}
$::farsight setSpecialLogger ""
$::farsight configure -prepared "" -closed "" -active ""
$::farsight Close
if {$callbk != "" } {
eval [linsert $callbk end 1]
}
}
proc TestFarsight { {callbk ""} {specialLogger "status_log"} } {
if {![$::farsight IsInUse] } {
$::farsight setSpecialLogger $specialLogger
$::farsight configure \
-prepared [list ::MSNSIP::FarsightTestSucceeded $callbk] \
-closed [list ::MSNSIP::FarsightTestFailed $callbk] \
-active ""
set result [$::farsight Test]
if {$result == 0 } {
::MSNSIP::FarsightTestFailed $callbk
} ;# else let the callbacks act
} else {
::MSNSIP::FarsightTestSucceeded $callbk 1
}
}
}
if { ![info exists ::farsight] } {
set ::farsight [Farsight create farsight]
}
|