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
|
/*
* ircaux.c: some extra routines... not specific to irc... that I needed
*
* Written By Michael Sandrof
*
* Copyright(c) 1990, 1991
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*/
#ifndef lint
static char rcsid[] = "@(#)$Id: ircaux.c,v 1.49 1997/06/03 12:55:09 mrg Exp $";
#endif /* lint */
#include "irc.h"
#if defined(ESIX) || defined(MIPS_SYSV)
# define _TERMIOS_INCLUDED
# define _INCLUDE_TERMIO
# include <sys/termio.h>
#endif /* ESIX || MIPS_SYSV */
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif /* HAVE_SYS_UN_H */
#ifndef _Windows
#include <pwd.h>
#endif /* _Windows */
#include "ircaux.h"
#include "output.h"
#include "ircterm.h"
#include "newio.h"
extern struct in_addr MyHostAddr;
extern char *source_host;
#ifdef ALLOC_DEBUG
# ifdef _IBMR2
struct HeapDesc
{
u_long Link;
u_long Size;
};
# endif /* _IBMR2 */
#define ALLOC_LIST 2048
static unsigned char *MemList[ALLOC_LIST];
static long MemSize[ALLOC_LIST];
static int Init = 0;
static void dump_mem _((void));
static void
dump_mem()
{
int i;
FILE *fp;
# ifdef _IBMR2
struct HeapDesc *HeapElement;
char *lowest;
char *highest;
long size;
# endif /* _IBMR2 */
int fits;
fp = fopen("debug.log", "w");
fprintf(fp, "ircII failed because of a segmentation violation\nKnown allocations follow:\n\n");
for (i = 0; i < ALLOC_LIST; i++)
if (MemList[i])
{
# ifdef _IBMR2
/*
* The following determines if the size shown for this element of
* memory matches the size we have recorded in the allocation list.
* this is very much machine dependant, and could even vary between
* SysV and BSD on the same machine.
*/
size = (0x08 << (*((long *) MemList[i] - 1)));
if (size - 0x08 >= MemSize[i] && (size >> 1) - 0x08<MemSize[i])
fits = 1;
else
fits = 0;
#else
fits = 1;
# endif /* _IBMR2 */
fprintf(fp, " %08lx %08lx %08lx %08lx %s\n",
(long) MemList[i], MemSize[i],
(long) *((long *) MemList[i]-2),
*((long *) MemList[i]-1), fits ? "" : "SUSPICIOUS");
}
# ifdef _IBMR2
/*
* Now we'll walk the heap. We do this by finding the lowest and
* highest elements in our list, and use the HeapDesc structure
* to find our way around.
*/
highest = NULL;
lowest = NULL;
for (i = 0; i < ALLOC_LIST; i++)
{
if (!MemList[i])
continue;
if (!lowest)
lowest = MemList[i];
if ((u_long) MemList[i] < (u_long) lowest)
lowest = MemList[i];
if ((u_long) MemList[i] > (u_long) highest)
highest = MemList[i];
}
fprintf(fp, "\nKnown allocations start at %08x and end at %08x\n",
lowest, highest);
fprintf(fp, "\nHeap walks as follows:\n\n");
for (HeapElement = lowest-0x08; HeapElement<highest;
HeapElement = (HeapElement->Link == 0xefL || !HeapElement->Link)?
(HeapElement+(0x01<<HeapElement->Size)):
((struct HeapDesc *) HeapElement->Link))
{
fprintf(fp, " %08x %08x %08x\n",
HeapElement + 1,
HeapElement->Link,
HeapElement->Size);
}
# endif /* _IBMR2 */
fclose(fp);
fprintf(stderr, "Segmentation violation. Debug information saved to debug.log\n");
/*
* If we resume on a segmentation violation, hopefully it repeats the
* violation and we get both our log and the core dump from the point
* at which things fail.
*/
(void) MY_SIGNAL(SIGSEGV, (sigfunc *)SIG_DFL, 0);
return;
}
#endif /* ALLOC_DEBUG */
/*
* new_free: Why do this? Why not? Saves me a bit of trouble here and
* there
*/
void
new_free(iptr)
void *iptr;
{
void **ptr = (void **) iptr;
#ifdef ALLOC_DEBUG
FILE *fp;
int i;
#endif /* ALLOC_DEBUG */
#ifdef DO_USER2
int oldmask;
#endif /* DO_USER2 */
if (*ptr == empty_string)
*ptr = (void *) 0;
else if (*ptr)
{
#ifdef DO_USER2
oldmask = sigblock(sigmask(SIGUSR2));
#endif /* DO_USER2 */
#ifdef FREE_DEBUG
if (free(*ptr) < 0)
put_it("*debug* free failed '%s'", (char *) ptr);
#else
free(*ptr);
#endif /* FREE_DEBUG */
#ifdef DO_USER2
sigblock(oldmask);
#endif /* DO_USER2 */
#ifdef ALLOC_DEBUG
for (i = 0; i < ALLOC_LIST; i++)
{
if ((void *) MemList[i] == *ptr)
break;
}
if (i == ALLOC_LIST)
{
fprintf(stderr,
"Memory freed that was never allocated\n");
fp=fopen("debug.log", "w");
fprintf(fp, "failed by freeing %08lx\n", (long) *ptr);
fprintf(fp, "List is as follows:\n");
for (i = 0; i < ALLOC_LIST; i++)
if (MemList[i])
fprintf(fp, " %08lx %08lx\n",
(long) MemList[i], MemSize[i]);
fclose(fp);
abort();
}
MemList[i] = (void *) 0;
MemSize[i] = 0L;
#endif /* ALLOC_DEBUG */
*ptr = (void *) 0;
}
}
#define WAIT_BUFFER 2048
static char * FAR pointers[WAIT_BUFFER] = {0}, **current = pointers;
/*
* wait_new_free: same as new_free() except that free() is postponed.
*/
void
wait_new_free(ptr)
char **ptr;
{
if (*current)
new_free(current);
*current++ = *ptr;
if (current >= pointers + WAIT_BUFFER)
current = pointers;
*ptr = (char *) 0;
}
/*
* reall_free: really free the data if level == 0
*/
void
really_free(level)
int level;
{
if (level != 0)
return;
for (current = pointers; current < pointers + WAIT_BUFFER; current++)
if (*current)
new_free(current);
current = pointers;
}
char *
new_realloc(ptr, size)
char *ptr;
int size;
{
char *new_ptr;
#ifdef ALLOC_DEBUG
int i;
#endif /* ALLOC_DEBUG */
if ((new_ptr = (char *) realloc(ptr, size)) == (char *) 0)
{
fprintf(stderr, "realloc failed (%d): %s\nIrc Aborted!\n",
size, strerror(errno));
exit(1);
}
#ifdef ALLOC_DEBUG
for (i = 0;i < ALLOC_LIST; i++)
if ((char *) MemList[i] == ptr)
break;
if (i == ALLOC_LIST)
{
fprintf(stderr, "Memory freed that was never allocated");
abort();
}
MemList[i] = new_ptr;
MemSize[i] = size;
#endif /* ALLOC_DEBUG */
return (new_ptr);
}
char *
new_malloc(size)
int size;
{
char *ptr;
#ifdef ALLOC_DEBUG
int i;
if (!Init)
{
Init = 1;
for (i = 0; i < ALLOC_LIST; i++)
{
MemList[i] = (void *) 0;
MemSize[i] = 0L;
}
if (getenv("DEBUG"))
(void) MY_SIGNAL(SIGSEGV, dump_mem, 0);
}
#endif /* ALLOC_DEBUG */
if ((ptr = (char *) malloc(size)) == (char *) 0)
{
static char error[] = "Malloc failed: \nIrc Aborted!\n";
write(2, error, strlen(error));
write(2, strerror(errno), strlen(strerror(errno)));
term_reset();
exit(1);
}
#ifdef ALLOC_DEBUG
for (i = 0; i < ALLOC_LIST && MemList[i]; i++)
;
if (i == ALLOC_LIST)
{
FILE *fp;
int j;
fprintf(stderr,
"Out of space in memory record. Probable memory leak\n");
fp = fopen("debug.log", "w");
for (i = 0; i < ALLOC_LIST; i++)
{
fprintf(fp, " %08lx %08lx \"",
(long) MemList[i], MemSize[i]);
for (j = 0; j < MemSize[i] && j < 45; j++)
{
if (MemList[i][j] < 32 || MemList[i][j] > 127)
putc('.', fp);
else
putc(MemList[i][j], fp);
}
fprintf(fp, "\"\n");
}
fclose(fp);
abort();
}
MemList[i]=ptr;
MemSize[i]=size;
#endif /* ALLOC_DEBUG */
return (ptr);
}
#ifdef ALLOC_DEBUG
void
alloc_cmd(command, args, subargs)
char *command,
*args,
*subargs;
{
char *arg;
int f_count = 0,
f_dump = 0;
int i, j;
int count;
long size;
FILE *fp;
while ((arg = next_arg(args, &args)))
{
while (*arg)
{
switch(*arg++)
{
case 'c':
case 'C':
f_count = 1;
break;
case 'd':
case 'D':
f_dump = 1;
break;
}
}
}
if (f_dump)
fp = fopen("debug.log", "w");
else
fp = NULL;
for (size = count = i = 0; i < ALLOC_LIST; i++)
{
if (fp && MemList[i])
{
fprintf(fp, " %08lx %08lx \"",
(long) MemList[i], MemSize[i]);
for (j = 0; j < MemSize[i] && j < 45; j++)
{
if (MemList[i][j] < 32 || MemList[i][j] > 127)
putc('.', fp);
else
putc(MemList[i][j], fp);
}
fprintf(fp, "\"\n");
}
if (MemList[i])
{
count++;
size += MemSize[i];
}
}
if (fp)
fclose(fp);
if (f_count)
{
say("%d blocks allocated out of %d", count, ALLOC_LIST);
say("%ld bytes allocated, an average of %ld per block",
size, size/count);
}
}
#endif /* ALLOC_DEBUG */
/*
* malloc_strcpy: Mallocs enough space for src to be copied in to where
* ptr points to.
*
* Never call this with ptr pointing to an uninitialised string, as the
* call to new_free() might crash the client... - phone, jan, 1993.
*/
void
malloc_strcpy(ptr, src)
char **ptr;
char *src;
{
new_free(ptr);
if (src)
{
*ptr = new_malloc(strlen(src) + 1);
strcpy(*ptr, src);
}
else
*ptr = (char *) 0;
}
/* malloc_strcat: Yeah, right */
void
malloc_strcat(ptr, src)
char **ptr;
char *src;
{
char *new;
if (*ptr)
{
new = (char *) new_malloc(strlen(*ptr) + strlen(src) + 1);
strcpy(new, *ptr);
strcat(new, src);
new_free(ptr);
*ptr = new;
}
else
malloc_strcpy(ptr, src);
}
char *
upper(s)
char *s;
{
char *t = (char *) 0;
if (s)
for (t = s; *s; s++)
if (islower(*s))
*s = toupper(*s);
return (t);
}
char *
lower(s)
char * s;
{
char * t = (char *) 0;
if (s)
for (t = s; *s; s++)
if (isupper(*s))
*s = tolower(*s);
return t;
}
#if 0
/* case insensitive string searching */
char *
stristr(source, search)
char *source,
*search;
{
char *u,
*s = (char *) 0,
*t = (char *) 0,
*where;
int x = 0,
len = strlen(search);
if (!source || !*source || !search || !*search)
return (char *) 0;
malloc_strcpy(&s, source);
malloc_strcpy(&t, search);
upper(s);
upper(t);
u = s;
while (u[x])
{
if (u[x] == t[x])
{
where = u;
if (++x >= len)
{
new_free(&s);
new_free(&t);
return (where);
}
}
else
{
x = 0;
u++;
}
}
new_free(&t);
new_free(&s);
return (char *) 0;
}
/* case insensitive string searching from the end */
char *
rstristr(source,search)
char *source,
*search;
{
char *u,
*s = (char *) 0,
*t = (char *) 0,
*where;
int x = 0,
len = strlen(search),
slen = strlen(source);
if (!source || !*source || !search || !*search)
return empty_string;
malloc_strcpy(&s, source);
malloc_strcpy(&t, search);
upper(s);
upper(t);
u = s + slen - len;
while (u >= s)
{
if (u[x] == t[x])
{
where = u;
x++;
if (x >= len)
{
new_free(&t);
new_free(&s);
return (where);
}
}
else
{
x = 0;
u--;
}
}
new_free(&t);
new_free(&s);
return (char *) 0;
}
#endif /* 0 */
/*
* Connect_By_Number Performs a connecting to socket 'service' on host
* 'host'. Host can be a hostname or ip-address. If 'host' is null, the
* local host is assumed. The parameter full_hostname will, on return,
* contain the expanded hostname (if possible). Note that full_hostname is a
* pointer to a char *, and is allocated by connect_by_numbers()
*
* The following special values for service exist:
*
* 0 Create a socket for accepting connections
*
* -1 Create a UDP socket
*
* -2 Connect to the address passed in place of the hostname parameter
*
* Errors:
*
* -1 get service failed
*
* -2 get host failed
*
* -3 socket call failed
*
* -4 connect call failed
*/
int
connect_by_number(service, host, nonblocking)
int service;
char *host;
int nonblocking;
{
int s = -1;
char buf[100];
struct sockaddr_in server;
struct hostent *hp;
if (service == -2)
{
server = (*(struct sockaddr_in *) host);
}
else if (service > 0)
{
if (host == (char *) 0)
{
gethostname(buf, sizeof(buf));
host = buf;
}
if ((server.sin_addr.s_addr = inet_addr(host)) == -1)
{
if ((hp = gethostbyname(host)) != NULL)
{
bzero((char *) &server, sizeof(server));
bcopy(hp->h_addr, (char *) &server.sin_addr,
hp->h_length);
server.sin_family = hp->h_addrtype;
}
else
return (-2);
}
else
server.sin_family = AF_INET;
server.sin_port = (unsigned short) htons(service);
}
if (((service == -1) && ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0)) ||
((service != -1) && ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0)))
return (-3);
if (service != -1)
set_socket_options(s);
if (service <= 0 && service != -2)
{
struct sockaddr_in localaddr;
bzero(&localaddr, sizeof(struct sockaddr_in));
localaddr.sin_family = AF_INET;
if (!service)
localaddr.sin_addr.s_addr = INADDR_ANY;
else
localaddr.sin_addr = MyHostAddr;
localaddr.sin_port = 0;
if (bind(s, (struct sockaddr *) &localaddr,
sizeof(localaddr)) == -1 ||
(!service && listen(s, 1) == -1))
{
new_close(s);
return -4;
}
service = sizeof(localaddr);
getsockname(s, (struct sockaddr *) &localaddr, &service);
return (s);
}
if (source_host)
{
struct sockaddr_in localaddr;
bzero(&localaddr, sizeof localaddr);
localaddr.sin_family = AF_INET;
localaddr.sin_addr = MyHostAddr;
if (bind(s, (struct sockaddr *)&localaddr, sizeof localaddr) == -1)
return -3;
}
#if defined(PRIV_PORT) || defined(PRIV_PORT_ULC)
# ifdef PRIV_PORT_ULC
seteuid(0);
# endif /* PRIV_PORT_ULC */
/* attempt to bind to a privileged port */
if (geteuid() == 0)
{
struct sockaddr_in localaddr;
int portnum;
localaddr = server;
localaddr.sin_addr.s_addr=INADDR_ANY;
for (portnum = 1023; portnum > 600; portnum--)
{
localaddr.sin_port = htons(portnum);
if (bind(s, (struct sockaddr *) &localaddr,
sizeof(localaddr)) != -1)
break;
}
}
# ifdef PRIV_PORT_ULC
seteuid(getuid());
# endif /* PRIV_PORT_ULC */
#endif /* PRIV_PORT || PRIV_PORT_ULC */
#ifdef NON_BLOCKING_CONNECTS
if (nonblocking && set_non_blocking(s) < 0)
{
# ifdef ESIX
t_close(s);
unmark_socket(s);
# endif /* ESIX */
new_close(s);
return -4;
}
#endif /* NON_BLOCKING_CONNECTS */
if (connect(s, (struct sockaddr *) &server, sizeof(server)) < 0)
{
if (!(errno == EINPROGRESS && nonblocking))
{
#ifdef ESIX
t_close(s);
unmark_socket(s);
#endif /* ESIX */
new_close(s);
return -4;
}
}
return s;
}
char *
next_arg(str, new_ptr)
char *str,
**new_ptr;
{
char *ptr;
if ((ptr = sindex(str, "^ ")) != NULL)
{
if ((str = sindex(ptr, " ")) != NULL)
*str++ = (char) 0;
else
str = empty_string;
}
else
str = empty_string;
if (new_ptr)
*new_ptr = str;
return ptr;
}
char *
new_next_arg(str, new_ptr)
char *str,
**new_ptr;
{
char *ptr,
*start;
if ((ptr = sindex(str, "^ \t")) != NULL)
{
if (*ptr == '"')
{
start = ++ptr;
while ((str = sindex(ptr, "\"\\")) != NULL)
{
switch (*str)
{
case '"':
*str++ = '\0';
if (*str == ' ')
str++;
if (new_ptr)
*new_ptr = str;
return (start);
case '\\':
if (*(str + 1) == '"')
strcpy(str, str + 1);
ptr = str + 1;
}
}
str = empty_string;
}
else
{
if ((str = sindex(ptr, " \t")) != NULL)
*str++ = '\0';
else
str = empty_string;
}
}
else
str = empty_string;
if (new_ptr)
*new_ptr = str;
return ptr;
}
/* my_stricmp: case insensitive version of strcmp */
int
my_stricmp(str1, str2)
char *str1,
*str2;
{
int xor;
if (!str1) return -1;
if (!str2) return 1;
for (; *str1 || *str2 ; str1++, str2++)
{
if (!*str1 || !*str2)
return (*str1 - *str2);
if (isalpha(*str1) && isalpha(*str2))
{
xor = *str1 ^ *str2;
if (xor != 32 && xor != 0)
return (*str1 - *str2);
}
else
{
if (*str1 != *str2)
return (*str1 - *str2);
}
}
return 0;
}
/* my_strnicmp: case insensitive version of strncmp */
int
my_strnicmp(str1, str2, n)
char *str1,
*str2;
int n;
{
int i,
xor;
for (i = 0; i < n; i++, str1++, str2++)
{
if (isalpha(*str1) && isalpha(*str2))
{
xor = *str1 ^ *str2;
if (xor != 32 && xor != 0)
return (*str1 - *str2);
}
else
{
if (*str1 != *str2)
return (*str1 - *str2);
}
}
return 0;
}
/*
* strmcpy: Well, it's like this, strncpy doesn't append a trailing null if
* strlen(str) == maxlen. strmcpy always makes sure there is a trailing null
*/
void
strmcpy(dest, src, maxlen)
char *dest,
*src;
int maxlen;
{
strncpy(dest, src, maxlen);
dest[maxlen] = '\0';
}
/*
* strmcat: like strcat, but truncs the dest string to maxlen (thus the dest
* should be able to handle maxlen+1 (for the null))
*/
void
strmcat(dest, src, maxlen)
char *dest,
*src;
int maxlen;
{
int srclen,
len;
srclen = strlen(src);
if ((len = strlen(dest) + srclen) > maxlen)
strncat(dest, src, srclen - (len - maxlen));
else
strcat(dest, src);
}
/*
* strmcat_ue: like strcat, but truncs the dest string to maxlen (thus the dest
* should be able to handle maxlen + 1 (for the null)). Also unescapes
* backslashes.
*/
void
strmcat_ue(dest, src, maxlen)
char *dest,
*src;
int maxlen;
{
int dstlen;
dstlen = strlen(dest);
dest += dstlen;
maxlen -= dstlen;
while (*src && maxlen > 0)
{
if (*src == '\\')
{
if (index("npr0", src[1]))
*dest++ = '\020';
else if (*(src + 1))
*dest++ = *++src;
else
*dest++ = '\\';
}
else
*dest++ = *src;
src++;
}
*dest = '\0';
}
/*
* scanstr: looks for an occurrence of str in source. If not found, returns
* 0. If it is found, returns the position in source (1 being the first
* position). Not the best way to handle this, but what the hell
*/
extern int
scanstr(source, str)
char *str,
*source;
{
int i,
max,
len;
len = strlen(str);
max = strlen(source) - len;
for (i = 0; i <= max; i++, source++)
{
if (!my_strnicmp(source, str, len))
return (i + 1);
}
return (0);
}
/* expand_twiddle: expands ~ in pathnames. */
char *
expand_twiddle(str)
char *str;
{
char buffer[BIG_BUFFER_SIZE + 1];
if (*str == '~')
{
str++;
if (*str == '/' || *str == '\0')
{
strmcpy(buffer, my_path, BIG_BUFFER_SIZE);
strmcat(buffer, str, BIG_BUFFER_SIZE);
}
else
{
char *rest;
#ifndef _Windows
struct passwd *entry;
#endif /* _Windows */
if ((rest = index(str, '/')) != NULL)
*rest++ = '\0';
#ifdef _Windows
if (GetProfileString("IRC", "StartDir", "", buffer, BIG_BUFFER_SIZE))
{
#else
if ((entry = getpwnam(str)) != NULL)
{
strmcpy(buffer, entry->pw_dir, BIG_BUFFER_SIZE);
#endif /* _Windows */
if (rest)
{
strmcat(buffer, "/", BIG_BUFFER_SIZE);
strmcat(buffer, rest, BIG_BUFFER_SIZE);
}
}
else
return (char *) NULL;
}
}
else
strmcpy(buffer, str, BIG_BUFFER_SIZE);
str = '\0';
malloc_strcpy(&str, buffer);
return (str);
}
/* islegal: true if c is a legal nickname char anywhere but first char */
#define islegal(c) ((((c) >= 'A') && ((c) <= '}')) || \
(((c) >= '0') && ((c) <= '9')) || \
((c) == '-') || ((c) == '_'))
/*
* check_nickname: checks is a nickname is legal. If the first character is
* bad new, null is returned. If the first character is bad, the string is
* truncd down to only legal characters and returned
*
* rewritten, with help from do_nick_name() from the server code (2.8.5),
* phone, april 1993.
*/
char *
check_nickname(nick)
char *nick;
{
char *s;
if (!nick || *nick == '-' || isdigit(*nick))
return NULL;
for (s = nick; *s && (s - nick) < NICKNAME_LEN; s++)
if (!islegal(*s) || isspace(*s))
break;
*s = '\0';
return *nick ? nick : NULL;
}
/*
* sindex: much like index(), but it looks for a match of any character in
* the group, and returns that position. If the first character is a ^, then
* this will match the first occurence not in that group.
*/
char *
sindex(string, group)
char *string,
*group;
{
char *ptr;
if (!string || !group)
return (char *) NULL;
if (*group == '^')
{
group++;
for (; *string; string++)
{
for (ptr = group; *ptr; ptr++)
{
if (*ptr == *string)
break;
}
if (*ptr == '\0')
return string;
}
}
else
{
for (; *string; string++)
{
for (ptr = group; *ptr; ptr++)
{
if (*ptr == *string)
return string;
}
}
}
return (char *) NULL;
}
/* is_number: returns true if the given string is a number, false otherwise */
int
is_number(str)
char *str;
{
while (*str == ' ')
str++;
if (*str == '-')
str++;
if (*str)
{
for (; *str; str++)
{
if (!isdigit((*str)))
return (0);
}
return 1;
}
else
return 0;
}
/* rfgets: exactly like fgets, cept it works backwards through a file! */
char *
rfgets(buffer, size, file)
char *buffer;
int size;
FILE *file;
{
char *ptr;
off_t pos;
if (fseek(file, -2L, 1))
return NULL;
do
{
switch (fgetc(file))
{
case EOF:
return NULL;
case '\n':
pos = ftell(file);
ptr = fgets(buffer, size, file);
fseek(file, pos, 0);
return ptr;
}
}
while (fseek(file, -2L, 1) == 0);
rewind(file);
pos = 0L;
ptr = fgets(buffer, size, file);
fseek(file, pos, 0);
return ptr;
}
/*
* path_search: given a file called name, this will search each element of
* the given path to locate the file. If found in an element of path, the
* full path name of the file is returned in a static string. If not, null
* is returned. Path is a colon separated list of directories
*/
char *
path_search(name, path)
char *name;
char *path;
{
static char FAR buffer[BIG_BUFFER_SIZE + 1] = "";
char *ptr,
*free_path = (char *) 0;
malloc_strcpy(&free_path, path);
path = free_path;
while (path)
{
#ifdef __MSDOS__
if ((ptr = index(path, ';')) != NULL)
#else
if ((ptr = index(path, ':')) != NULL)
#endif /* __MSDOS */
*(ptr++) = '\0';
strcpy(buffer, empty_string);
if (path[0] == '~')
{
strmcat(buffer, my_path, BIG_BUFFER_SIZE);
path++;
}
strmcat(buffer, path, BIG_BUFFER_SIZE);
strmcat(buffer, "/", BIG_BUFFER_SIZE);
strmcat(buffer, name, BIG_BUFFER_SIZE);
if (access(buffer, F_OK) == 0)
break;
path = ptr;
}
new_free(&free_path);
return (path) ? buffer : (char *) 0;
}
/*
* double_quote: Given a str of text, this will quote any character in the
* set stuff with the QUOTE_CHAR. It returns a malloced quoted, null
* terminated string
*/
char *
double_quote(str, stuff)
char *str;
char *stuff;
{
char buffer[BIG_BUFFER_SIZE + 1];
char *ptr = NULL;
char c;
int pos;
if (str && stuff)
{
for (pos = 0; (c = *str); str++)
{
if (index(stuff, c))
{
if (c == '$')
buffer[pos++] = '$';
else
buffer[pos++] = '\\';
}
buffer[pos++] = c;
}
buffer[pos] = '\0';
malloc_strcpy(&ptr, buffer);
}
else
malloc_strcpy(&ptr, str);
return ptr;
}
/*
* new_stty: given a string of stty commands sets the tty
* via ioctls TCGETA/TCSETA.
*
* WARNING: if someone of the architectures specified in
* #if statement don't work ... please comment out
* the relative statement and send a report to
*
* mez002@cdc835.cdc.polimi.it or
* rfac@ghost.unimi.it
*
* or talk with me on IRC ... (i think is better)
*
* - Allanon -
*
*/
void
new_stty(option)
char *option;
{
#if defined(ESIX) || defined(MIPS_SYSV)
struct termio ttyset;
ioctl(0, TCGETA, &ttyset);
if (strstr(option, "opost"))
ttyset.c_oflag |= OPOST;
if (strstr(option, "sane"))
{
ttyset.c_iflag &= ~(IGNBRK | PARMRK | INPCK | INLCR | IGNCR |
IUCLC | IXOFF);
ttyset.c_lflag &= ~(XCASE | ECHOE | ECHONL | NOFLSH);
ttyset.c_oflag &= ~(OLCUC | OCRNL | ONOCR | ONLRET | OFILL |
OFDEL | NLDLY | CRDLY | TABDLY | BSDLY | VTDLY | FFDLY);
ttyset.c_iflag |= (BRKINT | IGNPAR | ISTRIP | ICRNL | IXON);
ttyset.c_lflag |= (ISIG | ICANON | ECHO | ECHOK);
ttyset.c_oflag |= (OPOST | ONLCR);
ttyset.c_cc[VERASE] = CERASE;
ttyset.c_cc[VKILL] = CKILL;
ttyset.c_cc[VQUIT] = CQUIT;
ttyset.c_cc[VINTR] = CINTR;
ttyset.c_cc[VEOF] = CEOF;
ttyset.c_cc[VEOL] = CNUL;
ttyset.c_cc[VSWTCH] = CNUL;
}
if (strstr(option, "cooked")) /* cooked == -raw */
{
ttyset.c_cflag &= ~CSIZE;
ttyset.c_cflag |= PARENB;
ttyset.c_iflag |= (BRKINT | IGNPAR | ISTRIP | IXON);
ttyset.c_oflag |= OPOST;
ttyset.c_lflag |= (ICANON | ISIG);
ttyset.c_cc[VEOF] = CEOF;
ttyset.c_cc[VEOL] = CNUL;
}
if (strstr(option, "raw"))
{
ttyset.c_cflag &= ~(CSIZE | PARENB);
ttyset.c_iflag &= ~(-1);
ttyset.c_lflag &= ~(ISIG | ICANON | XCASE);
ttyset.c_oflag &= ~OPOST;
ttyset.c_cflag |= CS8;
ttyset.c_cc[VMIN] = 1;
ttyset.c_cc[VTIME] = 1;
}
if (strstr(option, "-echo"))
ttyset.c_lflag &= ~ECHO;
ioctl(0, TCSETAW, &ttyset);
#endif /* ESIX || MIPS_SYSV */
}
#ifdef ZCAT
/* Here another interesting stuff:
* it handle zcat of compressed files
* You can manage compressed files in this way:
*
* IN: char *name, the compressed file FILENAME
* OUT: a FILE *, from which read the expanded file
*
*/
FILE *
zcat(name)
char *name;
{
FILE *fp;
int in[2];
in[0] = -1;
in[1] = -1;
if (pipe(in))
{
say("Unable to start decompression process: %s", strerror(errno));
if(in[0] != -1)
{
new_close(in[0]);
new_close(in[1]);
}
return(NULL);
}
switch(fork())
{
case -1:
say("Unable to start decompression process: %s", strerror(errno));
return(NULL);
case 0:
(void) MY_SIGNAL(SIGINT, (sigfunc *) SIG_IGN, 0);
dup2(in[1], 1);
new_close(in[0]);
setuid(getuid());
setgid(getgid());
#ifdef ZARGS
execl(ZCAT, ZCAT, ZARGS, name, NULL);
#else
execl(ZCAT, ZCAT, name, NULL);
#endif /* ZARGS */
exit(0);
default:
new_close(in[1]);
if ((fp = fdopen(in[0], "r")) == (FILE *) 0)
{
say("Cannot open pipe file descriptor: %s", strerror(errno));
return(NULL);
}
break;
}
return(fp);
}
#endif /* ZCAT */
#ifdef NEED_INDEX
extern char *
index(s, c)
char *s;
char c;
{
# ifdef HAVE_STRSTR
return strstr(s, c);
# else
int len = strlen(s);
for (; len > 0 && c != *s; s++, len--)
;
return (len) ? s : (char *) NULL;
# endif /* HAVE_STRSTD */
}
#endif /* NEED_INDEX */
#ifdef NEED_RINDEX
extern char *
rindex(s, c)
char *s;
char c;
{
# ifdef HAVE_STRRSTR
return strrstr(s, c);
# else
int len = strlen(s);
char *t = s;
s += len;
for (; s >= t && c != *s; s--)
;
return (s < t) ? (char *) NULL : s;
# endif /* HAVE_STRRSTR */
}
#endif /* NEED_RINDEX */
#ifdef NON_BLOCKING_CONNECTS
int
set_non_blocking(fd)
int fd;
{
int res, nonb = 0;
#if defined(NBLOCK_POSIX)
nonb |= O_NONBLOCK;
#else
# if defined(NBLOCK_BSD)
nonb |= O_NDELAY;
# else
# if defined(NBLOCK_SYSV)
res = 1;
if (ioctl (fd, FIONBIO, &res) < 0)
return -1;
# else
# error no idea how to set an fd to non-blocking
# endif /* NBLOCK_SYSV */
# endif /* NBLOCK_BSD */
#endif /* NON_POSIX */
#if (defined(NBLOCK_POSIX) || defined(NBLOCK_BSD)) && !defined(NBLOCK_SYSV)
if ((res = fcntl(fd, F_GETFL, 0)) == -1)
return -1;
else if (fcntl(fd, F_SETFL, res | nonb) == -1)
return -1;
#endif /* (NBLOCK_POSIX || NBLOCK_BSD) && !NBLOCK_SYSV */
return 0;
}
int
set_blocking(fd)
int fd;
{
int res, nonb = 0;
#if defined(NBLOCK_POSIX)
nonb |= O_NONBLOCK;
#else
# if defined(NBLOCK_BSD)
nonb |= O_NDELAY;
# else
# if defined(NBLOCK_SYSV)
res = 0;
if (ioctl (fd, FIONBIO, &res) < 0)
return -1;
# else
# error no idea how to return an fd blocking
# endif /* NBLOCK_SYSV */
# endif /* NBLOCK_BSD */
#endif /* NBLOCK_POSIX */
#if (defined(NBLOCK_POSIX) || defined(NBLOCK_BSD)) && !defined(NBLOCK_SYSV)
if ((res = fcntl(fd, F_GETFL, 0)) == -1)
return -1;
else if (fcntl(fd, F_SETFL, res &~ nonb) == -1)
return -1;
#endif /* (NBLOCK_POSIX || NBLOCK_BSD) && !NBLOCK_SYSV */
return 0;
}
#endif /* NON_BLOCKING_CONNECTS */
|