11573Srgrimes/*-
21573Srgrimes * Copyright (c) 1992, 1993
31573Srgrimes *	The Regents of the University of California.  All rights reserved.
41573Srgrimes *
5227753Stheraven * Copyright (c) 2011 The FreeBSD Foundation
6227753Stheraven * All rights reserved.
7227753Stheraven * Portions of this software were developed by David Chisnall
8227753Stheraven * under sponsorship from the FreeBSD Foundation.
9227753Stheraven *
101573Srgrimes * Redistribution and use in source and binary forms, with or without
111573Srgrimes * modification, are permitted provided that the following conditions
121573Srgrimes * are met:
131573Srgrimes * 1. Redistributions of source code must retain the above copyright
141573Srgrimes *    notice, this list of conditions and the following disclaimer.
151573Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
161573Srgrimes *    notice, this list of conditions and the following disclaimer in the
171573Srgrimes *    documentation and/or other materials provided with the distribution.
18251672Semaste * 3. Neither the name of the University nor the names of its contributors
191573Srgrimes *    may be used to endorse or promote products derived from this software
201573Srgrimes *    without specific prior written permission.
211573Srgrimes *
221573Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
231573Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241573Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251573Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
261573Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
271573Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
281573Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291573Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301573Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311573Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321573Srgrimes * SUCH DAMAGE.
331573Srgrimes */
341573Srgrimes
351573Srgrimes#if defined(LIBC_SCCS) && !defined(lint)
361573Srgrimesstatic char sccsid[] = "@(#)strtouq.c	8.1 (Berkeley) 6/4/93";
371573Srgrimes#endif /* LIBC_SCCS and not lint */
3892986Sobrien#include <sys/cdefs.h>
3992986Sobrien__FBSDID("$FreeBSD$");
401573Srgrimes
411573Srgrimes#include <limits.h>
421573Srgrimes#include <errno.h>
431573Srgrimes#include <ctype.h>
441573Srgrimes#include <stdlib.h>
45227753Stheraven#include "xlocale_private.h"
461573Srgrimes
471573Srgrimes/*
4873152Sobrien * Convert a string to an unsigned long long integer.
491573Srgrimes *
5082975Sache * Assumes that the upper and lower case
511573Srgrimes * alphabets and digits are each contiguous.
521573Srgrimes */
5373152Sobrienunsigned long long
54227753Stheravenstrtoull_l(const char * __restrict nptr, char ** __restrict endptr, int base,
55227753Stheraven		locale_t locale)
561573Srgrimes{
5787016Sache	const char *s;
5887016Sache	unsigned long long acc;
5987494Sache	char c;
6087016Sache	unsigned long long cutoff;
6187494Sache	int neg, any, cutlim;
62227753Stheraven	FIX_LOCALE(locale);
631573Srgrimes
641573Srgrimes	/*
651573Srgrimes	 * See strtoq for comments as to the logic used.
661573Srgrimes	 */
671573Srgrimes	s = nptr;
681573Srgrimes	do {
691573Srgrimes		c = *s++;
70227753Stheraven	} while (isspace_l((unsigned char)c, locale));
711573Srgrimes	if (c == '-') {
721573Srgrimes		neg = 1;
731573Srgrimes		c = *s++;
748870Srgrimes	} else {
751573Srgrimes		neg = 0;
761573Srgrimes		if (c == '+')
771573Srgrimes			c = *s++;
781573Srgrimes	}
791573Srgrimes	if ((base == 0 || base == 16) &&
80140536Sache	    c == '0' && (*s == 'x' || *s == 'X') &&
81140577Sache	    ((s[1] >= '0' && s[1] <= '9') ||
82140577Sache	    (s[1] >= 'A' && s[1] <= 'F') ||
83140577Sache	    (s[1] >= 'a' && s[1] <= 'f'))) {
841573Srgrimes		c = s[1];
851573Srgrimes		s += 2;
861573Srgrimes		base = 16;
871573Srgrimes	}
881573Srgrimes	if (base == 0)
891573Srgrimes		base = c == '0' ? 8 : 10;
9082982Sache	acc = any = 0;
9187023Sfenner	if (base < 2 || base > 36)
9282975Sache		goto noconv;
9382975Sache
9482975Sache	cutoff = ULLONG_MAX / base;
9582975Sache	cutlim = ULLONG_MAX % base;
9682982Sache	for ( ; ; c = *s++) {
9787494Sache		if (c >= '0' && c <= '9')
9887494Sache			c -= '0';
9987494Sache		else if (c >= 'A' && c <= 'Z')
10087494Sache			c -= 'A' - 10;
10187494Sache		else if (c >= 'a' && c <= 'z')
10287494Sache			c -= 'a' - 10;
1031573Srgrimes		else
1041573Srgrimes			break;
10587494Sache		if (c >= base)
1061573Srgrimes			break;
10787494Sache		if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
1081573Srgrimes			any = -1;
1091573Srgrimes		else {
1101573Srgrimes			any = 1;
11182975Sache			acc *= base;
11287494Sache			acc += c;
1131573Srgrimes		}
1141573Srgrimes	}
1151573Srgrimes	if (any < 0) {
11673152Sobrien		acc = ULLONG_MAX;
1171573Srgrimes		errno = ERANGE;
11882975Sache	} else if (!any) {
11982975Sachenoconv:
12082975Sache		errno = EINVAL;
1211573Srgrimes	} else if (neg)
1221573Srgrimes		acc = -acc;
12382975Sache	if (endptr != NULL)
1241573Srgrimes		*endptr = (char *)(any ? s - 1 : nptr);
1251573Srgrimes	return (acc);
1261573Srgrimes}
127227753Stheravenunsigned long long
128227753Stheravenstrtoull(const char * __restrict nptr, char ** __restrict endptr, int base)
129227753Stheraven{
130227753Stheraven	return strtoull_l(nptr, endptr, base, __get_locale());
131227753Stheraven}
132