2015-12-04 22:27:39 +00:00
|
|
|
/*
|
|
|
|
* linux/lib/vsprintf.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
|
|
|
|
/*
|
|
|
|
* Wirzenius wrote this portably, Torvalds fucked it up :-)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <errno.h>
|
2023-01-17 17:47:14 +00:00
|
|
|
#include <malloc.h>
|
2015-12-04 22:27:39 +00:00
|
|
|
#include <linux/ctype.h>
|
|
|
|
|
2017-09-11 20:53:08 +00:00
|
|
|
/* from lib/kstrtox.c */
|
2021-07-24 15:03:38 +00:00
|
|
|
static const char *_parse_integer_fixup_radix(const char *s, uint *basep)
|
2017-09-11 20:53:08 +00:00
|
|
|
{
|
2021-07-24 15:03:38 +00:00
|
|
|
/* Look for a 0x prefix */
|
|
|
|
if (s[0] == '0') {
|
|
|
|
int ch = tolower(s[1]);
|
|
|
|
|
|
|
|
if (ch == 'x') {
|
|
|
|
*basep = 16;
|
|
|
|
s += 2;
|
|
|
|
} else if (!*basep) {
|
|
|
|
/* Only select octal if we don't have a base */
|
|
|
|
*basep = 8;
|
|
|
|
}
|
2017-09-11 20:53:08 +00:00
|
|
|
}
|
2021-07-24 15:03:38 +00:00
|
|
|
|
|
|
|
/* Use decimal by default */
|
|
|
|
if (!*basep)
|
|
|
|
*basep = 10;
|
|
|
|
|
2017-09-11 20:53:08 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2021-07-24 15:03:35 +00:00
|
|
|
/**
|
|
|
|
* decode_digit() - Decode a single character into its numeric digit value
|
|
|
|
*
|
|
|
|
* This ignore case
|
|
|
|
*
|
|
|
|
* @ch: Character to convert (expects '0'..'9', 'a'..'f' or 'A'..'F')
|
2022-01-19 17:05:50 +00:00
|
|
|
* Return: value of digit (0..0xf) or 255 if the character is invalid
|
2021-07-24 15:03:35 +00:00
|
|
|
*/
|
|
|
|
static uint decode_digit(int ch)
|
|
|
|
{
|
|
|
|
if (!isxdigit(ch))
|
|
|
|
return 256;
|
|
|
|
|
|
|
|
ch = tolower(ch);
|
|
|
|
|
|
|
|
return ch <= '9' ? ch - '0' : ch - 'a' + 0xa;
|
|
|
|
}
|
|
|
|
|
2021-07-24 15:03:29 +00:00
|
|
|
ulong simple_strtoul(const char *cp, char **endp, uint base)
|
2015-12-04 22:27:39 +00:00
|
|
|
{
|
2021-07-24 15:03:29 +00:00
|
|
|
ulong result = 0;
|
2021-07-24 15:03:35 +00:00
|
|
|
uint value;
|
2015-12-04 22:27:39 +00:00
|
|
|
|
2017-09-11 20:53:08 +00:00
|
|
|
cp = _parse_integer_fixup_radix(cp, &base);
|
2015-12-04 22:27:39 +00:00
|
|
|
|
2021-07-24 15:03:35 +00:00
|
|
|
while (value = decode_digit(*cp), value < base) {
|
|
|
|
result = result * base + value;
|
2015-12-04 22:27:39 +00:00
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (endp)
|
|
|
|
*endp = (char *)cp;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-07-24 15:03:29 +00:00
|
|
|
ulong hextoul(const char *cp, char **endp)
|
|
|
|
{
|
|
|
|
return simple_strtoul(cp, endp, 16);
|
|
|
|
}
|
|
|
|
|
2021-07-24 15:03:30 +00:00
|
|
|
ulong dectoul(const char *cp, char **endp)
|
|
|
|
{
|
|
|
|
return simple_strtoul(cp, endp, 10);
|
|
|
|
}
|
|
|
|
|
2015-12-04 22:27:39 +00:00
|
|
|
int strict_strtoul(const char *cp, unsigned int base, unsigned long *res)
|
|
|
|
{
|
|
|
|
char *tail;
|
|
|
|
unsigned long val;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
*res = 0;
|
|
|
|
len = strlen(cp);
|
|
|
|
if (len == 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
val = simple_strtoul(cp, &tail, base);
|
|
|
|
if (tail == cp)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if ((*tail == '\0') ||
|
|
|
|
((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
|
|
|
|
*res = val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
long simple_strtol(const char *cp, char **endp, unsigned int base)
|
|
|
|
{
|
|
|
|
if (*cp == '-')
|
|
|
|
return -simple_strtoul(cp + 1, endp, base);
|
|
|
|
|
|
|
|
return simple_strtoul(cp, endp, base);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long ustrtoul(const char *cp, char **endp, unsigned int base)
|
|
|
|
{
|
|
|
|
unsigned long result = simple_strtoul(cp, endp, base);
|
2018-09-06 07:08:43 +00:00
|
|
|
switch (tolower(**endp)) {
|
|
|
|
case 'g':
|
2015-12-04 22:27:39 +00:00
|
|
|
result *= 1024;
|
|
|
|
/* fall through */
|
2018-09-06 07:08:43 +00:00
|
|
|
case 'm':
|
2015-12-04 22:27:39 +00:00
|
|
|
result *= 1024;
|
|
|
|
/* fall through */
|
|
|
|
case 'k':
|
|
|
|
result *= 1024;
|
2018-09-06 07:08:44 +00:00
|
|
|
(*endp)++;
|
|
|
|
if (**endp == 'i')
|
|
|
|
(*endp)++;
|
|
|
|
if (**endp == 'B')
|
|
|
|
(*endp)++;
|
2015-12-04 22:27:39 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base)
|
|
|
|
{
|
|
|
|
unsigned long long result = simple_strtoull(cp, endp, base);
|
2018-09-06 07:08:43 +00:00
|
|
|
switch (tolower(**endp)) {
|
|
|
|
case 'g':
|
2015-12-04 22:27:39 +00:00
|
|
|
result *= 1024;
|
|
|
|
/* fall through */
|
2018-09-06 07:08:43 +00:00
|
|
|
case 'm':
|
2015-12-04 22:27:39 +00:00
|
|
|
result *= 1024;
|
|
|
|
/* fall through */
|
|
|
|
case 'k':
|
|
|
|
result *= 1024;
|
2018-09-06 07:08:44 +00:00
|
|
|
(*endp)++;
|
|
|
|
if (**endp == 'i')
|
|
|
|
(*endp)++;
|
|
|
|
if (**endp == 'B')
|
|
|
|
(*endp)++;
|
2015-12-04 22:27:39 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long long simple_strtoull(const char *cp, char **endp,
|
|
|
|
unsigned int base)
|
|
|
|
{
|
2021-07-24 15:03:35 +00:00
|
|
|
unsigned long long result = 0;
|
|
|
|
uint value;
|
2015-12-04 22:27:39 +00:00
|
|
|
|
2017-09-11 20:53:08 +00:00
|
|
|
cp = _parse_integer_fixup_radix(cp, &base);
|
2015-12-04 22:27:39 +00:00
|
|
|
|
2021-07-24 15:03:35 +00:00
|
|
|
while (value = decode_digit(*cp), value < base) {
|
2015-12-04 22:27:39 +00:00
|
|
|
result = result * base + value;
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (endp)
|
|
|
|
*endp = (char *) cp;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-07-23 12:29:18 +00:00
|
|
|
long long simple_strtoll(const char *cp, char **endp, unsigned int base)
|
|
|
|
{
|
|
|
|
if (*cp == '-')
|
|
|
|
return -simple_strtoull(cp + 1, endp, base);
|
|
|
|
|
|
|
|
return simple_strtoull(cp, endp, base);
|
|
|
|
}
|
|
|
|
|
2022-04-25 05:30:58 +00:00
|
|
|
long trailing_strtoln_end(const char *str, const char *end, char const **endp)
|
2015-12-04 22:27:39 +00:00
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
|
|
|
|
if (!end)
|
|
|
|
end = str + strlen(str);
|
2022-04-25 05:30:57 +00:00
|
|
|
p = end - 1;
|
|
|
|
if (p > str && isdigit(*p)) {
|
|
|
|
do {
|
2022-04-25 05:30:58 +00:00
|
|
|
if (!isdigit(p[-1])) {
|
|
|
|
if (endp)
|
|
|
|
*endp = p;
|
2022-04-25 05:30:57 +00:00
|
|
|
return dectoul(p, NULL);
|
2022-04-25 05:30:58 +00:00
|
|
|
}
|
2022-04-25 05:30:57 +00:00
|
|
|
} while (--p > str);
|
2015-12-04 22:27:39 +00:00
|
|
|
}
|
2022-04-25 05:30:58 +00:00
|
|
|
if (endp)
|
|
|
|
*endp = end;
|
2015-12-04 22:27:39 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2022-04-25 05:30:58 +00:00
|
|
|
long trailing_strtoln(const char *str, const char *end)
|
|
|
|
{
|
|
|
|
return trailing_strtoln_end(str, end, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-04 22:27:39 +00:00
|
|
|
long trailing_strtol(const char *str)
|
|
|
|
{
|
|
|
|
return trailing_strtoln(str, NULL);
|
|
|
|
}
|
2020-04-08 14:32:56 +00:00
|
|
|
|
|
|
|
void str_to_upper(const char *in, char *out, size_t len)
|
|
|
|
{
|
|
|
|
for (; len > 0 && *in; len--)
|
|
|
|
*out++ = toupper(*in++);
|
|
|
|
if (len)
|
|
|
|
*out = '\0';
|
|
|
|
}
|
2023-01-17 17:47:14 +00:00
|
|
|
|
|
|
|
const char **str_to_list(const char *instr)
|
|
|
|
{
|
|
|
|
const char **ptr;
|
|
|
|
char *str, *p;
|
|
|
|
int count, i;
|
|
|
|
|
|
|
|
/* don't allocate if the string is empty */
|
|
|
|
str = *instr ? strdup(instr) : (char *)instr;
|
|
|
|
if (!str)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* count the number of space-separated strings */
|
|
|
|
for (count = *str != '\0', p = str; *p; p++) {
|
|
|
|
if (*p == ' ') {
|
|
|
|
count++;
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate the pointer array, allowing for a NULL terminator */
|
|
|
|
ptr = calloc(count + 1, sizeof(char *));
|
|
|
|
if (!ptr) {
|
|
|
|
if (*str)
|
|
|
|
free(str);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, p = str; i < count; p += strlen(p) + 1, i++)
|
|
|
|
ptr[i] = p;
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void str_free_list(const char **ptr)
|
|
|
|
{
|
|
|
|
if (ptr)
|
|
|
|
free((char *)ptr[0]);
|
|
|
|
free(ptr);
|
|
|
|
}
|