11a4e73baSPoul-Henning Kamp /*-
2*51369649SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
3*51369649SPedro F. Giffuni *
41a4e73baSPoul-Henning Kamp * Copyright (c) 1990, 1993
51a4e73baSPoul-Henning Kamp * The Regents of the University of California. All rights reserved.
61a4e73baSPoul-Henning Kamp *
71a4e73baSPoul-Henning Kamp * This code is derived from software contributed to Berkeley by
81a4e73baSPoul-Henning Kamp * Chris Torek.
91a4e73baSPoul-Henning Kamp *
101a4e73baSPoul-Henning Kamp * Redistribution and use in source and binary forms, with or without
111a4e73baSPoul-Henning Kamp * modification, are permitted provided that the following conditions
121a4e73baSPoul-Henning Kamp * are met:
131a4e73baSPoul-Henning Kamp * 1. Redistributions of source code must retain the above copyright
141a4e73baSPoul-Henning Kamp * notice, this list of conditions and the following disclaimer.
151a4e73baSPoul-Henning Kamp * 2. Redistributions in binary form must reproduce the above copyright
161a4e73baSPoul-Henning Kamp * notice, this list of conditions and the following disclaimer in the
171a4e73baSPoul-Henning Kamp * documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
191a4e73baSPoul-Henning Kamp * may be used to endorse or promote products derived from this software
201a4e73baSPoul-Henning Kamp * without specific prior written permission.
211a4e73baSPoul-Henning Kamp *
221a4e73baSPoul-Henning Kamp * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
231a4e73baSPoul-Henning Kamp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241a4e73baSPoul-Henning Kamp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251a4e73baSPoul-Henning Kamp * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
261a4e73baSPoul-Henning Kamp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
271a4e73baSPoul-Henning Kamp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
281a4e73baSPoul-Henning Kamp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291a4e73baSPoul-Henning Kamp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301a4e73baSPoul-Henning Kamp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311a4e73baSPoul-Henning Kamp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321a4e73baSPoul-Henning Kamp * SUCH DAMAGE.
331a4e73baSPoul-Henning Kamp */
341a4e73baSPoul-Henning Kamp
351a4e73baSPoul-Henning Kamp #include <sys/param.h>
361a4e73baSPoul-Henning Kamp #include <sys/systm.h>
371a4e73baSPoul-Henning Kamp #include <sys/ctype.h>
38104a9b7eSAlexander Kabaev #include <sys/limits.h>
391a4e73baSPoul-Henning Kamp
401a4e73baSPoul-Henning Kamp /*
411a4e73baSPoul-Henning Kamp * Convert a string to an unsigned long integer.
421a4e73baSPoul-Henning Kamp *
431a4e73baSPoul-Henning Kamp * Ignores `locale' stuff. Assumes that the upper and lower case
441a4e73baSPoul-Henning Kamp * alphabets and digits are each contiguous.
451a4e73baSPoul-Henning Kamp */
461a4e73baSPoul-Henning Kamp unsigned long
strtoul(const char * nptr,char ** endptr,int base)474a8dea8cSEd Maste strtoul(const char *nptr, char **endptr, int base)
481a4e73baSPoul-Henning Kamp {
491a4e73baSPoul-Henning Kamp const char *s = nptr;
501a4e73baSPoul-Henning Kamp unsigned long acc;
511a4e73baSPoul-Henning Kamp unsigned char c;
521a4e73baSPoul-Henning Kamp unsigned long cutoff;
531a4e73baSPoul-Henning Kamp int neg = 0, any, cutlim;
541a4e73baSPoul-Henning Kamp
551a4e73baSPoul-Henning Kamp /*
561a4e73baSPoul-Henning Kamp * See strtol for comments as to the logic used.
571a4e73baSPoul-Henning Kamp */
581a4e73baSPoul-Henning Kamp do {
591a4e73baSPoul-Henning Kamp c = *s++;
601a4e73baSPoul-Henning Kamp } while (isspace(c));
611a4e73baSPoul-Henning Kamp if (c == '-') {
621a4e73baSPoul-Henning Kamp neg = 1;
631a4e73baSPoul-Henning Kamp c = *s++;
641a4e73baSPoul-Henning Kamp } else if (c == '+')
651a4e73baSPoul-Henning Kamp c = *s++;
661a4e73baSPoul-Henning Kamp if ((base == 0 || base == 16) &&
671a4e73baSPoul-Henning Kamp c == '0' && (*s == 'x' || *s == 'X')) {
681a4e73baSPoul-Henning Kamp c = s[1];
691a4e73baSPoul-Henning Kamp s += 2;
701a4e73baSPoul-Henning Kamp base = 16;
711a4e73baSPoul-Henning Kamp }
721a4e73baSPoul-Henning Kamp if (base == 0)
731a4e73baSPoul-Henning Kamp base = c == '0' ? 8 : 10;
741a4e73baSPoul-Henning Kamp cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
751a4e73baSPoul-Henning Kamp cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
761a4e73baSPoul-Henning Kamp for (acc = 0, any = 0;; c = *s++) {
771a4e73baSPoul-Henning Kamp if (!isascii(c))
781a4e73baSPoul-Henning Kamp break;
791a4e73baSPoul-Henning Kamp if (isdigit(c))
801a4e73baSPoul-Henning Kamp c -= '0';
811a4e73baSPoul-Henning Kamp else if (isalpha(c))
821a4e73baSPoul-Henning Kamp c -= isupper(c) ? 'A' - 10 : 'a' - 10;
831a4e73baSPoul-Henning Kamp else
841a4e73baSPoul-Henning Kamp break;
851a4e73baSPoul-Henning Kamp if (c >= base)
861a4e73baSPoul-Henning Kamp break;
871a4e73baSPoul-Henning Kamp if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
881a4e73baSPoul-Henning Kamp any = -1;
891a4e73baSPoul-Henning Kamp else {
901a4e73baSPoul-Henning Kamp any = 1;
911a4e73baSPoul-Henning Kamp acc *= base;
921a4e73baSPoul-Henning Kamp acc += c;
931a4e73baSPoul-Henning Kamp }
941a4e73baSPoul-Henning Kamp }
951a4e73baSPoul-Henning Kamp if (any < 0) {
961a4e73baSPoul-Henning Kamp acc = ULONG_MAX;
971a4e73baSPoul-Henning Kamp } else if (neg)
981a4e73baSPoul-Henning Kamp acc = -acc;
99b85f65afSPedro F. Giffuni if (endptr != NULL)
1000b77a417SDimitry Andric *endptr = __DECONST(char *, any ? s - 1 : nptr);
1011a4e73baSPoul-Henning Kamp return (acc);
1021a4e73baSPoul-Henning Kamp }
103