mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-04-05 05:44:43 +00:00
lib: move strtobool() to kstrtobool()
Create the kstrtobool_from_user() helper and move strtobool() logic into the new kstrtobool() (matching all the other kstrto* functions). Provides an inline wrapper for existing strtobool() callers. Signed-off-by: Kees Cook <keescook@chromium.org> Cc: Joe Perches <joe@perches.com> Cc: Andy Shevchenko <andy.shevchenko@gmail.com> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Daniel Borkmann <daniel@iogearbox.net> Cc: Amitkumar Karwar <akarwar@marvell.com> Cc: Nishant Sarmukadam <nishants@marvell.com> Cc: Kalle Valo <kvalo@codeaurora.org> Cc: Steve French <sfrench@samba.org> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e3bde9568d
commit
ef95159907
4 changed files with 57 additions and 30 deletions
|
@ -357,6 +357,7 @@ int __must_check kstrtou16(const char *s, unsigned int base, u16 *res);
|
||||||
int __must_check kstrtos16(const char *s, unsigned int base, s16 *res);
|
int __must_check kstrtos16(const char *s, unsigned int base, s16 *res);
|
||||||
int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
|
int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
|
||||||
int __must_check kstrtos8(const char *s, unsigned int base, s8 *res);
|
int __must_check kstrtos8(const char *s, unsigned int base, s8 *res);
|
||||||
|
int __must_check kstrtobool(const char *s, bool *res);
|
||||||
|
|
||||||
int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res);
|
int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res);
|
||||||
int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res);
|
int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res);
|
||||||
|
@ -368,6 +369,7 @@ int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigne
|
||||||
int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res);
|
int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res);
|
||||||
int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
|
int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
|
||||||
int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
|
int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
|
||||||
|
int __must_check kstrtobool_from_user(const char __user *s, size_t count, bool *res);
|
||||||
|
|
||||||
static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res)
|
static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res)
|
||||||
{
|
{
|
||||||
|
|
|
@ -128,7 +128,11 @@ extern char **argv_split(gfp_t gfp, const char *str, int *argcp);
|
||||||
extern void argv_free(char **argv);
|
extern void argv_free(char **argv);
|
||||||
|
|
||||||
extern bool sysfs_streq(const char *s1, const char *s2);
|
extern bool sysfs_streq(const char *s1, const char *s2);
|
||||||
extern int strtobool(const char *s, bool *res);
|
extern int kstrtobool(const char *s, bool *res);
|
||||||
|
static inline int strtobool(const char *s, bool *res)
|
||||||
|
{
|
||||||
|
return kstrtobool(s, res);
|
||||||
|
}
|
||||||
|
|
||||||
int match_string(const char * const *array, size_t n, const char *string);
|
int match_string(const char * const *array, size_t n, const char *string);
|
||||||
|
|
||||||
|
|
|
@ -321,6 +321,56 @@ int kstrtos8(const char *s, unsigned int base, s8 *res)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(kstrtos8);
|
EXPORT_SYMBOL(kstrtos8);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* kstrtobool - convert common user inputs into boolean values
|
||||||
|
* @s: input string
|
||||||
|
* @res: result
|
||||||
|
*
|
||||||
|
* This routine returns 0 iff the first character is one of 'Yy1Nn0'.
|
||||||
|
* Otherwise it will return -EINVAL. Value pointed to by res is
|
||||||
|
* updated upon finding a match.
|
||||||
|
*/
|
||||||
|
int kstrtobool(const char *s, bool *res)
|
||||||
|
{
|
||||||
|
if (!s)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
switch (s[0]) {
|
||||||
|
case 'y':
|
||||||
|
case 'Y':
|
||||||
|
case '1':
|
||||||
|
*res = true;
|
||||||
|
return 0;
|
||||||
|
case 'n':
|
||||||
|
case 'N':
|
||||||
|
case '0':
|
||||||
|
*res = false;
|
||||||
|
return 0;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(kstrtobool);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Since "base" would be a nonsense argument, this open-codes the
|
||||||
|
* _from_user helper instead of using the helper macro below.
|
||||||
|
*/
|
||||||
|
int kstrtobool_from_user(const char __user *s, size_t count, bool *res)
|
||||||
|
{
|
||||||
|
/* Longest string needed to differentiate, newline, terminator */
|
||||||
|
char buf[4];
|
||||||
|
|
||||||
|
count = min(count, sizeof(buf) - 1);
|
||||||
|
if (copy_from_user(buf, s, count))
|
||||||
|
return -EFAULT;
|
||||||
|
buf[count] = '\0';
|
||||||
|
return kstrtobool(buf, res);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(kstrtobool_from_user);
|
||||||
|
|
||||||
#define kstrto_from_user(f, g, type) \
|
#define kstrto_from_user(f, g, type) \
|
||||||
int f(const char __user *s, size_t count, unsigned int base, type *res) \
|
int f(const char __user *s, size_t count, unsigned int base, type *res) \
|
||||||
{ \
|
{ \
|
||||||
|
|
29
lib/string.c
29
lib/string.c
|
@ -656,35 +656,6 @@ int match_string(const char * const *array, size_t n, const char *string)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(match_string);
|
EXPORT_SYMBOL(match_string);
|
||||||
|
|
||||||
/**
|
|
||||||
* strtobool - convert common user inputs into boolean values
|
|
||||||
* @s: input string
|
|
||||||
* @res: result
|
|
||||||
*
|
|
||||||
* This routine returns 0 iff the first character is one of 'Yy1Nn0'.
|
|
||||||
* Otherwise it will return -EINVAL. Value pointed to by res is
|
|
||||||
* updated upon finding a match.
|
|
||||||
*/
|
|
||||||
int strtobool(const char *s, bool *res)
|
|
||||||
{
|
|
||||||
switch (s[0]) {
|
|
||||||
case 'y':
|
|
||||||
case 'Y':
|
|
||||||
case '1':
|
|
||||||
*res = true;
|
|
||||||
break;
|
|
||||||
case 'n':
|
|
||||||
case 'N':
|
|
||||||
case '0':
|
|
||||||
*res = false;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(strtobool);
|
|
||||||
|
|
||||||
#ifndef __HAVE_ARCH_MEMSET
|
#ifndef __HAVE_ARCH_MEMSET
|
||||||
/**
|
/**
|
||||||
* memset - Fill a region of memory with the given value
|
* memset - Fill a region of memory with the given value
|
||||||
|
|
Loading…
Add table
Reference in a new issue