1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) The Exim Maintainers 2020 - 2024 */
6 /* Copyright (c) University of Cambridge 1995 - 2018 */
7 /* See the file NOTICE for conditions of use and distribution. */
8 /* SPDX-License-Identifier: GPL-2.0-or-later */
10 /* Miscellaneous string-handling functions. Some are not required for
11 utilities and tests, and are cut out by the COMPILE_UTILITY macro. */
18 #ifndef COMPILE_UTILITY
19 /*************************************************
20 * Test for IP address *
21 *************************************************/
23 /* This used just to be a regular expression, but with IPv6 things are a bit
24 more complicated. If the address contains a colon, it is assumed to be a v6
25 address (assuming HAVE_IPV6 is set). If a mask is permitted and one is present,
26 and maskptr is not NULL, its offset is placed there.
30 maskptr NULL if no mask is permitted to follow
31 otherwise, points to an int where the offset of '/' is placed
32 if there is no / followed by trailing digits, *maskptr is set 0
33 errp NULL if no diagnostic information is required, and if the netmask
34 length should not be checked. Otherwise it is set pointing to a short
37 Returns: 0 if the string is not a textual representation of an IP address
38 4 if it is an IPv4 address
39 6 if it is an IPv6 address
41 The legacy string_is_ip_address() function follows below.
45 string_is_ip_addressX(const uschar * ip_addr, int * maskptr, const uschar ** errp)
47 uschar * slash, * percent, * endp = NULL;
49 const uschar * addr = NULL;
51 union { /* we do not need this, but inet_pton() needs a place for storage */
56 /* If there is a slash, but we didn't request a (optional) netmask,
57 we return failure, as we do if the mask isn't a pure numerical value,
58 or if it is negative. The actual length is checked later, once we know
59 the address family. */
61 if (slash = Ustrchr(ip_addr, '/'))
67 if (errp) *errp = US"netmask found, but not requested";
71 mask = Ustrtol(slash+1, &rest, 10);
72 if (*rest || mask < 0)
74 if (errp) *errp = US"netmask not numeric or <0";
78 *maskptr = slash - ip_addr; /* offset of the slash */
82 *maskptr = 0; /* no slash found */
84 /* The interface-ID suffix (%<id>) is optional (for IPv6). If it
85 exists, we check it syntactically. Later, if we know the address
86 family is IPv4, we might reject it.
87 The interface-ID is mutually exclusive with the netmask, to the
88 best of my knowledge. */
90 if (percent = Ustrchr(ip_addr, '%'))
94 if (errp) *errp = US"interface-ID and netmask are mutually exclusive";
97 for (uschar *p = percent+1; *p; p++)
98 if (!isalnum(*p) && !ispunct(*p))
100 if (errp) *errp = US"interface-ID must match [[:alnum:][:punct:]]";
106 /* inet_pton() can't parse netmasks and interface IDs, so work on a shortened copy
107 allocated on the current stack */
111 ptrdiff_t l = endp - ip_addr;
114 if (errp) *errp = US"rudiculous long ip address string";
117 addr = string_copyn(ip_addr, l);
122 af = Ustrchr(addr, ':') ? AF_INET6 : AF_INET;
123 if (!inet_pton(af, CCS addr, &sa))
125 if (errp) *errp = af == AF_INET6 ? US"IP address string not parsable as IPv6"
126 : US"IP address string not parsable IPv4";
130 /* we do not check the values of the mask here, as
131 this is done on the callers side (but I don't understand why), so
132 actually I'd like to do it here, but it breaks at least testcase 0002 */
137 if (errp && mask > 128)
139 *errp = US"IPv6 netmask value must not be >128";
146 if (errp) *errp = US"IPv4 address string must not have an interface-ID";
149 if (errp && mask > 32)
151 *errp = US"IPv4 netmask value must not be >32";
156 if (errp) *errp = US"unknown address family (should not happen)";
163 string_is_ip_address(const uschar * ip_addr, int * maskptr)
165 return string_is_ip_addressX(ip_addr, maskptr, NULL);
168 #endif /* COMPILE_UTILITY */
171 /*************************************************
172 * Format message size *
173 *************************************************/
175 /* Convert a message size in bytes to printing form, rounding
176 according to the magnitude of the number. A value of zero causes
177 a string of spaces to be returned.
180 size the message size in bytes
181 buffer where to put the answer
183 Returns: pointer to the buffer
184 a string of exactly 5 characters is normally returned
188 string_format_size(int size, uschar *buffer)
190 if (size == 0) Ustrcpy(buffer, US" ");
191 else if (size < 1024) sprintf(CS buffer, "%5d", size);
192 else if (size < 10*1024)
193 sprintf(CS buffer, "%4.1fK", (double)size / 1024.0);
194 else if (size < 1024*1024)
195 sprintf(CS buffer, "%4dK", (size + 512)/1024);
196 else if (size < 10*1024*1024)
197 sprintf(CS buffer, "%4.1fM", (double)size / (1024.0 * 1024.0));
199 sprintf(CS buffer, "%4dM", (size + 512 * 1024)/(1024*1024));
205 #ifndef COMPILE_UTILITY
206 /*************************************************
207 * Convert a number to base 62 format *
208 *************************************************/
210 /* Convert a long integer into an ASCII base 62 string. For Cygwin the value of
211 BASE_62 is actually 36. Always return exactly 6 characters plus a NUL, in a
212 static area. This is enough for a 32b input, for 62 (for 64b we would want 11+nul);
213 but with 36 we lose half the input range of a 32b input.
215 Argument: a long integer
216 Returns: pointer to base 62 string
220 string_base62_32(unsigned long int value)
222 static uschar yield[7];
223 uschar * p = yield + sizeof(yield) - 1;
227 *--p = base62_chars[value % BASE_62];
234 string_base62_64(unsigned long int value)
236 static uschar yield[12];
237 uschar * p = yield + sizeof(yield) - 1;
242 *--p = base62_chars[value % BASE_62];
249 #endif /* COMPILE_UTILITY */
253 /*************************************************
254 * Interpret escape sequence *
255 *************************************************/
257 /* This function is called from several places where escape sequences are to be
258 interpreted in strings.
261 pp points a pointer to the initiating "\" in the string;
262 the pointer gets updated to point to the final character
263 If the backslash is the last character in the string, it
265 Returns: the value of the character escape
269 string_interpret_escape(const uschar **pp)
271 #ifdef COMPILE_UTILITY
272 const uschar *hex_digits= CUS"0123456789abcdef";
275 const uschar *p = *pp;
277 if (ch == '\0') return **pp;
278 if (isdigit(ch) && ch != '8' && ch != '9')
281 if (isdigit(p[1]) && p[1] != '8' && p[1] != '9')
283 ch = ch * 8 + *(++p) - '0';
284 if (isdigit(p[1]) && p[1] != '8' && p[1] != '9')
285 ch = ch * 8 + *(++p) - '0';
290 case 'b': ch = '\b'; break;
291 case 'f': ch = '\f'; break;
292 case 'n': ch = '\n'; break;
293 case 'r': ch = '\r'; break;
294 case 't': ch = '\t'; break;
295 case 'v': ch = '\v'; break;
301 Ustrchr(hex_digits, tolower(*(++p))) - hex_digits;
302 if (isxdigit(p[1])) ch = ch * 16 +
303 Ustrchr(hex_digits, tolower(*(++p))) - hex_digits;
313 #ifndef COMPILE_UTILITY
314 /*************************************************
315 * Ensure string is printable *
316 *************************************************/
318 /* This function is called for critical strings. It checks for any
319 non-printing characters, and if any are found, it makes a new copy
320 of the string with suitable escape sequences. It is most often called by the
321 macro string_printing(), which sets flags to 0.
325 flags Bit 0: convert tabs. Bit 1: convert spaces.
327 Returns: string with non-printers encoded as printing sequences
331 string_printing2(const uschar *s, int flags)
333 int nonprintcount = 0;
342 || flags & SP_TAB && c == '\t'
343 || flags & SP_SPACE && c == ' '
348 if (nonprintcount == 0) return s;
350 /* Get a new block of store guaranteed big enough to hold the
353 tt = ss = store_get(length + nonprintcount * 3 + 1, s);
355 /* Copy everything, escaping non printers. */
361 && (!(flags & SP_TAB) || c != '\t')
362 && (!(flags & SP_SPACE) || c != ' ')
370 case '\n': *tt++ = 'n'; break;
371 case '\r': *tt++ = 'r'; break;
372 case '\b': *tt++ = 'b'; break;
373 case '\v': *tt++ = 'v'; break;
374 case '\f': *tt++ = 'f'; break;
375 case '\t': *tt++ = 't'; break;
376 default: sprintf(CS tt, "%03o", *t); tt += 3; break;
384 #endif /* COMPILE_UTILITY */
386 /*************************************************
387 * Undo printing escapes in string *
388 *************************************************/
390 /* This function is the reverse of string_printing2. It searches for
391 backslash characters and if any are found, it makes a new copy of the
392 string with escape sequences parsed. Otherwise it returns the original
398 Returns: string with printing escapes parsed back
402 string_unprinting(uschar *s)
404 uschar *p, *q, *r, *ss;
407 p = Ustrchr(s, '\\');
410 len = Ustrlen(s) + 1;
411 ss = store_get(len, s);
425 *q++ = string_interpret_escape((const uschar **)&p);
430 r = Ustrchr(p, '\\');
456 #if (defined(HAVE_LOCAL_SCAN) || defined(EXPAND_DLFUNC)) \
457 && !defined(MACRO_PREDEF) && !defined(COMPILE_UTILITY)
458 /*************************************************
459 * Copy and save string *
460 *************************************************/
463 Argument: string to copy
464 Returns: copy of string in new store with the same taint status
468 string_copy_function(const uschar * s)
470 return string_copy_taint(s, s);
473 /* As above, but explicitly specifying the result taint status
477 string_copy_taint_function(const uschar * s, const void * proto_mem)
479 return string_copy_taint(s, proto_mem);
484 /*************************************************
485 * Copy and save string, given length *
486 *************************************************/
488 /* It is assumed the data contains no zeros. A zero is added
493 n number of characters
495 Returns: copy of string in new store
499 string_copyn_function(const uschar * s, int n)
501 return string_copyn(s, n);
506 /*************************************************
507 * Copy and save string in malloc'd store *
508 *************************************************/
510 /* This function assumes that memcpy() is faster than strcpy().
512 Argument: string to copy
513 Returns: copy of string in new store
517 string_copy_malloc(const uschar * s)
519 int len = Ustrlen(s) + 1;
520 uschar * ss = store_malloc(len);
527 /*************************************************
528 * Copy string if long, inserting newlines *
529 *************************************************/
531 /* If the given string is longer than 75 characters, it is copied, and within
532 the copy, certain space characters are converted into newlines.
534 Argument: pointer to the string
535 Returns: pointer to the possibly altered string
539 string_split_message(uschar * msg)
543 if (!msg || Ustrlen(msg) <= 75) return msg;
544 s = ss = msg = string_copy(msg);
549 while (i < 75 && *ss && *ss != '\n') ss++, i++;
561 if (t[-1] == ':') { tt = t; break; }
566 if (!tt) /* Can't split behind - try ahead */
571 if (*t == ' ' || *t == '\n')
577 if (!tt) break; /* Can't find anywhere to split */
588 /*************************************************
589 * Copy returned DNS domain name, de-escaping *
590 *************************************************/
592 /* If a domain name contains top-bit characters, some resolvers return
593 the fully qualified name with those characters turned into escapes. The
594 convention is a backslash followed by _decimal_ digits. We convert these
595 back into the original binary values. This will be relevant when
596 allow_utf8_domains is set true and UTF-8 characters are used in domain
597 names. Backslash can also be used to escape other characters, though we
598 shouldn't come across them in domain names.
600 Argument: the domain name string
601 Returns: copy of string in new store, de-escaped
605 string_copy_dnsdomain(uschar * s)
608 uschar * ss = yield = store_get(Ustrlen(s) + 1, GET_TAINTED); /* always treat as tainted */
614 else if (isdigit(s[1]))
616 *ss++ = (s[1] - '0')*100 + (s[2] - '0')*10 + s[3] - '0';
628 #ifndef COMPILE_UTILITY
629 /*************************************************
630 * Copy space-terminated or quoted string *
631 *************************************************/
633 /* This function copies from a string until its end, or until whitespace is
634 encountered, unless the string begins with a double quote, in which case the
635 terminating quote is sought, and escaping within the string is done. The length
636 of a de-quoted string can be no longer than the original, since escaping always
637 turns n characters into 1 character.
639 Argument: pointer to the pointer to the first character, which gets updated
640 Returns: the new string
644 string_dequote(const uschar ** sptr)
646 const uschar * s = * sptr;
649 /* First find the end of the string */
656 while (*s && *s != '\"')
658 if (*s == '\\') (void)string_interpret_escape(&s);
664 /* Get enough store to copy into */
666 t = yield = store_get(s - *sptr + 1, *sptr);
672 while (*s && !isspace(*s)) *t++ = *s++;
676 while (*s && *s != '\"')
678 *t++ = *s == '\\' ? string_interpret_escape(&s) : *s;
684 /* Update the pointer and return the terminated copy */
690 #endif /* COMPILE_UTILITY */
694 /*************************************************
695 * Format a string and save it *
696 *************************************************/
698 /* The formatting is done by string_vformat, which checks the length of
699 everything. Taint is taken from the worst of the arguments.
702 format a printf() format - deliberately char * rather than uschar *
703 because it will most usually be a literal string
704 func caller, for debug
705 line caller, for debug
706 ... arguments for format
708 Returns: pointer to fresh piece of store containing sprintf'ed string
712 string_sprintf_trc(const char * format, const uschar * func, unsigned line, ...)
714 #ifdef COMPILE_UTILITY
715 uschar buffer[STRING_SPRINTF_BUFFER_SIZE];
716 gstring gs = { .size = STRING_SPRINTF_BUFFER_SIZE, .ptr = 0, .s = buffer };
721 unsigned flags = SVFMT_REBUFFER|SVFMT_EXTEND;
726 g = string_vformat_trc(g, func, line, STRING_SPRINTF_BUFFER_SIZE,
731 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
732 "string_sprintf expansion was longer than %d; format string was (%s)\n"
733 " called from %s %d\n",
734 STRING_SPRINTF_BUFFER_SIZE, format, func, line);
736 #ifdef COMPILE_UTILITY
737 return string_copyn(g->s, g->ptr);
739 gstring_release_unused(g);
740 return string_from_gstring(g);
746 /*************************************************
747 * Case-independent strncmp() function *
748 *************************************************/
754 n number of characters to compare
756 Returns: < 0, = 0, or > 0, according to the comparison
760 strncmpic(const uschar * s, const uschar * t, int n)
764 int c = tolower(*s++) - tolower(*t++);
771 /*************************************************
772 * Case-independent strcmp() function *
773 *************************************************/
780 Returns: < 0, = 0, or > 0, according to the comparison
784 strcmpic(const uschar * s, const uschar * t)
788 int c = tolower(*s++) - tolower(*t++);
789 if (c != 0) return c;
795 /*************************************************
796 * Case-independent strstr() function *
797 *************************************************/
799 /* The third argument specifies whether whitespace is required
800 to follow the matched string.
804 t substring to search for
805 space_follows if TRUE, match only if whitespace follows
807 Returns: pointer to substring in string, or NULL if not found
811 strstric_c(const uschar * s, const uschar * t, BOOL space_follows)
813 const uschar * p = t;
814 const uschar * yield = NULL;
815 int cl = tolower(*p);
816 int cu = toupper(*p);
820 if (*s == cl || *s == cu)
822 if (!yield) yield = s;
825 if (!space_follows || s[1] == ' ' || s[1] == '\n' ) return yield;
846 strstric(uschar * s, uschar * t, BOOL space_follows)
848 return US strstric_c(s, t, space_follows);
852 #ifdef COMPILE_UTILITY
853 /* Dummy version for this function; it should never be called */
855 gstring_grow(gstring * g, int count)
863 #ifndef COMPILE_UTILITY
864 /*************************************************
865 * Get next string from separated list *
866 *************************************************/
868 /* Leading and trailing space is removed from each item. The separator in the
869 list is controlled by the int pointed to by the separator argument as follows:
871 If the value is > 0 it is used as the separator. This is typically used for
872 sublists such as slash-separated options. The value is always a printing
875 (If the value is actually > UCHAR_MAX there is only one item in the list.
876 This is used for some cases when called via functions that sometimes
877 plough through lists, and sometimes are given single items.)
879 If the value is <= 0, the string is inspected for a leading <x, where x is an
880 ispunct() or an iscntrl() character. If found, x is used as the separator. If
883 (a) if separator == 0, ':' is used
884 (b) if separator <0, -separator is used
886 In all cases the value of the separator that is used is written back to the
887 int so that it is used on subsequent calls as we progress through the list.
889 A literal ispunct() separator can be represented in an item by doubling, but
890 there is no way to include an iscntrl() separator as part of the data.
893 listptr points to a pointer to the current start of the list; the
894 pointer gets updated to point after the end of the next item
895 separator a pointer to the separator character in an int (see above)
896 buffer where to put a copy of the next string in the list; or
897 NULL if the next string is returned in new memory
898 Note that if the list is tainted then a provided buffer must be
899 also (else we trap, with a message referencing the callsite).
900 If we do the allocation, taint is handled there.
901 buflen when buffer is not NULL, the size of buffer; otherwise ignored
903 func caller, for debug
904 line caller, for debug
906 Returns: pointer to buffer, containing the next substring,
907 or NULL if no more substrings
911 string_nextinlist_trc(const uschar ** listptr, int * separator, uschar * buffer,
912 int buflen, const uschar * func, int line)
914 int sep = *separator;
915 const uschar * s = *listptr;
920 /* This allows for a fixed specified separator to be an iscntrl() character,
921 but at the time of implementation, this is never the case. However, it's best
922 to be conservative. */
924 while (isspace(*s) && *s != sep) s++;
926 /* A change of separator is permitted, so look for a leading '<' followed by an
927 allowed character. */
931 if (*s == '<' && (ispunct(s[1]) || iscntrl(s[1])))
935 while (isspace(*s) && *s != sep) s++;
938 sep = sep ? -sep : ':';
942 /* An empty string has no list elements */
944 if (!*s) return NULL;
946 /* Note whether whether or not the separator is an iscntrl() character. */
948 sep_is_special = iscntrl(sep);
950 /* Handle the case when a buffer is provided. */
951 /*XXX need to also deal with qouted-requirements mismatch */
956 if (is_tainted(s) && !is_tainted(buffer))
957 die_tainted(US"string_nextinlist", func, line);
960 if (*s == sep && (*++s != sep || sep_is_special)) break;
961 if (p < buflen - 1) buffer[p++] = *s;
963 while (p > 0 && isspace(buffer[p-1])) p--;
967 /* Handle the case when a buffer is not provided. */
973 /* We know that *s != 0 at this point. However, it might be pointing to a
974 separator, which could indicate an empty string, or (if an ispunct()
975 character) could be doubled to indicate a separator character as data at the
976 start of a string. Avoid getting working memory for an empty item. */
979 if (*++s != sep || sep_is_special)
982 return string_copy(US"");
985 /* Not an empty string; the first character is guaranteed to be a data
991 for (ss = s + 1; *ss && *ss != sep; ) ss++;
992 g = string_catn(g, s, ss-s);
994 if (!*s || *++s != sep || sep_is_special) break;
997 /* Trim trailing spaces from the returned string */
999 /* while (g->ptr > 0 && isspace(g->s[g->ptr-1])) g->ptr--; */
1000 while ( g->ptr > 0 && isspace(g->s[g->ptr-1])
1001 && (g->ptr == 1 || g->s[g->ptr-2] != '\\') )
1003 buffer = string_from_gstring(g);
1004 gstring_release_unused_trc(g, CCS func, line);
1007 /* Update the current pointer and return the new string */
1014 static const uschar *
1015 Ustrnchr(const uschar * s, int c, unsigned * len)
1017 unsigned siz = *len;
1020 if (!*s) return NULL;
1033 /************************************************
1034 * Add element to separated list *
1035 ************************************************/
1036 /* This function is used to build a list, returning an allocated null-terminated
1037 growable string. The given element has any embedded separator characters
1040 Despite having the same growable-string interface as string_cat() the list is
1041 always returned null-terminated.
1044 list expanding-string for the list that is being built, or NULL
1045 if this is a new list that has no contents yet
1046 sep list separator character
1047 ele new element to be appended to the list
1049 Returns: pointer to the start of the list, changed if copied for expansion.
1053 string_append_listele(gstring * list, uschar sep, const uschar * ele)
1057 if (list && list->ptr)
1058 list = string_catn(list, &sep, 1);
1060 while((sp = Ustrchr(ele, sep)))
1062 list = string_catn(list, ele, sp-ele+1);
1063 list = string_catn(list, &sep, 1);
1066 list = string_cat(list, ele);
1067 (void) string_from_gstring(list);
1073 string_append_listele_n(gstring * list, uschar sep, const uschar * ele,
1078 if (list && list->ptr)
1079 list = string_catn(list, &sep, 1);
1081 while((sp = Ustrnchr(ele, sep, &len)))
1083 list = string_catn(list, ele, sp-ele+1);
1084 list = string_catn(list, &sep, 1);
1088 list = string_catn(list, ele, len);
1089 (void) string_from_gstring(list);
1095 /* Listmaker that takes a format string and args for the element.
1096 A flag arg is required to handle embedded sep chars in the (expanded) element;
1097 if false then no check is done */
1100 string_append_listele_fmt(gstring * list, uschar sep, BOOL check,
1101 const char * fmt, ...)
1107 if (list && list->ptr)
1109 list = string_catn(list, &sep, 1);
1116 list = string_vformat_trc(list, US __FUNCTION__, __LINE__,
1117 STRING_SPRINTF_BUFFER_SIZE, SVFMT_REBUFFER|SVFMT_EXTEND, fmt, ap);
1120 (void) string_from_gstring(list);
1122 /* if the appended element turns out to have an embedded sep char, rewind
1123 and do the lazy-coded separate string method */
1125 if (!check || !Ustrchr(&list->s[start], sep))
1129 g = string_vformat_trc(NULL, US __FUNCTION__, __LINE__,
1130 STRING_SPRINTF_BUFFER_SIZE, SVFMT_REBUFFER|SVFMT_EXTEND, fmt, ap);
1134 return string_append_listele_n(list, sep, g->s, g->ptr);
1138 /* A slightly-bogus listmaker utility; the separator is a string so
1139 can be multiple chars - there is no checking for the element content
1140 containing any of the separator. */
1143 string_append2_listele_n(gstring * list, const uschar * sepstr,
1144 const uschar * ele, unsigned len)
1146 if (list && list->ptr)
1147 list = string_cat(list, sepstr);
1149 list = string_catn(list, ele, len);
1150 (void) string_from_gstring(list);
1156 /************************************************/
1157 /* Add more space to a growable-string. The caller should check
1158 first if growth is required. The gstring struct is modified on
1159 return; specifically, the string-base-pointer may have been changed.
1162 g the growable-string
1163 count amount needed for g->ptr to increase by
1167 gstring_grow(gstring * g, int count)
1170 int oldsize = g->size;
1172 /* Mostly, string_cat() is used to build small strings of a few hundred
1173 characters at most. There are times, however, when the strings are very much
1174 longer (for example, a lookup that returns a vast number of alias addresses).
1175 To try to keep things reasonable, we use increments whose size depends on the
1176 existing length of the string. */
1178 unsigned inc = oldsize < 4096 ? 127 : 1023;
1180 if (g->ptr < 0 || g->ptr > g->size || g->size >= INT_MAX/2)
1181 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1182 "internal error in gstring_grow (ptr %d size %d)", g->ptr, g->size);
1184 if (count <= 0) return;
1186 if (count >= INT_MAX/2 - g->ptr)
1187 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1188 "internal error in gstring_grow (ptr %d count %d)", g->ptr, count);
1190 g->size = (p + count + inc + 1) & ~inc; /* one for a NUL */
1192 /* Try to extend an existing allocation. If the result of calling
1193 store_extend() is false, either there isn't room in the current memory block,
1194 or this string is not the top item on the dynamic store stack. We then have
1195 to get a new chunk of store and copy the old string. When building large
1196 strings, it is helpful to call store_release() on the old string, to release
1197 memory blocks that have become empty. (The block will be freed if the string
1198 is at its start.) However, we can do this only if we know that the old string
1199 was the last item on the dynamic memory stack. This is the case if it matches
1202 if (!store_extend(g->s, oldsize, g->size))
1203 g->s = store_newblock(g->s, g->size, p);
1208 /*************************************************
1209 * Add chars to string *
1210 *************************************************/
1211 /* This function is used when building up strings of unknown length. Room is
1212 always left for a terminating zero to be added to the string that is being
1213 built. This function does not require the string that is being added to be NUL
1214 terminated, because the number of characters to add is given explicitly. It is
1215 sometimes called to extract parts of other strings.
1218 g growable-string that is being built, or NULL if not assigned yet
1219 s points to characters to add
1220 count count of characters to add; must not exceed the length of s, if s
1223 Returns: growable string, changed if copied for expansion.
1224 Note that a NUL is not added, though space is left for one. This is
1225 because string_cat() is often called multiple times to build up a
1226 string - there's no point adding the NUL till the end.
1227 NULL is a possible return.
1230 /* coverity[+alloc] */
1233 string_catn(gstring * g, const uschar * s, int count)
1238 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1239 "internal error in string_catn (count %d)", count);
1240 if (count == 0) return g;
1242 /*debug_printf("string_catn '%.*s'\n", count, s);*/
1245 unsigned inc = count < 4096 ? 127 : 1023;
1246 unsigned size = ((count + inc) & ~inc) + 1; /* round up requested count */
1247 g = string_get_tainted(size, s);
1249 else if (!g->s) /* should not happen */
1251 g->s = string_copyn(s, count);
1253 g->size = count; /*XXX suboptimal*/
1256 else if (is_incompatible(g->s, s))
1258 /* debug_printf("rebuf A\n"); */
1259 gstring_rebuffer(g, s);
1262 if (g->ptr < 0 || g->ptr > g->size)
1263 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1264 "internal error in string_catn (ptr %d size %d)", g->ptr, g->size);
1267 if (count >= g->size - p)
1268 gstring_grow(g, count);
1270 /* Because we always specify the exact number of characters to copy, we can
1271 use memcpy(), which is likely to be more efficient than strncopy() because the
1272 latter has to check for zero bytes. */
1274 memcpy(g->s + p, s, count);
1281 /*************************************************
1282 * Append strings to another string *
1283 *************************************************/
1285 /* This function can be used to build a string from many other strings.
1286 It calls string_cat() to do the dirty work.
1289 g growable-string that is being built, or NULL if not yet assigned
1290 count the number of strings to append
1291 ... "count" uschar* arguments, which must be valid zero-terminated
1294 Returns: growable string, changed if copied for expansion.
1295 The string is not zero-terminated - see string_cat() above.
1298 __inline__ gstring *
1299 string_append(gstring * g, int count, ...)
1303 va_start(ap, count);
1306 uschar * t = va_arg(ap, uschar *);
1307 g = string_cat(g, t);
1317 /*************************************************
1318 * Format a string with length checks *
1319 *************************************************/
1321 /* This function is used to format a string with checking of the length of the
1322 output for all conversions. It protects Exim from absent-mindedness when
1323 calling functions like debug_printf and string_sprintf, and elsewhere. There
1324 are two different entry points to what is actually the same function, depending
1325 on whether the variable length list of data arguments are given explicitly or
1328 The formats are the usual printf() ones, with some omissions (never used) and
1329 three additions for strings: %S forces lower case, %T forces upper case, and
1330 %#s or %#S prints nothing for a NULL string. Without the # "NULL" is printed
1331 (useful in debugging). There is also the addition of %D and %M, which insert
1332 the date in the form used for datestamped log files.
1335 buffer a buffer in which to put the formatted string
1336 buflen the length of the buffer
1337 format the format string - deliberately char * and not uschar *
1338 ... or ap variable list of supplementary arguments
1340 Returns: TRUE if the result fitted in the buffer
1344 string_format_trc(uschar * buffer, int buflen,
1345 const uschar * func, unsigned line, const char * format, ...)
1347 gstring g = { .size = buflen, .ptr = 0, .s = buffer }, * gp;
1349 va_start(ap, format);
1350 gp = string_vformat_trc(&g, func, line, STRING_SPRINTF_BUFFER_SIZE,
1360 /* Build or append to a growing-string, sprintf-style.
1364 func called-from function name, for debug
1365 line called-from file line number, for debug
1366 limit maximum string size
1368 format printf-like format string
1369 ap variable-args pointer
1372 SVFMT_EXTEND buffer can be created or extended as needed
1373 SVFMT_REBUFFER buffer can be recopied to tainted mem as needed
1374 SVFMT_TAINT_NOCHK do not check inputs for taint
1376 If the "extend" flag is true, the string passed in can be NULL,
1377 empty, or non-empty. Growing is subject to an overall limit given
1378 by the limit argument.
1380 If the "extend" flag is false, the string passed in may not be NULL,
1381 will not be grown, and is usable in the original place after return.
1382 The return value can be NULL to signify overflow.
1384 Field width: decimal digits, or *
1385 Precision: dot, followed by decimal digits or *
1386 Length modifiers: h L l ll z
1387 Conversion specifiers: n d o u x X p f e E g G % c s S T W V Y D M H Z b
1388 Alternate-form: #: s/Y/b are silent about a null string
1390 Returns the possibly-new (if copy for growth or taint-handling was needed)
1391 string, not nul-terminated.
1395 string_vformat_trc(gstring * g, const uschar * func, unsigned line,
1396 unsigned size_limit, unsigned flags, const char * format, va_list ap)
1398 enum ltypes { L_NORMAL=1, L_SHORT=2, L_LONG=3, L_LONGLONG=4, L_LONGDOUBLE=5, L_SIZE=6 };
1400 int width, precision, off, lim, need;
1401 const char * fp = format; /* Deliberately not unsigned */
1403 string_datestamp_offset = -1; /* Datestamp not inserted */
1404 string_datestamp_length = 0; /* Datestamp not inserted */
1405 string_datestamp_type = 0; /* Datestamp not inserted */
1407 #ifdef COMPILE_UTILITY
1408 assert(!(flags & SVFMT_EXTEND));
1412 /* Ensure we have a string, to save on checking later */
1413 if (!g) g = string_get(16);
1415 if (!(flags & SVFMT_TAINT_NOCHK) && is_incompatible(g->s, format))
1417 #ifndef MACRO_PREDEF
1418 if (!(flags & SVFMT_REBUFFER))
1419 die_tainted(US"string_vformat", func, line);
1421 /* debug_printf("rebuf B\n"); */
1422 gstring_rebuffer(g, format);
1424 #endif /*!COMPILE_UTILITY*/
1426 lim = g->size - 1; /* leave one for a nul */
1427 off = g->ptr; /* remember initial offset in gstring */
1429 /* Scan the format and handle the insertions */
1433 int length = L_NORMAL;
1436 const char *null = "NULL"; /* ) These variables */
1437 const char *item_start, *s; /* ) are deliberately */
1438 char newformat[16]; /* ) not unsigned */
1439 char * gp = CS g->s + g->ptr; /* ) */
1441 /* Non-% characters just get copied verbatim */
1445 /* Avoid string_copyn() due to COMPILE_UTILITY */
1446 if ((need = g->ptr + 1) > lim)
1448 if (!(flags & SVFMT_EXTEND) || need > size_limit) return NULL;
1452 g->s[g->ptr++] = (uschar) *fp++;
1456 /* Deal with % characters. Pick off the width and precision, for checking
1457 strings, skipping over the flag and modifier characters. */
1460 width = precision = -1;
1462 if (strchr("-+ #0", *(++fp)) != NULL)
1464 if (*fp == '#') null = "";
1468 if (isdigit((uschar)*fp))
1470 width = *fp++ - '0';
1471 while (isdigit((uschar)*fp)) width = width * 10 + *fp++ - '0';
1473 else if (*fp == '*')
1475 width = va_arg(ap, int);
1482 precision = va_arg(ap, int);
1486 for (precision = 0; isdigit((uschar)*fp); fp++)
1487 precision = precision*10 + *fp - '0';
1489 /* Skip over 'h', 'L', 'l', 'll' and 'z', remembering the item length */
1492 { fp++; length = L_SHORT; }
1493 else if (*fp == 'L')
1494 { fp++; length = L_LONGDOUBLE; }
1495 else if (*fp == 'l')
1497 { fp += 2; length = L_LONGLONG; }
1499 { fp++; length = L_LONG; }
1500 else if (*fp == 'z')
1501 { fp++; length = L_SIZE; }
1503 /* Handle each specific format type. */
1508 nptr = va_arg(ap, int *);
1509 *nptr = g->ptr - off;
1517 width = length > L_LONG ? 24 : 12;
1518 if ((need = g->ptr + width) > lim)
1520 if (!(flags & SVFMT_EXTEND) || need >= size_limit) return NULL;
1521 gstring_grow(g, width);
1523 gp = CS g->s + g->ptr;
1525 strncpy(newformat, item_start, fp - item_start);
1526 newformat[fp - item_start] = 0;
1528 /* Short int is promoted to int when passing through ..., so we must use
1529 int for va_arg(). */
1535 g->ptr += sprintf(gp, newformat, va_arg(ap, int)); break;
1537 g->ptr += sprintf(gp, newformat, va_arg(ap, long int)); break;
1539 g->ptr += sprintf(gp, newformat, va_arg(ap, LONGLONG_T)); break;
1541 g->ptr += sprintf(gp, newformat, va_arg(ap, size_t)); break;
1548 if ((need = g->ptr + 24) > lim)
1550 if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1551 gstring_grow(g, 24);
1553 gp = CS g->s + g->ptr;
1555 /* sprintf() saying "(nil)" for a null pointer seems unreliable.
1556 Handle it explicitly. */
1557 if ((ptr = va_arg(ap, void *)))
1559 strncpy(newformat, item_start, fp - item_start);
1560 newformat[fp - item_start] = 0;
1561 g->ptr += sprintf(gp, newformat, ptr);
1564 g->ptr += sprintf(gp, "(nil)");
1568 /* %f format is inherently insecure if the numbers that it may be
1569 handed are unknown (e.g. 1e300). However, in Exim, %f is used for
1570 printing load averages, and these are actually stored as integers
1571 (load average * 1000) so the size of the numbers is constrained.
1572 It is also used for formatting sending rates, where the simplicity
1573 of the format prevents overflow. */
1580 if (precision < 0) precision = 6;
1581 if ((need = g->ptr + precision + 8) > lim)
1583 if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1584 gstring_grow(g, precision+8);
1586 gp = CS g->s + g->ptr;
1588 strncpy(newformat, item_start, fp - item_start);
1589 newformat[fp-item_start] = 0;
1590 if (length == L_LONGDOUBLE)
1591 g->ptr += sprintf(gp, newformat, va_arg(ap, long double));
1593 g->ptr += sprintf(gp, newformat, va_arg(ap, double));
1599 if ((need = g->ptr + 1) > lim)
1601 if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1605 g->s[g->ptr++] = (uschar) '%';
1609 if ((need = g->ptr + 1) > lim)
1611 if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1615 g->s[g->ptr++] = (uschar) va_arg(ap, int);
1618 case 'D': /* Insert daily datestamp for log file names */
1619 s = CS tod_stamp(tod_log_datestamp_daily);
1620 string_datestamp_offset = g->ptr; /* Passed back via global */
1621 string_datestamp_length = Ustrlen(s); /* Passed back via global */
1622 string_datestamp_type = tod_log_datestamp_daily;
1623 slen = string_datestamp_length;
1626 case 'M': /* Insert monthly datestamp for log file names */
1627 s = CS tod_stamp(tod_log_datestamp_monthly);
1628 string_datestamp_offset = g->ptr; /* Passed back via global */
1629 string_datestamp_length = Ustrlen(s); /* Passed back via global */
1630 string_datestamp_type = tod_log_datestamp_monthly;
1631 slen = string_datestamp_length;
1634 case 'Y': /* gstring pointer */
1636 gstring * zg = va_arg(ap, gstring *);
1637 if (zg) { s = CS zg->s; slen = gstring_length(zg); }
1638 else { s = null; slen = Ustrlen(s); }
1639 goto INSERT_GSTRING;
1641 #ifndef COMPILE_UTILITY
1642 case 'b': /* blob pointer, carrying a string */
1644 blob * b = va_arg(ap, blob *);
1645 if (b) { s = CS b->data; slen = b->len; }
1646 else { s = null; slen = Ustrlen(s); }
1647 goto INSERT_GSTRING;
1650 case 'V': /* string; maybe convert ascii-art to UTF-8 chars */
1652 gstring * zg = NULL;
1653 s = va_arg(ap, char *);
1654 if (IS_DEBUG(D_noutf8))
1656 zg = string_catn(zg, CUS (*s == 'K' ? "|" : s), 1);
1658 for ( ; *s; s++) switch (*s)
1660 case '\\': zg = string_catn(zg, US UTF8_UP_RIGHT, 3); break;
1661 case '/': zg = string_catn(zg, US UTF8_DOWN_RIGHT, 3); break;
1663 case '_': zg = string_catn(zg, US UTF8_HORIZ, 3); break;
1664 case '|': zg = string_catn(zg, US UTF8_VERT, 3); break;
1665 case 'K': zg = string_catn(zg, US UTF8_VERT_RIGHT, 3); break;
1666 case '<': zg = string_catn(zg, US UTF8_LEFT_TRIANGLE, 3); break;
1667 case '>': zg = string_catn(zg, US UTF8_RIGHT_TRIANGLE, 3); break;
1668 default: zg = string_catn(zg, CUS s, 1); break;
1674 slen = gstring_length(zg);
1675 goto INSERT_GSTRING;
1678 case 'W': /* Maybe mark up ctrls, spaces & newlines */
1679 s = va_arg(ap, char *);
1680 if (s && !IS_DEBUG(D_noutf8))
1682 gstring * zg = NULL;
1685 /* If a precision was given, we can handle embedded NULs. Take it as
1686 applying to the input and expand it for the transformed result */
1688 for ( ; precision >= 0 || *s; s++)
1689 if (p >= 0 && --p < 0)
1694 zg = string_catn(zg, CUS UTF8_LIGHT_SHADE, 3);
1695 if (precision >= 0) precision += 2;
1698 zg = string_catn(zg, CUS UTF8_L_ARROW_HOOK "\n", 4);
1699 if (precision >= 0) precision += 3;
1703 { /* base of UTF8 symbols for ASCII control chars */
1704 uschar ctrl_symbol[3] = {[0]=0xe2, [1]=0x90, [2]=0x80};
1705 ctrl_symbol[2] |= *s;
1706 zg = string_catn(zg, ctrl_symbol, 3);
1707 if (precision >= 0) precision += 2;
1710 zg = string_catn(zg, CUS s, 1);
1713 if (zg) { s = CS zg->s; slen = gstring_length(zg); }
1714 else { s = ""; slen = 0; }
1721 goto INSERT_GSTRING;
1723 case 'Z': /* pdkim-style "quoteprint" */
1725 gstring * zg = NULL;
1726 int p = precision; /* If given, we can handle embedded NULs */
1728 s = va_arg(ap, char *);
1729 for ( ; precision >= 0 || *s; s++)
1730 if (p >= 0 && --p < 0)
1734 case ' ' : zg = string_catn(zg, US"{SP}", 4); break;
1735 case '\t': zg = string_catn(zg, US"{TB}", 4); break;
1736 case '\r': zg = string_catn(zg, US"{CR}", 4); break;
1737 case '\n': zg = string_catn(zg, US"{LF}", 4); break;
1738 case '{' : zg = string_catn(zg, US"{BO}", 4); break;
1739 case '}' : zg = string_catn(zg, US"{BC}", 4); break;
1743 if ( (u < 32) || (u > 127) )
1744 zg = string_fmt_append(zg, "{%02x}", u);
1746 zg = string_catn(zg, US s, 1);
1750 if (zg) { s = CS zg->s; precision = slen = gstring_length(zg); }
1751 else { s = ""; slen = 0; }
1753 goto INSERT_GSTRING;
1755 case 'H': /* pdkim-style "hexprint" */
1757 s = va_arg(ap, char *);
1758 if (precision < 0) break; /* precision must be given */
1761 gstring * zg = NULL;
1762 for (int p = precision; p > 0; p--)
1763 zg = string_fmt_append(zg, "%02x", * US s++);
1765 if (zg) { s = CS zg->s; precision = slen = gstring_length(zg); }
1766 else { s = ""; slen = 0; }
1769 { s = "<NULL>"; precision = slen = 6; }
1771 goto INSERT_GSTRING;
1775 case 'S': /* Forces *lower* case */
1776 case 'T': /* Forces *upper* case */
1777 s = va_arg(ap, char *);
1782 INSERT_GSTRING: /* Come to from %Y above */
1784 if (!(flags & SVFMT_TAINT_NOCHK) && is_incompatible(g->s, s))
1785 if (flags & SVFMT_REBUFFER)
1787 /* debug_printf("%s %d: untainted workarea, tainted %%s :- rebuffer\n", __FUNCTION__, __LINE__); */
1788 gstring_rebuffer(g, s);
1789 gp = CS g->s + g->ptr;
1791 #ifndef MACRO_PREDEF
1793 die_tainted(US"string_vformat", func, line);
1796 INSERT_STRING: /* Come to from %D or %M above */
1799 BOOL truncated = FALSE;
1801 /* If the width is specified, check that there is a precision
1802 set; if not, set it to the width to prevent overruns of long
1807 if (precision < 0) precision = width;
1810 /* If a width is not specified and the precision is specified, set
1811 the width to the precision, or the string length if shorter. */
1813 else if (precision >= 0)
1814 width = precision < slen ? precision : slen;
1816 /* If neither are specified, set them both to the string length. */
1819 width = precision = slen;
1821 if ((need = g->ptr + width) >= size_limit || !(flags & SVFMT_EXTEND))
1823 if (g->ptr == lim) return NULL;
1827 width = precision = lim - g->ptr - 1;
1828 if (width < 0) width = 0;
1829 if (precision < 0) precision = 0;
1832 else if (need > lim)
1834 gstring_grow(g, width);
1836 gp = CS g->s + g->ptr;
1839 g->ptr += sprintf(gp, "%*.*s", width, precision, s);
1841 while (*gp) { *gp = tolower(*gp); gp++; }
1842 else if (fp[-1] == 'T')
1843 while (*gp) { *gp = toupper(*gp); gp++; }
1845 if (truncated) return NULL;
1849 /* Some things are never used in Exim; also catches junk. */
1852 strncpy(newformat, item_start, fp - item_start);
1853 newformat[fp-item_start] = 0;
1854 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "string_format: unsupported type "
1855 "in \"%s\" in \"%s\"", newformat, format);
1860 if (g->ptr > g->size)
1861 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1862 "string_format internal error: caller %s %d", func, line);
1868 #ifndef COMPILE_UTILITY
1869 /*************************************************
1870 * Generate an "open failed" message *
1871 *************************************************/
1873 /* This function creates a message after failure to open a file. It includes a
1874 string supplied as data, adds the strerror() text, and if the failure was
1875 "Permission denied", reads and includes the euid and egid.
1878 format a text format string - deliberately not uschar *
1879 func caller, for debug
1880 line caller, for debug
1881 ... arguments for the format string
1883 Returns: a message, in dynamic store
1887 string_open_failed_trc(const uschar * func, unsigned line,
1888 const char * format, ...)
1891 gstring * g = string_get(1024);
1893 g = string_catn(g, US"failed to open ", 15);
1895 /* Use the checked formatting routine to ensure that the buffer
1896 does not overflow. It should not, since this is called only for internally
1897 specified messages. If it does, the message just gets truncated, and there
1898 doesn't seem much we can do about that. */
1900 va_start(ap, format);
1901 (void) string_vformat_trc(g, func, line, STRING_SPRINTF_BUFFER_SIZE,
1902 SVFMT_REBUFFER, format, ap);
1905 g = string_catn(g, US": ", 2);
1906 g = string_cat(g, US strerror(errno));
1908 if (errno == EACCES)
1910 int save_errno = errno;
1911 g = string_fmt_append(g, " (euid=%ld egid=%ld)",
1912 (long int)geteuid(), (long int)getegid());
1915 gstring_release_unused(g);
1916 return string_from_gstring(g);
1923 /* qsort(3), currently used to sort the environment variables
1924 for -bP environment output, needs a function to compare two pointers to string
1925 pointers. Here it is. */
1928 string_compare_by_pointer(const void *a, const void *b)
1930 return Ustrcmp(* CUSS a, * CUSS b);
1932 #endif /* COMPILE_UTILITY */
1937 /*************************************************
1938 **************************************************
1939 * Stand-alone test program *
1940 **************************************************
1941 *************************************************/
1948 printf("Testing is_ip_address\n");
1951 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
1954 buffer[Ustrlen(buffer) - 1] = 0;
1955 printf("%d\n", string_is_ip_address(buffer, NULL));
1956 printf("%d %d %s\n", string_is_ip_address(buffer, &offset), offset, buffer);
1959 printf("Testing string_nextinlist\n");
1961 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
1963 uschar *list = buffer;
1971 sep1 = sep2 = list[1];
1978 uschar *item1 = string_nextinlist(&lp1, &sep1, item, sizeof(item));
1979 uschar *item2 = string_nextinlist(&lp2, &sep2, NULL, 0);
1981 if (item1 == NULL && item2 == NULL) break;
1982 if (item == NULL || item2 == NULL || Ustrcmp(item1, item2) != 0)
1984 printf("***ERROR\nitem1=\"%s\"\nitem2=\"%s\"\n",
1985 (item1 == NULL)? "NULL" : CS item1,
1986 (item2 == NULL)? "NULL" : CS item2);
1989 else printf(" \"%s\"\n", CS item1);
1993 /* This is a horrible lash-up, but it serves its purpose. */
1995 printf("Testing string_format\n");
1997 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
2000 long long llargs[3];
2006 BOOL countset = FASE;
2010 buffer[Ustrlen(buffer) - 1] = 0;
2012 s = Ustrchr(buffer, ',');
2013 if (s == NULL) s = buffer + Ustrlen(buffer);
2015 Ustrncpy(format, buffer, s - buffer);
2016 format[s-buffer] = 0;
2023 s = Ustrchr(ss, ',');
2024 if (s == NULL) s = ss + Ustrlen(ss);
2028 Ustrncpy(outbuf, ss, s-ss);
2029 if (Ustrchr(outbuf, '.') != NULL)
2032 dargs[n++] = Ustrtod(outbuf, NULL);
2034 else if (Ustrstr(outbuf, "ll") != NULL)
2037 llargs[n++] = strtoull(CS outbuf, NULL, 10);
2041 args[n++] = (void *)Uatoi(outbuf);
2045 else if (Ustrcmp(ss, "*") == 0)
2047 args[n++] = (void *)(&count);
2053 uschar *sss = malloc(s - ss + 1);
2054 Ustrncpy(sss, ss, s-ss);
2061 if (!dflag && !llflag)
2062 printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
2063 args[0], args[1], args[2])? "True" : "False");
2066 printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
2067 dargs[0], dargs[1], dargs[2])? "True" : "False");
2069 else printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
2070 llargs[0], llargs[1], llargs[2])? "True" : "False");
2072 printf("%s\n", CS outbuf);
2073 if (countset) printf("count=%d\n", count);
2080 /* End of string.c */