xref: /dragonfly/lib/libc/citrus/_strtol.h (revision f9993810)
1 /* $FreeBSD: head/lib/libc/iconv/_strtol.h 219019 2011-02-25 00:04:39Z gabor $ */
2 /* $NetBSD: _strtol.h,v 1.2 2009/05/20 22:03:29 christos Exp $ */
3 
4 /*-
5  * Copyright (c) 1990, 1993
6  *	The Regents of the University of California.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * Original version ID:
33  * NetBSD: src/lib/libc/locale/_wcstol.h,v 1.2 2003/08/07 16:43:03 agc Exp
34  */
35 
36 /*
37  * function template for strtol, strtoll and strtoimax.
38  *
39  * parameters:
40  *	_FUNCNAME : function name
41  *      __INT     : return type
42  *      INT_MIN : lower limit of the return type
43  *      INT_MAX : upper limit of the return type
44  */
45 
46 __INT
47 _FUNCNAME(const char *nptr, char **endptr, int base)
48 {
49 	const char *s;
50 	__INT acc, cutoff;
51 	unsigned char c;
52 	int any, cutlim, i, neg;
53 
54 	/* check base value */
55 	if (base && (base < 2 || base > 36)) {
56 #if !defined(_KERNEL) && !defined(_STANDALONE)
57 		errno = EINVAL;
58 		if (endptr != NULL)
59 			/* LINTED interface specification */
60 			*endptr = __DECONST(void *, nptr);
61 		return (0);
62 #else
63 		panic("%s: invalid base %d", __func__, base);
64 #endif
65 	}
66 
67 	/*
68 	 * Skip white space and pick up leading +/- sign if any.
69 	 * If base is 0, allow 0x for hex and 0 for octal, else
70 	 * assume decimal; if base is already 16, allow 0x.
71 	 */
72 	s = nptr;
73 	do {
74 		c = *s++;
75 	} while (isspace(c));
76 	if (c == '-') {
77 		neg = 1;
78 		c = *s++;
79 	} else {
80 		neg = 0;
81 		if (c == '+')
82 			c = *s++;
83 	}
84 	if ((base == 0 || base == 16) &&
85 	    c == '0' &&
86 	    (*s == 'x' || *s == 'X') &&
87 	    isxdigit((unsigned char)s[1]))
88 	{
89 		c = s[1];
90 		s += 2;
91 		base = 16;
92 	}
93 	if (base == 0)
94 		base = (c == '0' ? 8 : 10);
95 
96 	/*
97 	 * Compute the cutoff value between legal numbers and illegal
98 	 * numbers.  That is the largest legal value, divided by the
99 	 * base.  An input number that is greater than this value, if
100 	 * followed by a legal input character, is too big.  One that
101 	 * is equal to this value may be valid or not; the limit
102 	 * between valid and invalid numbers is then based on the last
103 	 * digit.  For instance, if the range for longs is
104 	 * [-2147483648..2147483647] and the input base is 10,
105 	 * cutoff will be set to 214748364 and cutlim to either
106 	 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
107 	 * a value > 214748364, or equal but the next digit is > 7 (or 8),
108 	 * the number is too big, and we will return a range error.
109 	 *
110 	 * Set any if any `digits' consumed; make it negative to indicate
111 	 * overflow.
112 	 */
113 	cutoff = (neg ? INT_MIN : INT_MAX);
114 	cutlim = (int)(cutoff % base);
115 	cutoff /= base;
116 	if (neg) {
117 		if (cutlim > 0) {
118 			cutlim -= base;
119 			cutoff += 1;
120 		}
121 		cutlim = -cutlim;
122 	}
123 	for (acc = 0, any = 0;; c = *s++) {
124 		if (isdigit(c))
125 			i = c - '0';
126 		else if (isalpha(c))
127 			i = c - (isupper(c) ? 'A' - 10 : 'a' - 10);
128 		else
129 			break;
130 		if (i >= base)
131 			break;
132 		if (any < 0)
133 			continue;
134 		if (neg) {
135 			if (acc < cutoff || (acc == cutoff && i > cutlim)) {
136 				acc = INT_MIN;
137 #if !defined(_KERNEL) && !defined(_STANDALONE)
138 				any = -1;
139 				errno = ERANGE;
140 #else
141 				any = 0;
142 				break;
143 #endif
144 			} else {
145 				any = 1;
146 				acc *= base;
147 				acc -= i;
148 			}
149 		} else {
150 			if (acc > cutoff || (acc == cutoff && i > cutlim)) {
151 				acc = INT_MAX;
152 #if !defined(_KERNEL) && !defined(_STANDALONE)
153 				any = -1;
154 				errno = ERANGE;
155 #else
156 				any = 0;
157 				break;
158 #endif
159 			} else {
160 				any = 1;
161 				acc *= base;
162 				acc += i;
163 			}
164 		}
165 	}
166 	if (endptr != NULL)
167 		/* LINTED interface specification */
168 		*endptr = __DECONST(void *, any ? s - 1 : nptr);
169 	return(acc);
170 }
171