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
|
/*
* $Id: citadel.c 8384 2010-02-26 18:11:39Z dothebart $
*
* Main source module for the client program.
*
* Copyright (c) 1987-2009 by the citadel.org team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "sysdep.h"
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#include <limits.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <signal.h>
#include <pwd.h>
#include <stdarg.h>
#include <errno.h>
#include <libcitadel.h>
#include "citadel.h"
#include "citadel_ipc.h"
#include "axdefs.h"
#include "routines.h"
#include "routines2.h"
#include "tuiconfig.h"
#include "rooms.h"
#include "messages.h"
#include "commands.h"
#include "client_chat.h"
#include "client_passwords.h"
#include "citadel_decls.h"
#include "sysdep.h"
#ifndef HAVE_SNPRINTF
#include "snprintf.h"
#endif
#include "screen.h"
#include "citadel_dirs.h"
#include "ecrash.h"
#include "md5.h"
#define IFEXPERT if (userflags&US_EXPERT)
#define IFNEXPERT if ((userflags&US_EXPERT)==0)
#define IFAIDE if (axlevel>=AxAideU)
#define IFNAIDE if (axlevel<AxAideU)
int rordercmp(struct ctdlroomlisting *r1, struct ctdlroomlisting *r2);
march *marchptr = NULL;
/* globals associated with the client program */
char temp[PATH_MAX]; /* Name of general-purpose temp file */
char temp2[PATH_MAX]; /* Name of general-purpose temp file */
char tempdir[PATH_MAX]; /* Name of general-purpose temp directory */
char editor_paths[MAX_EDITORS][SIZ]; /* paths to external editors */
char printcmd[SIZ]; /* print command */
int editor_pid = (-1);
char fullname[USERNAME_SIZE];
int screenwidth;
int screenheight;
unsigned room_flags;
unsigned room_flags2;
int entmsg_ok = 0;
char room_name[ROOMNAMELEN];
char *uglist[UGLISTLEN]; /* size of the ungoto list */
long uglistlsn[UGLISTLEN]; /* current read position for all the ungoto's. Not going to make any friends with this one. */
int uglistsize = 0;
char is_mail = 0; /* nonzero when we're in a mail room */
char axlevel = AxDeleted; /* access level */
char is_room_aide = 0; /* boolean flag, 1 if room aide */
int timescalled;
int posted;
unsigned userflags;
long usernum = 0L; /* user number */
time_t lastcall = 0L; /* Date/time of previous login */
char newnow;
long highest_msg_read; /* used for <A>bandon room cmd */
long maxmsgnum; /* used for <G>oto */
char sigcaught = 0;
char have_xterm = 0; /* are we running on an xterm? */
char rc_username[USERNAME_SIZE];
char rc_password[32];
char hostbuf[SIZ];
char portbuf[SIZ];
char rc_floor_mode;
char floor_mode;
char curr_floor = 0; /* number of current floor */
char floorlist[128][SIZ]; /* names of floors */
int termn8 = 0; /* Set to nonzero to cause a logoff */
int secure; /* Set to nonzero when wire is encrypted */
extern char instant_msgs; /* instant messages waiting! */
extern int rc_ansi_color; /* ansi color value from citadel.rc */
extern int next_lazy_cmd;
CtdlIPC *ipc_for_signal_handlers; /* KLUDGE cover your eyes */
int enable_syslog = 0;
/*
* CtdlLogPrintf() ... Write logging information;
* simple here to have the same
* symbols in the client.
*/
void CtdlLogPrintf(enum LogLevel loglevel, const char *format, ...) {
va_list arg_ptr;
va_start(arg_ptr, format);
vfprintf(stderr, format, arg_ptr);
va_end(arg_ptr);
fflush(stderr);
}
/*
* here is our 'clean up gracefully and exit' routine
*/
void ctdl_logoff(char *file, int line, CtdlIPC *ipc, int code)
{
int lp;
if (editor_pid > 0) { /* kill the editor if it's running */
kill(editor_pid, SIGHUP);
}
/* Free the ungoto list */
for (lp = 0; lp < uglistsize; lp++) {
free(uglist[lp]);
}
/* Shut down the server connection ... but not if the logoff code is 3,
* because that means we're exiting because we already lost the server.
*/
if (code != 3) {
CtdlIPCQuit(ipc);
}
/*
* now clean up various things
*/
screen_delete();
unlink(temp);
unlink(temp2);
nukedir(tempdir);
/* Violently kill off any child processes if Citadel is
* the login shell.
*/
if (getppid() == 1) {
kill(0 - getpgrp(), SIGTERM);
sleep(1);
kill(0 - getpgrp(), SIGKILL);
}
color(ORIGINAL_PAIR); /* Restore the old color settings */
stty_ctdl(SB_RESTORE); /* return the old terminal settings */
/*
* uncomment the following if you need to know why Citadel exited
printf("*** Exit code %d at %s:%d\n", code, file, line);
sleep(2);
*/
exit(code); /* exit with the proper exit code */
}
/*
* signal catching function for hangups...
*/
void dropcarr(int signum)
{
logoff(NULL, 3); /* No IPC when server's already gone! */
}
/*
* catch SIGCONT to reset terminal modes when were are put back into the
* foreground.
*/
void catch_sigcont(int signum)
{
stty_ctdl(SB_LAST);
signal(SIGCONT, catch_sigcont);
}
/* general purpose routines */
/* display a file */
void formout(CtdlIPC *ipc, char *name)
{
int r; /* IPC return code */
char buf[SIZ];
char *text = NULL;
r = CtdlIPCSystemMessage(ipc, name, &text, buf);
if (r / 100 != 1) {
scr_printf("%s\n", buf);
return;
}
if (text) {
fmout(screenwidth, NULL, text, NULL,
((userflags & US_PAGINATOR) ? 1 : 0),
screenheight, 1, 1);
free(text);
}
}
void userlist(CtdlIPC *ipc, char *patn)
{
char buf[SIZ];
char fl[SIZ];
struct tm tmbuf;
time_t lc;
int r; /* IPC response code */
char *listing = NULL;
r = CtdlIPCUserListing(ipc, patn, &listing, buf);
if (r / 100 != 1) {
pprintf("%s\n", buf);
return;
}
pprintf(" User Name Num L Last Visit Logins Messages\n");
pprintf("------------------------- ----- - ---------- ------ --------\n");
if (listing != NULL) while (!IsEmptyStr(listing)) {
extract_token(buf, listing, 0, '\n', sizeof buf);
remove_token(listing, 0, '\n');
if (sigcaught == 0) {
extract_token(fl, buf, 0, '|', sizeof fl);
if (pattern(fl, patn) >= 0) {
pprintf("%-25s ", fl);
pprintf("%5ld %d ", extract_long(buf, 2),
extract_int(buf, 1));
lc = extract_long(buf, 3);
localtime_r(&lc, &tmbuf);
pprintf("%02d/%02d/%04d ",
(tmbuf.tm_mon + 1),
tmbuf.tm_mday,
(tmbuf.tm_year + 1900));
pprintf("%6ld %8ld\n", extract_long(buf, 4), extract_long(buf, 5));
}
}
}
free(listing);
pprintf("\n");
}
/*
* grab assorted info about the user...
*/
void load_user_info(char *params)
{
extract_token(fullname, params, 0, '|', sizeof fullname);
axlevel = extract_int(params, 1);
timescalled = extract_int(params, 2);
posted = extract_int(params, 3);
userflags = extract_int(params, 4);
usernum = extract_long(params, 5);
lastcall = extract_long(params, 6);
}
/*
* Remove a room from the march list. 'floornum' is ignored unless
* 'roomname' is set to _FLOOR_, in which case all rooms on the requested
* floor will be removed from the march list.
*/
void remove_march(char *roomname, int floornum)
{
struct march *mptr, *mptr2;
if (marchptr == NULL)
return;
if ((!strcasecmp(marchptr->march_name, roomname))
|| ((!strcasecmp(roomname, "_FLOOR_")) && (marchptr->march_floor == floornum))) {
mptr = marchptr->next;
free(marchptr);
marchptr = mptr;
return;
}
mptr2 = marchptr;
for (mptr = marchptr; mptr != NULL; mptr = mptr->next) {
if ((!strcasecmp(mptr->march_name, roomname))
|| ((!strcasecmp(roomname, "_FLOOR_"))
&& (mptr->march_floor == floornum))) {
mptr2->next = mptr->next;
free(mptr);
mptr = mptr2;
} else {
mptr2 = mptr;
}
}
}
/*
* Locate the room on the march list which we most want to go to. Each room
* is measured given a "weight" of preference based on various factors.
*/
char *pop_march(int desired_floor, struct march *_march)
{
static char TheRoom[ROOMNAMELEN];
int TheFloor = 0;
int TheOrder = 32767;
int TheWeight = 0;
int weight;
struct march *mptr = NULL;
strcpy(TheRoom, "_BASEROOM_");
if (_march == NULL)
return (TheRoom);
for (mptr = _march; mptr != NULL; mptr = mptr->next) {
weight = 0;
if ((strcasecmp(mptr->march_name, "_BASEROOM_")))
weight = weight + 10000;
if (mptr->march_floor == desired_floor)
weight = weight + 5000;
weight = weight + ((128 - (mptr->march_floor)) * 128);
weight = weight + (128 - (mptr->march_order));
if (weight > TheWeight) {
TheWeight = weight;
strcpy(TheRoom, mptr->march_name);
TheFloor = mptr->march_floor;
TheOrder = mptr->march_order;
}
}
return (TheRoom);
}
/*
* jump directly to a room
*/
void dotgoto(CtdlIPC *ipc, char *towhere, int display_name, int fromungoto)
{
char aaa[SIZ], bbb[SIZ];
static long ls = 0L;
int newmailcount = 0;
int partial_match, best_match;
char from_floor;
int ugpos = uglistsize;
int r; /* IPC result code */
struct ctdlipcroom *room = NULL;
int rv = 0;
/* store ungoto information */
if (fromungoto == 0) {
/* sloppy slide them all down, hey it's the client, who cares. :-) */
if (uglistsize >= (UGLISTLEN-1)) {
int lp;
free (uglist[0]);
for (lp = 0; lp < (UGLISTLEN-1); lp++) {
uglist[lp] = uglist[lp+1];
uglistlsn[lp] = uglistlsn[lp+1];
}
ugpos--;
} else {
uglistsize++;
}
uglist[ugpos] = malloc(strlen(room_name)+1);
strcpy(uglist[ugpos], room_name);
uglistlsn[ugpos] = ls;
}
/* first try an exact match */
r = CtdlIPCGotoRoom(ipc, towhere, "", &room, aaa);
if (r / 10 == 54) {
newprompt("Enter room password: ", bbb, 9);
r = CtdlIPCGotoRoom(ipc, towhere, bbb, &room, aaa);
if (r / 10 == 54) {
scr_printf("Wrong password.\n");
return;
}
}
/*
* If a match is not found, try a partial match.
* Partial matches anywhere in the string carry a weight of 1,
* left-aligned matches carry a weight of 2. Pick the room that
* has the highest-weighted match. Do not match on forgotten
* rooms.
*/
if (r / 100 != 2) {
struct march *march = NULL;
best_match = 0;
strcpy(bbb, "");
r = CtdlIPCKnownRooms(ipc, SubscribedRooms, AllFloors, &march, aaa);
if (r / 100 == 1) {
/* Run the roomlist; free the data as we go */
struct march *mp = march; /* Current */
while (mp) {
partial_match = 0;
if (pattern(mp->march_name, towhere) >= 0) {
partial_match = 1;
}
if (!strncasecmp(mp->march_name, towhere, strlen(towhere))) {
partial_match = 2;
}
if (partial_match > best_match) {
strcpy(bbb, mp->march_name);
best_match = partial_match;
}
/* Both pointers are NULL at end of list */
march = mp->next;
free(mp);
mp = march;
}
}
if (IsEmptyStr(bbb)) {
scr_printf("No room '%s'.\n", towhere);
return;
}
r = CtdlIPCGotoRoom(ipc, bbb, "", &room, aaa);
}
if (r / 100 != 1 && r / 100 != 2) {
scr_printf("%s\n", aaa);
return;
}
safestrncpy(room_name, room->RRname, ROOMNAMELEN);
room_flags = room->RRflags;
room_flags2 = room->RRflags2;
from_floor = curr_floor;
curr_floor = room->RRfloor;
/* Determine, based on the room's default view, whether an <E>nter message
* command will be valid here.
*/
switch(room->RRdefaultview) {
case VIEW_BBS:
case VIEW_MAILBOX:
entmsg_ok = 1;
break;
default:
entmsg_ok = 0;
break;
}
remove_march(room_name, 0);
if (!strcasecmp(towhere, "_BASEROOM_"))
remove_march(towhere, 0);
if (!room->RRunread)
next_lazy_cmd = 5; /* Don't read new if no new msgs */
if ((from_floor != curr_floor) && (display_name > 0) && (floor_mode == 1)) {
if (floorlist[(int) curr_floor][0] == 0)
load_floorlist(ipc);
scr_printf("(Entering floor: %s)\n", &floorlist[(int) curr_floor][0]);
}
if (display_name == 1) {
color(BRIGHT_WHITE);
scr_printf("%s ", room_name);
color(DIM_WHITE);
scr_printf("- ");
}
if (display_name != 2) {
color(BRIGHT_YELLOW);
scr_printf("%d ", room->RRunread);
color(DIM_WHITE);
scr_printf("new of ");
color(BRIGHT_YELLOW);
scr_printf("%d ", room->RRtotal);
color(DIM_WHITE);
scr_printf("messages.\n");
}
highest_msg_read = room->RRlastread;
maxmsgnum = room->RRhighest;
is_mail = room->RRismailbox;
is_room_aide = room->RRaide;
ls = room->RRlastread;
/* read info file if necessary */
if (room->RRinfoupdated > 0)
readinfo(ipc);
/* check for newly arrived mail if we can */
newmailcount = room->RRnewmail;
if (newmailcount > 0) {
color(BRIGHT_RED);
if (newmailcount == 1) {
scr_printf("*** A new mail message has arrived.\n");
}
else {
scr_printf("*** %d new mail messages have arrived.\n",
newmailcount);
}
color(DIM_WHITE);
if (!IsEmptyStr(rc_gotmail_cmd)) {
rv = system(rc_gotmail_cmd);
}
}
status_line(ipc->ServInfo.humannode, ipc->ServInfo.site_location,
room_name, secure, newmailcount);
free(room);
}
/* Goto next room having unread messages.
* We want to skip over rooms that the user has already been to, and take the
* user back to the lobby when done. The room we end up in is placed in
* newroom - which is set to 0 (the lobby) initially.
*/
void gotonext(CtdlIPC *ipc)
{
char buf[SIZ];
struct march *mptr, *mptr2;
char next_room[ROOMNAMELEN];
int r; /* IPC response code */
/* Check to see if the march-mode list is already allocated.
* If it is, pop the first room off the list and go there.
*/
if (marchptr == NULL) {
r = CtdlIPCKnownRooms(ipc, SubscribedRoomsWithNewMessages,
AllFloors, &marchptr, buf);
/* add _BASEROOM_ to the end of the march list, so the user will end up
* in the system base room (usually the Lobby>) at the end of the loop
*/
mptr = (struct march *) malloc(sizeof(struct march));
mptr->next = NULL;
mptr->march_order = 0;
mptr->march_floor = 0;
strcpy(mptr->march_name, "_BASEROOM_");
if (marchptr == NULL) {
marchptr = mptr;
} else {
mptr2 = marchptr;
while (mptr2->next != NULL)
mptr2 = mptr2->next;
mptr2->next = mptr;
}
/*
* ...and remove the room we're currently in, so a <G>oto doesn't make us
* walk around in circles
*/
remove_march(room_name, 0);
}
if (marchptr != NULL) {
strcpy(next_room, pop_march(curr_floor, marchptr));
} else {
strcpy(next_room, "_BASEROOM_");
}
remove_march(next_room, 0);
dotgoto(ipc, next_room, 1, 0);
}
/*
* forget all rooms on a given floor
*/
void forget_all_rooms_on(CtdlIPC *ipc, int ffloor)
{
char buf[SIZ];
struct march *flist = NULL;
struct march *fptr = NULL;
struct ctdlipcroom *room = NULL;
int r; /* IPC response code */
scr_printf("Forgetting all rooms on %s...\n", &floorlist[ffloor][0]);
scr_flush();
remove_march("_FLOOR_", ffloor);
r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, ffloor, &flist, buf);
if (r / 100 != 1) {
scr_printf("Error %d: %s\n", r, buf);
return;
}
while (flist) {
r = CtdlIPCGotoRoom(ipc, flist->march_name, "", &room, buf);
if (r / 100 == 2) {
r = CtdlIPCForgetRoom(ipc, buf);
if (r / 100 != 2) {
scr_printf("Error %d: %s\n", r, buf);
}
}
fptr = flist;
flist = flist->next;
free(fptr);
}
if (room) free(room);
}
/*
* routine called by gotofloor() to move to a new room on a new floor
*/
void gf_toroom(CtdlIPC *ipc, char *towhere, int mode)
{
int floor_being_left;
floor_being_left = curr_floor;
if (mode == GF_GOTO) { /* <;G>oto mode */
updatels(ipc);
dotgoto(ipc, towhere, 1, 0);
}
else if (mode == GF_SKIP) { /* <;S>kip mode */
dotgoto(ipc, towhere, 1, 0);
remove_march("_FLOOR_", floor_being_left);
}
else if (mode == GF_ZAP) { /* <;Z>ap mode */
dotgoto(ipc, towhere, 1, 0);
remove_march("_FLOOR_", floor_being_left);
forget_all_rooms_on(ipc, floor_being_left);
}
}
/*
* go to a new floor
*/
void gotofloor(CtdlIPC *ipc, char *towhere, int mode)
{
int a, tofloor;
int r; /* IPC response code */
struct march *mptr;
char buf[SIZ], targ[SIZ];
if (floorlist[0][0] == 0)
load_floorlist(ipc);
tofloor = (-1);
for (a = 0; a < 128; ++a)
if (!strcasecmp(&floorlist[a][0], towhere))
tofloor = a;
if (tofloor < 0) {
for (a = 0; a < 128; ++a) {
if (!strncasecmp(&floorlist[a][0], towhere, strlen(towhere))) {
tofloor = a;
}
}
}
if (tofloor < 0) {
for (a = 0; a < 128; ++a)
if (pattern(towhere, &floorlist[a][0]) > 0)
tofloor = a;
}
if (tofloor < 0) {
scr_printf("No floor '%s'.\n", towhere);
return;
}
for (mptr = marchptr; mptr != NULL; mptr = mptr->next) {
if ((mptr->march_floor) == tofloor) {
gf_toroom(ipc, mptr->march_name, mode);
return;
}
}
/* Find first known room on the floor */
strcpy(targ, "");
mptr = NULL;
r = CtdlIPCKnownRooms(ipc, SubscribedRooms, tofloor, &mptr, buf);
if (r / 100 == 1) {
struct march *tmp = mptr;
/*. . . according to room order */
if (mptr)
strcpy(targ, pop_march(tofloor, mptr));
while (mptr) {
tmp = mptr->next;
free(mptr);
mptr = tmp;
}
}
if (!IsEmptyStr(targ)) {
gf_toroom(ipc, targ, mode);
return;
}
/* No known rooms on the floor; unzap the first one then */
strcpy(targ, "");
mptr = NULL;
r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, tofloor, &mptr, buf);
if (r / 100 == 1) {
struct march *tmp = mptr;
/*. . . according to room order */
if (mptr)
strcpy(targ, pop_march(tofloor, mptr));
while (mptr) {
tmp = mptr->next;
free(mptr);
mptr = tmp;
}
}
if (!IsEmptyStr(targ)) {
gf_toroom(ipc, targ, mode);
} else {
scr_printf("There are no rooms on '%s'.\n", &floorlist[tofloor][0]);
}
}
/*
* Indexing mechanism for a room list, called by gotoroomstep()
*/
void room_tree_list_query(struct ctdlroomlisting *rp, char *findrmname, int findrmslot, char *rmname, int *rmslot, int *rmtotal)
{
char roomname[ROOMNAMELEN];
static int cur_rmslot = 0;
if (rp == NULL) {
cur_rmslot = 0;
return;
}
if (rp->lnext != NULL) {
room_tree_list_query(rp->lnext, findrmname, findrmslot, rmname, rmslot, rmtotal);
}
if (sigcaught == 0) {
strcpy(roomname, rp->rlname);
if (rmname != NULL) {
if (cur_rmslot == findrmslot) {
strcpy(rmname, roomname);
}
}
if (rmslot != NULL) {
if (!strcmp(roomname, findrmname)) {
*rmslot = cur_rmslot;
}
}
cur_rmslot++;
}
if (rp->rnext != NULL) {
room_tree_list_query(rp->rnext, findrmname, findrmslot, rmname, rmslot, rmtotal);
}
if ((rmname == NULL) && (rmslot == NULL))
free(rp);
if (rmtotal != NULL) {
*rmtotal = cur_rmslot;
}
}
/*
* step through rooms on current floor
*/
void gotoroomstep(CtdlIPC *ipc, int direction, int mode)
{
struct march *listing = NULL;
struct march *mptr;
int r; /* IPC response code */
char buf[SIZ];
struct ctdlroomlisting *rl = NULL;
struct ctdlroomlisting *rp;
struct ctdlroomlisting *rs;
int list_it;
char rmname[ROOMNAMELEN];
int rmslot = 0;
int rmtotal;
/* Ask the server for a room list */
r = CtdlIPCKnownRooms(ipc, SubscribedRooms, (-1), &listing, buf);
if (r / 100 != 1) {
listing = NULL;
}
load_floorlist(ipc);
for (mptr = listing; mptr != NULL; mptr = mptr->next) {
list_it = 1;
if ( floor_mode
&& (mptr->march_floor != curr_floor))
list_it = 0;
if (list_it) {
rp = malloc(sizeof(struct ctdlroomlisting));
strncpy(rp->rlname, mptr->march_name, ROOMNAMELEN);
rp->rlflags = mptr->march_flags;
rp->rlfloor = mptr->march_floor;
rp->rlorder = mptr->march_order;
rp->lnext = NULL;
rp->rnext = NULL;
rs = rl;
if (rl == NULL) {
rl = rp;
} else {
while (rp != NULL) {
if (rordercmp(rp, rs) < 0) {
if (rs->lnext == NULL) {
rs->lnext = rp;
rp = NULL;
} else {
rs = rs->lnext;
}
} else {
if (rs->rnext == NULL) {
rs->rnext = rp;
rp = NULL;
} else {
rs = rs->rnext;
}
}
}
}
}
}
/* Find position of current room */
room_tree_list_query(NULL, NULL, 0, NULL, NULL, NULL);
room_tree_list_query(rl, room_name, 0, NULL, &rmslot, &rmtotal);
if (direction == 0) { /* Previous room */
/* If we're at the first room, wrap to the last room */
if (rmslot == 0) {
rmslot = rmtotal - 1;
} else {
rmslot--;
}
} else { /* Next room */
/* If we're at the last room, wrap to the first room */
if (rmslot == rmtotal - 1) {
rmslot = 0;
} else {
rmslot++;
}
}
/* Get name of next/previous room */
room_tree_list_query(NULL, NULL, 0, NULL, NULL, NULL);
room_tree_list_query(rl, NULL, rmslot, rmname, NULL, NULL);
/* Free the tree */
room_tree_list_query(rl, NULL, 0, NULL, NULL, NULL);
if (mode == 0) { /* not skipping */
updatels(ipc);
} else {
if (rc_alt_semantics) {
updatelsa(ipc);
}
}
/* Free the room list */
while (listing) {
mptr = listing->next;
free(listing);
listing = mptr;
};
dotgoto(ipc, rmname, 1, 0);
}
/*
* step through floors on system
*/
void gotofloorstep(CtdlIPC *ipc, int direction, int mode)
{
int tofloor;
if (floorlist[0][0] == 0)
load_floorlist(ipc);
empty_keep_going:
if (direction == 0) { /* Previous floor */
if (curr_floor) tofloor = curr_floor - 1;
else tofloor = 127;
while (!floorlist[tofloor][0]) tofloor--;
} else { /* Next floor */
if (curr_floor < 127) tofloor = curr_floor + 1;
else tofloor = 0;
while (!floorlist[tofloor][0] && tofloor < 127) tofloor++;
if (!floorlist[tofloor][0]) tofloor = 0;
}
/* ;g works when not in floor mode so . . . */
if (!floor_mode) {
scr_printf("(%s)\n", floorlist[tofloor] );
}
gotofloor(ipc, floorlist[tofloor], mode);
if (curr_floor != tofloor) { /* gotofloor failed */
curr_floor = tofloor;
goto empty_keep_going;
}
}
/*
* Display user 'preferences'.
*/
extern int rc_prompt_control;
void read_config(CtdlIPC *ipc)
{
char buf[SIZ];
char *resp = NULL;
int r; /* IPC response code */
char _fullname[USERNAME_SIZE];
long _usernum;
int _axlevel, _timescalled, _posted;
time_t _lastcall;
struct ctdluser *user = NULL;
/* get misc user info */
r = CtdlIPCGetBio(ipc, fullname, &resp, buf);
if (r / 100 != 1) {
pprintf("%s\n", buf);
return;
}
extract_token(_fullname, buf, 1, '|', sizeof fullname);
_usernum = extract_long(buf, 2);
_axlevel = extract_int(buf, 3);
_lastcall = extract_long(buf, 4);
_timescalled = extract_int(buf, 5);
_posted = extract_int(buf, 6);
free(resp);
resp = NULL;
/* get preferences */
r = CtdlIPCGetConfig(ipc, &user, buf);
if (r / 100 != 2) {
scr_printf("%s\n", buf);
free(user);
return;
}
/* show misc user info */
scr_printf("%s\nAccess level: %d (%s)\n"
"User #%ld / %d Calls / %d Posts",
_fullname, _axlevel, axdefs[(int) _axlevel],
_usernum, _timescalled, _posted);
if (_lastcall > 0L) {
scr_printf(" / Curr login: %s",
asctime(localtime(&_lastcall)));
}
scr_printf("\n");
/* show preferences */
scr_printf("Your screen width: "); color(BRIGHT_CYAN); scr_printf("%d", /*user->USscreenwidth*/ screenwidth); color(DIM_WHITE);
scr_printf(", height: "); color(BRIGHT_CYAN); scr_printf("%d\n", /*user->USscreenheight*/ screenheight); color(DIM_WHITE);
scr_printf("Are you an experienced Citadel user: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_EXPERT) ? "Yes" : "No"); color(DIM_WHITE);
scr_printf("Print last old message on New message request: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_LASTOLD)? "Yes" : "No"); color(DIM_WHITE);
scr_printf("Prompt after each message: "); color(BRIGHT_CYAN); scr_printf("%s\n", (!(user->flags & US_NOPROMPT))? "Yes" : "No"); color(DIM_WHITE);
if ((user->flags & US_NOPROMPT) == 0) {
scr_printf("Use 'disappearing' prompts: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_DISAPPEAR)? "Yes" : "No"); color(DIM_WHITE);
}
scr_printf("Pause after each screenful of text: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_PAGINATOR)? "Yes" : "No"); color(DIM_WHITE);
if (rc_prompt_control == 3 && (user->flags & US_PAGINATOR)) {
scr_printf("<N>ext and <S>top work at paginator prompt: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_PROMPTCTL)? "Yes" : "No"); color(DIM_WHITE);
}
if (rc_floor_mode == RC_DEFAULT) {
scr_printf("View rooms by floor: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_FLOORS)? "Yes" : "No"); color(DIM_WHITE);
}
if (rc_ansi_color == 3) {
scr_printf("Enable color support: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_COLOR)? "Yes" : "No"); color(DIM_WHITE);
}
scr_printf("Be unlisted in userlog: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_UNLISTED)? "Yes" : "No"); color(DIM_WHITE);
if (!IsEmptyStr(editor_paths[0])) {
scr_printf("Always enter messages with the full-screen editor: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_EXTEDIT)? "Yes" : "No"); color(DIM_WHITE);
}
free(user);
}
/*
* Display system statistics.
*/
void system_info(CtdlIPC *ipc)
{
char buf[SIZ];
char *resp = NULL;
size_t bytes;
int mrtg_users, mrtg_active_users;
char mrtg_server_uptime[40];
long mrtg_himessage;
int ret; /* IPC response code */
/* get #users, #active & server uptime */
ret = CtdlIPCGenericCommand(ipc, "MRTG|users", NULL, 0, &resp, &bytes, buf);
mrtg_users = extract_int(resp, 0);
remove_token(resp, 0, '\n');
mrtg_active_users = extract_int(resp, 0);
remove_token(resp, 0, '\n');
extract_token(mrtg_server_uptime, resp, 0, '\n', sizeof mrtg_server_uptime);
free(resp);
resp = NULL;
/* get high message# */
ret = CtdlIPCGenericCommand(ipc, "MRTG|messages", NULL, 0, &resp, &bytes, buf);
mrtg_himessage = extract_long(resp, 0);
free(resp);
resp = NULL;
/* refresh server info just in case */
CtdlIPCServerInfo(ipc, buf);
scr_printf("You are connected to %s (%s) @%s\n", ipc->ServInfo.nodename, ipc->ServInfo.humannode, ipc->ServInfo.fqdn);
scr_printf("running %s with text client v%.2f,\n", ipc->ServInfo.software, (float)REV_LEVEL/100);
scr_printf("server build %s,\n", ipc->ServInfo.svn_revision, (float)REV_LEVEL/100);
scr_printf("and located in %s.\n", ipc->ServInfo.site_location);
scr_printf("Connected users %d / Active users %d / Highest message #%ld\n", mrtg_users, mrtg_active_users, mrtg_himessage);
scr_printf("Server uptime: %s\n", mrtg_server_uptime);
scr_printf("Your system administrator is %s.\n", ipc->ServInfo.sysadm);
scr_printf("Copyright (C)1987-2009 by the Citadel development team\n");
}
/*
* forget all rooms on current floor
*/
void forget_this_floor(CtdlIPC *ipc)
{
if (curr_floor == 0) {
scr_printf("Can't forget this floor.\n");
return;
}
if (floorlist[0][0] == 0) {
load_floorlist(ipc);
}
scr_printf("Are you sure you want to forget all rooms on %s? ",
&floorlist[(int) curr_floor][0]);
if (yesno() == 0) {
return;
}
gf_toroom(ipc, "_BASEROOM_", GF_ZAP);
}
/*
* Figure out the physical screen dimensions, if we can
* WARNING: this is now called from a signal handler!
*/
void check_screen_dims(void)
{
#ifdef TIOCGWINSZ
struct {
unsigned short height; /* rows */
unsigned short width; /* columns */
unsigned short xpixels;
unsigned short ypixels; /* pixels */
} xwinsz;
if (have_xterm) { /* dynamically size screen if on an xterm */
if (ioctl(0, TIOCGWINSZ, &xwinsz) == 0) {
if (xwinsz.height)
screenheight = is_curses_enabled() ? (int)xwinsz.height - 1 : (int) xwinsz.height;
if (xwinsz.width)
screenwidth = (int) xwinsz.width;
}
}
#endif
}
/*
* set floor mode depending on client, server, and user settings
*/
void set_floor_mode(CtdlIPC* ipc)
{
if (ipc->ServInfo.ok_floors == 0) {
floor_mode = 0; /* Don't use floors if the server */
}
/* doesn't support them! */
else {
if (rc_floor_mode == RC_NO) { /* never use floors */
floor_mode = 0;
}
if (rc_floor_mode == RC_YES) { /* always use floors */
floor_mode = 1;
}
if (rc_floor_mode == RC_DEFAULT) { /* user choice */
floor_mode = ((userflags & US_FLOORS) ? 1 : 0);
}
}
}
/*
* Set or change the user's password
*/
int set_password(CtdlIPC *ipc)
{
char pass1[20];
char pass2[20];
char buf[SIZ];
if (!IsEmptyStr(rc_password)) {
strcpy(pass1, rc_password);
strcpy(pass2, rc_password);
} else {
IFNEXPERT formout(ipc, "changepw");
newprompt("Enter a new password: ", pass1, -19);
newprompt("Enter it again to confirm: ", pass2, -19);
}
strproc(pass1);
strproc(pass2);
if (!strcasecmp(pass1, pass2)) {
CtdlIPCChangePassword(ipc, pass1, buf);
scr_printf("%s\n", buf);
offer_to_remember_password(ipc, hostbuf, portbuf, fullname, pass1);
return (0);
} else {
scr_printf("*** They don't match... try again.\n");
return (1);
}
}
/*
* get info about the server we've connected to
*/
void get_serv_info(CtdlIPC *ipc, char *supplied_hostname)
{
char buf[SIZ];
CtdlIPCServerInfo(ipc, buf);
/* be nice and identify ourself to the server */
CtdlIPCIdentifySoftware(ipc, SERVER_TYPE, 0, REV_LEVEL,
(ipc->isLocal ? "local" : CITADEL),
(supplied_hostname) ? supplied_hostname :
/* Look up the , in the bible if you're confused */
(locate_host(ipc, buf), buf), buf);
/* Indicate to the server that we prefer to decode Base64 and
* quoted-printable on the client side.
*/
if ((CtdlIPCSpecifyPreferredFormats(ipc, buf, "dont_decode") / 100 ) != 2) {
scr_printf("ERROR: Extremely old server; MSG4 framework not supported.\n");
logoff(ipc, 0);
}
/*
* Tell the server what our preferred content formats are.
*
* Originally we preferred HTML over plain text because we can format
* it to the reader's screen width, but since our HTML-to-text parser
* isn't really all that great, it's probably better to just go with
* the plain text when we have it available.
*/
if ((CtdlIPCSpecifyPreferredFormats(ipc, buf, "text/plain|text/html") / 100 ) != 2) {
scr_printf("ERROR: Extremely old server; MSG4 framework not supported.\n");
logoff(ipc, 0);
}
}
/*
* Record compare function for SortOnlineUsers()
*/
int idlecmp(const void *rec1, const void *rec2) {
time_t i1, i2;
i1 = extract_long(rec1, 5);
i2 = extract_long(rec2, 5);
if (i1 < i2) return(1);
if (i1 > i2) return(-1);
return(0);
}
/*
* Sort the list of online users by idle time.
* This function frees the supplied buffer, and returns a new one
* to the caller. The caller is responsible for freeing the returned buffer.
*/
char *SortOnlineUsers(char *listing) {
int rows;
char *sortbuf;
char *retbuf;
char buf[SIZ];
int i;
rows = num_tokens(listing, '\n');
sortbuf = malloc(rows * SIZ);
if (sortbuf == NULL) return(listing);
retbuf = malloc(rows * SIZ);
if (retbuf == NULL) {
free(sortbuf);
return(listing);
}
/* Copy the list into a fixed-record-size array for sorting */
for (i=0; i<rows; ++i) {
memset(buf, 0, SIZ);
extract_token(buf, listing, i, '\n', sizeof buf);
memcpy(&sortbuf[i*SIZ], buf, (size_t)SIZ);
}
/* Do the sort */
qsort(sortbuf, rows, SIZ, idlecmp);
/* Copy back to a \n delimited list */
strcpy(retbuf, "");
for (i=0; i<rows; ++i) {
strcat(retbuf, &sortbuf[i*SIZ]);
if (i<(rows-1)) strcat(retbuf, "\n");
}
free(listing);
free(sortbuf);
return(retbuf);
}
/*
* Display list of users currently logged on to the server
*/
void who_is_online(CtdlIPC *ipc, int longlist)
{
char buf[SIZ], username[SIZ], roomname[SIZ], fromhost[SIZ];
char flags[SIZ];
char actual_user[SIZ], actual_room[SIZ], actual_host[SIZ];
char clientsoft[SIZ];
time_t timenow = 0;
time_t idletime, idlehours, idlemins, idlesecs;
int last_session = (-1);
int skipidle = 0;
char *listing = NULL;
int r; /* IPC response code */
if (longlist == 2) {
longlist = 0;
skipidle = 1;
}
if (!longlist) {
color(BRIGHT_WHITE);
pprintf(" User Name Room ");
if (screenwidth >= 80) pprintf(" Idle From host");
pprintf("\n");
color(DIM_WHITE);
pprintf(" ------------------------- --------------------");
if (screenwidth >= 80) pprintf(" ---- ------------------------");
pprintf("\n");
}
r = CtdlIPCOnlineUsers(ipc, &listing, &timenow, buf);
listing = SortOnlineUsers(listing);
if (r / 100 == 1) {
while (!IsEmptyStr(listing)) {
int isidle = 0;
/* Get another line */
extract_token(buf, listing, 0, '\n', sizeof buf);
remove_token(listing, 0, '\n');
extract_token(username, buf, 1, '|', sizeof username);
extract_token(roomname, buf, 2, '|', sizeof roomname);
extract_token(fromhost, buf, 3, '|', sizeof fromhost);
extract_token(clientsoft, buf, 4, '|', sizeof clientsoft);
extract_token(flags, buf, 7, '|', sizeof flags);
idletime = timenow - extract_long(buf, 5);
idlehours = idletime / 3600;
idlemins = (idletime - (idlehours * 3600)) / 60;
idlesecs = (idletime - (idlehours * 3600) - (idlemins * 60));
if (idletime > rc_idle_threshold) {
if (skipidle) {
isidle = 1;
}
}
if (longlist) {
extract_token(actual_user, buf, 8, '|', sizeof actual_user);
extract_token(actual_room, buf, 9, '|', sizeof actual_room);
extract_token(actual_host, buf, 10, '|', sizeof actual_host);
pprintf(" Flags: %s\n", flags);
pprintf("Session: %d\n", extract_int(buf, 0));
pprintf(" Name: %s\n", username);
pprintf("In room: %s\n", roomname);
pprintf(" Host: %s\n", fromhost);
pprintf(" Client: %s\n", clientsoft);
pprintf(" Idle: %ld:%02ld:%02ld\n",
(long) idlehours,
(long) idlemins,
(long) idlesecs);
if ( (!IsEmptyStr(actual_user)&&
!IsEmptyStr(actual_room)&&
!IsEmptyStr(actual_host))) {
pprintf("(really ");
if (!IsEmptyStr(actual_user)) pprintf("<%s> ", actual_user);
if (!IsEmptyStr(actual_room)) pprintf("in <%s> ", actual_room);
if (!IsEmptyStr(actual_host)) pprintf("from <%s> ", actual_host);
pprintf(")\n");
}
pprintf("\n");
} else {
if (isidle == 0) {
if (extract_int(buf, 0) == last_session) {
pprintf(" ");
}
else {
color(BRIGHT_MAGENTA);
pprintf("%-3s", flags);
}
last_session = extract_int(buf, 0);
color(BRIGHT_CYAN);
pprintf("%-25s ", username);
color(BRIGHT_MAGENTA);
roomname[20] = 0;
pprintf("%-20s", roomname);
if (screenwidth >= 80) {
pprintf(" ");
if (idletime > rc_idle_threshold) {
/* over 1000d, must be gone fishing */
if (idlehours > 23999) {
pprintf("fish");
/* over 10 days */
} else if (idlehours > 239) {
pprintf("%3ldd", idlehours / 24);
/* over 10 hours */
} else if (idlehours > 9) {
pprintf("%1ldd%02ld",
idlehours / 24,
idlehours % 24);
/* less than 10 hours */
}
else {
pprintf("%1ld:%02ld", idlehours, idlemins);
}
}
else {
pprintf(" ");
}
pprintf(" ");
color(BRIGHT_CYAN);
fromhost[24] = '\0';
pprintf("%-24s", fromhost);
}
pprintf("\n");
color(DIM_WHITE);
}
}
}
}
free(listing);
}
void enternew(CtdlIPC *ipc, char *desc, char *buf, int maxlen)
{
char bbb[128];
snprintf(bbb, sizeof bbb, "Enter in your new %s: ", desc);
newprompt(bbb, buf, maxlen);
}
int shift(int argc, char **argv, int start, int count) {
int i;
for (i=start; i<(argc-count); ++i) {
argv[i] = argv[i+count];
}
argc = argc - count;
return argc;
}
static void statusHook(char *s) {
sln_printf(s);
sln_flush();
}
/*
* main
*/
int main(int argc, char **argv)
{
int a, b, mcmd;
char aaa[100], bbb[100];/* general purpose variables */
char argbuf[64]; /* command line buf */
char nonce[NONCE_SIZE];
char *telnet_client_host = NULL;
char *sptr, *sptr2; /* USed to extract the nonce */
char hexstring[MD5_HEXSTRING_SIZE];
int stored_password = 0;
char password[SIZ];
struct ctdlipcmisc chek;
struct ctdluser *myself = NULL;
CtdlIPC* ipc; /* Our server connection */
int r; /* IPC result code */
int rv = 0; /* fetch but ignore syscall return value to suppress warnings */
int relh=0;
int home=0;
char relhome[PATH_MAX]="";
char ctdldir[PATH_MAX]=CTDLDIR;
int lp;
#ifdef HAVE_BACKTRACE
eCrashParameters params;
// eCrashSymbolTable symbol_table;
#endif
calc_dirs_n_files(relh, home, relhome, ctdldir, 0);
#ifdef HAVE_BACKTRACE
bzero(¶ms, sizeof(params));
params.filename = file_pid_paniclog;
// panic_fd=open(file_pid_paniclog, O_APPEND|O_CREAT|O_DIRECT);
params.filep = fopen(file_pid_paniclog, "a+");
params.debugLevel = ECRASH_DEBUG_VERBOSE;
params.dumpAllThreads = TRUE;
params.useBacktraceSymbols = 1;
/// BuildSymbolTable(&symbol_table);
// params.symbolTable = &symbol_table;
params.signals[0]=SIGSEGV;
params.signals[1]=SIGILL;
params.signals[2]=SIGBUS;
params.signals[3]=SIGABRT;
eCrash_Init(¶ms);
#endif
setIPCDeathHook(screen_delete);
setIPCErrorPrintf(err_printf);
setCryptoStatusHook(statusHook);
/* Permissions sanity check - don't run citadel setuid/setgid */
if (getuid() != geteuid()) {
err_printf("Please do not run citadel setuid!\n");
logoff(NULL, 3);
} else if (getgid() != getegid()) {
err_printf("Please do not run citadel setgid!\n");
logoff(NULL, 3);
}
stty_ctdl(SB_SAVE); /* Store the old terminal parameters */
load_command_set(); /* parse the citadel.rc file */
stty_ctdl(SB_NO_INTR); /* Install the new ones */
/* signal(SIGHUP, dropcarr);FIXME */ /* Cleanup gracefully if carrier is dropped */
signal(SIGPIPE, dropcarr); /* Cleanup gracefully if local conn. dropped */
signal(SIGTERM, dropcarr); /* Cleanup gracefully if terminated */
signal(SIGCONT, catch_sigcont); /* Catch SIGCONT so we can reset terminal */
#ifdef SIGWINCH
signal(SIGWINCH, scr_winch); /* Window resize signal */
#endif
#ifdef HAVE_OPENSSL
arg_encrypt = RC_DEFAULT;
#endif
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
arg_screen = RC_DEFAULT;
#endif
/*
* Handle command line options as if we were called like /bin/login
* (i.e. from in.telnetd)
*/
for (a=0; a<argc; ++a) {
if ((argc > a+1) && (!strcmp(argv[a], "-h")) ) {
telnet_client_host = argv[a+1];
argc = shift(argc, argv, a, 2);
}
if (!strcmp(argv[a], "-x")) {
#ifdef HAVE_OPENSSL
arg_encrypt = RC_NO;
#endif
argc = shift(argc, argv, a, 1);
}
if (!strcmp(argv[a], "-X")) {
#ifdef HAVE_OPENSSL
arg_encrypt = RC_YES;
argc = shift(argc, argv, a, 1);
#else
fprintf(stderr, "Not compiled with encryption support");
return 1;
#endif
}
if (!strcmp(argv[a], "-s")) {
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
arg_screen = RC_NO;
#endif
argc = shift(argc, argv, a, 1);
}
if (!strcmp(argv[a], "-S")) {
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
arg_screen = RC_YES;
#endif
argc = shift(argc, argv, a, 1);
}
if (!strcmp(argv[a], "-p")) {
struct stat st;
if (chdir(CTDLDIR) < 0) {
perror("can't change to " CTDLDIR);
logoff(NULL, 3);
}
/*
* Drop privileges if necessary. We stat
* citadel.config to get the uid/gid since it's
* guaranteed to have the uid/gid we want.
*/
if (!getuid() || !getgid()) {
if (stat(file_citadel_config, &st) < 0) {
perror("couldn't stat citadel.config");
logoff(NULL, 3);
}
if (!getgid() && (setgid(st.st_gid) < 0)) {
perror("couldn't change gid");
logoff(NULL, 3);
}
if (!getuid() && (setuid(st.st_uid) < 0)) {
perror("couldn't change uid");
logoff(NULL, 3);
}
/*
scr_printf("Privileges changed to uid %d gid %d\n",
getuid(), getgid());
*/
}
argc = shift(argc, argv, a, 1);
}
}
screen_new();
#ifdef __CYGWIN__
newprompt("Connect to (return for local server): ", hostbuf, 64);
#endif
sln_printf("Attaching to server... \r");
sln_flush();
ipc = CtdlIPC_new(argc, argv, hostbuf, portbuf);
if (!ipc) {
screen_delete();
error_printf("Can't connect: %s\n", strerror(errno));
logoff(NULL, 3);
}
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
CtdlIPC_SetNetworkStatusCallback(ipc, wait_indicator);
#endif
ipc_for_signal_handlers = ipc; /* KLUDGE cover your eyes */
CtdlIPC_chat_recv(ipc, aaa);
if (aaa[0] != '2') {
scr_printf("%s\n", &aaa[4]);
logoff(ipc, atoi(aaa));
}
/* If there is a [nonce] at the end, put the nonce in <nonce>, else nonce
* is zeroized.
*/
if ((sptr = strchr(aaa, '<')) == NULL)
{
nonce[0] = '\0';
}
else
{
if ((sptr2 = strchr(sptr, '>')) == NULL)
{
nonce[0] = '\0';
}
else
{
sptr2++;
*sptr2 = '\0';
strncpy(nonce, sptr, (size_t)NONCE_SIZE);
}
}
#ifdef HAVE_OPENSSL
/* Evaluate encryption preferences */
if (arg_encrypt != RC_NO && rc_encrypt != RC_NO) {
if (!ipc->isLocal || arg_encrypt == RC_YES || rc_encrypt == RC_YES) {
secure = (CtdlIPCStartEncryption(ipc, aaa) / 100 == 2) ? 1 : 0;
if (!secure)
error_printf("Can't encrypt: %s\n", aaa);
}
}
#endif
get_serv_info(ipc, telnet_client_host);
scr_printf("%-24s\n%s\n%s\n", ipc->ServInfo.software, ipc->ServInfo.humannode,
ipc->ServInfo.site_location);
scr_flush();
status_line(ipc->ServInfo.humannode, ipc->ServInfo.site_location, NULL,
secure, -1);
screenwidth = 80; /* default screen dimensions */
screenheight = 24;
scr_printf(" pause next stop\n");
scr_printf(" ctrl-s ctrl-o ctrl-c\n\n");
formout(ipc, "hello"); /* print the opening greeting */
scr_printf("\n");
GSTA: /* See if we have a username and password on disk */
if (rc_remember_passwords) {
get_stored_password(hostbuf, portbuf, fullname, password);
if (!IsEmptyStr(fullname)) {
r = CtdlIPCTryLogin(ipc, fullname, aaa);
if (r / 100 == 3) {
if (*nonce) {
r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
} else {
r = CtdlIPCTryPassword(ipc, password, aaa);
}
}
if (r / 100 == 2) {
load_user_info(aaa);
stored_password = 1;
goto PWOK;
} else {
set_stored_password(hostbuf, portbuf, "", "");
}
}
}
termn8 = 0;
newnow = 0;
do {
if (!IsEmptyStr(rc_username)) {
strcpy(fullname, rc_username);
} else {
newprompt("Enter your name: ", fullname, 29);
}
strproc(fullname);
if (!strcasecmp(fullname, "new")) { /* just in case */
scr_printf("Please enter the name you wish to log in with.\n");
}
} while (
(!strcasecmp(fullname, "bbs"))
|| (!strcasecmp(fullname, "new"))
|| (IsEmptyStr(fullname)));
if (!strcasecmp(fullname, "off")) {
mcmd = 29;
goto TERMN8;
}
/* sign on to the server */
r = CtdlIPCTryLogin(ipc, fullname, aaa);
if (r / 100 != 3)
goto NEWUSR;
/* password authentication */
if (!IsEmptyStr(rc_password)) {
strcpy(password, rc_password);
} else {
newprompt("\rPlease enter your password: ", password, -19);
}
if (*nonce) {
r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
if (r / 100 != 2) {
strproc(password);
r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
}
} else {
r = CtdlIPCTryPassword(ipc, password, aaa);
if (r / 100 != 2) {
strproc(password);
r = CtdlIPCTryPassword(ipc, password, aaa);
}
}
if (r / 100 == 2) {
load_user_info(aaa);
offer_to_remember_password(ipc, hostbuf, portbuf,
fullname, password);
goto PWOK;
}
scr_printf("<< wrong password >>\n");
if (!IsEmptyStr(rc_password))
logoff(ipc, 2);
goto GSTA;
NEWUSR: if (IsEmptyStr(rc_password)) {
scr_printf("'%s' not found.\n", fullname);
scr_printf("Type 'off' if you would like to exit.\n");
if (ipc->ServInfo.newuser_disabled == 1) {
goto GSTA;
}
scr_printf("Do you want to create a new user account called '%s'? ",
fullname);
if (yesno() == 0) {
goto GSTA;
}
}
r = CtdlIPCCreateUser(ipc, fullname, 1, aaa);
if (r / 100 != 2) {
scr_printf("%s\n", aaa);
goto GSTA;
}
load_user_info(aaa);
while (set_password(ipc) != 0);
newnow = 1;
enter_config(ipc, 1);
PWOK:
/* Switch color support on or off if we're in user mode */
if (rc_ansi_color == 3) {
if (userflags & US_COLOR)
enable_color = 1;
else
enable_color = 0;
}
color(BRIGHT_WHITE);
scr_printf("\n%s\nAccess level: %d (%s)\n"
"User #%ld / Login #%d",
fullname, axlevel, axdefs[(int) axlevel],
usernum, timescalled);
if (lastcall > 0L) {
scr_printf(" / Last login: %s",
asctime(localtime(&lastcall)));
}
scr_printf("\n");
r = CtdlIPCMiscCheck(ipc, &chek, aaa);
if (r / 100 == 2) {
b = chek.newmail;
if (b > 0) {
color(BRIGHT_RED);
if (b == 1)
scr_printf("*** You have a new private message in Mail>\n");
if (b > 1)
scr_printf("*** You have %d new private messages in Mail>\n", b);
color(DIM_WHITE);
if (!IsEmptyStr(rc_gotmail_cmd)) {
rv = system(rc_gotmail_cmd);
}
}
if ((axlevel >= AxAideU) && (chek.needvalid > 0)) {
scr_printf("*** Users need validation\n");
}
if (chek.needregis > 0) {
scr_printf("*** Please register.\n");
formout(ipc, "register");
entregis(ipc);
}
}
/* Make up some temporary filenames for use in various parts of the
* program. Don't mess with these once they've been set, because we
* will be unlinking them later on in the program and we don't
* want to delete something that we didn't create. */
CtdlMakeTempFileName(temp, sizeof temp);
CtdlMakeTempFileName(temp2, sizeof temp2);
CtdlMakeTempFileName(tempdir, sizeof tempdir);
/* Get screen dimensions. First we go to a default of 80x24. Then
* we try to get the user's actual screen dimensions off the server.
* However, if we're running on an xterm, all this stuff is
* irrelevant because we're going to dynamically size the screen
* during the session.
*/
screenwidth = 80;
screenheight = 24;
r = CtdlIPCGetConfig(ipc, &myself, aaa);
if (r == 2) {
screenwidth = myself->USscreenwidth;
screenheight = myself->USscreenheight;
}
if (getenv("TERM") != NULL)
if (!strcmp(getenv("TERM"), "xterm")) {
have_xterm = 1;
}
#ifdef TIOCGWINSZ
check_screen_dims();
#endif
set_floor_mode(ipc);
/* Enter the lobby */
dotgoto(ipc, "_BASEROOM_", 1, 0);
/* Main loop for the system... user is logged in. */
free(uglist[0]);
uglistsize = 0;
if (newnow == 1)
readmsgs(ipc, LastMessages, ReadForward, 5);
else
readmsgs(ipc, NewMessages, ReadForward, 0);
/* MAIN COMMAND LOOP */
do {
mcmd = getcmd(ipc, argbuf); /* Get keyboard command */
#ifdef TIOCGWINSZ
check_screen_dims(); /* if xterm, get screen size */
#endif
if (termn8 == 0)
switch (mcmd) {
case 1:
formout(ipc, "help");
break;
case 4:
entmsg(ipc, 0, ((userflags & US_EXTEDIT) ? 2 : 0), 0);
break;
case 36:
entmsg(ipc, 0, 1, 0);
break;
case 46:
entmsg(ipc, 0, 2, 0);
break;
case 78:
entmsg(ipc, 0, ((userflags & US_EXTEDIT) ? 2 : 0), 1);
break;
case 5: /* <G>oto */
updatels(ipc);
gotonext(ipc);
break;
case 47: /* <A>bandon */
if (!rc_alt_semantics) {
updatelsa(ipc);
}
gotonext(ipc);
break;
case 90: /* <.A>bandon */
if (!rc_alt_semantics)
updatelsa(ipc);
dotgoto(ipc, argbuf, 0, 0);
break;
case 58: /* <M>ail */
updatelsa(ipc);
dotgoto(ipc, "_MAIL_", 1, 0);
break;
case 20:
if (!IsEmptyStr(argbuf)) {
updatels(ipc);
dotgoto(ipc, argbuf, 0, 0);
}
break;
case 52:
if (!IsEmptyStr(argbuf)) {
if (rc_alt_semantics) {
updatelsa(ipc);
}
dotgoto(ipc, argbuf, 0, 0);
}
break;
case 95: /* what exactly is the numbering scheme supposed to be anyway? --Ford, there isn't one. -IO */
dotungoto(ipc, argbuf);
break;
case 10:
readmsgs(ipc, AllMessages, ReadForward, 0);
break;
case 9:
readmsgs(ipc, LastMessages, ReadForward, 5);
break;
case 13:
readmsgs(ipc, NewMessages, ReadForward, 0);
break;
case 11:
readmsgs(ipc, AllMessages, ReadReverse, 0);
break;
case 12:
readmsgs(ipc, OldMessages, ReadReverse, 0);
break;
case 71:
readmsgs(ipc, LastMessages, ReadForward,
atoi(argbuf));
break;
case 7:
forget(ipc);
break;
case 18:
subshell();
break;
case 38:
updatels(ipc);
entroom(ipc);
break;
case 22:
killroom(ipc);
break;
case 32:
userlist(ipc, argbuf);
break;
case 27:
invite(ipc);
break;
case 28:
kickout(ipc);
break;
case 23:
editthisroom(ipc);
break;
case 14:
roomdir(ipc);
break;
case 33:
download(ipc, 0);
break;
case 34:
download(ipc, 1);
break;
case 31:
download(ipc, 2);
break;
case 43:
download(ipc, 3);
break;
case 45:
download(ipc, 4);
break;
case 55:
download(ipc, 5);
break;
case 39:
upload(ipc, 0);
break;
case 40:
upload(ipc, 1);
break;
case 42:
upload(ipc, 2);
break;
case 44:
upload(ipc, 3);
break;
case 57:
cli_upload(ipc);
break;
case 16:
ungoto(ipc);
break;
case 24:
whoknows(ipc);
break;
case 26:
validate(ipc);
break;
case 29:
case 30:
if (!rc_alt_semantics) {
updatels(ipc);
}
termn8 = 1;
break;
case 48:
enterinfo(ipc);
break;
case 49:
readinfo(ipc);
break;
case 72:
cli_image_upload(ipc, "_userpic_");
break;
case 73:
cli_image_upload(ipc, "_roompic_");
break;
case 74:
snprintf(aaa, sizeof aaa, "_floorpic_|%d", curr_floor);
cli_image_upload(ipc, aaa);
break;
case 75:
enternew(ipc, "roomname", aaa, 20);
r = CtdlIPCChangeRoomname(ipc, aaa, bbb);
if (r / 100 != 2)
scr_printf("\n%s\n", bbb);
break;
case 76:
enternew(ipc, "hostname", aaa, 25);
r = CtdlIPCChangeHostname(ipc, aaa, bbb);
if (r / 100 != 2)
scr_printf("\n%s\n", bbb);
break;
case 77:
enternew(ipc, "username", aaa, 32);
r = CtdlIPCChangeUsername(ipc, aaa, bbb);
if (r / 100 != 2)
scr_printf("\n%s\n", bbb);
break;
case 35:
set_password(ipc);
break;
case 21:
if (argbuf[0] == 0)
strcpy(aaa, "?");
display_help(ipc, argbuf);
break;
case 41:
formout(ipc, "register");
entregis(ipc);
break;
case 15:
scr_printf("Are you sure (y/n)? ");
if (yesno() == 1) {
if (!rc_alt_semantics)
updatels(ipc);
a = 0;
termn8 = 1;
}
break;
case 85:
scr_printf("All users will be disconnected! "
"Really terminate the server? ");
if (yesno() == 1) {
if (!rc_alt_semantics)
updatels(ipc);
r = CtdlIPCTerminateServerNow(ipc, aaa);
scr_printf("%s\n", aaa);
if (r / 100 == 2) {
a = 0;
termn8 = 1;
}
}
break;
case 86:
scr_printf("Do you really want to schedule a "
"server shutdown? ");
if (yesno() == 1) {
r = CtdlIPCTerminateServerScheduled(ipc, 1, aaa);
if (r / 100 == 2) {
if (atoi(aaa)) {
scr_printf(
"The Citadel server will terminate when all users are logged off.\n"
);
} else {
scr_printf(
"The Citadel server will not terminate.\n"
);
}
}
}
break;
case 87:
network_config_management(ipc, "listrecp",
"Message-by-message mailing list recipients");
break;
case 94:
network_config_management(ipc, "digestrecp",
"Digest mailing list recipients");
break;
case 89:
network_config_management(ipc, "ignet_push_share",
"Nodes with which we share this room");
break;
case 88:
do_ignet_configuration(ipc);
break;
case 92:
do_filterlist_configuration(ipc);
break;
case 6:
if (rc_alt_semantics) {
updatelsa(ipc);
}
gotonext(ipc);
break;
case 3:
chatmode(ipc);
break;
case 2:
if (ipc->isLocal) {
screen_reset();
stty_ctdl(SB_RESTORE);
snprintf(aaa, sizeof aaa, "USERNAME=\042%s\042; export USERNAME;"
"exec ./subsystem %ld %d %d", fullname,
usernum, screenwidth, axlevel);
ka_system(aaa);
stty_ctdl(SB_NO_INTR);
screen_set();
} else {
scr_printf("*** Can't run doors when server is not local.\n");
}
break;
case 17:
who_is_online(ipc, 0);
break;
case 79:
who_is_online(ipc, 1);
break;
case 91:
who_is_online(ipc, 2);
break;
case 80:
do_system_configuration(ipc);
break;
case 82:
do_internet_configuration(ipc);
break;
case 83:
check_message_base(ipc);
break;
case 84:
quiet_mode(ipc);
break;
case 93:
stealth_mode(ipc);
break;
case 50:
enter_config(ipc, 2);
break;
case 37:
enter_config(ipc, 0);
set_floor_mode(ipc);
break;
case 59:
enter_config(ipc, 3);
set_floor_mode(ipc);
break;
case 60:
gotofloor(ipc, argbuf, GF_GOTO);
break;
case 61:
gotofloor(ipc, argbuf, GF_SKIP);
break;
case 62:
forget_this_floor(ipc);
break;
case 63:
create_floor(ipc);
break;
case 64:
edit_floor(ipc);
break;
case 65:
kill_floor(ipc);
break;
case 66:
enter_bio(ipc);
break;
case 67:
read_bio(ipc);
break;
case 25:
edituser(ipc, 25);
break;
case 96:
edituser(ipc, 96);
break;
case 8:
knrooms(ipc, floor_mode);
scr_printf("\n");
break;
case 68:
knrooms(ipc, 2);
scr_printf("\n");
break;
case 69:
misc_server_cmd(ipc, argbuf);
break;
case 70:
edit_system_message(ipc, argbuf);
break;
case 19:
listzrooms(ipc);
scr_printf("\n");
break;
case 51:
deletefile(ipc);
break;
case 54:
movefile(ipc);
break;
case 56:
page_user(ipc);
break;
case 110: /* <+> Next room */
gotoroomstep(ipc, 1, 0);
break;
case 111: /* <-> Previous room */
gotoroomstep(ipc, 0, 0);
break;
case 112: /* <>> Next floor */
gotofloorstep(ipc, 1, GF_GOTO);
break;
case 113: /* <<> Previous floor */
gotofloorstep(ipc, 0, GF_GOTO);
break;
case 116: /* <.> skip to <+> Next room */
gotoroomstep(ipc, 1, 1);
break;
case 117: /* <.> skip to <-> Previous room */
gotoroomstep(ipc, 0, 1);
break;
case 118: /* <.> skip to <>> Next floor */
gotofloorstep(ipc, 1, GF_SKIP);
break;
case 119: /* <.> skip to <<> Previous floor */
gotofloorstep(ipc, 0, GF_SKIP);
break;
case 114:
read_config(ipc);
break;
case 115:
system_info(ipc);
break;
case 120: /* .KAnonymous */
dotknown(ipc, 0, NULL);
break;
case 121: /* .KDirectory */
dotknown(ipc, 1, NULL);
break;
case 122: /* .KMatch */
dotknown(ipc, 2, argbuf);
break;
case 123: /* .KpreferredOnly */
dotknown(ipc, 3, NULL);
break;
case 124: /* .KPrivate */
dotknown(ipc, 4, NULL);
break;
case 125: /* .KRead only */
dotknown(ipc, 5, NULL);
break;
case 126: /* .KShared */
dotknown(ipc, 6, NULL);
break;
case 127: /* Configure POP3 aggregation */
do_pop3client_configuration(ipc);
break;
case 128: /* Configure XML/RSS feed retrieval */
do_rssclient_configuration(ipc);
break;
default: /* allow some math on the command */
/* commands 100... to 100+MAX_EDITORS-1 will
call the appropriate editor... in other
words, command numbers 100+ will match
the citadel.rc keys editor0, editor1, etc.*/
if (mcmd >= 100 && mcmd < (100+MAX_EDITORS))
{
/* entmsg mode >=2 select editor */
entmsg(ipc, 0, mcmd - 100 + 2, 0);
break;
}
} /* end switch */
} while (termn8 == 0);
TERMN8: scr_printf("%s logged out.", fullname);
termn8 = 0;
color(ORIGINAL_PAIR);
scr_printf("\n");
while (marchptr != NULL) {
remove_march(marchptr->march_name, 0);
}
if (mcmd == 30) {
sln_printf("\n\nType 'off' to disconnect, or next user...\n");
}
CtdlIPCLogout(ipc);
if ((mcmd == 29) || (mcmd == 15)) {
screen_delete();
stty_ctdl(SB_RESTORE);
formout(ipc, "goodbye");
logoff(ipc, 0);
}
/* Free the ungoto list */
for (lp = 0; lp < uglistsize; lp++) {
free(uglist[lp]);
}
uglistsize = 0;
goto GSTA;
} /* end main() */
|