Merge from vendor branch OPENSSL:
[dragonfly.git] / contrib / bind-9.3 / lib / isc / strtoul.c
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2003  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /*
19  * Copyright (c) 1990, 1993
20  *      The Regents of the University of California.  All rights reserved.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the above copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *      This product includes software developed by the University of
33  *      California, Berkeley and its contributors.
34  * 4. Neither the name of the University nor the names of its contributors
35  *    may be used to endorse or promote products derived from this software
36  *    without specific prior written permission.
37  *
38  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
39  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
41  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
42  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
43  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
44  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
45  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
46  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
47  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
48  * SUCH DAMAGE.
49  */
50
51 #if defined(LIBC_SCCS) && !defined(lint)
52 static char sccsid[] = "@(#)strtoul.c   8.1 (Berkeley) 6/4/93";
53 #endif /* LIBC_SCCS and not lint */
54
55 /* $Id: strtoul.c,v 1.2.14.3 2004/03/06 08:14:36 marka Exp $ */
56
57 #include <config.h>
58
59 #include <limits.h>
60 #include <ctype.h>
61 #include <errno.h>
62
63 #include <isc/stdlib.h>
64 #include <isc/util.h>
65
66 /*
67  * Convert a string to an unsigned long integer.
68  *
69  * Ignores `locale' stuff.  Assumes that the upper and lower case
70  * alphabets and digits are each contiguous.
71  */
72 unsigned long
73 isc_strtoul(const char *nptr, char **endptr, int base) {
74         const char *s = nptr;
75         unsigned long acc;
76         unsigned char c;
77         unsigned long cutoff;
78         int neg = 0, any, cutlim;
79
80         /*
81          * See strtol for comments as to the logic used.
82          */
83         do {
84                 c = *s++;
85         } while (isspace(c));
86         if (c == '-') {
87                 neg = 1;
88                 c = *s++;
89         } else if (c == '+')
90                 c = *s++;
91         if ((base == 0 || base == 16) &&
92             c == '0' && (*s == 'x' || *s == 'X')) {
93                 c = s[1];
94                 s += 2;
95                 base = 16;
96         }
97         if (base == 0)
98                 base = c == '0' ? 8 : 10;
99         cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
100         cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
101         for (acc = 0, any = 0;; c = *s++) {
102                 if (!isascii(c))
103                         break;
104                 if (isdigit(c))
105                         c -= '0';
106                 else if (isalpha(c))
107                         c -= isupper(c) ? 'A' - 10 : 'a' - 10;
108                 else
109                         break;
110                 if (c >= base)
111                         break;
112                 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
113                         any = -1;
114                 else {
115                         any = 1;
116                         acc *= base;
117                         acc += c;
118                 }
119         }
120         if (any < 0) {
121                 acc = ULONG_MAX;
122                 errno = ERANGE;
123         } else if (neg)
124                 acc = -acc;
125         if (endptr != 0)
126                 DE_CONST(any ? s - 1 : nptr, *endptr);
127         return (acc);
128 }