2 * Convert integer string representation to an integer.
3 * If an integer doesn't fit into specified type, -E is returned.
5 * Integer starts with optional sign.
6 * kstrtou*() functions do not accept sign "-".
8 * Radix 0 means autodetection: leading "0x" implies radix 16,
9 * leading "0" implies radix 8, otherwise radix is 10.
10 * Autodetection hints work after optional sign, but not before.
12 * If -E is returned, result is not touched.
14 #include <linux/ctype.h>
15 #include <linux/errno.h>
16 #include <linux/kernel.h>
17 #include <linux/math64.h>
18 #include <linux/module.h>
19 #include <linux/types.h>
20 #include <asm/uaccess.h>
23 const char *_parse_integer_fixup_radix(const char *s, unsigned int *base)
27 if (_tolower(s[1]) == 'x' && isxdigit(s[2]))
34 if (*base == 16 && s[0] == '0' && _tolower(s[1]) == 'x')
40 * Convert non-negative integer string representation in explicitly given radix
42 * Return number of characters consumed maybe or-ed with overflow bit.
43 * If overflow occurs, result integer (incorrect) is still returned.
45 * Don't you dare use this function.
47 unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *res)
58 if ('0' <= *s && *s <= '9')
60 else if ('a' <= _tolower(*s) && _tolower(*s) <= 'f')
61 val = _tolower(*s) - 'a' + 10;
67 if (*res > div_u64(ULLONG_MAX - val, base))
69 *res = *res * base + val;
74 rv |= KSTRTOX_OVERFLOW;
78 static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res)
80 unsigned long long _res;
83 s = _parse_integer_fixup_radix(s, &base);
84 rv = _parse_integer(s, base, &_res);
85 if (rv & KSTRTOX_OVERFLOW)
87 rv &= ~KSTRTOX_OVERFLOW;
99 int kstrtoull(const char *s, unsigned int base, unsigned long long *res)
103 return _kstrtoull(s, base, res);
105 EXPORT_SYMBOL(kstrtoull);
107 int kstrtoll(const char *s, unsigned int base, long long *res)
109 unsigned long long tmp;
113 rv = _kstrtoull(s + 1, base, &tmp);
116 if ((long long)(-tmp) >= 0)
120 rv = kstrtoull(s, base, &tmp);
123 if ((long long)tmp < 0)
129 EXPORT_SYMBOL(kstrtoll);
131 /* Internal, do not use. */
132 int _kstrtoul(const char *s, unsigned int base, unsigned long *res)
134 unsigned long long tmp;
137 rv = kstrtoull(s, base, &tmp);
140 if (tmp != (unsigned long long)(unsigned long)tmp)
145 EXPORT_SYMBOL(_kstrtoul);
147 /* Internal, do not use. */
148 int _kstrtol(const char *s, unsigned int base, long *res)
153 rv = kstrtoll(s, base, &tmp);
156 if (tmp != (long long)(long)tmp)
161 EXPORT_SYMBOL(_kstrtol);
163 int kstrtouint(const char *s, unsigned int base, unsigned int *res)
165 unsigned long long tmp;
168 rv = kstrtoull(s, base, &tmp);
171 if (tmp != (unsigned long long)(unsigned int)tmp)
176 EXPORT_SYMBOL(kstrtouint);
178 int kstrtoint(const char *s, unsigned int base, int *res)
183 rv = kstrtoll(s, base, &tmp);
186 if (tmp != (long long)(int)tmp)
191 EXPORT_SYMBOL(kstrtoint);
193 int kstrtou16(const char *s, unsigned int base, u16 *res)
195 unsigned long long tmp;
198 rv = kstrtoull(s, base, &tmp);
201 if (tmp != (unsigned long long)(u16)tmp)
206 EXPORT_SYMBOL(kstrtou16);
208 int kstrtos16(const char *s, unsigned int base, s16 *res)
213 rv = kstrtoll(s, base, &tmp);
216 if (tmp != (long long)(s16)tmp)
221 EXPORT_SYMBOL(kstrtos16);
223 int kstrtou8(const char *s, unsigned int base, u8 *res)
225 unsigned long long tmp;
228 rv = kstrtoull(s, base, &tmp);
231 if (tmp != (unsigned long long)(u8)tmp)
236 EXPORT_SYMBOL(kstrtou8);
238 int kstrtos8(const char *s, unsigned int base, s8 *res)
243 rv = kstrtoll(s, base, &tmp);
246 if (tmp != (long long)(s8)tmp)
251 EXPORT_SYMBOL(kstrtos8);
253 #define kstrto_from_user(f, g, type) \
254 int f(const char __user *s, size_t count, unsigned int base, type *res) \
256 /* sign, base 2 representation, newline, terminator */ \
257 char buf[1 + sizeof(type) * 8 + 1 + 1]; \
259 count = min(count, sizeof(buf) - 1); \
260 if (copy_from_user(buf, s, count)) \
263 return g(buf, base, res); \
267 kstrto_from_user(kstrtoull_from_user, kstrtoull, unsigned long long);
268 kstrto_from_user(kstrtoll_from_user, kstrtoll, long long);
269 kstrto_from_user(kstrtoul_from_user, kstrtoul, unsigned long);
270 kstrto_from_user(kstrtol_from_user, kstrtol, long);
271 kstrto_from_user(kstrtouint_from_user, kstrtouint, unsigned int);
272 kstrto_from_user(kstrtoint_from_user, kstrtoint, int);
273 kstrto_from_user(kstrtou16_from_user, kstrtou16, u16);
274 kstrto_from_user(kstrtos16_from_user, kstrtos16, s16);
275 kstrto_from_user(kstrtou8_from_user, kstrtou8, u8);
276 kstrto_from_user(kstrtos8_from_user, kstrtos8, s8);