blob: 8504526541c138e27f4e00aa83124d65e58c5e59 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -07002/*
3 * Convert integer string representation to an integer.
4 * If an integer doesn't fit into specified type, -E is returned.
5 *
6 * Integer starts with optional sign.
7 * kstrtou*() functions do not accept sign "-".
8 *
9 * Radix 0 means autodetection: leading "0x" implies radix 16,
10 * leading "0" implies radix 8, otherwise radix is 10.
11 * Autodetection hints work after optional sign, but not before.
12 *
13 * If -E is returned, result is not touched.
14 */
15#include <linux/ctype.h>
16#include <linux/errno.h>
17#include <linux/kernel.h>
18#include <linux/math64.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050019#include <linux/export.h>
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070020#include <linux/types.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080021#include <linux/uaccess.h>
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070022#include "kstrtox.h"
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070023
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070024const char *_parse_integer_fixup_radix(const char *s, unsigned int *base)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070025{
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070026 if (*base == 0) {
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070027 if (s[0] == '0') {
28 if (_tolower(s[1]) == 'x' && isxdigit(s[2]))
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070029 *base = 16;
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070030 else
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070031 *base = 8;
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070032 } else
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070033 *base = 10;
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070034 }
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070035 if (*base == 16 && s[0] == '0' && _tolower(s[1]) == 'x')
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070036 s += 2;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070037 return s;
38}
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070039
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070040/*
41 * Convert non-negative integer string representation in explicitly given radix
Richard Fitzgerald9e914f52021-05-14 17:12:04 +010042 * to an integer. A maximum of max_chars characters will be converted.
43 *
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070044 * Return number of characters consumed maybe or-ed with overflow bit.
45 * If overflow occurs, result integer (incorrect) is still returned.
46 *
47 * Don't you dare use this function.
48 */
Richard Fitzgerald9e914f52021-05-14 17:12:04 +010049unsigned int _parse_integer_limit(const char *s, unsigned int base, unsigned long long *p,
50 size_t max_chars)
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070051{
David Howells690d1372012-02-09 15:48:20 +000052 unsigned long long res;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070053 unsigned int rv;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070054
David Howells690d1372012-02-09 15:48:20 +000055 res = 0;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070056 rv = 0;
Richard Fitzgerald9e914f52021-05-14 17:12:04 +010057 while (max_chars--) {
Alexey Dobriyanbe5f3c72017-07-10 15:51:41 -070058 unsigned int c = *s;
59 unsigned int lc = c | 0x20; /* don't tolower() this line */
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070060 unsigned int val;
61
Alexey Dobriyanbe5f3c72017-07-10 15:51:41 -070062 if ('0' <= c && c <= '9')
63 val = c - '0';
64 else if ('a' <= lc && lc <= 'f')
65 val = lc - 'a' + 10;
Alexey Dobriyan78be9592011-04-14 15:22:02 -070066 else
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070067 break;
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070068
69 if (val >= base)
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070070 break;
David Howells690d1372012-02-09 15:48:20 +000071 /*
72 * Check for overflow only if we are within range of
73 * it in the max base we support (16)
74 */
75 if (unlikely(res & (~0ull << 60))) {
76 if (res > div_u64(ULLONG_MAX - val, base))
Alexey Dobriyan8cfd56d2016-10-11 13:51:32 -070077 rv |= KSTRTOX_OVERFLOW;
David Howells690d1372012-02-09 15:48:20 +000078 }
79 res = res * base + val;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070080 rv++;
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -070081 s++;
82 }
David Howells690d1372012-02-09 15:48:20 +000083 *p = res;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070084 return rv;
85}
86
Richard Fitzgerald9e914f52021-05-14 17:12:04 +010087unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *p)
88{
89 return _parse_integer_limit(s, base, p, INT_MAX);
90}
91
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070092static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res)
93{
94 unsigned long long _res;
95 unsigned int rv;
96
97 s = _parse_integer_fixup_radix(s, &base);
98 rv = _parse_integer(s, base, &_res);
99 if (rv & KSTRTOX_OVERFLOW)
100 return -ERANGE;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -0700101 if (rv == 0)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700102 return -EINVAL;
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -0700103 s += rv;
104 if (*s == '\n')
105 s++;
106 if (*s)
107 return -EINVAL;
108 *res = _res;
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700109 return 0;
110}
111
Eldad Zack4c925d62012-12-17 16:03:04 -0800112/**
113 * kstrtoull - convert a string to an unsigned long long
114 * @s: The start of the string. The string must be null-terminated, and may also
115 * include a single newline before its terminating null. The first character
116 * may also be a plus sign, but not a minus sign.
117 * @base: The number base to use. The maximum supported base is 16. If base is
118 * given as 0, then the base of the string is automatically detected with the
119 * conventional semantics - If it begins with 0x the number will be parsed as a
120 * hexadecimal (case insensitive), if it otherwise begins with 0, it will be
121 * parsed as an octal number. Otherwise it will be parsed as a decimal.
122 * @res: Where to write the result of the conversion on success.
123 *
124 * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
Kars Mulderef0f2682020-08-11 18:34:56 -0700125 * Preferred over simple_strtoull(). Return code must be checked.
Eldad Zack4c925d62012-12-17 16:03:04 -0800126 */
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700127int kstrtoull(const char *s, unsigned int base, unsigned long long *res)
128{
129 if (s[0] == '+')
130 s++;
131 return _kstrtoull(s, base, res);
132}
133EXPORT_SYMBOL(kstrtoull);
134
Eldad Zack4c925d62012-12-17 16:03:04 -0800135/**
136 * kstrtoll - convert a string to a long long
137 * @s: The start of the string. The string must be null-terminated, and may also
138 * include a single newline before its terminating null. The first character
139 * may also be a plus sign or a minus sign.
140 * @base: The number base to use. The maximum supported base is 16. If base is
141 * given as 0, then the base of the string is automatically detected with the
142 * conventional semantics - If it begins with 0x the number will be parsed as a
143 * hexadecimal (case insensitive), if it otherwise begins with 0, it will be
144 * parsed as an octal number. Otherwise it will be parsed as a decimal.
145 * @res: Where to write the result of the conversion on success.
146 *
147 * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
Kars Mulderef0f2682020-08-11 18:34:56 -0700148 * Preferred over simple_strtoll(). Return code must be checked.
Eldad Zack4c925d62012-12-17 16:03:04 -0800149 */
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700150int kstrtoll(const char *s, unsigned int base, long long *res)
151{
152 unsigned long long tmp;
153 int rv;
154
155 if (s[0] == '-') {
156 rv = _kstrtoull(s + 1, base, &tmp);
157 if (rv < 0)
158 return rv;
Alexey Dobriyan2d2e4712015-09-09 15:36:17 -0700159 if ((long long)-tmp > 0)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700160 return -ERANGE;
161 *res = -tmp;
162 } else {
163 rv = kstrtoull(s, base, &tmp);
164 if (rv < 0)
165 return rv;
166 if ((long long)tmp < 0)
167 return -ERANGE;
168 *res = tmp;
169 }
170 return 0;
171}
172EXPORT_SYMBOL(kstrtoll);
173
174/* Internal, do not use. */
175int _kstrtoul(const char *s, unsigned int base, unsigned long *res)
176{
177 unsigned long long tmp;
178 int rv;
179
180 rv = kstrtoull(s, base, &tmp);
181 if (rv < 0)
182 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700183 if (tmp != (unsigned long)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700184 return -ERANGE;
185 *res = tmp;
186 return 0;
187}
188EXPORT_SYMBOL(_kstrtoul);
189
190/* Internal, do not use. */
191int _kstrtol(const char *s, unsigned int base, long *res)
192{
193 long long tmp;
194 int rv;
195
196 rv = kstrtoll(s, base, &tmp);
197 if (rv < 0)
198 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700199 if (tmp != (long)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700200 return -ERANGE;
201 *res = tmp;
202 return 0;
203}
204EXPORT_SYMBOL(_kstrtol);
205
Eldad Zack4c925d62012-12-17 16:03:04 -0800206/**
207 * kstrtouint - convert a string to an unsigned int
208 * @s: The start of the string. The string must be null-terminated, and may also
209 * include a single newline before its terminating null. The first character
210 * may also be a plus sign, but not a minus sign.
211 * @base: The number base to use. The maximum supported base is 16. If base is
212 * given as 0, then the base of the string is automatically detected with the
213 * conventional semantics - If it begins with 0x the number will be parsed as a
214 * hexadecimal (case insensitive), if it otherwise begins with 0, it will be
215 * parsed as an octal number. Otherwise it will be parsed as a decimal.
216 * @res: Where to write the result of the conversion on success.
217 *
218 * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
Kars Mulderef0f2682020-08-11 18:34:56 -0700219 * Preferred over simple_strtoul(). Return code must be checked.
Eldad Zack4c925d62012-12-17 16:03:04 -0800220 */
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700221int kstrtouint(const char *s, unsigned int base, unsigned int *res)
222{
223 unsigned long long tmp;
224 int rv;
225
226 rv = kstrtoull(s, base, &tmp);
227 if (rv < 0)
228 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700229 if (tmp != (unsigned int)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700230 return -ERANGE;
231 *res = tmp;
232 return 0;
233}
234EXPORT_SYMBOL(kstrtouint);
235
Eldad Zack4c925d62012-12-17 16:03:04 -0800236/**
237 * kstrtoint - convert a string to an int
238 * @s: The start of the string. The string must be null-terminated, and may also
239 * include a single newline before its terminating null. The first character
240 * may also be a plus sign or a minus sign.
241 * @base: The number base to use. The maximum supported base is 16. If base is
242 * given as 0, then the base of the string is automatically detected with the
243 * conventional semantics - If it begins with 0x the number will be parsed as a
244 * hexadecimal (case insensitive), if it otherwise begins with 0, it will be
245 * parsed as an octal number. Otherwise it will be parsed as a decimal.
246 * @res: Where to write the result of the conversion on success.
247 *
248 * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
Kars Mulderef0f2682020-08-11 18:34:56 -0700249 * Preferred over simple_strtol(). Return code must be checked.
Eldad Zack4c925d62012-12-17 16:03:04 -0800250 */
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700251int kstrtoint(const char *s, unsigned int base, int *res)
252{
253 long long tmp;
254 int rv;
255
256 rv = kstrtoll(s, base, &tmp);
257 if (rv < 0)
258 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700259 if (tmp != (int)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700260 return -ERANGE;
261 *res = tmp;
262 return 0;
263}
264EXPORT_SYMBOL(kstrtoint);
265
266int kstrtou16(const char *s, unsigned int base, u16 *res)
267{
268 unsigned long long tmp;
269 int rv;
270
271 rv = kstrtoull(s, base, &tmp);
272 if (rv < 0)
273 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700274 if (tmp != (u16)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700275 return -ERANGE;
276 *res = tmp;
277 return 0;
278}
279EXPORT_SYMBOL(kstrtou16);
280
281int kstrtos16(const char *s, unsigned int base, s16 *res)
282{
283 long long tmp;
284 int rv;
285
286 rv = kstrtoll(s, base, &tmp);
287 if (rv < 0)
288 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700289 if (tmp != (s16)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700290 return -ERANGE;
291 *res = tmp;
292 return 0;
293}
294EXPORT_SYMBOL(kstrtos16);
295
296int kstrtou8(const char *s, unsigned int base, u8 *res)
297{
298 unsigned long long tmp;
299 int rv;
300
301 rv = kstrtoull(s, base, &tmp);
302 if (rv < 0)
303 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700304 if (tmp != (u8)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700305 return -ERANGE;
306 *res = tmp;
307 return 0;
308}
309EXPORT_SYMBOL(kstrtou8);
310
311int kstrtos8(const char *s, unsigned int base, s8 *res)
312{
313 long long tmp;
314 int rv;
315
316 rv = kstrtoll(s, base, &tmp);
317 if (rv < 0)
318 return rv;
Alexey Dobriyan048e5132018-10-30 15:05:46 -0700319 if (tmp != (s8)tmp)
Alexey Dobriyan33ee3b22011-03-22 16:34:40 -0700320 return -ERANGE;
321 *res = tmp;
322 return 0;
323}
324EXPORT_SYMBOL(kstrtos8);
Alexey Dobriyanc196e322011-05-24 17:13:31 -0700325
Kees Cookef951592016-03-17 14:22:50 -0700326/**
327 * kstrtobool - convert common user inputs into boolean values
328 * @s: input string
329 * @res: result
330 *
Kees Cooka81a5a12016-03-17 14:22:57 -0700331 * This routine returns 0 iff the first character is one of 'Yy1Nn0', or
332 * [oO][NnFf] for "on" and "off". Otherwise it will return -EINVAL. Value
333 * pointed to by res is updated upon finding a match.
Kees Cookef951592016-03-17 14:22:50 -0700334 */
335int kstrtobool(const char *s, bool *res)
336{
337 if (!s)
338 return -EINVAL;
339
340 switch (s[0]) {
341 case 'y':
342 case 'Y':
343 case '1':
344 *res = true;
345 return 0;
346 case 'n':
347 case 'N':
348 case '0':
349 *res = false;
350 return 0;
Kees Cooka81a5a12016-03-17 14:22:57 -0700351 case 'o':
352 case 'O':
353 switch (s[1]) {
354 case 'n':
355 case 'N':
356 *res = true;
357 return 0;
358 case 'f':
359 case 'F':
360 *res = false;
361 return 0;
362 default:
363 break;
364 }
Kees Cookef951592016-03-17 14:22:50 -0700365 default:
366 break;
367 }
368
369 return -EINVAL;
370}
371EXPORT_SYMBOL(kstrtobool);
372
373/*
374 * Since "base" would be a nonsense argument, this open-codes the
375 * _from_user helper instead of using the helper macro below.
376 */
377int kstrtobool_from_user(const char __user *s, size_t count, bool *res)
378{
379 /* Longest string needed to differentiate, newline, terminator */
380 char buf[4];
381
382 count = min(count, sizeof(buf) - 1);
383 if (copy_from_user(buf, s, count))
384 return -EFAULT;
385 buf[count] = '\0';
386 return kstrtobool(buf, res);
387}
388EXPORT_SYMBOL(kstrtobool_from_user);
389
Alexey Dobriyanc196e322011-05-24 17:13:31 -0700390#define kstrto_from_user(f, g, type) \
391int f(const char __user *s, size_t count, unsigned int base, type *res) \
392{ \
393 /* sign, base 2 representation, newline, terminator */ \
394 char buf[1 + sizeof(type) * 8 + 1 + 1]; \
395 \
396 count = min(count, sizeof(buf) - 1); \
397 if (copy_from_user(buf, s, count)) \
398 return -EFAULT; \
399 buf[count] = '\0'; \
400 return g(buf, base, res); \
401} \
402EXPORT_SYMBOL(f)
403
404kstrto_from_user(kstrtoull_from_user, kstrtoull, unsigned long long);
405kstrto_from_user(kstrtoll_from_user, kstrtoll, long long);
406kstrto_from_user(kstrtoul_from_user, kstrtoul, unsigned long);
407kstrto_from_user(kstrtol_from_user, kstrtol, long);
408kstrto_from_user(kstrtouint_from_user, kstrtouint, unsigned int);
409kstrto_from_user(kstrtoint_from_user, kstrtoint, int);
410kstrto_from_user(kstrtou16_from_user, kstrtou16, u16);
411kstrto_from_user(kstrtos16_from_user, kstrtos16, s16);
412kstrto_from_user(kstrtou8_from_user, kstrtou8, u8);
413kstrto_from_user(kstrtos8_from_user, kstrtos8, s8);