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
|
/*************************************************
* Exim - an Internet mail transport agent *
*************************************************/
/* Copyright (c) University of Cambridge 1995 - 2002 */
/* See the file NOTICE for conditions of use and distribution. */
/* Miscellaneous string-handling functions */
#include "exim.h"
static char *hex_digits = "0123456789abcdef";
/*************************************************
* Test for IP address *
*************************************************/
/* This used just to be a regular expression, but with IPv6 things are a bit
more complicated. If the address contains a colon, it is assumed to be a v6
address (assuming HAVE_IPV6 is set). If a mask is permitted and one is present,
the '/' in the input gets changed to 0, and maskptr points to its offset.
Arguments:
s a string
maskptr NULL if no mask is permitted to follow
otherwise, points to an int where the '/' offset is put, or
zero if there is no mask given
Returns: 0 if the string is not a textual representation of an IP address
4 if it is an IPv4 address
6 if it is an IPv6 address
*/
int
string_is_ip_address(char *s, int *maskptr)
{
int i;
int yield = 4;
/* If an optional mask is permitted, check for it. If found, change the / to
a zero, and pass back the offset where this was done. */
if (maskptr != NULL)
{
char *ss = s + (int)strlen(s);
*maskptr = 0;
if (s != ss && isdigit((uschar)*(--ss)))
{
while (ss > s && isdigit((uschar)ss[-1])) ss--;
if (ss > s && *(--ss) == '/')
{
*ss = 0;
*maskptr = ss - s;
}
}
}
/* A colon anywhere in the string => IPv6 address */
#if HAVE_IPV6
if (strchr(s, ':') != NULL)
{
BOOL had_double_colon = FALSE;
BOOL v4end = FALSE;
int count = 0;
yield = 6;
/* An IPv6 address must start with hex digit or double colon. A single
colon is invalid. */
if (*s == ':' && *(++s) != ':') return 0;
/* Now read up to 8 components consisting of up to 4 hex digits each. There
may be one and only one appearance of double colon, which implies any number
of binary zero bits. The number of preceding components is held in count. */
for (count = 0; count < 8; count++)
{
/* If the end of the string is reached before reading 8 components, the
address is valid provided a double colon has been read. Otherwise is
is invalid. */
if (*s == 0) return had_double_colon? yield : 0;
/* If a component starts with an additional colon, we have hit a double
colon. This is permitted to appear once only, and counts as at least
one component. The final component may be of this form. */
if (*s == ':')
{
if (had_double_colon) return 0;
had_double_colon = TRUE;
s++;
continue;
}
/* If the remainder of the string contains a dot but no colons, we
can expect a trailing IPv4 address. This is valid if either there has
been no double-colon and this is the 7th component (with the IPv4 address
being the 7th & 8th components), OR if there has been a double-colon
and fewer than 6 components. */
if (strchr(s, ':') == NULL && strchr(s, '.') != NULL)
{
if ((!had_double_colon && count != 6) ||
(had_double_colon && count > 6)) return 0;
v4end = TRUE;
yield = 6;
break;
}
/* Check for at least one and not more than 4 hex digits for this
component. */
if (!isxdigit((uschar)*s++)) return 0;
if (isxdigit((uschar)*s) && isxdigit((uschar)*(++s)) &&
isxdigit((uschar)*(++s))) s++;
/* If the component is terminated by colon and there is more to
follow, skip over the colon. If there is no more to follow the address is
invalid. */
if (*s == ':' && *(++s) == 0) return 0;
}
/* If about to handle a trailing IPv4 address, drop through. Otherwise
all is well if we are at the end of the string. */
if (!v4end) return (*s == 0)? yield : 0;
}
#endif
/* Test for IPv4 address, which may be the tail-end of an IPv6 address. */
for (i = 0; i < 4; i++)
{
if (i != 0 && *s++ != '.') return 0;
if (!isdigit((uschar)*s++)) return 0;
if (isdigit((uschar)*s) && isdigit((uschar)*(++s))) s++;
}
return (*s == 0)? yield : 0;
}
/*************************************************
* Format message size *
*************************************************/
/* Convert a message size in bytes to printing form, rounding
according to the magnitude of the number. A value of zero causes
a string of spaces to be returned.
Arguments:
size the message size in bytes
buffer where to put the answer
Returns: pointer to the buffer
a string of exactly 5 characters is normally returned
*/
char *
string_format_size(int size, char *buffer)
{
if (size == 0) strcpy(buffer, " ");
else if (size < 1024) sprintf(buffer, "%5d", size);
else if (size < 10*1024)
sprintf(buffer, "%4.1fK", (double)size / 1024.0);
else if (size < 1024*1024)
sprintf(buffer, "%4dK", (size + 512)/1024);
else if (size < 10*1024*1024)
sprintf(buffer, "%4.1fM", (double)size / (1024.0 * 1024.0));
else
sprintf(buffer, "%4dM", (size + 512 * 1024)/(1024*1024));
return buffer;
}
/*************************************************
* Convert a number to base 62 format *
*************************************************/
/* Convert a long integer into an ASCII base 62 string.
Always return exactly 6 characters plus zero, in a static area.
Argument: a long integer
Returns: pointer to base 62 string
*/
char *
string_base62(unsigned long int value)
{
static char yield[7];
static char base62_chars[] =
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
char *p = yield + sizeof(yield) - 1;
*p = 0;
while (p > yield)
{
*(--p) = base62_chars[value % 62];
value /= 62;
}
return yield;
}
/*************************************************
* Interpret escape sequence *
*************************************************/
/* This function is called from several places where escape sequences are to be
interpreted in strings.
Arguments:
pp points a pointer to the initiating "\" in the string;
the pointer gets updated to point to the final character
Returns: the value of the character escape
*/
int
string_interpret_escape(char **pp)
{
int ch;
char *p = *pp;
ch = *(++p);
if (isdigit(ch) && ch != '8' && ch != '9')
{
ch -= '0';
if (isdigit((uschar)p[1]) && p[1] != '8' && p[1] != '9')
{
ch = ch * 8 + *(++p) - '0';
if (isdigit((uschar)p[1]) && p[1] != '8' && p[1] != '9')
ch = ch * 8 + *(++p) - '0';
}
}
else switch(ch)
{
case 'n': ch = '\n'; break;
case 'r': ch = '\r'; break;
case 't': ch = '\t'; break;
case 'x':
ch = 0;
if (isxdigit((uschar)p[1]))
{
ch = ch * 16 +
strchr(hex_digits, tolower((uschar)*(++p))) - hex_digits;
if (isxdigit((uschar)p[1])) ch = ch * 16 +
strchr(hex_digits, tolower((uschar)*(++p))) - hex_digits;
}
break;
}
*pp = p;
return ch;
}
/*************************************************
* Ensure string is printable *
*************************************************/
/* This function is called for critical strings. It checks for any
non-printing characters, and if any are found, it makes a new copy
of the string with suitable escape sequences.
Argument: input string
Returns: string with non-printers encoded as printing sequences
*/
char *
string_printing(char *s)
{
int nonprintcount = 0;
int length = 0;
uschar *t = (uschar *)s;
char *ss, *tt;
while (*t != 0)
{
int c = *t++;
if (!mac_isprint(c)) nonprintcount++;
length++;
}
if (nonprintcount == 0) return s;
/* Get a new block of store guaranteed big enough to hold the
expanded string. */
ss = store_get(length + nonprintcount * 4 + 1);
/* Copy everying, escaping non printers. The unsigned char thing is
for systems that have signed chars by default. */
t = (uschar *)s;
tt = ss;
while (*t != 0)
{
int c = *t;
if (mac_isprint(c)) *tt++ = *t++; else
{
*tt++ = '\\';
switch (*t)
{
case '\n': *tt++ = 'n'; break;
case '\r': *tt++ = 'r'; break;
case '\b': *tt++ = 'b'; break;
case '\t': *tt++ = 't'; break;
case '\v': *tt++ = 'v'; break;
case '\f': *tt++ = 'f'; break;
default: sprintf(tt, "%03o", *t); tt += 3; break;
}
t++;
}
}
*tt = 0;
return ss;
}
/*************************************************
* Copy and save string *
*************************************************/
/*
Argument: string to copy
Returns: copy of string in new store
*/
char *
string_copy(char *s)
{
char *ss = store_get((int)strlen(s) + 1);
strcpy(ss, s);
return ss;
}
/*************************************************
* Copy and save string in malloc'd store *
*************************************************/
/*
Argument: string to copy
Returns: copy of string in new store
*/
char *
string_copy_malloc(char *s)
{
char *ss = store_malloc((int)strlen(s) + 1);
strcpy(ss, s);
return ss;
}
/*************************************************
* Copy, lowercase and save string *
*************************************************/
/*
Argument: string to copy
Returns: copy of string in new store, with letters lowercased
*/
char *
string_copylc(char *s)
{
char *ss = store_get((int)strlen(s) + 1);
char *p = ss;
while (*s != 0) *p++ = tolower(*s++);
*p = 0;
return ss;
}
/*************************************************
* Copy and save string, given length *
*************************************************/
/* It is assumed the data contains no zeros. A zero is added
onto the end.
Arguments:
s string to copy
n number of characters
Returns: copy of string in new store
*/
char *
string_copyn(char *s, int n)
{
char *ss = store_get(n + 1);
strncpy(ss, s, n);
ss[n] = 0;
return ss;
}
/*************************************************
* Copy, lowercase, and save string, given length *
*************************************************/
/* It is assumed the data contains no zeros. A zero is added
onto the end.
Arguments:
s string to copy
n number of characters
Returns: copy of string in new store, with letters lowercased
*/
char *
string_copynlc(char *s, int n)
{
char *ss = store_get(n + 1);
char *p = ss;
while (n-- > 0) *p++ = tolower(*s++);
*p = 0;
return ss;
}
/*************************************************
* Copy space-terminated or quoted string *
*************************************************/
/* I should have invented this function at the start; because I didn't, there
are various places in the code that could use it but don't. With luck they may
get converted as time goes by.
This function copies from a string until its end, or until whitespace is
encountered, unless the string begins with a double quote, in which case the
terminating quote is sought, and escaping within the string is done. The length
of a de-quoted string can be no longer than the original, since escaping always
turns n characters into 1 character.
Argument: pointer to the pointer to the first character, which gets updated
Returns: the new string
*/
char *
string_dequote(char **sptr)
{
char *s = *sptr;
char *t, *yield;
/* First find the end of the string */
if (*s != '\"')
{
while (*s != 0 && !isspace((uschar)*s)) s++;
}
else
{
s++;
while (*s != 0 && *s != '\"')
{
if (*s == '\\') (void)string_interpret_escape(&s);
s++;
}
if (*s != 0) s++;
}
/* Get enough store to copy into */
t = yield = store_get(s - *sptr + 1);
s = *sptr;
/* Do the copy */
if (*s != '\"')
{
while (*s != 0 && !isspace((uschar)*s)) *t++ = *s++;
}
else
{
s++;
while (*s != 0 && *s != '\"')
{
if (*s == '\\') *t++ = string_interpret_escape(&s);
else *t++ = *s++;
}
if (*s != 0) s++;
}
/* Update the pointer and return the terminated copy */
*sptr = s;
*t = 0;
return yield;
}
/*************************************************
* Format a string and save it *
*************************************************/
/* The formatting is done by string_format, which checks the
length of everything.
Arguments:
format a printf() format
... arguments for format
Returns: pointer to fresh piece of store containing sprintf'ed string
*/
char *
string_sprintf(char *format, ...)
{
va_list ap;
char buffer[STRING_SPRINTF_BUFFER_SIZE];
va_start(ap, format);
if (!string_vformat(buffer, sizeof(buffer), format, ap))
log_write(0, LOG_MAIN|LOG_PANIC_DIE,
"string_sprintf expansion was longer than %d", sizeof(buffer));
va_end(ap);
return string_copy(buffer);
}
/*************************************************
* Case-independent strncmp() function *
*************************************************/
/*
Arguments:
s first string
t second string
n number of characters to compare
Returns: < 0, = 0, or > 0, according to the comparison
*/
int
strncmpic(char *s, char *t, int n)
{
while (n--)
{
int c = tolower(*s++) - tolower(*t++);
if (c) return c;
}
return 0;
}
/*************************************************
* Case-independent strcmp() function *
*************************************************/
/*
Arguments:
s first string
t second string
Returns: < 0, = 0, or > 0, according to the comparison
*/
int
strcmpic(char *s, char *t)
{
while (*s != 0)
{
int c = tolower(*s++) - tolower(*t++);
if (c) return c;
}
return *t;
}
/*************************************************
* Case-independent strstr() function *
*************************************************/
/* The third argument specifies whether whitespace is required
to follow the matched string.
Arguments:
s string to search
t substring to search for
space_follows if TRUE, match only if whitespace follows
Returns: pointer to substring in string, or NULL if not found
*/
char *
strstric(char *s, char *t, int space_follows)
{
char *p = t;
char *yield = NULL;
int cl = tolower(*p);
int cu = toupper(*p);
while (*s)
{
if (*s == cl || *s == cu)
{
if (yield == NULL) yield = s;
if (*(++p) == 0)
{
if (!space_follows || s[1] == ' ' || s[1] == '\n' ) return yield;
yield = NULL;
p = t;
}
cl = tolower(*p);
cu = toupper(*p);
s++;
}
else if (yield != NULL)
{
yield = NULL;
p = t;
cl = tolower(*p);
cu = toupper(*p);
}
else s++;
}
return NULL;
}
/*************************************************
* Get next string from separated list *
*************************************************/
/* Leading and trailing space is removed from each item. The separator in the
list is controlled by the int pointed to by the separator argument as follows:
If its value is > 0 it is used as the delimiter.
(If its value is actually > UCHAR_MAX there is only one item in the list.
This is used for some cases when called via match_isinlist.)
If its value is <= 0, the string is inspected for a leading <x, where
x is an ispunct() value. If found, it is used as the delimiter. If not
found: (a) if separator == 0, ':' is used
(b) if separator <0, then -separator is used
In all cases the value of the separator that is used is written back to
the int so that it is used on subsequent calls as we progress through
the list.
The separator can always be represented in the string by doubling.
Arguments:
listptr points to a pointer to the current start of the list; the
pointer gets updated to point after the end of the next item
separator a pointer to the separator character in an int (see above)
buffer where to put a copy of the next string in the list
buflen the size of buffer
Returns: pointer to buffer, containing the next substring,
or NULL if no more substrings
*/
char *
string_nextinlist(char **listptr, int *separator, char *buffer, int buflen)
{
register int p = 0;
register int sep = *separator;
register uschar *s = (uschar *)(*listptr);
if (s == NULL) return NULL;
while (isspace(*s)) s++;
if (*s == 0) return NULL;
if (sep <= 0)
{
if (*s == '<' && ispunct(s[1]))
{
sep = s[1];
s += 2;
while (isspace(*s)) s++;
if (*s == 0) return NULL;
}
else
{
sep = (sep == 0)? ':' : -sep;
}
*separator = sep;
}
for (; *s != 0; s++)
{
if (*s == sep && *(++s) != sep) break;
if (p < buflen - 1) buffer[p++] = *s;
}
while (p > 0 && isspace((uschar)buffer[p-1])) p--;
buffer[p] = 0;
*listptr = (char *)s;
return buffer;
}
/*************************************************
* Add chars to string *
*************************************************/
/* This function is used when building up strings of unknown length.
Room is always left for a terminating zero to be added.
Arguments:
string points to the start of the string
size the current size of the store (updated if changed)
ptr the offset at which to add characters, updated
s points to characters to add
len count of characters to add
Returns: pointer to the start of the string, changed if copied for expansion
*/
char *
string_cat(char *string, int *size, int *ptr, char *s, int len)
{
int p = *ptr;
if (p + len >= *size)
{
int oldsize = *size;
while (*size <= p + len) *size += 50;
/* We must *not* use store_release() here as is done in a
similar bit of code in accept.c because we cannot guarantee
that there are no other calls to the store_ functions between
calls to string_cat(). */
if (!store_extend(string, oldsize, *size))
{
char *newstring = store_get(*size);
memcpy(newstring, string, p);
string = newstring;
}
}
strncpy(string + p, s, len);
*ptr = p + len;
return string;
}
/*************************************************
* Format a string with length checks *
*************************************************/
/* This function is used to format a string with checking of the
length of the output for all conversions. It protects Exim from absent-
mindedness when calling functions like debug_printf and string_sprintf,
and elsewhere. There are two different entry points to what is actually
the same function, depending on whether the variable length list of
data arguments are given explicitly or as a va_list item.
Arguments:
buffer a buffer in which to put the formatted string
buflen the length of the buffer
format the format string
... or ap variable list of supplementary arguments
Returns: TRUE if the result fitted in the buffer
*/
BOOL
string_format(char *buffer, int buflen, char *format, ...)
{
BOOL yield;
va_list ap;
va_start(ap, format);
yield = string_vformat(buffer, buflen, format, ap);
va_end(ap);
return yield;
}
BOOL
string_vformat(char *buffer, int buflen, char *format, va_list ap)
{
BOOL yield = TRUE;
int width, precision;
char *p = buffer;
char *last = buffer + buflen - 1;
/* Scan the format and handle the insertions */
while (*format != 0)
{
int *nptr;
int slen;
char *item_start, *s;
char newformat[16];
/* Non-% characters just get copied verbatim */
if (*format != '%')
{
if (p >= last) { yield = FALSE; break; }
*p++ = *format++;
continue;
}
/* Deal with % characters. Pick off the width and precision, for checking
strings, skipping over the flag and modifier characters. */
item_start = format;
width = precision = -1;
if (strchr("-+ #0", *(++format)) != NULL) format++;
if (isdigit((uschar)*format))
{
width = *format++ - '0';
while (isdigit((uschar)*format)) width = width * 10 + *format++ - '0';
}
else if (*format == '*')
{
width = va_arg(ap, int);
format++;
}
if (*format == '.')
{
if (*(++format) == '*')
{
precision = va_arg(ap, int);
format++;
}
else
{
precision = 0;
while (isdigit((uschar)*format))
precision = precision*10 + *format++ - '0';
}
}
if (strchr("hlL", *format) != NULL) format++;
/* Handle each specific format type. */
switch (*format++)
{
case 'n':
nptr = va_arg(ap, int *);
*nptr = p - buffer;
break;
case 'd':
case 'o':
case 'u':
case 'x':
case 'X':
if (p >= last - 12) { yield = FALSE; goto END_FORMAT; }
strncpy(newformat, item_start, format - item_start);
newformat[format - item_start] = 0;
sprintf(p, newformat, va_arg(ap, int));
while (*p) p++;
break;
/* %f format is inherently insecure if the numbers that it may be
handed are unknown (e.g. 1e300). However, in Exim, the only use of %f
is for printing load averages, and these are actually stored as integers
(load average * 1000) so the size of the numbers is constrained. */
case 'f':
case 'e':
case 'E':
case 'g':
case 'G':
if (precision < 0) precision = 6;
if (p >= last - precision - 8) { yield = FALSE; goto END_FORMAT; }
strncpy(newformat, item_start, format - item_start);
newformat[format-item_start] = 0;
sprintf(p, newformat, va_arg(ap, double));
while (*p) p++;
break;
/* String types */
case '%':
if (p >= last) { yield = FALSE; goto END_FORMAT; }
*p++ = '%';
break;
case 'c':
if (p >= last) { yield = FALSE; goto END_FORMAT; }
*p++ = va_arg(ap, int);
break;
case 's':
case 'S': /* Forces *lower* case */
s = va_arg(ap, char *);
if (s == NULL) s = "NULL";
slen = (int)strlen(s);
/* If the width is specified, check that there is a precision
set; if not, set it to the width to prevent overruns of long
strings. */
if (width >= 0)
{
if (precision < 0) precision = width;
}
/* If a width is not specified and the precision is specified, set
the width to the precision, or the string length if shorted. */
else if (precision >= 0)
{
width = (precision < slen)? precision : slen;
}
/* If neither are specified, set them both to the string length. */
else width = precision = slen;
/* Check string space, and add the string to the buffer if ok. If
not OK, add part of the string (debugging uses this to show as
much as possible). */
if (p >= last - width)
{
yield = FALSE;
width = precision = last - p - 1;
}
sprintf(p, "%*.*s", width, precision, s);
if (format[-1] == 'S')
while (*p) { *p = tolower(*p); p++; }
else
while (*p) p++;
if (!yield) goto END_FORMAT;
break;
/* Some things are never used in Exim; also catches junk. */
default:
strncpy(newformat, item_start, format - item_start);
newformat[format-item_start] = 0;
log_write(0, LOG_PANIC_DIE, "string_format: unsupported type in \"%s\"",
newformat);
break;
}
}
/* Ensure string is complete; return TRUE if got to the end of the format */
END_FORMAT:
*p = 0;
return yield;
}
/*************************************************
* Generate an "open failed" message *
*************************************************/
/* This function creates a message after failure to open a file. It includes a
string supplied as data, adds the strerror() text, and if the failure was
"Permission denied", reads and includes the euid and egid.
Arguments:
eno the value of errno after the failure
format a text format string
... arguments for the format string
Returns: a message, in dynamic store
*/
char *
string_open_failed(int eno, char *format, ...)
{
va_list ap;
char buffer[1024];
strcpy(buffer, "failed to open ");
va_start(ap, format);
/* Use the checked formatting routine to ensure that the buffer
does not overflow. It should not, since this is called only for internally
specified messages. If it does, the message just gets truncated, and there
doesn't seem much we can do about that. */
(void)string_vformat(buffer+15, sizeof(buffer) - 15, format, ap);
return (eno == EACCES)?
string_sprintf("%s: %s (euid=%ld egid=%ld)", buffer, strerror(eno),
(long int)geteuid(), (long int)getegid()) :
string_sprintf("%s: %s", buffer, strerror(eno));
}
/*************************************************
* Generate log address list *
*************************************************/
/* This function generates a list consisting of an address and its parents, for
use in logging lines. It is passed the address and its ultimate parent, and a
flag indicating a directed local address. For saved onetime aliased addresses,
the onetime parent field is used.
Arguments:
addr bottom (ultimate) address
topaddr original parent
dlocal TRUE if a directed local address
all_parents if TRUE, include all parents
Returns: a string in dynamic store
*/
char *
string_log_address(address_item *addr, address_item *topaddr, BOOL dlocal,
BOOL all_parents)
{
int size = 64;
int ptr = 0;
BOOL add_topaddr = TRUE;
char *yield = store_get(size);
/* A local delivery that was directed starts with just the local part. */
if (dlocal)
yield = string_cat(yield, &size, &ptr, addr->local_part,
(int)strlen(addr->local_part));
/* A routed local delivery or any remote delivery starts with the full
address. If it is the same as the original
address, and no parents are to be shown, unset the flag for adding the
top address. */
else
{
yield = string_cat(yield, &size, &ptr, addr->local_part,
(int)strlen(addr->local_part));
yield = string_cat(yield, &size, &ptr, "@", 1);
yield = string_cat(yield, &size, &ptr, addr->domain,
(int)strlen(addr->domain) );
yield[ptr] = 0;
/* If the address we are going to print is the same as the top address,
don't add on the top address. First of all, do a caseless comparison; if
this succeeds, do a caseful comparison on the local parts. */
if (strcmpic(yield, topaddr->orig) == 0 &&
strncmp(yield, topaddr->orig, strchr(yield, '@') - yield) == 0 &&
addr->onetime_parent == NULL &&
(!all_parents || addr->parent == NULL || addr->parent == topaddr))
add_topaddr = FALSE;
}
/* If all parents are requested, or this is a local pipe/file/reply, and
there is at least one intermediate parent, show it in brackets, and continue
with all of them if all are wanted. */
if ((all_parents || testflag(addr, af_pfr)) &&
addr->parent != NULL &&
addr->parent != topaddr)
{
char *s = " (";
address_item *addr2;
for (addr2 = addr->parent; addr2 != topaddr; addr2 = addr2->parent)
{
yield = string_cat(yield, &size, &ptr, s, 2);
yield = string_cat(yield, &size, &ptr, addr2->orig,
(int)strlen(addr2->orig));
if (!all_parents) break;
s = ", ";
}
yield = string_cat(yield, &size, &ptr, ")", 1);
}
/* Add the top address if it is required */
if (add_topaddr)
{
yield = string_cat(yield, &size, &ptr, " <", 2);
if (addr->onetime_parent == NULL)
yield = string_cat(yield, &size, &ptr, topaddr->orig,
(int)strlen(topaddr->orig));
else
yield = string_cat(yield, &size, &ptr, addr->onetime_parent,
(int)strlen(addr->onetime_parent));
yield = string_cat(yield, &size, &ptr, ">", 1);
}
yield[ptr] = 0; /* string_cat() leaves space */
return yield;
}
/*************************************************
**************************************************
* Stand-alone test program *
**************************************************
*************************************************/
#ifdef STAND_ALONE
int main(void)
{
char buffer[256];
printf("Testing is_ip_address\n");
while (fgets(buffer, 256, stdin) != NULL)
{
int offset;
buffer[(int)strlen(buffer) - 1] = 0;
printf("%d\n", string_is_ip_address(buffer, NULL));
printf("%d %d %s\n", string_is_ip_address(buffer, &offset), offset, buffer);
}
/* This is a horrible lash-up, but it serves its purpose. */
printf("Testing string_format\n");
while (fgets(buffer, 256, stdin) != NULL)
{
void *args[3];
double dargs[3];
int dflag = 0;
int n = 0;
int count;
int countset = 0;
char format[256];
char outbuf[256];
char *s;
buffer[(int)strlen(buffer) - 1] = 0;
s = strchr(buffer, ',');
if (s == NULL) s = buffer + (int)strlen(buffer);
strncpy(format, buffer, s - buffer);
format[s-buffer] = 0;
if (*s == ',') s++;
while (*s != 0)
{
char *ss = s;
s = strchr(ss, ',');
if (s == NULL) s = ss + (int)strlen(ss);
if (isdigit((uschar)*ss))
{
strncpy(outbuf, ss, s-ss);
if (strchr(outbuf, '.') != NULL)
{
dflag = 1;
dargs[n++] = strtod(outbuf, NULL);
}
else
{
args[n++] = (void *)atoi(outbuf);
}
}
else if (strcmp(ss, "*") == 0)
{
args[n++] = (void *)(&count);
countset = 1;
}
else
{
char *sss = malloc(s - ss + 1);
strncpy(sss, ss, s-ss);
args[n++] = sss;
}
if (*s == ',') s++;
}
if (!dflag) printf("%s\n", string_format(outbuf, sizeof(outbuf), format,
args[0], args[1], args[2])? "True" : "False");
else printf("%s\n", string_format(outbuf, sizeof(outbuf), format,
dargs[0], dargs[1], dargs[2])? "True" : "False");
printf("%s\n", outbuf);
if (countset) printf("count=%d\n", count);
}
return 0;
}
#endif
/* End of string.c */
|