replace strtol implementation with one that works
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 20 Feb 1994 00:41:49 +0000 (16:41 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 20 Feb 1994 00:41:49 +0000 (16:41 -0800)
SCCS-vsn: usr.sbin/sendmail/src/conf.c 8.77

usr/src/usr.sbin/sendmail/src/conf.c

index fb15fc5..1645e42 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)conf.c     8.76 (Berkeley) %G%";
+static char sccsid[] = "@(#)conf.c     8.77 (Berkeley) %G%";
 #endif /* not lint */
 
 # include "sendmail.h"
 #endif /* not lint */
 
 # include "sendmail.h"
@@ -1978,46 +1978,104 @@ setvendor(vendor)
 **  STRTOL -- convert string to long integer
 **
 **     For systems that don't have it in the C library.
 **  STRTOL -- convert string to long integer
 **
 **     For systems that don't have it in the C library.
+**
+**     This is taken verbatim from the 4.4-Lite C library.
 */
 
 #ifdef NEEDSTRTOL
 
 */
 
 #ifdef NEEDSTRTOL
 
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)strtol.c   8.1 (Berkeley) 6/4/93";
+#endif /* LIBC_SCCS and not lint */
+
+#include <limits.h>
+
+/*
+ * Convert a string to a long integer.
+ *
+ * Ignores `locale' stuff.  Assumes that the upper and lower case
+ * alphabets and digits are each contiguous.
+ */
+
 long
 long
-strtol(p, ep, b)
-       char *p;
-       char **ep;
-       int b;
+strtol(nptr, endptr, base)
+       const char *nptr;
+       char **endptr;
+       register int base;
 {
 {
-       long l = 0;
-       char c;
-       char maxd;
-       int neg = 1;
-
-       maxd = (b > 10) ? '9' : b + '0';
+       register const char *s = nptr;
+       register unsigned long acc;
+       register int c;
+       register unsigned long cutoff;
+       register int neg = 0, any, cutlim;
 
 
-       if (p && *p == '-') {
-               neg = -1;
-               p++;
+       /*
+        * Skip white space and pick up leading +/- sign if any.
+        * If base is 0, allow 0x for hex and 0 for octal, else
+        * assume decimal; if base is already 16, allow 0x.
+        */
+       do {
+               c = *s++;
+       } while (isspace(c));
+       if (c == '-') {
+               neg = 1;
+               c = *s++;
+       } else if (c == '+')
+               c = *s++;
+       if ((base == 0 || base == 16) &&
+           c == '0' && (*s == 'x' || *s == 'X')) {
+               c = s[1];
+               s += 2;
+               base = 16;
        }
        }
-       while (p && (c = *p)) {
-               if (c >= '0' && c <= maxd) {
-                       l = l*b + *p++ - '0';
-                       continue;
-               }
-               if (c >= 'A' && c <= 'Z')
-                       c -= 'A' + 'a';
-               c = c - 'a' + 10;
-               if (b > c) {
-                       l = l*b + c;
-                       p++;
-                       continue;
+       if (base == 0)
+               base = c == '0' ? 8 : 10;
+
+       /*
+        * Compute the cutoff value between legal numbers and illegal
+        * numbers.  That is the largest legal value, divided by the
+        * base.  An input number that is greater than this value, if
+        * followed by a legal input character, is too big.  One that
+        * is equal to this value may be valid or not; the limit
+        * between valid and invalid numbers is then based on the last
+        * digit.  For instance, if the range for longs is
+        * [-2147483648..2147483647] and the input base is 10,
+        * cutoff will be set to 214748364 and cutlim to either
+        * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
+        * a value > 214748364, or equal but the next digit is > 7 (or 8),
+        * the number is too big, and we will return a range error.
+        *
+        * Set any if any `digits' consumed; make it negative to indicate
+        * overflow.
+        */
+       cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
+       cutlim = cutoff % (unsigned long)base;
+       cutoff /= (unsigned long)base;
+       for (acc = 0, any = 0;; c = *s++) {
+               if (isdigit(c))
+                       c -= '0';
+               else if (isalpha(c))
+                       c -= isupper(c) ? 'A' - 10 : 'a' - 10;
+               else
+                       break;
+               if (c >= base)
+                       break;
+               if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
+                       any = -1;
+               else {
+                       any = 1;
+                       acc *= base;
+                       acc += c;
                }
                }
-               break;
        }
        }
-       l *= neg;
-       if (ep)
-               *ep = p;
-       return l;
+       if (any < 0) {
+               acc = neg ? LONG_MIN : LONG_MAX;
+               errno = ERANGE;
+       } else if (neg)
+               acc = -acc;
+       if (endptr != 0)
+               *endptr = (char *)(any ? s - 1 : nptr);
+       return (acc);
 }
 
 #endif
 }
 
 #endif