1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2016 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* Miscellaneous string-handling functions. Some are not required for
9 utilities and tests, and are cut out by the COMPILE_UTILITY macro. */
15 #ifndef COMPILE_UTILITY
16 /*************************************************
17 * Test for IP address *
18 *************************************************/
20 /* This used just to be a regular expression, but with IPv6 things are a bit
21 more complicated. If the address contains a colon, it is assumed to be a v6
22 address (assuming HAVE_IPV6 is set). If a mask is permitted and one is present,
23 and maskptr is not NULL, its offset is placed there.
27 maskptr NULL if no mask is permitted to follow
28 otherwise, points to an int where the offset of '/' is placed
29 if there is no / followed by trailing digits, *maskptr is set 0
31 Returns: 0 if the string is not a textual representation of an IP address
32 4 if it is an IPv4 address
33 6 if it is an IPv6 address
37 string_is_ip_address(const uschar *s, int *maskptr)
42 /* If an optional mask is permitted, check for it. If found, pass back the
47 const uschar *ss = s + Ustrlen(s);
49 if (s != ss && isdigit(*(--ss)))
51 while (ss > s && isdigit(ss[-1])) ss--;
52 if (ss > s && *(--ss) == '/') *maskptr = ss - s;
56 /* A colon anywhere in the string => IPv6 address */
58 if (Ustrchr(s, ':') != NULL)
60 BOOL had_double_colon = FALSE;
66 /* An IPv6 address must start with hex digit or double colon. A single
69 if (*s == ':' && *(++s) != ':') return 0;
71 /* Now read up to 8 components consisting of up to 4 hex digits each. There
72 may be one and only one appearance of double colon, which implies any number
73 of binary zero bits. The number of preceding components is held in count. */
75 for (count = 0; count < 8; count++)
77 /* If the end of the string is reached before reading 8 components, the
78 address is valid provided a double colon has been read. This also applies
79 if we hit the / that introduces a mask or the % that introduces the
80 interface specifier (scope id) of a link-local address. */
82 if (*s == 0 || *s == '%' || *s == '/') return had_double_colon? yield : 0;
84 /* If a component starts with an additional colon, we have hit a double
85 colon. This is permitted to appear once only, and counts as at least
86 one component. The final component may be of this form. */
90 if (had_double_colon) return 0;
91 had_double_colon = TRUE;
96 /* If the remainder of the string contains a dot but no colons, we
97 can expect a trailing IPv4 address. This is valid if either there has
98 been no double-colon and this is the 7th component (with the IPv4 address
99 being the 7th & 8th components), OR if there has been a double-colon
100 and fewer than 6 components. */
102 if (Ustrchr(s, ':') == NULL && Ustrchr(s, '.') != NULL)
104 if ((!had_double_colon && count != 6) ||
105 (had_double_colon && count > 6)) return 0;
111 /* Check for at least one and not more than 4 hex digits for this
114 if (!isxdigit(*s++)) return 0;
115 if (isxdigit(*s) && isxdigit(*(++s)) && isxdigit(*(++s))) s++;
117 /* If the component is terminated by colon and there is more to
118 follow, skip over the colon. If there is no more to follow the address is
121 if (*s == ':' && *(++s) == 0) return 0;
124 /* If about to handle a trailing IPv4 address, drop through. Otherwise
125 all is well if we are at the end of the string or at the mask or at a percent
126 sign, which introduces the interface specifier (scope id) of a link local
130 return (*s == 0 || *s == '%' ||
131 (*s == '/' && maskptr != NULL && *maskptr != 0))? yield : 0;
134 /* Test for IPv4 address, which may be the tail-end of an IPv6 address. */
136 for (i = 0; i < 4; i++)
138 if (i != 0 && *s++ != '.') return 0;
139 if (!isdigit(*s++)) return 0;
140 if (isdigit(*s) && isdigit(*(++s))) s++;
143 return (*s == 0 || (*s == '/' && maskptr != NULL && *maskptr != 0))?
146 #endif /* COMPILE_UTILITY */
149 /*************************************************
150 * Format message size *
151 *************************************************/
153 /* Convert a message size in bytes to printing form, rounding
154 according to the magnitude of the number. A value of zero causes
155 a string of spaces to be returned.
158 size the message size in bytes
159 buffer where to put the answer
161 Returns: pointer to the buffer
162 a string of exactly 5 characters is normally returned
166 string_format_size(int size, uschar *buffer)
168 if (size == 0) Ustrcpy(buffer, " ");
169 else if (size < 1024) sprintf(CS buffer, "%5d", size);
170 else if (size < 10*1024)
171 sprintf(CS buffer, "%4.1fK", (double)size / 1024.0);
172 else if (size < 1024*1024)
173 sprintf(CS buffer, "%4dK", (size + 512)/1024);
174 else if (size < 10*1024*1024)
175 sprintf(CS buffer, "%4.1fM", (double)size / (1024.0 * 1024.0));
177 sprintf(CS buffer, "%4dM", (size + 512 * 1024)/(1024*1024));
183 #ifndef COMPILE_UTILITY
184 /*************************************************
185 * Convert a number to base 62 format *
186 *************************************************/
188 /* Convert a long integer into an ASCII base 62 string. For Cygwin the value of
189 BASE_62 is actually 36. Always return exactly 6 characters plus zero, in a
192 Argument: a long integer
193 Returns: pointer to base 62 string
197 string_base62(unsigned long int value)
199 static uschar yield[7];
200 uschar *p = yield + sizeof(yield) - 1;
204 *(--p) = base62_chars[value % BASE_62];
209 #endif /* COMPILE_UTILITY */
213 /*************************************************
214 * Interpret escape sequence *
215 *************************************************/
217 /* This function is called from several places where escape sequences are to be
218 interpreted in strings.
221 pp points a pointer to the initiating "\" in the string;
222 the pointer gets updated to point to the final character
223 Returns: the value of the character escape
227 string_interpret_escape(const uschar **pp)
229 #ifdef COMPILE_UTILITY
230 const uschar *hex_digits= CUS"0123456789abcdef";
233 const uschar *p = *pp;
235 if (isdigit(ch) && ch != '8' && ch != '9')
238 if (isdigit(p[1]) && p[1] != '8' && p[1] != '9')
240 ch = ch * 8 + *(++p) - '0';
241 if (isdigit(p[1]) && p[1] != '8' && p[1] != '9')
242 ch = ch * 8 + *(++p) - '0';
247 case 'b': ch = '\b'; break;
248 case 'f': ch = '\f'; break;
249 case 'n': ch = '\n'; break;
250 case 'r': ch = '\r'; break;
251 case 't': ch = '\t'; break;
252 case 'v': ch = '\v'; break;
258 Ustrchr(hex_digits, tolower(*(++p))) - hex_digits;
259 if (isxdigit(p[1])) ch = ch * 16 +
260 Ustrchr(hex_digits, tolower(*(++p))) - hex_digits;
270 #ifndef COMPILE_UTILITY
271 /*************************************************
272 * Ensure string is printable *
273 *************************************************/
275 /* This function is called for critical strings. It checks for any
276 non-printing characters, and if any are found, it makes a new copy
277 of the string with suitable escape sequences. It is most often called by the
278 macro string_printing(), which sets allow_tab TRUE.
282 allow_tab TRUE to allow tab as a printing character
284 Returns: string with non-printers encoded as printing sequences
288 string_printing2(const uschar *s, BOOL allow_tab)
290 int nonprintcount = 0;
298 if (!mac_isprint(c) || (!allow_tab && c == '\t')) nonprintcount++;
302 if (nonprintcount == 0) return s;
304 /* Get a new block of store guaranteed big enough to hold the
307 ss = store_get(length + nonprintcount * 3 + 1);
309 /* Copy everything, escaping non printers. */
317 if (mac_isprint(c) && (allow_tab || c != '\t')) *tt++ = *t++; else
322 case '\n': *tt++ = 'n'; break;
323 case '\r': *tt++ = 'r'; break;
324 case '\b': *tt++ = 'b'; break;
325 case '\v': *tt++ = 'v'; break;
326 case '\f': *tt++ = 'f'; break;
327 case '\t': *tt++ = 't'; break;
328 default: sprintf(CS tt, "%03o", *t); tt += 3; break;
336 #endif /* COMPILE_UTILITY */
338 /*************************************************
339 * Undo printing escapes in string *
340 *************************************************/
342 /* This function is the reverse of string_printing2. It searches for
343 backslash characters and if any are found, it makes a new copy of the
344 string with escape sequences parsed. Otherwise it returns the original
350 Returns: string with printing escapes parsed back
354 string_unprinting(uschar *s)
356 uschar *p, *q, *r, *ss;
359 p = Ustrchr(s, '\\');
362 len = Ustrlen(s) + 1;
377 *q++ = string_interpret_escape((const uschar **)&p);
382 r = Ustrchr(p, '\\');
408 /*************************************************
409 * Copy and save string *
410 *************************************************/
412 /* This function assumes that memcpy() is faster than strcpy().
414 Argument: string to copy
415 Returns: copy of string in new store
419 string_copy(const uschar *s)
421 int len = Ustrlen(s) + 1;
422 uschar *ss = store_get(len);
429 /*************************************************
430 * Copy and save string in malloc'd store *
431 *************************************************/
433 /* This function assumes that memcpy() is faster than strcpy().
435 Argument: string to copy
436 Returns: copy of string in new store
440 string_copy_malloc(const uschar *s)
442 int len = Ustrlen(s) + 1;
443 uschar *ss = store_malloc(len);
450 /*************************************************
451 * Copy, lowercase and save string *
452 *************************************************/
455 Argument: string to copy
456 Returns: copy of string in new store, with letters lowercased
460 string_copylc(const uschar *s)
462 uschar *ss = store_get(Ustrlen(s) + 1);
464 while (*s != 0) *p++ = tolower(*s++);
471 /*************************************************
472 * Copy and save string, given length *
473 *************************************************/
475 /* It is assumed the data contains no zeros. A zero is added
480 n number of characters
482 Returns: copy of string in new store
486 string_copyn(const uschar *s, int n)
488 uschar *ss = store_get(n + 1);
495 /*************************************************
496 * Copy, lowercase, and save string, given length *
497 *************************************************/
499 /* It is assumed the data contains no zeros. A zero is added
504 n number of characters
506 Returns: copy of string in new store, with letters lowercased
510 string_copynlc(uschar *s, int n)
512 uschar *ss = store_get(n + 1);
514 while (n-- > 0) *p++ = tolower(*s++);
521 /*************************************************
522 * Copy string if long, inserting newlines *
523 *************************************************/
525 /* If the given string is longer than 75 characters, it is copied, and within
526 the copy, certain space characters are converted into newlines.
528 Argument: pointer to the string
529 Returns: pointer to the possibly altered string
533 string_split_message(uschar *msg)
537 if (msg == NULL || Ustrlen(msg) <= 75) return msg;
538 s = ss = msg = string_copy(msg);
543 while (i < 75 && *ss != 0 && *ss != '\n') ss++, i++;
555 if (t[-1] == ':') { tt = t; break; }
556 if (tt == NULL) tt = t;
560 if (tt == NULL) /* Can't split behind - try ahead */
565 if (*t == ' ' || *t == '\n')
571 if (tt == NULL) break; /* Can't find anywhere to split */
582 /*************************************************
583 * Copy returned DNS domain name, de-escaping *
584 *************************************************/
586 /* If a domain name contains top-bit characters, some resolvers return
587 the fully qualified name with those characters turned into escapes. The
588 convention is a backslash followed by _decimal_ digits. We convert these
589 back into the original binary values. This will be relevant when
590 allow_utf8_domains is set true and UTF-8 characters are used in domain
591 names. Backslash can also be used to escape other characters, though we
592 shouldn't come across them in domain names.
594 Argument: the domain name string
595 Returns: copy of string in new store, de-escaped
599 string_copy_dnsdomain(uschar *s)
602 uschar *ss = yield = store_get(Ustrlen(s) + 1);
610 else if (isdigit(s[1]))
612 *ss++ = (s[1] - '0')*100 + (s[2] - '0')*10 + s[3] - '0';
615 else if (*(++s) != 0)
626 #ifndef COMPILE_UTILITY
627 /*************************************************
628 * Copy space-terminated or quoted string *
629 *************************************************/
631 /* This function copies from a string until its end, or until whitespace is
632 encountered, unless the string begins with a double quote, in which case the
633 terminating quote is sought, and escaping within the string is done. The length
634 of a de-quoted string can be no longer than the original, since escaping always
635 turns n characters into 1 character.
637 Argument: pointer to the pointer to the first character, which gets updated
638 Returns: the new string
642 string_dequote(const uschar **sptr)
644 const uschar *s = *sptr;
647 /* First find the end of the string */
651 while (*s != 0 && !isspace(*s)) s++;
656 while (*s != 0 && *s != '\"')
658 if (*s == '\\') (void)string_interpret_escape(&s);
664 /* Get enough store to copy into */
666 t = yield = store_get(s - *sptr + 1);
673 while (*s != 0 && !isspace(*s)) *t++ = *s++;
678 while (*s != 0 && *s != '\"')
680 if (*s == '\\') *t++ = string_interpret_escape(&s);
687 /* Update the pointer and return the terminated copy */
693 #endif /* COMPILE_UTILITY */
697 /*************************************************
698 * Format a string and save it *
699 *************************************************/
701 /* The formatting is done by string_format, which checks the length of
705 format a printf() format - deliberately char * rather than uschar *
706 because it will most usually be a literal string
707 ... arguments for format
709 Returns: pointer to fresh piece of store containing sprintf'ed string
713 string_sprintf(const char *format, ...)
716 uschar buffer[STRING_SPRINTF_BUFFER_SIZE];
717 va_start(ap, format);
718 if (!string_vformat(buffer, sizeof(buffer), format, ap))
719 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
720 "string_sprintf expansion was longer than " SIZE_T_FMT
721 "; format string was (%s)\nexpansion started '%.32s'",
722 sizeof(buffer), format, buffer);
724 return string_copy(buffer);
729 /*************************************************
730 * Case-independent strncmp() function *
731 *************************************************/
737 n number of characters to compare
739 Returns: < 0, = 0, or > 0, according to the comparison
743 strncmpic(const uschar *s, const uschar *t, int n)
747 int c = tolower(*s++) - tolower(*t++);
754 /*************************************************
755 * Case-independent strcmp() function *
756 *************************************************/
763 Returns: < 0, = 0, or > 0, according to the comparison
767 strcmpic(const uschar *s, const uschar *t)
771 int c = tolower(*s++) - tolower(*t++);
772 if (c != 0) return c;
778 /*************************************************
779 * Case-independent strstr() function *
780 *************************************************/
782 /* The third argument specifies whether whitespace is required
783 to follow the matched string.
787 t substring to search for
788 space_follows if TRUE, match only if whitespace follows
790 Returns: pointer to substring in string, or NULL if not found
794 strstric(uschar *s, uschar *t, BOOL space_follows)
797 uschar *yield = NULL;
798 int cl = tolower(*p);
799 int cu = toupper(*p);
803 if (*s == cl || *s == cu)
805 if (yield == NULL) yield = s;
808 if (!space_follows || s[1] == ' ' || s[1] == '\n' ) return yield;
816 else if (yield != NULL)
830 #ifndef COMPILE_UTILITY
831 /*************************************************
832 * Get next string from separated list *
833 *************************************************/
835 /* Leading and trailing space is removed from each item. The separator in the
836 list is controlled by the int pointed to by the separator argument as follows:
838 If the value is > 0 it is used as the separator. This is typically used for
839 sublists such as slash-separated options. The value is always a printing
842 (If the value is actually > UCHAR_MAX there is only one item in the list.
843 This is used for some cases when called via functions that sometimes
844 plough through lists, and sometimes are given single items.)
846 If the value is <= 0, the string is inspected for a leading <x, where x is an
847 ispunct() or an iscntrl() character. If found, x is used as the separator. If
850 (a) if separator == 0, ':' is used
851 (b) if separator <0, -separator is used
853 In all cases the value of the separator that is used is written back to the
854 int so that it is used on subsequent calls as we progress through the list.
856 A literal ispunct() separator can be represented in an item by doubling, but
857 there is no way to include an iscntrl() separator as part of the data.
860 listptr points to a pointer to the current start of the list; the
861 pointer gets updated to point after the end of the next item
862 separator a pointer to the separator character in an int (see above)
863 buffer where to put a copy of the next string in the list; or
864 NULL if the next string is returned in new memory
865 buflen when buffer is not NULL, the size of buffer; otherwise ignored
867 Returns: pointer to buffer, containing the next substring,
868 or NULL if no more substrings
872 string_nextinlist(const uschar **listptr, int *separator, uschar *buffer, int buflen)
874 int sep = *separator;
875 const uschar *s = *listptr;
878 if (s == NULL) return NULL;
880 /* This allows for a fixed specified separator to be an iscntrl() character,
881 but at the time of implementation, this is never the case. However, it's best
882 to be conservative. */
884 while (isspace(*s) && *s != sep) s++;
886 /* A change of separator is permitted, so look for a leading '<' followed by an
887 allowed character. */
891 if (*s == '<' && (ispunct(s[1]) || iscntrl(s[1])))
895 while (isspace(*s) && *s != sep) s++;
899 sep = (sep == 0)? ':' : -sep;
904 /* An empty string has no list elements */
906 if (*s == 0) return NULL;
908 /* Note whether whether or not the separator is an iscntrl() character. */
910 sep_is_special = iscntrl(sep);
912 /* Handle the case when a buffer is provided. */
919 if (*s == sep && (*(++s) != sep || sep_is_special)) break;
920 if (p < buflen - 1) buffer[p++] = *s;
922 while (p > 0 && isspace(buffer[p-1])) p--;
926 /* Handle the case when a buffer is not provided. */
934 /* We know that *s != 0 at this point. However, it might be pointing to a
935 separator, which could indicate an empty string, or (if an ispunct()
936 character) could be doubled to indicate a separator character as data at the
937 start of a string. Avoid getting working memory for an empty item. */
942 if (*s != sep || sep_is_special)
945 return string_copy(US"");
949 /* Not an empty string; the first character is guaranteed to be a data
954 for (ss = s + 1; *ss != 0 && *ss != sep; ss++);
955 buffer = string_catn(buffer, &size, &ptr, s, ss-s);
957 if (*s == 0 || *(++s) != sep || sep_is_special) break;
959 while (ptr > 0 && isspace(buffer[ptr-1])) ptr--;
963 /* Update the current pointer and return the new string */
968 #endif /* COMPILE_UTILITY */
971 #ifndef COMPILE_UTILITY
972 /************************************************
973 * Add element to separated list *
974 ************************************************/
975 /* This function is used to build a list, returning
976 an allocated null-terminated growable string. The
977 given element has any embedded separator characters
981 list points to the start of the list that is being built, or NULL
982 if this is a new list that has no contents yet
983 sep list separator character
984 ele new element to be appended to the list
986 Returns: pointer to the start of the list, changed if copied for expansion.
990 string_append_listele(uschar * list, uschar sep, const uschar * ele)
998 new = string_cat (new, &sz, &off, list);
999 new = string_catn(new, &sz, &off, &sep, 1);
1002 while((sp = Ustrchr(ele, sep)))
1004 new = string_catn(new, &sz, &off, ele, sp-ele+1);
1005 new = string_catn(new, &sz, &off, &sep, 1);
1008 new = string_cat(new, &sz, &off, ele);
1014 static const uschar *
1015 Ustrnchr(const uschar * s, int c, unsigned * len)
1017 unsigned siz = *len;
1020 if (!*s) return NULL;
1033 string_append_listele_n(uschar * list, uschar sep, const uschar * ele,
1036 uschar * new = NULL;
1037 int sz = 0, off = 0;
1042 new = string_cat (new, &sz, &off, list);
1043 new = string_catn(new, &sz, &off, &sep, 1);
1046 while((sp = Ustrnchr(ele, sep, &len)))
1048 new = string_catn(new, &sz, &off, ele, sp-ele+1);
1049 new = string_catn(new, &sz, &off, &sep, 1);
1053 new = string_catn(new, &sz, &off, ele, len);
1057 #endif /* COMPILE_UTILITY */
1061 #ifndef COMPILE_UTILITY
1062 /*************************************************
1063 * Add chars to string *
1064 *************************************************/
1066 /* This function is used when building up strings of unknown length. Room is
1067 always left for a terminating zero to be added to the string that is being
1068 built. This function does not require the string that is being added to be NUL
1069 terminated, because the number of characters to add is given explicitly. It is
1070 sometimes called to extract parts of other strings.
1073 string points to the start of the string that is being built, or NULL
1074 if this is a new string that has no contents yet
1075 size points to a variable that holds the current capacity of the memory
1076 block (updated if changed)
1077 ptr points to a variable that holds the offset at which to add
1078 characters, updated to the new offset
1079 s points to characters to add
1080 count count of characters to add; must not exceed the length of s, if s
1081 is a C string. If -1 given, strlen(s) is used.
1083 If string is given as NULL, *size and *ptr should both be zero.
1085 Returns: pointer to the start of the string, changed if copied for expansion.
1086 Note that a NUL is not added, though space is left for one. This is
1087 because string_cat() is often called multiple times to build up a
1088 string - there's no point adding the NUL till the end.
1091 /* coverity[+alloc] */
1094 string_catn(uschar *string, int *size, int *ptr, const uschar *s, int count)
1098 if (p + count >= *size)
1100 int oldsize = *size;
1102 /* Mostly, string_cat() is used to build small strings of a few hundred
1103 characters at most. There are times, however, when the strings are very much
1104 longer (for example, a lookup that returns a vast number of alias addresses).
1105 To try to keep things reasonable, we use increments whose size depends on the
1106 existing length of the string. */
1108 int inc = (oldsize < 4096)? 100 : 1024;
1109 while (*size <= p + count) *size += inc;
1113 if (string == NULL) string = store_get(*size);
1115 /* Try to extend an existing allocation. If the result of calling
1116 store_extend() is false, either there isn't room in the current memory block,
1117 or this string is not the top item on the dynamic store stack. We then have
1118 to get a new chunk of store and copy the old string. When building large
1119 strings, it is helpful to call store_release() on the old string, to release
1120 memory blocks that have become empty. (The block will be freed if the string
1121 is at its start.) However, we can do this only if we know that the old string
1122 was the last item on the dynamic memory stack. This is the case if it matches
1125 else if (!store_extend(string, oldsize, *size))
1127 BOOL release_ok = store_last_get[store_pool] == string;
1128 uschar *newstring = store_get(*size);
1129 memcpy(newstring, string, p);
1130 if (release_ok) store_release(string);
1135 /* Because we always specify the exact number of characters to copy, we can
1136 use memcpy(), which is likely to be more efficient than strncopy() because the
1137 latter has to check for zero bytes.
1139 The Coverity annotation deals with the lack of correlated variable tracking;
1140 common use is a null string and zero size and pointer, on first use for a
1141 string being built. The "if" above then allocates, but Coverity assume that
1142 the "if" might not happen and whines for a null-deref done by the memcpy(). */
1144 /* coverity[deref_parm_field_in_call] : FALSE */
1145 memcpy(string + p, s, count);
1152 string_cat(uschar *string, int *size, int *ptr, const uschar *s)
1154 return string_catn(string, size, ptr, s, Ustrlen(s));
1156 #endif /* COMPILE_UTILITY */
1160 #ifndef COMPILE_UTILITY
1161 /*************************************************
1162 * Append strings to another string *
1163 *************************************************/
1165 /* This function can be used to build a string from many other strings.
1166 It calls string_cat() to do the dirty work.
1169 string points to the start of the string that is being built, or NULL
1170 if this is a new string that has no contents yet
1171 size points to a variable that holds the current capacity of the memory
1172 block (updated if changed)
1173 ptr points to a variable that holds the offset at which to add
1174 characters, updated to the new offset
1175 count the number of strings to append
1176 ... "count" uschar* arguments, which must be valid zero-terminated
1179 Returns: pointer to the start of the string, changed if copied for expansion.
1180 The string is not zero-terminated - see string_cat() above.
1184 string_append(uschar *string, int *size, int *ptr, int count, ...)
1189 va_start(ap, count);
1190 for (i = 0; i < count; i++)
1192 uschar *t = va_arg(ap, uschar *);
1193 string = string_cat(string, size, ptr, t);
1203 /*************************************************
1204 * Format a string with length checks *
1205 *************************************************/
1207 /* This function is used to format a string with checking of the length of the
1208 output for all conversions. It protects Exim from absent-mindedness when
1209 calling functions like debug_printf and string_sprintf, and elsewhere. There
1210 are two different entry points to what is actually the same function, depending
1211 on whether the variable length list of data arguments are given explicitly or
1214 The formats are the usual printf() ones, with some omissions (never used) and
1215 three additions for strings: %S forces lower case, %T forces upper case, and
1216 %#s or %#S prints nothing for a NULL string. Without thr # "NULL" is printed
1217 (useful in debugging). There is also the addition of %D and %M, which insert
1218 the date in the form used for datestamped log files.
1221 buffer a buffer in which to put the formatted string
1222 buflen the length of the buffer
1223 format the format string - deliberately char * and not uschar *
1224 ... or ap variable list of supplementary arguments
1226 Returns: TRUE if the result fitted in the buffer
1230 string_format(uschar *buffer, int buflen, const char *format, ...)
1234 va_start(ap, format);
1235 yield = string_vformat(buffer, buflen, format, ap);
1242 string_vformat(uschar *buffer, int buflen, const char *format, va_list ap)
1244 /* We assume numbered ascending order, C does not guarantee that */
1245 enum { L_NORMAL=1, L_SHORT=2, L_LONG=3, L_LONGLONG=4, L_LONGDOUBLE=5, L_SIZE=6 };
1248 int width, precision;
1249 const char *fp = format; /* Deliberately not unsigned */
1251 uschar *last = buffer + buflen - 1;
1253 string_datestamp_offset = -1; /* Datestamp not inserted */
1254 string_datestamp_length = 0; /* Datestamp not inserted */
1255 string_datestamp_type = 0; /* Datestamp not inserted */
1257 /* Scan the format and handle the insertions */
1261 int length = L_NORMAL;
1264 const char *null = "NULL"; /* ) These variables */
1265 const char *item_start, *s; /* ) are deliberately */
1266 char newformat[16]; /* ) not unsigned */
1268 /* Non-% characters just get copied verbatim */
1272 if (p >= last) { yield = FALSE; break; }
1273 *p++ = (uschar)*fp++;
1277 /* Deal with % characters. Pick off the width and precision, for checking
1278 strings, skipping over the flag and modifier characters. */
1281 width = precision = -1;
1283 if (strchr("-+ #0", *(++fp)) != NULL)
1285 if (*fp == '#') null = "";
1289 if (isdigit((uschar)*fp))
1291 width = *fp++ - '0';
1292 while (isdigit((uschar)*fp)) width = width * 10 + *fp++ - '0';
1294 else if (*fp == '*')
1296 width = va_arg(ap, int);
1304 precision = va_arg(ap, int);
1310 while (isdigit((uschar)*fp))
1311 precision = precision*10 + *fp++ - '0';
1315 /* Skip over 'h', 'L', 'l', 'll' and 'z', remembering the item length */
1318 { fp++; length = L_SHORT; }
1319 else if (*fp == 'L')
1320 { fp++; length = L_LONGDOUBLE; }
1321 else if (*fp == 'l')
1326 length = L_LONGLONG;
1334 else if (*fp == 'z')
1335 { fp++; length = L_SIZE; }
1337 /* Handle each specific format type. */
1342 nptr = va_arg(ap, int *);
1351 if (p >= last - ((length > L_LONG)? 24 : 12))
1352 { yield = FALSE; goto END_FORMAT; }
1353 strncpy(newformat, item_start, fp - item_start);
1354 newformat[fp - item_start] = 0;
1356 /* Short int is promoted to int when passing through ..., so we must use
1357 int for va_arg(). */
1362 case L_NORMAL: sprintf(CS p, newformat, va_arg(ap, int)); break;
1363 case L_LONG: sprintf(CS p, newformat, va_arg(ap, long int)); break;
1364 case L_LONGLONG: sprintf(CS p, newformat, va_arg(ap, LONGLONG_T)); break;
1365 case L_SIZE: sprintf(CS p, newformat, va_arg(ap, size_t)); break;
1371 if (p >= last - 24) { yield = FALSE; goto END_FORMAT; }
1372 strncpy(newformat, item_start, fp - item_start);
1373 newformat[fp - item_start] = 0;
1374 sprintf(CS p, newformat, va_arg(ap, void *));
1378 /* %f format is inherently insecure if the numbers that it may be
1379 handed are unknown (e.g. 1e300). However, in Exim, %f is used for
1380 printing load averages, and these are actually stored as integers
1381 (load average * 1000) so the size of the numbers is constrained.
1382 It is also used for formatting sending rates, where the simplicity
1383 of the format prevents overflow. */
1390 if (precision < 0) precision = 6;
1391 if (p >= last - precision - 8) { yield = FALSE; goto END_FORMAT; }
1392 strncpy(newformat, item_start, fp - item_start);
1393 newformat[fp-item_start] = 0;
1394 if (length == L_LONGDOUBLE)
1395 sprintf(CS p, newformat, va_arg(ap, long double));
1397 sprintf(CS p, newformat, va_arg(ap, double));
1404 if (p >= last) { yield = FALSE; goto END_FORMAT; }
1409 if (p >= last) { yield = FALSE; goto END_FORMAT; }
1410 *p++ = va_arg(ap, int);
1413 case 'D': /* Insert daily datestamp for log file names */
1414 s = CS tod_stamp(tod_log_datestamp_daily);
1415 string_datestamp_offset = p - buffer; /* Passed back via global */
1416 string_datestamp_length = Ustrlen(s); /* Passed back via global */
1417 string_datestamp_type = tod_log_datestamp_daily;
1418 slen = string_datestamp_length;
1421 case 'M': /* Insert monthly datestamp for log file names */
1422 s = CS tod_stamp(tod_log_datestamp_monthly);
1423 string_datestamp_offset = p - buffer; /* Passed back via global */
1424 string_datestamp_length = Ustrlen(s); /* Passed back via global */
1425 string_datestamp_type = tod_log_datestamp_monthly;
1426 slen = string_datestamp_length;
1430 case 'S': /* Forces *lower* case */
1431 case 'T': /* Forces *upper* case */
1432 s = va_arg(ap, char *);
1434 if (s == NULL) s = null;
1437 INSERT_STRING: /* Come to from %D or %M above */
1439 /* If the width is specified, check that there is a precision
1440 set; if not, set it to the width to prevent overruns of long
1445 if (precision < 0) precision = width;
1448 /* If a width is not specified and the precision is specified, set
1449 the width to the precision, or the string length if shorted. */
1451 else if (precision >= 0)
1453 width = (precision < slen)? precision : slen;
1456 /* If neither are specified, set them both to the string length. */
1458 else width = precision = slen;
1460 /* Check string space, and add the string to the buffer if ok. If
1461 not OK, add part of the string (debugging uses this to show as
1462 much as possible). */
1469 if (p >= last - width)
1472 width = precision = last - p - 1;
1473 if (width < 0) width = 0;
1474 if (precision < 0) precision = 0;
1476 sprintf(CS p, "%*.*s", width, precision, s);
1478 while (*p) { *p = tolower(*p); p++; }
1479 else if (fp[-1] == 'T')
1480 while (*p) { *p = toupper(*p); p++; }
1483 if (!yield) goto END_FORMAT;
1486 /* Some things are never used in Exim; also catches junk. */
1489 strncpy(newformat, item_start, fp - item_start);
1490 newformat[fp-item_start] = 0;
1491 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "string_format: unsupported type "
1492 "in \"%s\" in \"%s\"", newformat, format);
1497 /* Ensure string is complete; return TRUE if got to the end of the format */
1507 #ifndef COMPILE_UTILITY
1508 /*************************************************
1509 * Generate an "open failed" message *
1510 *************************************************/
1512 /* This function creates a message after failure to open a file. It includes a
1513 string supplied as data, adds the strerror() text, and if the failure was
1514 "Permission denied", reads and includes the euid and egid.
1517 eno the value of errno after the failure
1518 format a text format string - deliberately not uschar *
1519 ... arguments for the format string
1521 Returns: a message, in dynamic store
1525 string_open_failed(int eno, const char *format, ...)
1528 uschar buffer[1024];
1530 Ustrcpy(buffer, "failed to open ");
1531 va_start(ap, format);
1533 /* Use the checked formatting routine to ensure that the buffer
1534 does not overflow. It should not, since this is called only for internally
1535 specified messages. If it does, the message just gets truncated, and there
1536 doesn't seem much we can do about that. */
1538 (void)string_vformat(buffer+15, sizeof(buffer) - 15, format, ap);
1541 return (eno == EACCES)?
1542 string_sprintf("%s: %s (euid=%ld egid=%ld)", buffer, strerror(eno),
1543 (long int)geteuid(), (long int)getegid()) :
1544 string_sprintf("%s: %s", buffer, strerror(eno));
1546 #endif /* COMPILE_UTILITY */
1552 #ifndef COMPILE_UTILITY
1553 /* qsort(3), currently used to sort the environment variables
1554 for -bP environment output, needs a function to compare two pointers to string
1555 pointers. Here it is. */
1558 string_compare_by_pointer(const void *a, const void *b)
1560 return Ustrcmp(* CUSS a, * CUSS b);
1562 #endif /* COMPILE_UTILITY */
1566 /*************************************************
1567 **************************************************
1568 * Stand-alone test program *
1569 **************************************************
1570 *************************************************/
1577 printf("Testing is_ip_address\n");
1579 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
1582 buffer[Ustrlen(buffer) - 1] = 0;
1583 printf("%d\n", string_is_ip_address(buffer, NULL));
1584 printf("%d %d %s\n", string_is_ip_address(buffer, &offset), offset, buffer);
1587 printf("Testing string_nextinlist\n");
1589 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
1591 uschar *list = buffer;
1599 sep1 = sep2 = list[1];
1606 uschar *item1 = string_nextinlist(&lp1, &sep1, item, sizeof(item));
1607 uschar *item2 = string_nextinlist(&lp2, &sep2, NULL, 0);
1609 if (item1 == NULL && item2 == NULL) break;
1610 if (item == NULL || item2 == NULL || Ustrcmp(item1, item2) != 0)
1612 printf("***ERROR\nitem1=\"%s\"\nitem2=\"%s\"\n",
1613 (item1 == NULL)? "NULL" : CS item1,
1614 (item2 == NULL)? "NULL" : CS item2);
1617 else printf(" \"%s\"\n", CS item1);
1621 /* This is a horrible lash-up, but it serves its purpose. */
1623 printf("Testing string_format\n");
1625 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
1628 long long llargs[3];
1638 buffer[Ustrlen(buffer) - 1] = 0;
1640 s = Ustrchr(buffer, ',');
1641 if (s == NULL) s = buffer + Ustrlen(buffer);
1643 Ustrncpy(format, buffer, s - buffer);
1644 format[s-buffer] = 0;
1651 s = Ustrchr(ss, ',');
1652 if (s == NULL) s = ss + Ustrlen(ss);
1656 Ustrncpy(outbuf, ss, s-ss);
1657 if (Ustrchr(outbuf, '.') != NULL)
1660 dargs[n++] = Ustrtod(outbuf, NULL);
1662 else if (Ustrstr(outbuf, "ll") != NULL)
1665 llargs[n++] = strtoull(CS outbuf, NULL, 10);
1669 args[n++] = (void *)Uatoi(outbuf);
1673 else if (Ustrcmp(ss, "*") == 0)
1675 args[n++] = (void *)(&count);
1681 uschar *sss = malloc(s - ss + 1);
1682 Ustrncpy(sss, ss, s-ss);
1689 if (!dflag && !llflag)
1690 printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
1691 args[0], args[1], args[2])? "True" : "False");
1694 printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
1695 dargs[0], dargs[1], dargs[2])? "True" : "False");
1697 else printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
1698 llargs[0], llargs[1], llargs[2])? "True" : "False");
1700 printf("%s\n", CS outbuf);
1701 if (countset) printf("count=%d\n", count);
1708 /* End of string.c */