1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <linux/ctype.h>
16#include <linux/errno.h>
17#include <linux/export.h>
18#include <linux/kstrtox.h>
19#include <linux/math64.h>
20#include <linux/types.h>
21#include <linux/uaccess.h>
22
23#include "kstrtox.h"
24
25noinline
26const char *_parse_integer_fixup_radix(const char *s, unsigned int *base)
27{
28 if (*base == 0) {
29 if (s[0] == '0') {
30 if (_tolower(s[1]) == 'x' && isxdigit(s[2]))
31 *base = 16;
32 else
33 *base = 8;
34 } else
35 *base = 10;
36 }
37 if (*base == 16 && s[0] == '0' && _tolower(s[1]) == 'x')
38 s += 2;
39 return s;
40}
41
42
43
44
45
46
47
48
49
50
51noinline
52unsigned int _parse_integer_limit(const char *s, unsigned int base, unsigned long long *p,
53 size_t max_chars)
54{
55 unsigned long long res;
56 unsigned int rv;
57
58 res = 0;
59 rv = 0;
60 while (max_chars--) {
61 unsigned int c = *s;
62 unsigned int lc = c | 0x20;
63 unsigned int val;
64
65 if ('0' <= c && c <= '9')
66 val = c - '0';
67 else if ('a' <= lc && lc <= 'f')
68 val = lc - 'a' + 10;
69 else
70 break;
71
72 if (val >= base)
73 break;
74
75
76
77
78 if (unlikely(res & (~0ull << 60))) {
79 if (res > div_u64(ULLONG_MAX - val, base))
80 rv |= KSTRTOX_OVERFLOW;
81 }
82 res = res * base + val;
83 rv++;
84 s++;
85 }
86 *p = res;
87 return rv;
88}
89
90noinline
91unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *p)
92{
93 return _parse_integer_limit(s, base, p, INT_MAX);
94}
95
96static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res)
97{
98 unsigned long long _res;
99 unsigned int rv;
100
101 s = _parse_integer_fixup_radix(s, &base);
102 rv = _parse_integer(s, base, &_res);
103 if (rv & KSTRTOX_OVERFLOW)
104 return -ERANGE;
105 if (rv == 0)
106 return -EINVAL;
107 s += rv;
108 if (*s == '\n')
109 s++;
110 if (*s)
111 return -EINVAL;
112 *res = _res;
113 return 0;
114}
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131noinline
132int kstrtoull(const char *s, unsigned int base, unsigned long long *res)
133{
134 if (s[0] == '+')
135 s++;
136 return _kstrtoull(s, base, res);
137}
138EXPORT_SYMBOL(kstrtoull);
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155noinline
156int kstrtoll(const char *s, unsigned int base, long long *res)
157{
158 unsigned long long tmp;
159 int rv;
160
161 if (s[0] == '-') {
162 rv = _kstrtoull(s + 1, base, &tmp);
163 if (rv < 0)
164 return rv;
165 if ((long long)-tmp > 0)
166 return -ERANGE;
167 *res = -tmp;
168 } else {
169 rv = kstrtoull(s, base, &tmp);
170 if (rv < 0)
171 return rv;
172 if ((long long)tmp < 0)
173 return -ERANGE;
174 *res = tmp;
175 }
176 return 0;
177}
178EXPORT_SYMBOL(kstrtoll);
179
180
181int _kstrtoul(const char *s, unsigned int base, unsigned long *res)
182{
183 unsigned long long tmp;
184 int rv;
185
186 rv = kstrtoull(s, base, &tmp);
187 if (rv < 0)
188 return rv;
189 if (tmp != (unsigned long)tmp)
190 return -ERANGE;
191 *res = tmp;
192 return 0;
193}
194EXPORT_SYMBOL(_kstrtoul);
195
196
197int _kstrtol(const char *s, unsigned int base, long *res)
198{
199 long long tmp;
200 int rv;
201
202 rv = kstrtoll(s, base, &tmp);
203 if (rv < 0)
204 return rv;
205 if (tmp != (long)tmp)
206 return -ERANGE;
207 *res = tmp;
208 return 0;
209}
210EXPORT_SYMBOL(_kstrtol);
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227noinline
228int kstrtouint(const char *s, unsigned int base, unsigned int *res)
229{
230 unsigned long long tmp;
231 int rv;
232
233 rv = kstrtoull(s, base, &tmp);
234 if (rv < 0)
235 return rv;
236 if (tmp != (unsigned int)tmp)
237 return -ERANGE;
238 *res = tmp;
239 return 0;
240}
241EXPORT_SYMBOL(kstrtouint);
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258noinline
259int kstrtoint(const char *s, unsigned int base, int *res)
260{
261 long long tmp;
262 int rv;
263
264 rv = kstrtoll(s, base, &tmp);
265 if (rv < 0)
266 return rv;
267 if (tmp != (int)tmp)
268 return -ERANGE;
269 *res = tmp;
270 return 0;
271}
272EXPORT_SYMBOL(kstrtoint);
273
274noinline
275int kstrtou16(const char *s, unsigned int base, u16 *res)
276{
277 unsigned long long tmp;
278 int rv;
279
280 rv = kstrtoull(s, base, &tmp);
281 if (rv < 0)
282 return rv;
283 if (tmp != (u16)tmp)
284 return -ERANGE;
285 *res = tmp;
286 return 0;
287}
288EXPORT_SYMBOL(kstrtou16);
289
290noinline
291int kstrtos16(const char *s, unsigned int base, s16 *res)
292{
293 long long tmp;
294 int rv;
295
296 rv = kstrtoll(s, base, &tmp);
297 if (rv < 0)
298 return rv;
299 if (tmp != (s16)tmp)
300 return -ERANGE;
301 *res = tmp;
302 return 0;
303}
304EXPORT_SYMBOL(kstrtos16);
305
306noinline
307int kstrtou8(const char *s, unsigned int base, u8 *res)
308{
309 unsigned long long tmp;
310 int rv;
311
312 rv = kstrtoull(s, base, &tmp);
313 if (rv < 0)
314 return rv;
315 if (tmp != (u8)tmp)
316 return -ERANGE;
317 *res = tmp;
318 return 0;
319}
320EXPORT_SYMBOL(kstrtou8);
321
322noinline
323int kstrtos8(const char *s, unsigned int base, s8 *res)
324{
325 long long tmp;
326 int rv;
327
328 rv = kstrtoll(s, base, &tmp);
329 if (rv < 0)
330 return rv;
331 if (tmp != (s8)tmp)
332 return -ERANGE;
333 *res = tmp;
334 return 0;
335}
336EXPORT_SYMBOL(kstrtos8);
337
338
339
340
341
342
343
344
345
346
347noinline
348int kstrtobool(const char *s, bool *res)
349{
350 if (!s)
351 return -EINVAL;
352
353 switch (s[0]) {
354 case 'y':
355 case 'Y':
356 case '1':
357 *res = true;
358 return 0;
359 case 'n':
360 case 'N':
361 case '0':
362 *res = false;
363 return 0;
364 case 'o':
365 case 'O':
366 switch (s[1]) {
367 case 'n':
368 case 'N':
369 *res = true;
370 return 0;
371 case 'f':
372 case 'F':
373 *res = false;
374 return 0;
375 default:
376 break;
377 }
378 break;
379 default:
380 break;
381 }
382
383 return -EINVAL;
384}
385EXPORT_SYMBOL(kstrtobool);
386
387
388
389
390
391int kstrtobool_from_user(const char __user *s, size_t count, bool *res)
392{
393
394 char buf[4];
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 kstrtobool(buf, res);
401}
402EXPORT_SYMBOL(kstrtobool_from_user);
403
404#define kstrto_from_user(f, g, type) \
405int f(const char __user *s, size_t count, unsigned int base, type *res) \
406{ \
407 \
408 char buf[1 + sizeof(type) * 8 + 1 + 1]; \
409 \
410 count = min(count, sizeof(buf) - 1); \
411 if (copy_from_user(buf, s, count)) \
412 return -EFAULT; \
413 buf[count] = '\0'; \
414 return g(buf, base, res); \
415} \
416EXPORT_SYMBOL(f)
417
418kstrto_from_user(kstrtoull_from_user, kstrtoull, unsigned long long);
419kstrto_from_user(kstrtoll_from_user, kstrtoll, long long);
420kstrto_from_user(kstrtoul_from_user, kstrtoul, unsigned long);
421kstrto_from_user(kstrtol_from_user, kstrtol, long);
422kstrto_from_user(kstrtouint_from_user, kstrtouint, unsigned int);
423kstrto_from_user(kstrtoint_from_user, kstrtoint, int);
424kstrto_from_user(kstrtou16_from_user, kstrtou16, u16);
425kstrto_from_user(kstrtos16_from_user, kstrtos16, s16);
426kstrto_from_user(kstrtou8_from_user, kstrtou8, u8);
427kstrto_from_user(kstrtos8_from_user, kstrtos8, s8);
428