b370cfacc87fdf9c88c5853b7ae62ad2177257f4
[exim.git] / src / src / string.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
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 */
9
10 /* Miscellaneous string-handling functions. Some are not required for
11 utilities and tests, and are cut out by the COMPILE_UTILITY macro. */
12
13
14 #include "exim.h"
15 #include <assert.h>
16
17
18 #ifndef COMPILE_UTILITY
19 /*************************************************
20 *            Test for IP address                 *
21 *************************************************/
22
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.
27
28 Arguments:
29   s         a string
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
35             descriptive text.
36
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
40
41 The legacy string_is_ip_address() function follows below.
42 */
43
44 int
45 string_is_ip_addressX(const uschar * ip_addr, int * maskptr, const uschar ** errp)
46 {
47 uschar * slash, * percent, * endp = NULL;
48 long int mask = 0;
49 const uschar * addr = NULL;
50 int af;
51 union { /* we do not need this, but inet_pton() needs a place for storage */
52   struct in_addr sa4;
53   struct in6_addr sa6;
54 } sa;
55
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. */
60
61 if (slash = Ustrchr(ip_addr, '/'))
62   {
63   uschar * rest;
64
65   if (!maskptr)
66     {
67     if (errp) *errp = US"netmask found, but not requested";
68     return 0;
69     }
70
71   mask = Ustrtol(slash+1, &rest, 10);
72   if (*rest || mask < 0)
73     {
74     if (errp) *errp = US"netmask not numeric or <0";
75     return 0;
76     }
77
78   *maskptr = slash - ip_addr;   /* offset of the slash */
79   endp = slash;
80   }
81 else if (maskptr)
82   *maskptr = 0;                 /* no slash found */
83
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. */
89
90 if (percent = Ustrchr(ip_addr, '%'))
91   {
92   if (slash)
93     {
94     if (errp) *errp = US"interface-ID and netmask are mutually exclusive";
95     return 0;
96     }
97   for (uschar *p = percent+1; *p; p++)
98     if (!isalnum(*p) && !ispunct(*p))
99       {
100       if (errp) *errp = US"interface-ID must match [[:alnum:][:punct:]]";
101       return 0;
102       }
103   endp = percent;
104   }
105
106 /* inet_pton() can't parse netmasks and interface IDs, so work on a shortened copy
107 allocated on the current stack */
108
109 if (endp)
110   {
111   ptrdiff_t l = endp - ip_addr;
112   if (l > 255)
113     {
114     if (errp) *errp = US"rudiculous long ip address string";
115     return 0;
116     }
117   addr = string_copyn(ip_addr, l);
118   }
119 else
120   addr = ip_addr;
121
122 af = Ustrchr(addr, ':') ? AF_INET6 : AF_INET;
123 if (!inet_pton(af, CCS addr, &sa))
124   {
125   if (errp) *errp = af == AF_INET6 ? US"IP address string not parsable as IPv6"
126                                    : US"IP address string not parsable IPv4";
127   return 0;
128   }
129
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 */
133
134 switch (af)
135   {
136   case AF_INET6:
137       if (errp && mask > 128)
138         {
139         *errp = US"IPv6 netmask value must not be >128";
140         return 0;
141         }
142       return 6;
143   case AF_INET:
144       if (percent)
145         {
146         if (errp) *errp = US"IPv4 address string must not have an interface-ID";
147         return 0;
148         }
149       if (errp && mask > 32)
150         {
151         *errp = US"IPv4 netmask value must not be >32";
152         return 0;
153         }
154       return 4;
155   default:
156       if (errp) *errp = US"unknown address family (should not happen)";
157       return 0;
158   }
159 }
160
161
162 int
163 string_is_ip_address(const uschar * ip_addr, int * maskptr)
164 {
165 return string_is_ip_addressX(ip_addr, maskptr, NULL);
166 }
167
168 #endif  /* COMPILE_UTILITY */
169
170
171 /*************************************************
172 *              Format message size               *
173 *************************************************/
174
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.
178
179 Arguments:
180   size        the message size in bytes
181   buffer      where to put the answer
182
183 Returns:      pointer to the buffer
184               a string of exactly 5 characters is normally returned
185 */
186
187 uschar *
188 string_format_size(int size, uschar *buffer)
189 {
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));
198 else
199   sprintf(CS buffer, "%4dM", (size + 512 * 1024)/(1024*1024));
200 return buffer;
201 }
202
203
204
205 #ifndef COMPILE_UTILITY
206 /*************************************************
207 *       Convert a number to base 62 format       *
208 *************************************************/
209
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.
214
215 Argument: a long integer
216 Returns:  pointer to base 62 string
217 */
218
219 uschar *
220 string_base62_32(unsigned long int value)
221 {
222 static uschar yield[7];
223 uschar * p = yield + sizeof(yield) - 1;
224 *p = 0;
225 while (p > yield)
226   {
227   *--p = base62_chars[value % BASE_62];
228   value /= BASE_62;
229   }
230 return yield;
231 }
232
233 uschar *
234 string_base62_64(unsigned long int value)
235 {
236 static uschar yield[12];
237 uschar * p = yield + sizeof(yield) - 1;
238 *p = '\0';
239 while (p > yield)
240   if (value)
241     {
242     *--p = base62_chars[value % BASE_62];
243     value /= BASE_62;
244     }
245   else
246     *--p = '0';
247 return yield;
248 }
249 #endif  /* COMPILE_UTILITY */
250
251
252
253 /*************************************************
254 *          Interpret escape sequence             *
255 *************************************************/
256
257 /* This function is called from several places where escape sequences are to be
258 interpreted in strings.
259
260 Arguments:
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
264            is not interpreted.
265 Returns:   the value of the character escape
266 */
267
268 int
269 string_interpret_escape(const uschar **pp)
270 {
271 #ifdef COMPILE_UTILITY
272 const uschar *hex_digits= CUS"0123456789abcdef";
273 #endif
274 int ch;
275 const uschar *p = *pp;
276 ch = *(++p);
277 if (ch == '\0') return **pp;
278 if (isdigit(ch) && ch != '8' && ch != '9')
279   {
280   ch -= '0';
281   if (isdigit(p[1]) && p[1] != '8' && p[1] != '9')
282     {
283     ch = ch * 8 + *(++p) - '0';
284     if (isdigit(p[1]) && p[1] != '8' && p[1] != '9')
285       ch = ch * 8 + *(++p) - '0';
286     }
287   }
288 else switch(ch)
289   {
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;
296   case 'x':
297   ch = 0;
298   if (isxdigit(p[1]))
299     {
300     ch = ch * 16 +
301       Ustrchr(hex_digits, tolower(*(++p))) - hex_digits;
302     if (isxdigit(p[1])) ch = ch * 16 +
303       Ustrchr(hex_digits, tolower(*(++p))) - hex_digits;
304     }
305   break;
306   }
307 *pp = p;
308 return ch;
309 }
310
311
312
313 #ifndef COMPILE_UTILITY
314 /*************************************************
315 *          Ensure string is printable            *
316 *************************************************/
317
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.
322
323 Arguments:
324   s             the input string
325   flags         Bit 0: convert tabs.  Bit 1: convert spaces.
326
327 Returns:        string with non-printers encoded as printing sequences
328 */
329
330 const uschar *
331 string_printing2(const uschar *s, int flags)
332 {
333 int nonprintcount = 0;
334 int length = 0;
335 const uschar *t = s;
336 uschar *ss, *tt;
337
338 while (*t)
339   {
340   int c = *t++;
341   if (  !mac_isprint(c)
342      || flags & SP_TAB && c == '\t'
343      || flags & SP_SPACE && c == ' '
344      ) nonprintcount++;
345   length++;
346   }
347
348 if (nonprintcount == 0) return s;
349
350 /* Get a new block of store guaranteed big enough to hold the
351 expanded string. */
352
353 tt = ss = store_get(length + nonprintcount * 3 + 1, s);
354
355 /* Copy everything, escaping non printers. */
356
357 for (t = s; *t; )
358   {
359   int c = *t;
360   if (  mac_isprint(c)
361      && (!(flags & SP_TAB) || c != '\t')
362      && (!(flags & SP_SPACE) || c != ' ')
363      )
364     *tt++ = *t++;
365   else
366     {
367     *tt++ = '\\';
368     switch (*t)
369       {
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;
377       }
378     t++;
379     }
380   }
381 *tt = 0;
382 return ss;
383 }
384 #endif  /* COMPILE_UTILITY */
385
386 /*************************************************
387 *        Undo printing escapes in string         *
388 *************************************************/
389
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
393 string.
394
395 Arguments:
396   s             the input string
397
398 Returns:        string with printing escapes parsed back
399 */
400
401 uschar *
402 string_unprinting(uschar *s)
403 {
404 uschar *p, *q, *r, *ss;
405 int len, off;
406
407 p = Ustrchr(s, '\\');
408 if (!p) return s;
409
410 len = Ustrlen(s) + 1;
411 ss = store_get(len, s);
412
413 q = ss;
414 off = p - s;
415 if (off)
416   {
417   memcpy(q, s, off);
418   q += off;
419   }
420
421 while (*p)
422   {
423   if (*p == '\\')
424     {
425     *q++ = string_interpret_escape((const uschar **)&p);
426     p++;
427     }
428   else
429     {
430     r = Ustrchr(p, '\\');
431     if (!r)
432       {
433       off = Ustrlen(p);
434       memcpy(q, p, off);
435       p += off;
436       q += off;
437       break;
438       }
439     else
440       {
441       off = r - p;
442       memcpy(q, p, off);
443       q += off;
444       p = r;
445       }
446     }
447   }
448 *q = '\0';
449
450 return ss;
451 }
452
453
454
455
456 #if (defined(HAVE_LOCAL_SCAN) || defined(EXPAND_DLFUNC)) \
457         && !defined(MACRO_PREDEF) && !defined(COMPILE_UTILITY)
458 /*************************************************
459 *            Copy and save string                *
460 *************************************************/
461
462 /*
463 Argument: string to copy
464 Returns:  copy of string in new store with the same taint status
465 */
466
467 uschar *
468 string_copy_function(const uschar * s)
469 {
470 return string_copy_taint(s, s);
471 }
472
473 /* As above, but explicitly specifying the result taint status
474 */
475
476 uschar *
477 string_copy_taint_function(const uschar * s, const void * proto_mem)
478 {
479 return string_copy_taint(s, proto_mem);
480 }
481
482
483
484 /*************************************************
485 *       Copy and save string, given length       *
486 *************************************************/
487
488 /* It is assumed the data contains no zeros. A zero is added
489 onto the end.
490
491 Arguments:
492   s         string to copy
493   n         number of characters
494
495 Returns:    copy of string in new store
496 */
497
498 uschar *
499 string_copyn_function(const uschar * s, int n)
500 {
501 return string_copyn(s, n);
502 }
503 #endif
504
505
506 /*************************************************
507 *     Copy and save string in malloc'd store     *
508 *************************************************/
509
510 /* This function assumes that memcpy() is faster than strcpy().
511
512 Argument: string to copy
513 Returns:  copy of string in new store
514 */
515
516 uschar *
517 string_copy_malloc(const uschar * s)
518 {
519 int len = Ustrlen(s) + 1;
520 uschar * ss = store_malloc(len);
521 memcpy(ss, s, len);
522 return ss;
523 }
524
525
526
527 /*************************************************
528 *    Copy string if long, inserting newlines     *
529 *************************************************/
530
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.
533
534 Argument:  pointer to the string
535 Returns:   pointer to the possibly altered string
536 */
537
538 uschar *
539 string_split_message(uschar * msg)
540 {
541 uschar *s, *ss;
542
543 if (!msg || Ustrlen(msg) <= 75) return msg;
544 s = ss = msg = string_copy(msg);
545
546 for (;;)
547   {
548   int i = 0;
549   while (i < 75 && *ss && *ss != '\n') ss++, i++;
550   if (!*ss) break;
551   if (*ss == '\n')
552     s = ++ss;
553   else
554     {
555     uschar * t = ss + 1;
556     uschar * tt = NULL;
557     while (--t > s + 35)
558       {
559       if (*t == ' ')
560         {
561         if (t[-1] == ':') { tt = t; break; }
562         if (!tt) tt = t;
563         }
564       }
565
566     if (!tt)          /* Can't split behind - try ahead */
567       {
568       t = ss + 1;
569       while (*t)
570         {
571         if (*t == ' ' || *t == '\n')
572           { tt = t; break; }
573         t++;
574         }
575       }
576
577     if (!tt) break;   /* Can't find anywhere to split */
578     *tt = '\n';
579     s = ss = tt+1;
580     }
581   }
582
583 return msg;
584 }
585
586
587
588 /*************************************************
589 *   Copy returned DNS domain name, de-escaping   *
590 *************************************************/
591
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.
599
600 Argument:   the domain name string
601 Returns:    copy of string in new store, de-escaped
602 */
603
604 uschar *
605 string_copy_dnsdomain(uschar * s)
606 {
607 uschar * yield;
608 uschar * ss = yield = store_get(Ustrlen(s) + 1, GET_TAINTED);   /* always treat as tainted */
609
610 while (*s)
611   {
612   if (*s != '\\')
613     *ss++ = *s++;
614   else if (isdigit(s[1]))
615     {
616     *ss++ = (s[1] - '0')*100 + (s[2] - '0')*10 + s[3] - '0';
617     s += 4;
618     }
619   else if (*++s)
620     *ss++ = *s++;
621   }
622
623 *ss = 0;
624 return yield;
625 }
626
627
628 #ifndef COMPILE_UTILITY
629 /*************************************************
630 *     Copy space-terminated or quoted string     *
631 *************************************************/
632
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.
638
639 Argument:  pointer to the pointer to the first character, which gets updated
640 Returns:   the new string
641 */
642
643 uschar *
644 string_dequote(const uschar ** sptr)
645 {
646 const uschar * s = * sptr;
647 uschar * t, * yield;
648
649 /* First find the end of the string */
650
651 if (*s != '\"')
652   Uskip_nonwhite(&s);
653 else
654   {
655   s++;
656   while (*s && *s != '\"')
657     {
658     if (*s == '\\') (void)string_interpret_escape(&s);
659     s++;
660     }
661   if (*s) s++;
662   }
663
664 /* Get enough store to copy into */
665
666 t = yield = store_get(s - *sptr + 1, *sptr);
667 s = *sptr;
668
669 /* Do the copy */
670
671 if (*s != '\"')
672   while (*s && !isspace(*s)) *t++ = *s++;
673 else
674   {
675   s++;
676   while (*s && *s != '\"')
677     {
678     *t++ = *s == '\\' ? string_interpret_escape(&s) : *s;
679     s++;
680     }
681   if (*s) s++;
682   }
683
684 /* Update the pointer and return the terminated copy */
685
686 *sptr = s;
687 *t = 0;
688 return yield;
689 }
690 #endif  /* COMPILE_UTILITY */
691
692
693
694 /*************************************************
695 *          Format a string and save it           *
696 *************************************************/
697
698 /* The formatting is done by string_vformat, which checks the length of
699 everything.  Taint is taken from the worst of the arguments.
700
701 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
707
708 Returns:    pointer to fresh piece of store containing sprintf'ed string
709 */
710
711 uschar *
712 string_sprintf_trc(const char * format, const uschar * func, unsigned line, ...)
713 {
714 #ifdef COMPILE_UTILITY
715 uschar buffer[STRING_SPRINTF_BUFFER_SIZE];
716 gstring gs = { .size = STRING_SPRINTF_BUFFER_SIZE, .ptr = 0, .s = buffer };
717 gstring * g = &gs;
718 unsigned flags = 0;
719 #else
720 gstring * g = NULL;
721 unsigned flags = SVFMT_REBUFFER|SVFMT_EXTEND;
722 #endif
723
724 va_list ap;
725 va_start(ap, line);
726 g = string_vformat_trc(g, func, line, STRING_SPRINTF_BUFFER_SIZE,
727         flags, format, ap);
728 va_end(ap);
729
730 if (!g)
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);
735
736 #ifdef COMPILE_UTILITY
737 return string_copyn(g->s, g->ptr);
738 #else
739 gstring_release_unused(g);
740 return string_from_gstring(g);
741 #endif
742 }
743
744
745
746 /*************************************************
747 *         Case-independent strncmp() function    *
748 *************************************************/
749
750 /*
751 Arguments:
752   s         first string
753   t         second string
754   n         number of characters to compare
755
756 Returns:    < 0, = 0, or > 0, according to the comparison
757 */
758
759 int
760 strncmpic(const uschar * s, const uschar * t, int n)
761 {
762 while (n--)
763   {
764   int c = tolower(*s++) - tolower(*t++);
765   if (c) return c;
766   }
767 return 0;
768 }
769
770
771 /*************************************************
772 *         Case-independent strcmp() function     *
773 *************************************************/
774
775 /*
776 Arguments:
777   s         first string
778   t         second string
779
780 Returns:    < 0, = 0, or > 0, according to the comparison
781 */
782
783 int
784 strcmpic(const uschar * s, const uschar * t)
785 {
786 while (*s)
787   {
788   int c = tolower(*s++) - tolower(*t++);
789   if (c != 0) return c;
790   }
791 return *t;
792 }
793
794
795 /*************************************************
796 *         Case-independent strstr() function     *
797 *************************************************/
798
799 /* The third argument specifies whether whitespace is required
800 to follow the matched string.
801
802 Arguments:
803   s              string to search
804   t              substring to search for
805   space_follows  if TRUE, match only if whitespace follows
806
807 Returns:         pointer to substring in string, or NULL if not found
808 */
809
810 const uschar *
811 strstric_c(const uschar * s, const uschar * t, BOOL space_follows)
812 {
813 const uschar * p = t;
814 const uschar * yield = NULL;
815 int cl = tolower(*p);
816 int cu = toupper(*p);
817
818 while (*s)
819   {
820   if (*s == cl || *s == cu)
821     {
822     if (!yield) yield = s;
823     if (!*++p)
824       {
825       if (!space_follows || s[1] == ' ' || s[1] == '\n' ) return yield;
826       yield = NULL;
827       p = t;
828       }
829     cl = tolower(*p);
830     cu = toupper(*p);
831     s++;
832     }
833   else if (yield)
834     {
835     yield = NULL;
836     p = t;
837     cl = tolower(*p);
838     cu = toupper(*p);
839     }
840   else s++;
841   }
842 return NULL;
843 }
844
845 uschar *
846 strstric(uschar * s, uschar * t, BOOL space_follows)
847 {
848 return US strstric_c(s, t, space_follows);
849 }
850
851
852 #ifdef COMPILE_UTILITY
853 /* Dummy version for this function; it should never be called */
854 static void
855 gstring_grow(gstring * g, int count)
856 {
857 assert(FALSE);
858 }
859 #endif
860
861
862
863 #ifndef COMPILE_UTILITY
864 /*************************************************
865 *       Get next string from separated list      *
866 *************************************************/
867
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:
870
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
873   character.
874
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.)
878
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
881   not found:
882
883       (a) if separator == 0, ':' is used
884       (b) if separator <0, -separator is used
885
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.
888
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.
891
892 Arguments:
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
902
903   func       caller, for debug
904   line       caller, for debug
905
906 Returns:     pointer to buffer, containing the next substring,
907              or NULL if no more substrings
908 */
909
910 uschar *
911 string_nextinlist_trc(const uschar ** listptr, int * separator, uschar * buffer,
912   int buflen, const uschar * func, int line)
913 {
914 int sep = *separator;
915 const uschar * s = *listptr;
916 BOOL sep_is_special;
917
918 if (!s) return NULL;
919
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. */
923
924 while (isspace(*s) && *s != sep) s++;
925
926 /* A change of separator is permitted (assuming untainted source),
927 so look for a leading '<' followed by an allowed character. */
928
929 if (sep <= 0)
930   {
931   if (*s == '<' && (ispunct(s[1]) || iscntrl(s[1])))
932     {
933     if (!is_tainted(s))
934       sep = s[1];
935     else DEBUG(D_any) 
936       debug_printf("attempt to use tainted change-of-seperator spec (%s %d)\n",
937                     config_filename, config_lineno);
938     if (*++s) ++s;
939     while (isspace(*s) && *s != sep) s++;
940     }
941   else
942     sep = sep ? -sep : ':';
943   *separator = sep;
944   }
945
946 /* An empty string has no list elements */
947
948 if (!*s) return NULL;
949
950 /* Note whether whether or not the separator is an iscntrl() character. */
951
952 sep_is_special = iscntrl(sep);
953
954 /* Handle the case when a buffer is provided. */
955 /*XXX need to also deal with qouted-requirements mismatch */
956
957 if (buffer)
958   {
959   int p = 0;
960   if (is_tainted(s) && !is_tainted(buffer))
961     die_tainted(US"string_nextinlist", func, line);
962   for (; *s; s++)
963     {
964     if (*s == sep && (*++s != sep || sep_is_special)) break;
965     if (p < buflen - 1) buffer[p++] = *s;
966     }
967   while (p > 0 && isspace(buffer[p-1])) p--;
968   buffer[p] = '\0';
969   }
970
971 /* Handle the case when a buffer is not provided. */
972
973 else
974   {
975   gstring * g = NULL;
976
977   /* We know that *s != 0 at this point. However, it might be pointing to a
978   separator, which could indicate an empty string, or (if an ispunct()
979   character) could be doubled to indicate a separator character as data at the
980   start of a string. Avoid getting working memory for an empty item. */
981
982   if (*s == sep)
983     if (*++s != sep || sep_is_special)
984       {
985       *listptr = s;
986       return string_copy(US"");
987       }
988
989   /* Not an empty string; the first character is guaranteed to be a data
990   character. */
991
992   for (;;)
993     {
994     const uschar * ss;
995     for (ss = s + 1; *ss && *ss != sep; ) ss++;
996     g = string_catn(g, s, ss-s);
997     s = ss;
998     if (!*s || *++s != sep || sep_is_special) break;
999     }
1000
1001   /* Trim trailing spaces from the returned string */
1002
1003   /* while (g->ptr > 0 && isspace(g->s[g->ptr-1])) g->ptr--; */
1004   while (  g->ptr > 0 && isspace(g->s[g->ptr-1])
1005         && (g->ptr == 1 || g->s[g->ptr-2] != '\\') )
1006     g->ptr--;
1007   buffer = string_from_gstring(g);
1008   gstring_release_unused_trc(g, CCS func, line);
1009   }
1010
1011 /* Update the current pointer and return the new string */
1012
1013 *listptr = s;
1014 return buffer;
1015 }
1016
1017
1018 static const uschar *
1019 Ustrnchr(const uschar * s, int c, unsigned * len)
1020 {
1021 unsigned siz = *len;
1022 while (siz)
1023   {
1024   if (!*s) return NULL;
1025   if (*s == c)
1026     {
1027     *len = siz;
1028     return s;
1029     }
1030   s++;
1031   siz--;
1032   }
1033 return NULL;
1034 }
1035
1036
1037 /************************************************
1038 *       Add element to separated list           *
1039 ************************************************/
1040 /* This function is used to build a list, returning an allocated null-terminated
1041 growable string. The given element has any embedded separator characters
1042 doubled.
1043
1044 Despite having the same growable-string interface as string_cat() the list is
1045 always returned null-terminated.
1046
1047 Arguments:
1048   list  expanding-string for the list that is being built, or NULL
1049         if this is a new list that has no contents yet
1050   sep   list separator character
1051   ele   new element to be appended to the list
1052
1053 Returns:  pointer to the start of the list, changed if copied for expansion.
1054 */
1055
1056 gstring *
1057 string_append_listele(gstring * list, uschar sep, const uschar * ele)
1058 {
1059 uschar * sp;
1060
1061 if (list && list->ptr)
1062   list = string_catn(list, &sep, 1);
1063
1064 while((sp = Ustrchr(ele, sep)))
1065   {
1066   list = string_catn(list, ele, sp-ele+1);
1067   list = string_catn(list, &sep, 1);
1068   ele = sp+1;
1069   }
1070 list = string_cat(list, ele);
1071 (void) string_from_gstring(list);
1072 return list;
1073 }
1074
1075
1076 gstring *
1077 string_append_listele_n(gstring * list, uschar sep, const uschar * ele,
1078  unsigned len)
1079 {
1080 const uschar * sp;
1081
1082 if (list && list->ptr)
1083   list = string_catn(list, &sep, 1);
1084
1085 while((sp = Ustrnchr(ele, sep, &len)))
1086   {
1087   list = string_catn(list, ele, sp-ele+1);
1088   list = string_catn(list, &sep, 1);
1089   ele = sp+1;
1090   len--;
1091   }
1092 list = string_catn(list, ele, len);
1093 (void) string_from_gstring(list);
1094 return list;
1095 }
1096
1097
1098
1099 /* Listmaker that takes a format string and args for the element.
1100 A flag arg is required to handle embedded sep chars in the (expanded) element;
1101 if false then no check is done */
1102
1103 gstring *
1104 string_append_listele_fmt(gstring * list, uschar sep, BOOL check,
1105   const char * fmt, ...)
1106 {
1107 va_list ap;
1108 unsigned start;
1109 gstring * g;
1110
1111 if (list && list->ptr)
1112   {
1113   list = string_catn(list, &sep, 1);
1114   start = list->ptr;
1115   }
1116 else
1117   start = 0;
1118
1119 va_start(ap, fmt);
1120 list = string_vformat_trc(list, US __FUNCTION__, __LINE__,
1121           STRING_SPRINTF_BUFFER_SIZE, SVFMT_REBUFFER|SVFMT_EXTEND, fmt, ap);
1122 va_end(ap);
1123
1124 (void) string_from_gstring(list);
1125
1126 /* if the appended element turns out to have an embedded sep char, rewind
1127 and do the lazy-coded separate string method */
1128
1129 if (!check || !Ustrchr(&list->s[start], sep))
1130   return list;
1131
1132 va_start(ap, fmt);
1133 g = string_vformat_trc(NULL, US __FUNCTION__, __LINE__,
1134         STRING_SPRINTF_BUFFER_SIZE, SVFMT_REBUFFER|SVFMT_EXTEND, fmt, ap);
1135 va_end(ap);
1136
1137 list->ptr = start;
1138 return string_append_listele_n(list, sep, g->s, g->ptr);
1139 }
1140
1141
1142 /* A slightly-bogus listmaker utility; the separator is a string so
1143 can be multiple chars - there is no checking for the element content
1144 containing any of the separator. */
1145
1146 gstring *
1147 string_append2_listele_n(gstring * list, const uschar * sepstr,
1148  const uschar * ele, unsigned len)
1149 {
1150 if (list && list->ptr)
1151   list = string_cat(list, sepstr);
1152
1153 list = string_catn(list, ele, len);
1154 (void) string_from_gstring(list);
1155 return list;
1156 }
1157
1158
1159
1160 /************************************************/
1161 /* Add more space to a growable-string.  The caller should check
1162 first if growth is required.  The gstring struct is modified on
1163 return; specifically, the string-base-pointer may have been changed.
1164
1165 Arguments:
1166   g             the growable-string
1167   count         amount needed for g->ptr to increase by
1168 */
1169
1170 static void
1171 gstring_grow(gstring * g, int count)
1172 {
1173 int p = g->ptr;
1174 int oldsize = g->size;
1175
1176 /* Mostly, string_cat() is used to build small strings of a few hundred
1177 characters at most. There are times, however, when the strings are very much
1178 longer (for example, a lookup that returns a vast number of alias addresses).
1179 To try to keep things reasonable, we use increments whose size depends on the
1180 existing length of the string. */
1181
1182 unsigned inc = oldsize < 4096 ? 127 : 1023;
1183
1184 if (g->ptr < 0 || g->ptr > g->size || g->size >= INT_MAX/2)
1185   log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1186     "internal error in gstring_grow (ptr %d size %d)", g->ptr, g->size);
1187
1188 if (count <= 0) return;
1189
1190 if (count >= INT_MAX/2 - g->ptr)
1191   log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1192     "internal error in gstring_grow (ptr %d count %d)", g->ptr, count);
1193
1194 g->size = (p + count + inc + 1) & ~inc;         /* one for a NUL */
1195
1196 /* Try to extend an existing allocation. If the result of calling
1197 store_extend() is false, either there isn't room in the current memory block,
1198 or this string is not the top item on the dynamic store stack. We then have
1199 to get a new chunk of store and copy the old string. When building large
1200 strings, it is helpful to call store_release() on the old string, to release
1201 memory blocks that have become empty. (The block will be freed if the string
1202 is at its start.) However, we can do this only if we know that the old string
1203 was the last item on the dynamic memory stack. This is the case if it matches
1204 store_last_get. */
1205
1206 if (!store_extend(g->s, oldsize, g->size))
1207   g->s = store_newblock(g->s, g->size, p);
1208 }
1209
1210
1211
1212 /*************************************************
1213 *             Add chars to string                *
1214 *************************************************/
1215 /* This function is used when building up strings of unknown length. Room is
1216 always left for a terminating zero to be added to the string that is being
1217 built. This function does not require the string that is being added to be NUL
1218 terminated, because the number of characters to add is given explicitly. It is
1219 sometimes called to extract parts of other strings.
1220
1221 Arguments:
1222   g        growable-string that is being built, or NULL if not assigned yet
1223   s        points to characters to add
1224   count    count of characters to add; must not exceed the length of s, if s
1225              is a C string.
1226
1227 Returns:   growable string, changed if copied for expansion.
1228            Note that a NUL is not added, though space is left for one. This is
1229            because string_cat() is often called multiple times to build up a
1230            string - there's no point adding the NUL till the end.
1231            NULL is a possible return.
1232
1233 */
1234 /* coverity[+alloc] */
1235
1236 gstring *
1237 string_catn(gstring * g, const uschar * s, int count)
1238 {
1239 int p;
1240
1241 if (count < 0)
1242   log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1243     "internal error in string_catn (count %d)", count);
1244 if (count == 0) return g;
1245
1246 /*debug_printf("string_catn '%.*s'\n", count, s);*/
1247 if (!g)
1248   {
1249   unsigned inc = count < 4096 ? 127 : 1023;
1250   unsigned size = ((count + inc) &  ~inc) + 1;  /* round up requested count */
1251   g = string_get_tainted(size, s);
1252   }
1253 else if (!g->s)                 /* should not happen */
1254   {
1255   g->s = string_copyn(s, count);
1256   g->ptr = count;
1257   g->size = count;      /*XXX suboptimal*/
1258   return g;
1259   }
1260 else if (is_incompatible(g->s, s))
1261   {
1262 /* debug_printf("rebuf A\n"); */
1263   gstring_rebuffer(g, s);
1264   }
1265
1266 if (g->ptr < 0 || g->ptr > g->size)
1267   log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1268     "internal error in string_catn (ptr %d size %d)", g->ptr, g->size);
1269
1270 p = g->ptr;
1271 if (count >= g->size - p)
1272   gstring_grow(g, count);
1273
1274 /* Because we always specify the exact number of characters to copy, we can
1275 use memcpy(), which is likely to be more efficient than strncopy() because the
1276 latter has to check for zero bytes. */
1277
1278 memcpy(g->s + p, s, count);
1279 g->ptr = p + count;
1280 return g;
1281 }
1282
1283
1284
1285 /*************************************************
1286 *        Append strings to another string        *
1287 *************************************************/
1288
1289 /* This function can be used to build a string from many other strings.
1290 It calls string_cat() to do the dirty work.
1291
1292 Arguments:
1293   g        growable-string that is being built, or NULL if not yet assigned
1294   count    the number of strings to append
1295   ...      "count" uschar* arguments, which must be valid zero-terminated
1296              C strings
1297
1298 Returns:   growable string, changed if copied for expansion.
1299            The string is not zero-terminated - see string_cat() above.
1300 */
1301
1302 __inline__ gstring *
1303 string_append(gstring * g, int count, ...)
1304 {
1305 va_list ap;
1306
1307 va_start(ap, count);
1308 while (count-- > 0)
1309   {
1310   uschar * t = va_arg(ap, uschar *);
1311   g = string_cat(g, t);
1312   }
1313 va_end(ap);
1314
1315 return g;
1316 }
1317 #endif
1318
1319
1320
1321 /*************************************************
1322 *        Format a string with length checks      *
1323 *************************************************/
1324
1325 /* This function is used to format a string with checking of the length of the
1326 output for all conversions. It protects Exim from absent-mindedness when
1327 calling functions like debug_printf and string_sprintf, and elsewhere. There
1328 are two different entry points to what is actually the same function, depending
1329 on whether the variable length list of data arguments are given explicitly or
1330 as a va_list item.
1331
1332 The formats are the usual printf() ones, with some omissions (never used) and
1333 three additions for strings: %S forces lower case, %T forces upper case, and
1334 %#s or %#S prints nothing for a NULL string. Without the # "NULL" is printed
1335 (useful in debugging). There is also the addition of %D and %M, which insert
1336 the date in the form used for datestamped log files.
1337
1338 Arguments:
1339   buffer       a buffer in which to put the formatted string
1340   buflen       the length of the buffer
1341   format       the format string - deliberately char * and not uschar *
1342   ... or ap    variable list of supplementary arguments
1343
1344 Returns:       TRUE if the result fitted in the buffer
1345 */
1346
1347 BOOL
1348 string_format_trc(uschar * buffer, int buflen,
1349   const uschar * func, unsigned line, const char * format, ...)
1350 {
1351 gstring g = { .size = buflen, .ptr = 0, .s = buffer }, * gp;
1352 va_list ap;
1353 va_start(ap, format);
1354 gp = string_vformat_trc(&g, func, line, STRING_SPRINTF_BUFFER_SIZE,
1355         0, format, ap);
1356 va_end(ap);
1357 g.s[g.ptr] = '\0';
1358 return !!gp;
1359 }
1360
1361
1362
1363
1364 /* Build or append to a growing-string, sprintf-style.
1365
1366 Arguments:
1367         g       a growable-string
1368         func    called-from function name, for debug
1369         line    called-from file line number, for debug
1370         limit   maximum string size
1371         flags   see below
1372         format  printf-like format string
1373         ap      variable-args pointer
1374
1375 Flags:
1376         SVFMT_EXTEND            buffer can be created or extended as needed
1377         SVFMT_REBUFFER          buffer can be recopied to tainted mem as needed
1378         SVFMT_TAINT_NOCHK       do not check inputs for taint
1379
1380 If the "extend" flag is true, the string passed in can be NULL,
1381 empty, or non-empty.  Growing is subject to an overall limit given
1382 by the limit argument.
1383
1384 If the "extend" flag is false, the string passed in may not be NULL,
1385 will not be grown, and is usable in the original place after return.
1386 The return value can be NULL to signify overflow.
1387
1388 Field width:            decimal digits, or *
1389 Precision:              dot, followed by decimal digits or *
1390 Length modifiers:       h  L  l  ll  z
1391 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
1392 Alternate-form:         #: s/Y/b are silent about a null string
1393
1394 Returns the possibly-new (if copy for growth or taint-handling was needed)
1395 string, not nul-terminated.
1396 */
1397
1398 gstring *
1399 string_vformat_trc(gstring * g, const uschar * func, unsigned line,
1400   unsigned size_limit, unsigned flags, const char * format, va_list ap)
1401 {
1402 enum ltypes { L_NORMAL=1, L_SHORT=2, L_LONG=3, L_LONGLONG=4, L_LONGDOUBLE=5, L_SIZE=6 };
1403
1404 int width, precision, off, lim, need;
1405 const char * fp = format;       /* Deliberately not unsigned */
1406
1407 string_datestamp_offset = -1;   /* Datestamp not inserted */
1408 string_datestamp_length = 0;    /* Datestamp not inserted */
1409 string_datestamp_type = 0;      /* Datestamp not inserted */
1410
1411 #ifdef COMPILE_UTILITY
1412 assert(!(flags & SVFMT_EXTEND));
1413 assert(g);
1414 #else
1415
1416 /* Ensure we have a string, to save on checking later */
1417 if (!g) g = string_get(16);
1418
1419 if (!(flags & SVFMT_TAINT_NOCHK) && is_incompatible(g->s, format))
1420   {
1421 #ifndef MACRO_PREDEF
1422   if (!(flags & SVFMT_REBUFFER))
1423     die_tainted(US"string_vformat", func, line);
1424 #endif
1425 /* debug_printf("rebuf B\n"); */
1426   gstring_rebuffer(g, format);
1427   }
1428 #endif  /*!COMPILE_UTILITY*/
1429
1430 lim = g->size - 1;      /* leave one for a nul */
1431 off = g->ptr;           /* remember initial offset in gstring */
1432
1433 /* Scan the format and handle the insertions */
1434
1435 while (*fp)
1436   {
1437   int length = L_NORMAL;
1438   int * nptr;
1439   int slen;
1440   const char *null = "NULL";            /* ) These variables */
1441   const char *item_start, *s;           /* ) are deliberately */
1442   char newformat[16];                   /* ) not unsigned */
1443   char * gp = CS g->s + g->ptr;         /* ) */
1444
1445   /* Non-% characters just get copied verbatim */
1446
1447   if (*fp != '%')
1448     {
1449     /* Avoid string_copyn() due to COMPILE_UTILITY */
1450     if ((need = g->ptr + 1) > lim)
1451       {
1452       if (!(flags & SVFMT_EXTEND) || need > size_limit) return NULL;
1453       gstring_grow(g, 1);
1454       lim = g->size - 1;
1455       }
1456     g->s[g->ptr++] = (uschar) *fp++;
1457     continue;
1458     }
1459
1460   /* Deal with % characters. Pick off the width and precision, for checking
1461   strings, skipping over the flag and modifier characters. */
1462
1463   item_start = fp;
1464   width = precision = -1;
1465
1466   if (strchr("-+ #0", *(++fp)) != NULL)
1467     {
1468     if (*fp == '#') null = "";
1469     fp++;
1470     }
1471
1472   if (isdigit((uschar)*fp))
1473     {
1474     width = *fp++ - '0';
1475     while (isdigit((uschar)*fp)) width = width * 10 + *fp++ - '0';
1476     }
1477   else if (*fp == '*')
1478     {
1479     width = va_arg(ap, int);
1480     fp++;
1481     }
1482
1483   if (*fp == '.')
1484     if (*(++fp) == '*')
1485       {
1486       precision = va_arg(ap, int);
1487       fp++;
1488       }
1489     else
1490       for (precision = 0; isdigit((uschar)*fp); fp++)
1491         precision = precision*10 + *fp - '0';
1492
1493   /* Skip over 'h', 'L', 'l', 'll' and 'z', remembering the item length */
1494
1495   if (*fp == 'h')
1496     { fp++; length = L_SHORT; }
1497   else if (*fp == 'L')
1498     { fp++; length = L_LONGDOUBLE; }
1499   else if (*fp == 'l')
1500     if (fp[1] == 'l')
1501       { fp += 2; length = L_LONGLONG; }
1502     else
1503       { fp++; length = L_LONG; }
1504   else if (*fp == 'z')
1505     { fp++; length = L_SIZE; }
1506
1507   /* Handle each specific format type. */
1508
1509   switch (*fp++)
1510     {
1511     case 'n':
1512       nptr = va_arg(ap, int *);
1513       *nptr = g->ptr - off;
1514       break;
1515
1516     case 'd':
1517     case 'o':
1518     case 'u':
1519     case 'x':
1520     case 'X':
1521       width = length > L_LONG ? 24 : 12;
1522       if ((need = g->ptr + width) > lim)
1523         {
1524         if (!(flags & SVFMT_EXTEND) || need >= size_limit) return NULL;
1525         gstring_grow(g, width);
1526         lim = g->size - 1;
1527         gp = CS g->s + g->ptr;
1528         }
1529       strncpy(newformat, item_start, fp - item_start);
1530       newformat[fp - item_start] = 0;
1531
1532       /* Short int is promoted to int when passing through ..., so we must use
1533       int for va_arg(). */
1534
1535       switch(length)
1536         {
1537         case L_SHORT:
1538         case L_NORMAL:
1539           g->ptr += sprintf(gp, newformat, va_arg(ap, int)); break;
1540         case L_LONG:
1541           g->ptr += sprintf(gp, newformat, va_arg(ap, long int)); break;
1542         case L_LONGLONG:
1543           g->ptr += sprintf(gp, newformat, va_arg(ap, LONGLONG_T)); break;
1544         case L_SIZE:
1545           g->ptr += sprintf(gp, newformat, va_arg(ap, size_t)); break;
1546         }
1547       break;
1548
1549     case 'p':
1550       {
1551       void * ptr;
1552       if ((need = g->ptr + 24) > lim)
1553         {
1554         if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1555         gstring_grow(g, 24);
1556         lim = g->size - 1;
1557         gp = CS g->s + g->ptr;
1558         }
1559       /* sprintf() saying "(nil)" for a null pointer seems unreliable.
1560       Handle it explicitly. */
1561       if ((ptr = va_arg(ap, void *)))
1562         {
1563         strncpy(newformat, item_start, fp - item_start);
1564         newformat[fp - item_start] = 0;
1565         g->ptr += sprintf(gp, newformat, ptr);
1566         }
1567       else
1568         g->ptr += sprintf(gp, "(nil)");
1569       }
1570     break;
1571
1572     /* %f format is inherently insecure if the numbers that it may be
1573     handed are unknown (e.g. 1e300). However, in Exim, %f is used for
1574     printing load averages, and these are actually stored as integers
1575     (load average * 1000) so the size of the numbers is constrained.
1576     It is also used for formatting sending rates, where the simplicity
1577     of the format prevents overflow. */
1578
1579     case 'f':
1580     case 'e':
1581     case 'E':
1582     case 'g':
1583     case 'G':
1584       if (precision < 0) precision = 6;
1585       if ((need = g->ptr + precision + 8) > lim)
1586         {
1587         if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1588         gstring_grow(g, precision+8);
1589         lim = g->size - 1;
1590         gp = CS g->s + g->ptr;
1591         }
1592       strncpy(newformat, item_start, fp - item_start);
1593       newformat[fp-item_start] = 0;
1594       if (length == L_LONGDOUBLE)
1595         g->ptr += sprintf(gp, newformat, va_arg(ap, long double));
1596       else
1597         g->ptr += sprintf(gp, newformat, va_arg(ap, double));
1598       break;
1599
1600     /* String types */
1601
1602     case '%':
1603       if ((need = g->ptr + 1) > lim)
1604         {
1605         if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1606         gstring_grow(g, 1);
1607         lim = g->size - 1;
1608         }
1609       g->s[g->ptr++] = (uschar) '%';
1610       break;
1611
1612     case 'c':
1613       if ((need = g->ptr + 1) > lim)
1614         {
1615         if (!(flags & SVFMT_EXTEND || need >= size_limit)) return NULL;
1616         gstring_grow(g, 1);
1617         lim = g->size - 1;
1618         }
1619       g->s[g->ptr++] = (uschar) va_arg(ap, int);
1620       break;
1621
1622     case 'D':                   /* Insert daily datestamp for log file names */
1623       s = CS tod_stamp(tod_log_datestamp_daily);
1624       string_datestamp_offset = g->ptr;         /* Passed back via global */
1625       string_datestamp_length = Ustrlen(s);     /* Passed back via global */
1626       string_datestamp_type = tod_log_datestamp_daily;
1627       slen = string_datestamp_length;
1628       goto INSERT_STRING;
1629
1630     case 'M':                   /* Insert monthly datestamp for log file names */
1631       s = CS tod_stamp(tod_log_datestamp_monthly);
1632       string_datestamp_offset = g->ptr;         /* Passed back via global */
1633       string_datestamp_length = Ustrlen(s);     /* Passed back via global */
1634       string_datestamp_type = tod_log_datestamp_monthly;
1635       slen = string_datestamp_length;
1636       goto INSERT_STRING;
1637
1638     case 'Y':                   /* gstring pointer */
1639       {
1640       gstring * zg = va_arg(ap, gstring *);
1641       if (zg) { s = CS zg->s; slen = gstring_length(zg); }
1642       else    { s = null;     slen = Ustrlen(s); }
1643       goto INSERT_GSTRING;
1644       }
1645 #ifndef COMPILE_UTILITY
1646     case 'b':                   /* blob pointer, carrying a string */
1647       {
1648       blob * b = va_arg(ap, blob *);
1649       if (b) { s = CS b->data; slen = b->len; }
1650       else   { s = null;       slen = Ustrlen(s); }
1651       goto INSERT_GSTRING;
1652       }
1653
1654     case 'V':           /* string; maybe convert ascii-art to UTF-8 chars */
1655       {
1656       gstring * zg = NULL;
1657       s = va_arg(ap, char *);
1658       if (IS_DEBUG(D_noutf8))
1659         for ( ; *s; s++)
1660           zg = string_catn(zg, CUS (*s == 'K' ? "|" : s), 1);
1661       else
1662         for ( ; *s; s++) switch (*s)
1663           {
1664           case '\\': zg = string_catn(zg, US UTF8_UP_RIGHT,       3); break;
1665           case '/':  zg = string_catn(zg, US UTF8_DOWN_RIGHT,     3); break;
1666           case '-':
1667           case '_':  zg = string_catn(zg, US UTF8_HORIZ,          3); break;
1668           case '|':  zg = string_catn(zg, US UTF8_VERT,           3); break;
1669           case 'K':  zg = string_catn(zg, US UTF8_VERT_RIGHT,     3); break;
1670           case '<':  zg = string_catn(zg, US UTF8_LEFT_TRIANGLE,  3); break;
1671           case '>':  zg = string_catn(zg, US UTF8_RIGHT_TRIANGLE, 3); break;
1672           default:   zg = string_catn(zg, CUS s, 1);                  break;
1673           }
1674
1675       if (!zg)
1676         break;
1677       s = CS zg->s;
1678       slen = gstring_length(zg);
1679       goto INSERT_GSTRING;
1680       }
1681
1682     case 'W':                   /* Maybe mark up ctrls, spaces & newlines */
1683       s = va_arg(ap, char *);
1684       if (s && !IS_DEBUG(D_noutf8))
1685         {
1686         gstring * zg = NULL;
1687         int p = precision;
1688
1689         /* If a precision was given, we can handle embedded NULs. Take it as
1690         applying to the input and expand it for the transformed result */
1691
1692         for ( ; precision >= 0 || *s; s++)
1693           if (p >= 0 && --p < 0)
1694             break;
1695           else switch (*s)
1696             {
1697             case ' ':
1698               zg = string_catn(zg, CUS UTF8_LIGHT_SHADE, 3);
1699               if (precision >= 0) precision += 2;
1700               break;
1701             case '\n':
1702               zg = string_catn(zg, CUS UTF8_L_ARROW_HOOK "\n", 4);
1703               if (precision >= 0) precision += 3;
1704               break;
1705             default:
1706               if (*s <= ' ')
1707                 {       /* base of UTF8 symbols for ASCII control chars */
1708                 uschar ctrl_symbol[3] = {[0]=0xe2, [1]=0x90, [2]=0x80};
1709                 ctrl_symbol[2] |= *s;
1710                 zg = string_catn(zg, ctrl_symbol, 3);
1711                 if (precision >= 0) precision += 2;
1712                 }
1713               else
1714                 zg = string_catn(zg, CUS s, 1);
1715               break;
1716             }
1717         if (zg) { s = CS zg->s; slen = gstring_length(zg); }
1718         else    { s = "";       slen = 0; }
1719         }
1720       else
1721         {
1722         if (!s) s = null;
1723         slen = Ustrlen(s);
1724         }
1725       goto INSERT_GSTRING;
1726
1727     case 'Z':                   /* pdkim-style "quoteprint" */
1728         {
1729         gstring * zg = NULL;
1730         int p = precision;      /* If given, we can handle embedded NULs */
1731
1732         s = va_arg(ap, char *);
1733         for ( ; precision >= 0 || *s; s++)
1734           if (p >= 0 && --p < 0)
1735             break;
1736           else switch (*s)
1737             {
1738             case ' ' : zg = string_catn(zg, US"{SP}", 4); break;
1739             case '\t': zg = string_catn(zg, US"{TB}", 4); break;
1740             case '\r': zg = string_catn(zg, US"{CR}", 4); break;
1741             case '\n': zg = string_catn(zg, US"{LF}", 4); break;
1742             case '{' : zg = string_catn(zg, US"{BO}", 4); break;
1743             case '}' : zg = string_catn(zg, US"{BC}", 4); break;
1744             default:
1745               {
1746               uschar u = *s;
1747               if ( (u < 32) || (u > 127) )
1748                 zg = string_fmt_append(zg, "{%02x}", u);
1749               else
1750                 zg = string_catn(zg, US s, 1);
1751               break;
1752               }
1753             }
1754         if (zg) { s = CS zg->s; precision = slen = gstring_length(zg); }
1755         else    { s = "";       slen = 0; }
1756         }
1757       goto INSERT_GSTRING;
1758
1759     case 'H':                   /* pdkim-style "hexprint" */
1760       {
1761       s = va_arg(ap, char *);
1762       if (precision < 0) break; /* precision must be given */
1763       if (s)
1764         {
1765         gstring * zg = NULL;
1766         for (int p = precision; p > 0; p--)
1767           zg = string_fmt_append(zg, "%02x", * US s++);
1768
1769         if (zg) { s = CS zg->s; precision = slen = gstring_length(zg); }
1770         else    { s = "";       slen = 0; }
1771         }
1772       else
1773         { s = "<NULL>"; precision = slen = 6; }
1774       }
1775       goto INSERT_GSTRING;
1776
1777 #endif
1778     case 's':
1779     case 'S':                   /* Forces *lower* case */
1780     case 'T':                   /* Forces *upper* case */
1781       s = va_arg(ap, char *);
1782
1783       if (!s) s = null;
1784       slen = Ustrlen(s);
1785
1786     INSERT_GSTRING:             /* Come to from %Y above */
1787
1788       if (!(flags & SVFMT_TAINT_NOCHK) && is_incompatible(g->s, s))
1789         if (flags & SVFMT_REBUFFER)
1790           {
1791 /* debug_printf("%s %d: untainted workarea, tainted %%s :- rebuffer\n", __FUNCTION__, __LINE__); */
1792           gstring_rebuffer(g, s);
1793           gp = CS g->s + g->ptr;
1794           }
1795 #ifndef MACRO_PREDEF
1796         else
1797           die_tainted(US"string_vformat", func, line);
1798 #endif
1799
1800     INSERT_STRING:              /* Come to from %D or %M above */
1801
1802       {
1803       BOOL truncated = FALSE;
1804
1805       /* If the width is specified, check that there is a precision
1806       set; if not, set it to the width to prevent overruns of long
1807       strings. */
1808
1809       if (width >= 0)
1810         {
1811         if (precision < 0) precision = width;
1812         }
1813
1814       /* If a width is not specified and the precision is specified, set
1815       the width to the precision, or the string length if shorter. */
1816
1817       else if (precision >= 0)
1818         width = precision < slen ? precision : slen;
1819
1820       /* If neither are specified, set them both to the string length. */
1821
1822       else
1823         width = precision = slen;
1824
1825       if ((need = g->ptr + width) >= size_limit || !(flags & SVFMT_EXTEND))
1826         {
1827         if (g->ptr == lim) return NULL;
1828         if (need > lim)
1829           {
1830           truncated = TRUE;
1831           width = precision = lim - g->ptr - 1;
1832           if (width < 0) width = 0;
1833           if (precision < 0) precision = 0;
1834           }
1835         }
1836       else if (need > lim)
1837         {
1838         gstring_grow(g, width);
1839         lim = g->size - 1;
1840         gp = CS g->s + g->ptr;
1841         }
1842
1843       g->ptr += sprintf(gp, "%*.*s", width, precision, s);
1844       if (fp[-1] == 'S')
1845         while (*gp) { *gp = tolower(*gp); gp++; }
1846       else if (fp[-1] == 'T')
1847         while (*gp) { *gp = toupper(*gp); gp++; }
1848
1849       if (truncated) return NULL;
1850       break;
1851       }
1852
1853     /* Some things are never used in Exim; also catches junk. */
1854
1855     default:
1856       strncpy(newformat, item_start, fp - item_start);
1857       newformat[fp-item_start] = 0;
1858       log_write(0, LOG_MAIN|LOG_PANIC_DIE, "string_format: unsupported type "
1859         "in \"%s\" in \"%s\"", newformat, format);
1860       break;
1861     }
1862   }
1863
1864 if (g->ptr > g->size)
1865   log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1866     "string_format internal error: caller %s %d", func, line);
1867 return g;
1868 }
1869
1870
1871
1872 #ifndef COMPILE_UTILITY
1873 /*************************************************
1874 *       Generate an "open failed" message        *
1875 *************************************************/
1876
1877 /* This function creates a message after failure to open a file. It includes a
1878 string supplied as data, adds the strerror() text, and if the failure was
1879 "Permission denied", reads and includes the euid and egid.
1880
1881 Arguments:
1882   format        a text format string - deliberately not uschar *
1883   func          caller, for debug
1884   line          caller, for debug
1885   ...           arguments for the format string
1886
1887 Returns:        a message, in dynamic store
1888 */
1889
1890 uschar *
1891 string_open_failed_trc(const uschar * func, unsigned line,
1892   const char * format, ...)
1893 {
1894 va_list ap;
1895 gstring * g = string_get(1024);
1896
1897 g = string_catn(g, US"failed to open ", 15);
1898
1899 /* Use the checked formatting routine to ensure that the buffer
1900 does not overflow. It should not, since this is called only for internally
1901 specified messages. If it does, the message just gets truncated, and there
1902 doesn't seem much we can do about that. */
1903
1904 va_start(ap, format);
1905 (void) string_vformat_trc(g, func, line, STRING_SPRINTF_BUFFER_SIZE,
1906         SVFMT_REBUFFER, format, ap);
1907 va_end(ap);
1908
1909 g = string_catn(g, US": ", 2);
1910 g = string_cat(g, US strerror(errno));
1911
1912 if (errno == EACCES)
1913   {
1914   int save_errno = errno;
1915   g = string_fmt_append(g, " (euid=%ld egid=%ld)",
1916     (long int)geteuid(), (long int)getegid());
1917   errno = save_errno;
1918   }
1919 gstring_release_unused(g);
1920 return string_from_gstring(g);
1921 }
1922
1923
1924
1925
1926
1927 /* qsort(3), currently used to sort the environment variables
1928 for -bP environment output, needs a function to compare two pointers to string
1929 pointers. Here it is. */
1930
1931 int
1932 string_compare_by_pointer(const void *a, const void *b)
1933 {
1934 return Ustrcmp(* CUSS a, * CUSS b);
1935 }
1936 #endif /* COMPILE_UTILITY */
1937
1938
1939
1940
1941 /*************************************************
1942 **************************************************
1943 *             Stand-alone test program           *
1944 **************************************************
1945 *************************************************/
1946
1947 #ifdef STAND_ALONE
1948 int main(void)
1949 {
1950 uschar buffer[256];
1951
1952 printf("Testing is_ip_address\n");
1953 store_init();
1954
1955 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
1956   {
1957   int offset;
1958   buffer[Ustrlen(buffer) - 1] = 0;
1959   printf("%d\n", string_is_ip_address(buffer, NULL));
1960   printf("%d %d %s\n", string_is_ip_address(buffer, &offset), offset, buffer);
1961   }
1962
1963 printf("Testing string_nextinlist\n");
1964
1965 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
1966   {
1967   uschar *list = buffer;
1968   uschar *lp1, *lp2;
1969   uschar item[256];
1970   int sep1 = 0;
1971   int sep2 = 0;
1972
1973   if (*list == '<')
1974     {
1975     sep1 = sep2 = list[1];
1976     list += 2;
1977     }
1978
1979   lp1 = lp2 = list;
1980   for (;;)
1981     {
1982     uschar *item1 = string_nextinlist(&lp1, &sep1, item, sizeof(item));
1983     uschar *item2 = string_nextinlist(&lp2, &sep2, NULL, 0);
1984
1985     if (item1 == NULL && item2 == NULL) break;
1986     if (item == NULL || item2 == NULL || Ustrcmp(item1, item2) != 0)
1987       {
1988       printf("***ERROR\nitem1=\"%s\"\nitem2=\"%s\"\n",
1989         (item1 == NULL)? "NULL" : CS item1,
1990         (item2 == NULL)? "NULL" : CS item2);
1991       break;
1992       }
1993     else printf("  \"%s\"\n", CS item1);
1994     }
1995   }
1996
1997 /* This is a horrible lash-up, but it serves its purpose. */
1998
1999 printf("Testing string_format\n");
2000
2001 while (fgets(CS buffer, sizeof(buffer), stdin) != NULL)
2002   {
2003   void *args[3];
2004   long long llargs[3];
2005   double dargs[3];
2006   int dflag = 0;
2007   int llflag = 0;
2008   int n = 0;
2009   int count;
2010   BOOL countset = FASE;
2011   uschar format[256];
2012   uschar outbuf[256];
2013   uschar *s;
2014   buffer[Ustrlen(buffer) - 1] = 0;
2015
2016   s = Ustrchr(buffer, ',');
2017   if (s == NULL) s = buffer + Ustrlen(buffer);
2018
2019   Ustrncpy(format, buffer, s - buffer);
2020   format[s-buffer] = 0;
2021
2022   if (*s == ',') s++;
2023
2024   while (*s != 0)
2025     {
2026     uschar *ss = s;
2027     s = Ustrchr(ss, ',');
2028     if (s == NULL) s = ss + Ustrlen(ss);
2029
2030     if (isdigit(*ss))
2031       {
2032       Ustrncpy(outbuf, ss, s-ss);
2033       if (Ustrchr(outbuf, '.') != NULL)
2034         {
2035         dflag = 1;
2036         dargs[n++] = Ustrtod(outbuf, NULL);
2037         }
2038       else if (Ustrstr(outbuf, "ll") != NULL)
2039         {
2040         llflag = 1;
2041         llargs[n++] = strtoull(CS outbuf, NULL, 10);
2042         }
2043       else
2044         {
2045         args[n++] = (void *)Uatoi(outbuf);
2046         }
2047       }
2048
2049     else if (Ustrcmp(ss, "*") == 0)
2050       {
2051       args[n++] = (void *)(&count);
2052       countset = TRUE;
2053       }
2054
2055     else
2056       {
2057       uschar *sss = malloc(s - ss + 1);
2058       Ustrncpy(sss, ss, s-ss);
2059       args[n++] = sss;
2060       }
2061
2062     if (*s == ',') s++;
2063     }
2064
2065   if (!dflag && !llflag)
2066     printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
2067       args[0], args[1], args[2])? "True" : "False");
2068
2069   else if (dflag)
2070     printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
2071       dargs[0], dargs[1], dargs[2])? "True" : "False");
2072
2073   else printf("%s\n", string_format(outbuf, sizeof(outbuf), CS format,
2074     llargs[0], llargs[1], llargs[2])? "True" : "False");
2075
2076   printf("%s\n", CS outbuf);
2077   if (countset) printf("count=%d\n", count);
2078   }
2079
2080 return 0;
2081 }
2082 #endif
2083
2084 /* End of string.c */
2085 /* vi: aw ai sw=2
2086 */