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
|
/*
* A basic toolset containing miscellaneous functions for string manipluation,
* encoding/decoding, and a bunch of other stuff.
*
* Copyright (c) 1987-2011 by the citadel.org team
*
* This program is open source 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 <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
#include <sys/types.h>
#include <ctype.h>
#include <string.h>
#include <sys/stat.h>
#include <errno.h>
#include <limits.h>
#include "b64/cencode.h"
#include "b64/cdecode.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 "libcitadel.h"
#define TRUE 1
#define FALSE 0
typedef unsigned char byte; /* Byte type */
/*
* copy a string into a buffer of a known size. abort if we exceed the limits
*
* dest the targetbuffer
* src the source string
* n the size od dest
*
* returns the number of characters copied if dest is big enough, -n if not.
*/
int safestrncpy(char *dest, const char *src, size_t n)
{
int i = 0;
if (dest == NULL || src == NULL) {
fprintf(stderr, "safestrncpy: NULL argument\n");
abort();
}
do {
dest[i] = src[i];
if (dest[i] == 0) return i;
++i;
} while (i<n);
dest[n - 1] = 0;
return -i;
}
/*
* num_tokens() - discover number of parameters/tokens in a string
*/
int num_tokens(const char *source, char tok)
{
int count = 1;
const char *ptr = source;
if (source == NULL) {
return (0);
}
while (*ptr != '\0') {
if (*ptr++ == tok) {
++count;
}
}
return (count);
}
//extern void cit_backtrace(void);
/*
* extract_token() - a string tokenizer
* returns -1 if not found, or length of token.
*/
long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen)
{
const char *s; //* source * /
int len = 0; //* running total length of extracted string * /
int current_token = 0; //* token currently being processed * /
s = source;
if (dest == NULL) {
return(-1);
}
//cit_backtrace();
//lprintf (CTDL_DEBUG, "test >: n: %d sep: %c source: %s \n willi \n", parmnum, separator, source);
dest[0] = 0;
if (s == NULL) {
return(-1);
}
maxlen--;
while (*s) {
if (*s == separator) {
++current_token;
}
if ( (current_token == parmnum) &&
(*s != separator) &&
(len < maxlen) ) {
dest[len] = *s;
++len;
}
else if ((current_token > parmnum) || (len >= maxlen)) {
break;
}
++s;
}
dest[len] = '\0';
if (current_token < parmnum) {
//lprintf (CTDL_DEBUG,"test <!: %s\n", dest);
return(-1);
}
//lprintf (CTDL_DEBUG,"test <: %d; %s\n", len, dest);
return(len);
}
//*/
/*
* extract_token() - a string tokenizer
* /
long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen)
{
char *d; // dest
const char *s; // source
int count = 0;
int len = 0;
//cit_backtrace();
//lprintf (CTDL_DEBUG, "test >: n: %d sep: %c source: %s \n willi \n", parmnum, separator, source);
strcpy(dest, "");
// Locate desired parameter
s = source;
while (count < parmnum) {
// End of string, bail!
if (!*s) {
s = NULL;
break;
}
if (*s == separator) {
count++;
}
s++;
}
if (!s) {
//lprintf (CTDL_DEBUG,"test <!: %s\n", dest);
return -1; // Parameter not found
}
for (d = dest; *s && *s != separator && ++len<maxlen; s++, d++) {
*d = *s;
}
*d = 0;
//lprintf (CTDL_DEBUG,"test <: %d; %s\n", len, dest);
return 0;
}
*/
/*
* remove_token() - a tokenizer that kills, maims, and destroys
*/
void remove_token(char *source, int parmnum, char separator)
{
char *d, *s; /* dest, source */
int count = 0;
/* Find desired parameter */
d = source;
while (count < parmnum) {
/* End of string, bail! */
if (!*d) {
d = NULL;
break;
}
if (*d == separator) {
count++;
}
d++;
}
if (!d) return; /* Parameter not found */
/* Find next parameter */
s = d;
while (*s && *s != separator) {
s++;
}
/* Hack and slash */
if (*s)
strcpy(d, ++s);
else if (d == source)
*d = 0;
else
*--d = 0;
/*
while (*s) {
*d++ = *s++;
}
*d = 0;
*/
}
/*
* extract_int() - extract an int parm w/o supplying a buffer
*/
int extract_int(const char *source, int parmnum)
{
char buf[32];
if (extract_token(buf, source, parmnum, '|', sizeof buf) > 0)
return(atoi(buf));
else
return 0;
}
/*
* extract_long() - extract an long parm w/o supplying a buffer
*/
long extract_long(const char *source, int parmnum)
{
char buf[32];
if (extract_token(buf, source, parmnum, '|', sizeof buf) > 0)
return(atol(buf));
else
return 0;
}
/*
* extract_unsigned_long() - extract an unsigned long parm
*/
unsigned long extract_unsigned_long(const char *source, int parmnum)
{
char buf[32];
if (extract_token(buf, source, parmnum, '|', sizeof buf) > 0)
return strtoul(buf, NULL, 10);
else
return 0;
}
size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks)
{
// linebreaks at 70 are ugly for base64, since 3 bytes in makes 4 bytes out
int breaklength = 68;
int readlength = 3 * breaklength / 4;
int destoffset;
int sourceoffset;
int sourceremaining;
base64_encodestate _state;
base64_init_encodestate(&_state);
if (linebreaks) {
sourceremaining = sourcelen;
destoffset = 0;
sourceoffset = 0;
while (sourceremaining > 0) {
destoffset += base64_encode_block(
&(source[sourceoffset]),
(readlength > sourceremaining ? sourceremaining : readlength),
&(dest[destoffset]),
&_state);
sourceoffset += readlength;
sourceremaining -= readlength;
dest[destoffset++] = '\r';
dest[destoffset++] = '\n';
}
destoffset += base64_encode_blockend(&(dest[destoffset]), &_state, 0);
}
else {
destoffset = base64_encode_block(source, sourcelen, dest, &_state);
destoffset += base64_encode_blockend(&(dest[destoffset]), &_state, 0);
}
dest[destoffset] = 0;
return destoffset;
}
/*
* Convert base64-encoded to binary. Returns the length of the decoded data.
* It will stop after reading 'length' bytes.
*/
int CtdlDecodeBase64(char *dest, const char *source, size_t length)
{
base64_decodestate _state;
int len;
base64_init_decodestate(&_state);
len = base64_decode_block(source, length, dest, &_state);
dest[len] = '\0';
return len;
}
/*
* if we send out non ascii subjects, we encode it this way.
*/
char *rfc2047encode(const char *line, long length)
{
const char *AlreadyEncoded;
char *result;
long end;
#define UTF8_HEADER "=?UTF-8?B?"
/* check if we're already done */
AlreadyEncoded = strstr(line, "=?");
if ((AlreadyEncoded != NULL) &&
((strstr(AlreadyEncoded, "?B?") != NULL)||
(strstr(AlreadyEncoded, "?Q?") != NULL)))
{
return strdup(line);
}
result = (char*) malloc(sizeof(UTF8_HEADER) + 4 + length * 2);
strncpy (result, UTF8_HEADER, strlen (UTF8_HEADER));
CtdlEncodeBase64(result + strlen(UTF8_HEADER), line, length, 0);
end = strlen (result);
result[end]='?';
result[end+1]='=';
result[end+2]='\0';
return result;
}
/*
* removes double slashes from pathnames
* allows / disallows trailing slashes
*/
void StripSlashes(char *Dir, int TrailingSlash)
{
char *a, *b;
a = b = Dir;
while (!IsEmptyStr(a)) {
if (*a == '/') {
while (*a == '/')
a++;
*b = '/';
b++;
}
else {
*b = *a;
b++; a++;
}
}
if ((TrailingSlash) && (*(b - 1) != '/')){
*b = '/';
b++;
}
*b = '\0';
}
/*
* Strip leading and trailing spaces from a string
*/
size_t striplt(char *buf) {
char *first_nonspace = NULL;
char *last_nonspace = NULL;
char *ptr;
size_t new_len = 0;
if ((buf == NULL) || (*buf == '\0')) {
return 0;
}
for (ptr=buf; *ptr!=0; ++ptr) {
if (!isspace(*ptr)) {
if (!first_nonspace) {
first_nonspace = ptr;
}
last_nonspace = ptr;
}
}
if ((!first_nonspace) || (!last_nonspace)) {
buf[0] = 0;
return 0;
}
new_len = last_nonspace - first_nonspace + 1;
memmove(buf, first_nonspace, new_len);
buf[new_len] = 0;
return new_len;
}
/**
* \brief check for the presence of a character within a string (returns count)
* \param st the string to examine
* \param ch the char to search
* \return the number of times ch appears in st
*/
int haschar(const char *st, int ch)
{
const char *ptr;
int b;
b = 0;
ptr = st;
while (!IsEmptyStr(ptr))
{
if (*ptr == ch)
++b;
ptr ++;
}
return (b);
}
/*
* Format a date/time stamp for output
* seconds is whether to print the seconds
*/
void fmt_date(char *buf, size_t n, time_t thetime, int seconds) {
struct tm tm;
char *teh_format = NULL;
*buf = '\0';
localtime_r(&thetime, &tm);
if (seconds) {
teh_format = "%F %R:%S";
}
else {
teh_format = "%F %R";
}
strftime(buf, n, teh_format, &tm);
}
/*
* Determine whether the specified message number is contained within the
* specified sequence set.
*/
int is_msg_in_sequence_set(const char *mset, long msgnum) {
int num_sets;
int s;
char setstr[128], lostr[128], histr[128];
long lo, hi;
num_sets = num_tokens(mset, ',');
for (s=0; s<num_sets; ++s) {
extract_token(setstr, mset, s, ',', sizeof setstr);
extract_token(lostr, setstr, 0, ':', sizeof lostr);
if (num_tokens(setstr, ':') >= 2) {
extract_token(histr, setstr, 1, ':', sizeof histr);
if (!strcmp(histr, "*")) {
snprintf(histr, sizeof histr, "%ld", LONG_MAX);
}
}
else {
strcpy(histr, lostr);
}
lo = atol(lostr);
hi = atol(histr);
if ((msgnum >= lo) && (msgnum <= hi)) return(1);
}
return(0);
}
/**
* \brief Utility function to "readline" from memory
* \param start Location in memory from which we are reading.
* \param buf the buffer to place the string in.
* \param maxlen Size of string buffer
* \return Pointer to the source memory right after we stopped reading.
*/
char *memreadline(char *start, char *buf, int maxlen)
{
char ch;
char *ptr;
int len = 0; /**< tally our own length to avoid strlen() delays */
ptr = start;
while (1) {
ch = *ptr++;
if ((len + 1 < (maxlen)) && (ch != 13) && (ch != 10)) {
buf[len++] = ch;
}
if ((ch == 10) || (ch == 0)) {
buf[len] = 0;
return ptr;
}
}
}
/**
* \brief Utility function to "readline" from memory
* \param start Location in memory from which we are reading.
* \param buf the buffer to place the string in.
* \param maxlen Size of string buffer
* \param retlen the length of the returned string
* \return Pointer to the source memory right after we stopped reading.
*/
char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen)
{
char ch;
char *ptr;
int len = 0; /**< tally our own length to avoid strlen() delays */
ptr = start;
while (1) {
ch = *ptr++;
if ((len + 1 < (maxlen)) && (ch != 13) && (ch != 10)) {
buf[len++] = ch;
}
if ((ch == 10) || (ch == 0)) {
buf[len] = 0;
*retlen = len;
return ptr;
}
}
}
/**
* \brief Utility function to "readline" from memory
* \param start Location in memory from which we are reading.
* \param buf the buffer to place the string in.
* \param maxlen Size of string buffer
* \return Pointer to the source memory right after we stopped reading.
*/
const char *cmemreadline(const char *start, char *buf, int maxlen)
{
char ch;
const char *ptr;
int len = 0; /**< tally our own length to avoid strlen() delays */
ptr = start;
while (1) {
ch = *ptr++;
if ((len + 1 < (maxlen)) && (ch != 13) && (ch != 10)) {
buf[len++] = ch;
}
if ((ch == 10) || (ch == 0)) {
buf[len] = 0;
return ptr;
}
}
}
/**
* \brief Utility function to "readline" from memory
* \param start Location in memory from which we are reading.
* \param buf the buffer to place the string in.
* \param maxlen Size of string buffer
* \param retlen the length of the returned string
* \return Pointer to the source memory right after we stopped reading.
*/
const char *cmemreadlinelen(const char *start, char *buf, int maxlen, int *retlen)
{
char ch;
const char *ptr;
int len = 0; /**< tally our own length to avoid strlen() delays */
ptr = start;
while (1) {
ch = *ptr++;
if ((len + 1 < (maxlen)) && (ch != 13) && (ch != 10)) {
buf[len++] = ch;
}
if ((ch == 10) || (ch == 0)) {
buf[len] = 0;
*retlen = len;
return ptr;
}
}
}
/*
* Strip a boundarized substring out of a string (for example, remove
* parentheses and anything inside them).
*/
int stripout(char *str, char leftboundary, char rightboundary) {
int a;
int lb = (-1);
int rb = (-1);
for (a = 0; a < strlen(str); ++a) {
if (str[a] == leftboundary) lb = a;
if (str[a] == rightboundary) rb = a;
}
if ( (lb > 0) && (rb > lb) ) {
strcpy(&str[lb - 1], &str[rb + 1]);
return 1;
}
else if ( (lb == 0) && (rb > lb) ) {
strcpy(str, &str[rb + 1]);
return 1;
}
return 0;
}
/*
* Reduce a string down to a boundarized substring (for example, remove
* parentheses and anything outside them).
*/
long stripallbut(char *str, char leftboundary, char rightboundary) {
long len = 0;
char *lb = NULL;
char *rb = NULL;
lb = strrchr(str, leftboundary);
if (lb != NULL) {
++lb;
rb = strchr(str, rightboundary);
if ((rb != NULL) && (rb >= lb)) {
*rb = 0;
fflush(stderr);
len = (long)rb - (long)lb;
memmove(str, lb, len);
str[len] = 0;
return(len);
}
}
return (long)strlen(str);
}
char *myfgets(char *s, int size, FILE *stream) {
char *ret = fgets(s, size, stream);
char *nl;
if (ret != NULL) {
nl = strchr(s, '\n');
if (nl != NULL)
*nl = 0;
}
return ret;
}
/**
* \brief Escape a string for feeding out as a URL.
* \param outbuf the output buffer
* \param oblen the size of outbuf to sanitize
* \param strbuf the input buffer
*/
void urlesc(char *outbuf, size_t oblen, char *strbuf)
{
int a, b, c, len, eclen, olen;
char *ec = " +#&;`'|*?-~<>^()[]{}/$\"\\";
*outbuf = '\0';
len = strlen(strbuf);
eclen = strlen(ec);
olen = 0;
for (a = 0; a < len; ++a) {
c = 0;
for (b = 0; b < eclen; ++b) {
if (strbuf[a] == ec[b])
c = 1;
}
if (c == 1) {
snprintf(&outbuf[olen], oblen - olen, "%%%02x", strbuf[a]);
olen += 3;
}
else
outbuf[olen ++] = strbuf[a];
}
outbuf[olen] = '\0';
}
/*
* In our world, we want strcpy() to be able to work with overlapping strings.
*/
#ifdef strcpy
#undef strcpy
#endif
char *strcpy(char *dest, const char *src) {
memmove(dest, src, (strlen(src) + 1) );
return(dest);
}
/*
* Generate a new, globally unique UID parameter for a calendar etc. object
*/
void generate_uuid(char *buf) {
static int seq = (-1);
static int no_kernel_uuid = 0;
/* If we are running on Linux then we have a kernelspace uuid generator available */
if (no_kernel_uuid == 0) {
FILE *fp;
fp = fopen("/proc/sys/kernel/random/uuid", "rb");
if (fp) {
int rv;
rv = fread(buf, 36, 1, fp);
fclose(fp);
if (rv == 1) {
buf[36] = 0;
return;
}
}
}
/* If the kernel didn't provide us with a uuid, we generate a pseudo-random one */
no_kernel_uuid = 1;
if (seq == (-1)) {
seq = (int)rand();
}
++seq;
seq = (seq % 0x0FFF) ;
sprintf(buf, "%08lx-%04lx-4%03x-a%03x-%012lx",
(long)time(NULL),
(long)getpid(),
seq,
seq,
(long)rand()
);
}
/*
* bmstrcasestr() -- case-insensitive substring search
*
* This uses the Boyer-Moore search algorithm and is therefore quite fast.
* The code is roughly based on the strstr() replacement from 'tin' written
* by Urs Jannsen.
*/
inline static char *_bmstrcasestr_len(char *text, size_t textlen, const char *pattern, size_t patlen) {
register unsigned char *p, *t;
register int i, j, *delta;
register size_t p1;
int deltaspace[256];
if (!text) return(NULL);
if (!pattern) return(NULL);
/* algorithm fails if pattern is empty */
if ((p1 = patlen) == 0)
return (text);
/* code below fails (whenever i is unsigned) if pattern too long */
if (p1 > textlen)
return (NULL);
/* set up deltas */
delta = deltaspace;
for (i = 0; i <= 255; i++)
delta[i] = p1;
for (p = (unsigned char *) pattern, i = p1; --i > 0;)
delta[tolower(*p++)] = i;
/*
* From now on, we want patlen - 1.
* In the loop below, p points to the end of the pattern,
* t points to the end of the text to be tested against the
* pattern, and i counts the amount of text remaining, not
* including the part to be tested.
*/
p1--;
p = (unsigned char *) pattern + p1;
t = (unsigned char *) text + p1;
i = textlen - patlen;
while(1) {
if (tolower(p[0]) == tolower(t[0])) {
if (strncasecmp ((const char *)(p - p1), (const char *)(t - p1), p1) == 0) {
return ((char *)t - p1);
}
}
j = delta[tolower(t[0])];
if (i < j)
break;
i -= j;
t += j;
}
return (NULL);
}
/*
* bmstrcasestr() -- case-insensitive substring search
*
* This uses the Boyer-Moore search algorithm and is therefore quite fast.
* The code is roughly based on the strstr() replacement from 'tin' written
* by Urs Jannsen.
*/
char *bmstrcasestr(char *text, const char *pattern) {
size_t textlen;
size_t patlen;
if (!text) return(NULL);
if (!pattern) return(NULL);
textlen = strlen (text);
patlen = strlen (pattern);
return _bmstrcasestr_len(text, textlen, pattern, patlen);
}
char *bmstrcasestr_len(char *text, size_t textlen, const char *pattern, size_t patlen) {
return _bmstrcasestr_len(text, textlen, pattern, patlen);
}
/*
* bmstrcasestr() -- case-insensitive substring search
*
* This uses the Boyer-Moore search algorithm and is therefore quite fast.
* The code is roughly based on the strstr() replacement from 'tin' written
* by Urs Jannsen.
*/
inline static const char *_cbmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen) {
register unsigned char *p, *t;
register int i, j, *delta;
register size_t p1;
int deltaspace[256];
if (!text) return(NULL);
if (!pattern) return(NULL);
/* algorithm fails if pattern is empty */
if ((p1 = patlen) == 0)
return (text);
/* code below fails (whenever i is unsigned) if pattern too long */
if (p1 > textlen)
return (NULL);
/* set up deltas */
delta = deltaspace;
for (i = 0; i <= 255; i++)
delta[i] = p1;
for (p = (unsigned char *) pattern, i = p1; --i > 0;)
delta[tolower(*p++)] = i;
/*
* From now on, we want patlen - 1.
* In the loop below, p points to the end of the pattern,
* t points to the end of the text to be tested against the
* pattern, and i counts the amount of text remaining, not
* including the part to be tested.
*/
p1--;
p = (unsigned char *) pattern + p1;
t = (unsigned char *) text + p1;
i = textlen - patlen;
while(1) {
if (tolower(p[0]) == tolower(t[0])) {
if (strncasecmp ((const char *)(p - p1), (const char *)(t - p1), p1) == 0) {
return ((char *)t - p1);
}
}
j = delta[tolower(t[0])];
if (i < j)
break;
i -= j;
t += j;
}
return (NULL);
}
/*
* bmstrcasestr() -- case-insensitive substring search
*
* This uses the Boyer-Moore search algorithm and is therefore quite fast.
* The code is roughly based on the strstr() replacement from 'tin' written
* by Urs Jannsen.
*/
const char *cbmstrcasestr(const char *text, const char *pattern) {
size_t textlen;
size_t patlen;
if (!text) return(NULL);
if (!pattern) return(NULL);
textlen = strlen (text);
patlen = strlen (pattern);
return _cbmstrcasestr_len(text, textlen, pattern, patlen);
}
const char *cbmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen) {
return _cbmstrcasestr_len(text, textlen, pattern, patlen);
}
/*
* Local replacement for controversial C library function that generates
* names for temporary files. Included to shut up compiler warnings.
*/
void CtdlMakeTempFileName(char *name, int len) {
int i = 0;
while (i++, i < 100) {
snprintf(name, len, "/tmp/ctdl.%04lx.%04x",
(long)getpid(),
rand()
);
if (!access(name, F_OK)) {
return;
}
}
}
/*
* Determine whether the specified message number is contained within the specified set.
* Returns nonzero if the specified message number is in the specified message set string.
*/
int is_msg_in_mset(const char *mset, long msgnum) {
int num_sets;
int s;
char setstr[SIZ], lostr[SIZ], histr[SIZ]; /* was 1024 */
long lo, hi;
/*
* Now set it for all specified messages.
*/
num_sets = num_tokens(mset, ',');
for (s=0; s<num_sets; ++s) {
extract_token(setstr, mset, s, ',', sizeof setstr);
extract_token(lostr, setstr, 0, ':', sizeof lostr);
if (num_tokens(setstr, ':') >= 2) {
extract_token(histr, setstr, 1, ':', sizeof histr);
if (!strcmp(histr, "*")) {
snprintf(histr, sizeof histr, "%ld", LONG_MAX);
}
}
else {
strcpy(histr, lostr);
}
lo = atol(lostr);
hi = atol(histr);
if ((msgnum >= lo) && (msgnum <= hi)) return(1);
}
return(0);
}
/*
* searches for a pattern within a search string
* returns position in string
*/
int pattern2(char *search, char *patn)
{
int a;
int len, plen;
len = strlen (search);
plen = strlen (patn);
for (a = 0; a < len; ++a) {
if (!strncasecmp(&search[a], patn, plen))
return (a);
}
return (-1);
}
/*
* Strip leading and trailing spaces from a string; with premeasured and adjusted length.
* buf - the string to modify
* len - length of the string.
*/
void stripltlen(char *buf, int *len)
{
int delta = 0;
if (*len == 0) return;
while ((*len > delta) && (isspace(buf[delta]))){
delta ++;
}
memmove (buf, &buf[delta], *len - delta + 1);
(*len) -=delta;
if (*len == 0) return;
while (isspace(buf[(*len) - 1])){
buf[--(*len)] = '\0';
}
}
/*
* Convert all whitespace characters in a supplied string to underscores
*/
void convert_spaces_to_underscores(char *str)
{
int len;
int i;
if (!str) return;
len = strlen(str);
for (i=0; i<len; ++i) {
if (isspace(str[i])) {
str[i] = '_';
}
}
}
/*
* check whether the provided string needs to be qp encoded or not
*/
int CheckEncode(const char *pch, long len, const char *pche)
{
if (pche == NULL)
pche = pch + len;
while (pch < pche) {
if (((unsigned char) *pch < 32) ||
((unsigned char) *pch > 126)) {
return 1;
}
pch++;
}
return 0;
}
|