]> git.ipfire.org Git - thirdparty/linux.git/blame - lib/string_helpers.c
btrfs: use u64 for buffer sizes in the tree search ioctls
[thirdparty/linux.git] / lib / string_helpers.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
3c9f3681
JB
2/*
3 * Helpers for formatting and printing strings
4 *
5 * Copyright 31 August 2008 James Bottomley
16c7fa05 6 * Copyright (C) 2013, Intel Corporation
3c9f3681 7 */
b9f28d86 8#include <linux/bug.h>
3c9f3681
JB
9#include <linux/kernel.h>
10#include <linux/math64.h>
8bc3bcc9 11#include <linux/export.h>
16c7fa05 12#include <linux/ctype.h>
acdb89b6 13#include <linux/device.h>
c8250381 14#include <linux/errno.h>
21985319
KC
15#include <linux/fs.h>
16#include <linux/limits.h>
0d044328 17#include <linux/mm.h>
b53f27e4 18#include <linux/slab.h>
c8250381 19#include <linux/string.h>
3c9f3681
JB
20#include <linux/string_helpers.h>
21
22/**
23 * string_get_size - get the size in the specified units
b9f28d86
JB
24 * @size: The size to be converted in blocks
25 * @blk_size: Size of the block (use 1 for size in bytes)
3c9f3681
JB
26 * @units: units to use (powers of 1000 or 1024)
27 * @buf: buffer to format to
28 * @len: length of buffer
29 *
30 * This function returns a string formatted to 3 significant figures
d1214c65
RV
31 * giving the size in the required units. @buf should have room for
32 * at least 9 bytes and will always be zero terminated.
3c9f3681
JB
33 *
34 */
b9f28d86 35void string_get_size(u64 size, u64 blk_size, const enum string_size_units units,
d1214c65 36 char *buf, int len)
3c9f3681 37{
142cda5d 38 static const char *const units_10[] = {
b9f28d86 39 "B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"
142cda5d
MK
40 };
41 static const char *const units_2[] = {
b9f28d86 42 "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB"
142cda5d
MK
43 };
44 static const char *const *const units_str[] = {
45 [STRING_UNITS_10] = units_10,
3c9f3681
JB
46 [STRING_UNITS_2] = units_2,
47 };
68aecfb9 48 static const unsigned int divisor[] = {
3c9f3681
JB
49 [STRING_UNITS_10] = 1000,
50 [STRING_UNITS_2] = 1024,
51 };
564b026f
JB
52 static const unsigned int rounding[] = { 500, 50, 5 };
53 int i = 0, j;
54 u32 remainder = 0, sf_cap;
3c9f3681 55 char tmp[8];
b9f28d86 56 const char *unit;
3c9f3681
JB
57
58 tmp[0] = '\0';
564b026f
JB
59
60 if (blk_size == 0)
61 size = 0;
62 if (size == 0)
b9f28d86 63 goto out;
3c9f3681 64
564b026f
JB
65 /* This is Napier's algorithm. Reduce the original block size to
66 *
67 * coefficient * divisor[units]^i
68 *
69 * we do the reduction so both coefficients are just under 32 bits so
70 * that multiplying them together won't overflow 64 bits and we keep
71 * as much precision as possible in the numbers.
72 *
73 * Note: it's safe to throw away the remainders here because all the
74 * precision is in the coefficients.
75 */
76 while (blk_size >> 32) {
77 do_div(blk_size, divisor[units]);
b9f28d86
JB
78 i++;
79 }
80
564b026f
JB
81 while (size >> 32) {
82 do_div(size, divisor[units]);
b9f28d86 83 i++;
b9f28d86
JB
84 }
85
564b026f
JB
86 /* now perform the actual multiplication keeping i as the sum of the
87 * two logarithms */
b9f28d86 88 size *= blk_size;
3c9f3681 89
564b026f 90 /* and logarithmically reduce it until it's just under the divisor */
b9f28d86
JB
91 while (size >= divisor[units]) {
92 remainder = do_div(size, divisor[units]);
93 i++;
3c9f3681
JB
94 }
95
564b026f
JB
96 /* work out in j how many digits of precision we need from the
97 * remainder */
b9f28d86
JB
98 sf_cap = size;
99 for (j = 0; sf_cap*10 < 1000; j++)
100 sf_cap *= 10;
101
564b026f
JB
102 if (units == STRING_UNITS_2) {
103 /* express the remainder as a decimal. It's currently the
104 * numerator of a fraction whose denominator is
105 * divisor[units], which is 1 << 10 for STRING_UNITS_2 */
b9f28d86 106 remainder *= 1000;
564b026f
JB
107 remainder >>= 10;
108 }
109
110 /* add a 5 to the digit below what will be printed to ensure
111 * an arithmetical round up and carry it through to size */
112 remainder += rounding[j];
113 if (remainder >= 1000) {
114 remainder -= 1000;
115 size += 1;
116 }
117
118 if (j) {
b9f28d86
JB
119 snprintf(tmp, sizeof(tmp), ".%03u", remainder);
120 tmp[j+1] = '\0';
121 }
122
123 out:
124 if (i >= ARRAY_SIZE(units_2))
125 unit = "UNK";
126 else
127 unit = units_str[units][i];
128
84b9fbed 129 snprintf(buf, len, "%u%s %s", (u32)size,
b9f28d86 130 tmp, unit);
3c9f3681
JB
131}
132EXPORT_SYMBOL(string_get_size);
16c7fa05 133
f0b93323
CR
134/**
135 * parse_int_array_user - Split string into a sequence of integers
136 * @from: The user space buffer to read from
137 * @count: The maximum number of bytes to read
138 * @array: Returned pointer to sequence of integers
139 *
140 * On success @array is allocated and initialized with a sequence of
141 * integers extracted from the @from plus an additional element that
142 * begins the sequence and specifies the integers count.
143 *
144 * Caller takes responsibility for freeing @array when it is no longer
145 * needed.
146 */
147int parse_int_array_user(const char __user *from, size_t count, int **array)
148{
149 int *ints, nints;
150 char *buf;
151 int ret = 0;
152
153 buf = memdup_user_nul(from, count);
154 if (IS_ERR(buf))
155 return PTR_ERR(buf);
156
157 get_options(buf, 0, &nints);
158 if (!nints) {
159 ret = -ENOENT;
160 goto free_buf;
161 }
162
163 ints = kcalloc(nints + 1, sizeof(*ints), GFP_KERNEL);
164 if (!ints) {
165 ret = -ENOMEM;
166 goto free_buf;
167 }
168
169 get_options(buf, nints + 1, ints);
170 *array = ints;
171
172free_buf:
173 kfree(buf);
174 return ret;
175}
176EXPORT_SYMBOL(parse_int_array_user);
177
16c7fa05
AS
178static bool unescape_space(char **src, char **dst)
179{
180 char *p = *dst, *q = *src;
181
182 switch (*q) {
183 case 'n':
184 *p = '\n';
185 break;
186 case 'r':
187 *p = '\r';
188 break;
189 case 't':
190 *p = '\t';
191 break;
192 case 'v':
193 *p = '\v';
194 break;
195 case 'f':
196 *p = '\f';
197 break;
198 default:
199 return false;
200 }
201 *dst += 1;
202 *src += 1;
203 return true;
204}
205
206static bool unescape_octal(char **src, char **dst)
207{
208 char *p = *dst, *q = *src;
209 u8 num;
210
211 if (isodigit(*q) == 0)
212 return false;
213
214 num = (*q++) & 7;
215 while (num < 32 && isodigit(*q) && (q - *src < 3)) {
216 num <<= 3;
217 num += (*q++) & 7;
218 }
219 *p = num;
220 *dst += 1;
221 *src = q;
222 return true;
223}
224
225static bool unescape_hex(char **src, char **dst)
226{
227 char *p = *dst, *q = *src;
228 int digit;
229 u8 num;
230
231 if (*q++ != 'x')
232 return false;
233
234 num = digit = hex_to_bin(*q++);
235 if (digit < 0)
236 return false;
237
238 digit = hex_to_bin(*q);
239 if (digit >= 0) {
240 q++;
241 num = (num << 4) | digit;
242 }
243 *p = num;
244 *dst += 1;
245 *src = q;
246 return true;
247}
248
249static bool unescape_special(char **src, char **dst)
250{
251 char *p = *dst, *q = *src;
252
253 switch (*q) {
254 case '\"':
255 *p = '\"';
256 break;
257 case '\\':
258 *p = '\\';
259 break;
260 case 'a':
261 *p = '\a';
262 break;
263 case 'e':
264 *p = '\e';
265 break;
266 default:
267 return false;
268 }
269 *dst += 1;
270 *src += 1;
271 return true;
272}
273
d295634e
AS
274/**
275 * string_unescape - unquote characters in the given string
276 * @src: source buffer (escaped)
277 * @dst: destination buffer (unescaped)
278 * @size: size of the destination buffer (0 to unlimit)
b4658cdd
JC
279 * @flags: combination of the flags.
280 *
281 * Description:
282 * The function unquotes characters in the given string.
283 *
284 * Because the size of the output will be the same as or less than the size of
285 * the input, the transformation may be performed in place.
286 *
287 * Caller must provide valid source and destination pointers. Be aware that
288 * destination buffer will always be NULL-terminated. Source string must be
289 * NULL-terminated as well. The supported flags are::
290 *
291 * UNESCAPE_SPACE:
d295634e
AS
292 * '\f' - form feed
293 * '\n' - new line
294 * '\r' - carriage return
295 * '\t' - horizontal tab
296 * '\v' - vertical tab
b4658cdd 297 * UNESCAPE_OCTAL:
d295634e 298 * '\NNN' - byte with octal value NNN (1 to 3 digits)
b4658cdd 299 * UNESCAPE_HEX:
d295634e 300 * '\xHH' - byte with hexadecimal value HH (1 to 2 digits)
b4658cdd 301 * UNESCAPE_SPECIAL:
d295634e
AS
302 * '\"' - double quote
303 * '\\' - backslash
304 * '\a' - alert (BEL)
305 * '\e' - escape
b4658cdd 306 * UNESCAPE_ANY:
d295634e
AS
307 * all previous together
308 *
d295634e
AS
309 * Return:
310 * The amount of the characters processed to the destination buffer excluding
311 * trailing '\0' is returned.
312 */
16c7fa05
AS
313int string_unescape(char *src, char *dst, size_t size, unsigned int flags)
314{
315 char *out = dst;
316
317 while (*src && --size) {
318 if (src[0] == '\\' && src[1] != '\0' && size > 1) {
319 src++;
320 size--;
321
322 if (flags & UNESCAPE_SPACE &&
323 unescape_space(&src, &out))
324 continue;
325
326 if (flags & UNESCAPE_OCTAL &&
327 unescape_octal(&src, &out))
328 continue;
329
330 if (flags & UNESCAPE_HEX &&
331 unescape_hex(&src, &out))
332 continue;
333
334 if (flags & UNESCAPE_SPECIAL &&
335 unescape_special(&src, &out))
336 continue;
337
338 *out++ = '\\';
339 }
340 *out++ = *src++;
341 }
342 *out = '\0';
343
344 return out - dst;
345}
346EXPORT_SYMBOL(string_unescape);
c8250381 347
3aeddc7d 348static bool escape_passthrough(unsigned char c, char **dst, char *end)
c8250381
AS
349{
350 char *out = *dst;
351
3aeddc7d
RV
352 if (out < end)
353 *out = c;
354 *dst = out + 1;
355 return true;
c8250381
AS
356}
357
3aeddc7d 358static bool escape_space(unsigned char c, char **dst, char *end)
c8250381
AS
359{
360 char *out = *dst;
361 unsigned char to;
362
c8250381
AS
363 switch (c) {
364 case '\n':
365 to = 'n';
366 break;
367 case '\r':
368 to = 'r';
369 break;
370 case '\t':
371 to = 't';
372 break;
373 case '\v':
374 to = 'v';
375 break;
376 case '\f':
377 to = 'f';
378 break;
379 default:
3aeddc7d 380 return false;
c8250381
AS
381 }
382
3aeddc7d
RV
383 if (out < end)
384 *out = '\\';
385 ++out;
386 if (out < end)
387 *out = to;
388 ++out;
c8250381 389
3aeddc7d
RV
390 *dst = out;
391 return true;
c8250381
AS
392}
393
3aeddc7d 394static bool escape_special(unsigned char c, char **dst, char *end)
c8250381
AS
395{
396 char *out = *dst;
397 unsigned char to;
398
c8250381
AS
399 switch (c) {
400 case '\\':
401 to = '\\';
402 break;
403 case '\a':
404 to = 'a';
405 break;
406 case '\e':
407 to = 'e';
408 break;
91027d0a
CD
409 case '"':
410 to = '"';
411 break;
c8250381 412 default:
3aeddc7d 413 return false;
c8250381
AS
414 }
415
3aeddc7d
RV
416 if (out < end)
417 *out = '\\';
418 ++out;
419 if (out < end)
420 *out = to;
421 ++out;
c8250381 422
3aeddc7d
RV
423 *dst = out;
424 return true;
c8250381
AS
425}
426
3aeddc7d 427static bool escape_null(unsigned char c, char **dst, char *end)
c8250381
AS
428{
429 char *out = *dst;
430
c8250381 431 if (c)
3aeddc7d 432 return false;
c8250381 433
3aeddc7d
RV
434 if (out < end)
435 *out = '\\';
436 ++out;
437 if (out < end)
438 *out = '0';
439 ++out;
c8250381 440
3aeddc7d
RV
441 *dst = out;
442 return true;
c8250381
AS
443}
444
3aeddc7d 445static bool escape_octal(unsigned char c, char **dst, char *end)
c8250381
AS
446{
447 char *out = *dst;
448
3aeddc7d
RV
449 if (out < end)
450 *out = '\\';
451 ++out;
452 if (out < end)
453 *out = ((c >> 6) & 0x07) + '0';
454 ++out;
455 if (out < end)
456 *out = ((c >> 3) & 0x07) + '0';
457 ++out;
458 if (out < end)
459 *out = ((c >> 0) & 0x07) + '0';
460 ++out;
c8250381
AS
461
462 *dst = out;
3aeddc7d 463 return true;
c8250381
AS
464}
465
3aeddc7d 466static bool escape_hex(unsigned char c, char **dst, char *end)
c8250381
AS
467{
468 char *out = *dst;
469
3aeddc7d
RV
470 if (out < end)
471 *out = '\\';
472 ++out;
473 if (out < end)
474 *out = 'x';
475 ++out;
476 if (out < end)
477 *out = hex_asc_hi(c);
478 ++out;
479 if (out < end)
480 *out = hex_asc_lo(c);
481 ++out;
c8250381
AS
482
483 *dst = out;
3aeddc7d 484 return true;
c8250381
AS
485}
486
487/**
488 * string_escape_mem - quote characters in the given memory buffer
489 * @src: source buffer (unescaped)
490 * @isz: source buffer size
491 * @dst: destination buffer (escaped)
492 * @osz: destination buffer size
b4658cdd
JC
493 * @flags: combination of the flags
494 * @only: NULL-terminated string containing characters used to limit
495 * the selected escape class. If characters are included in @only
496 * that would not normally be escaped by the classes selected
497 * in @flags, they will be copied to @dst unescaped.
498 *
499 * Description:
500 * The process of escaping byte buffer includes several parts. They are applied
501 * in the following sequence.
502 *
62519b88 503 * 1. The character is not matched to the one from @only string and thus
b4658cdd 504 * must go as-is to the output.
0362c27f 505 * 2. The character is matched to the printable and ASCII classes, if asked,
a0809783 506 * and in case of match it passes through to the output.
0362c27f
AS
507 * 3. The character is matched to the printable or ASCII class, if asked,
508 * and in case of match it passes through to the output.
509 * 4. The character is checked if it falls into the class given by @flags.
b4658cdd
JC
510 * %ESCAPE_OCTAL and %ESCAPE_HEX are going last since they cover any
511 * character. Note that they actually can't go together, otherwise
512 * %ESCAPE_HEX will be ignored.
513 *
514 * Caller must provide valid source and destination pointers. Be aware that
515 * destination buffer will not be NULL-terminated, thus caller have to append
a0809783 516 * it if needs. The supported flags are::
b4658cdd 517 *
d89a3f73 518 * %ESCAPE_SPACE: (special white space, not space itself)
c8250381
AS
519 * '\f' - form feed
520 * '\n' - new line
521 * '\r' - carriage return
522 * '\t' - horizontal tab
523 * '\v' - vertical tab
524 * %ESCAPE_SPECIAL:
91027d0a 525 * '\"' - double quote
c8250381
AS
526 * '\\' - backslash
527 * '\a' - alert (BEL)
528 * '\e' - escape
529 * %ESCAPE_NULL:
530 * '\0' - null
531 * %ESCAPE_OCTAL:
532 * '\NNN' - byte with octal value NNN (3 digits)
533 * %ESCAPE_ANY:
534 * all previous together
535 * %ESCAPE_NP:
a0809783 536 * escape only non-printable characters, checked by isprint()
c8250381
AS
537 * %ESCAPE_ANY_NP:
538 * all previous together
539 * %ESCAPE_HEX:
540 * '\xHH' - byte with hexadecimal value HH (2 digits)
a0809783
AS
541 * %ESCAPE_NA:
542 * escape only non-ascii characters, checked by isascii()
0362c27f
AS
543 * %ESCAPE_NAP:
544 * escape only non-printable or non-ascii characters
aec0d096
AS
545 * %ESCAPE_APPEND:
546 * append characters from @only to be escaped by the given classes
547 *
548 * %ESCAPE_APPEND would help to pass additional characters to the escaped, when
549 * one of %ESCAPE_NP, %ESCAPE_NA, or %ESCAPE_NAP is provided.
a0809783 550 *
0362c27f
AS
551 * One notable caveat, the %ESCAPE_NAP, %ESCAPE_NP and %ESCAPE_NA have the
552 * higher priority than the rest of the flags (%ESCAPE_NAP is the highest).
a0809783
AS
553 * It doesn't make much sense to use either of them without %ESCAPE_OCTAL
554 * or %ESCAPE_HEX, because they cover most of the other character classes.
0362c27f
AS
555 * %ESCAPE_NAP can utilize %ESCAPE_SPACE or %ESCAPE_SPECIAL in addition to
556 * the above.
c8250381
AS
557 *
558 * Return:
41416f23
RV
559 * The total size of the escaped output that would be generated for
560 * the given input and flags. To check whether the output was
561 * truncated, compare the return value to osz. There is room left in
562 * dst for a '\0' terminator if and only if ret < osz.
c8250381 563 */
41416f23 564int string_escape_mem(const char *src, size_t isz, char *dst, size_t osz,
b40bdb7f 565 unsigned int flags, const char *only)
c8250381 566{
41416f23 567 char *p = dst;
3aeddc7d 568 char *end = p + osz;
b40bdb7f 569 bool is_dict = only && *only;
aec0d096 570 bool is_append = flags & ESCAPE_APPEND;
c8250381
AS
571
572 while (isz--) {
573 unsigned char c = *src++;
aec0d096 574 bool in_dict = is_dict && strchr(only, c);
c8250381
AS
575
576 /*
577 * Apply rules in the following sequence:
b40bdb7f 578 * - the @only string is supplied and does not contain a
c8250381 579 * character under question
0362c27f
AS
580 * - the character is printable and ASCII, when @flags has
581 * %ESCAPE_NAP bit set
62519b88
AS
582 * - the character is printable, when @flags has
583 * %ESCAPE_NP bit set
a0809783
AS
584 * - the character is ASCII, when @flags has
585 * %ESCAPE_NA bit set
c8250381
AS
586 * - the character doesn't fall into a class of symbols
587 * defined by given @flags
588 * In these cases we just pass through a character to the
589 * output buffer.
aec0d096
AS
590 *
591 * When %ESCAPE_APPEND is passed, the characters from @only
592 * have been excluded from the %ESCAPE_NAP, %ESCAPE_NP, and
593 * %ESCAPE_NA cases.
c8250381 594 */
aec0d096 595 if (!(is_append || in_dict) && is_dict &&
7e5969ae
AS
596 escape_passthrough(c, &p, end))
597 continue;
62519b88 598
aec0d096 599 if (!(is_append && in_dict) && isascii(c) && isprint(c) &&
0362c27f
AS
600 flags & ESCAPE_NAP && escape_passthrough(c, &p, end))
601 continue;
602
aec0d096 603 if (!(is_append && in_dict) && isprint(c) &&
7e5969ae
AS
604 flags & ESCAPE_NP && escape_passthrough(c, &p, end))
605 continue;
3aeddc7d 606
aec0d096 607 if (!(is_append && in_dict) && isascii(c) &&
a0809783
AS
608 flags & ESCAPE_NA && escape_passthrough(c, &p, end))
609 continue;
610
7e5969ae
AS
611 if (flags & ESCAPE_SPACE && escape_space(c, &p, end))
612 continue;
3aeddc7d 613
7e5969ae
AS
614 if (flags & ESCAPE_SPECIAL && escape_special(c, &p, end))
615 continue;
c8250381 616
7e5969ae
AS
617 if (flags & ESCAPE_NULL && escape_null(c, &p, end))
618 continue;
3aeddc7d 619
7e5969ae
AS
620 /* ESCAPE_OCTAL and ESCAPE_HEX always go last */
621 if (flags & ESCAPE_OCTAL && escape_octal(c, &p, end))
622 continue;
623
624 if (flags & ESCAPE_HEX && escape_hex(c, &p, end))
625 continue;
c8250381 626
3aeddc7d 627 escape_passthrough(c, &p, end);
c8250381
AS
628 }
629
41416f23 630 return p - dst;
c8250381
AS
631}
632EXPORT_SYMBOL(string_escape_mem);
b53f27e4
KC
633
634/*
635 * Return an allocated string that has been escaped of special characters
636 * and double quotes, making it safe to log in quotes.
637 */
638char *kstrdup_quotable(const char *src, gfp_t gfp)
639{
640 size_t slen, dlen;
641 char *dst;
642 const int flags = ESCAPE_HEX;
643 const char esc[] = "\f\n\r\t\v\a\e\\\"";
644
645 if (!src)
646 return NULL;
647 slen = strlen(src);
648
649 dlen = string_escape_mem(src, slen, NULL, 0, flags, esc);
650 dst = kmalloc(dlen + 1, gfp);
651 if (!dst)
652 return NULL;
653
654 WARN_ON(string_escape_mem(src, slen, dst, dlen, flags, esc) != dlen);
655 dst[dlen] = '\0';
656
657 return dst;
658}
659EXPORT_SYMBOL_GPL(kstrdup_quotable);
0d044328
KC
660
661/*
662 * Returns allocated NULL-terminated string containing process
663 * command line, with inter-argument NULLs replaced with spaces,
664 * and other special characters escaped.
665 */
666char *kstrdup_quotable_cmdline(struct task_struct *task, gfp_t gfp)
667{
668 char *buffer, *quoted;
669 int i, res;
670
0ee931c4 671 buffer = kmalloc(PAGE_SIZE, GFP_KERNEL);
0d044328
KC
672 if (!buffer)
673 return NULL;
674
675 res = get_cmdline(task, buffer, PAGE_SIZE - 1);
676 buffer[res] = '\0';
677
678 /* Collapse trailing NULLs, leave res pointing to last non-NULL. */
679 while (--res >= 0 && buffer[res] == '\0')
680 ;
681
682 /* Replace inter-argument NULLs. */
683 for (i = 0; i <= res; i++)
684 if (buffer[i] == '\0')
685 buffer[i] = ' ';
686
687 /* Make sure result is printable. */
688 quoted = kstrdup_quotable(buffer, gfp);
689 kfree(buffer);
690 return quoted;
691}
692EXPORT_SYMBOL_GPL(kstrdup_quotable_cmdline);
21985319
KC
693
694/*
695 * Returns allocated NULL-terminated string containing pathname,
696 * with special characters escaped, able to be safely logged. If
697 * there is an error, the leading character will be "<".
698 */
699char *kstrdup_quotable_file(struct file *file, gfp_t gfp)
700{
701 char *temp, *pathname;
702
703 if (!file)
704 return kstrdup("<unknown>", gfp);
705
706 /* We add 11 spaces for ' (deleted)' to be appended */
0ee931c4 707 temp = kmalloc(PATH_MAX + 11, GFP_KERNEL);
21985319
KC
708 if (!temp)
709 return kstrdup("<no_memory>", gfp);
710
711 pathname = file_path(file, temp, PATH_MAX + 11);
712 if (IS_ERR(pathname))
713 pathname = kstrdup("<too_long>", gfp);
714 else
715 pathname = kstrdup_quotable(pathname, gfp);
716
717 kfree(temp);
718 return pathname;
719}
720EXPORT_SYMBOL_GPL(kstrdup_quotable_file);
0fd16012 721
045ad464
AS
722/*
723 * Returns duplicate string in which the @old characters are replaced by @new.
724 */
725char *kstrdup_and_replace(const char *src, char old, char new, gfp_t gfp)
726{
727 char *dst;
728
729 dst = kstrdup(src, gfp);
730 if (!dst)
731 return NULL;
732
733 return strreplace(dst, old, new);
734}
735EXPORT_SYMBOL_GPL(kstrdup_and_replace);
736
418e0a35
AS
737/**
738 * kasprintf_strarray - allocate and fill array of sequential strings
739 * @gfp: flags for the slab allocator
740 * @prefix: prefix to be used
741 * @n: amount of lines to be allocated and filled
742 *
743 * Allocates and fills @n strings using pattern "%s-%zu", where prefix
744 * is provided by caller. The caller is responsible to free them with
745 * kfree_strarray() after use.
746 *
747 * Returns array of strings or NULL when memory can't be allocated.
748 */
749char **kasprintf_strarray(gfp_t gfp, const char *prefix, size_t n)
750{
751 char **names;
752 size_t i;
753
754 names = kcalloc(n + 1, sizeof(char *), gfp);
755 if (!names)
756 return NULL;
757
758 for (i = 0; i < n; i++) {
759 names[i] = kasprintf(gfp, "%s-%zu", prefix, i);
760 if (!names[i]) {
761 kfree_strarray(names, i);
762 return NULL;
763 }
764 }
765
766 return names;
767}
768EXPORT_SYMBOL_GPL(kasprintf_strarray);
769
0fd16012
BG
770/**
771 * kfree_strarray - free a number of dynamically allocated strings contained
772 * in an array and the array itself
773 *
774 * @array: Dynamically allocated array of strings to free.
775 * @n: Number of strings (starting from the beginning of the array) to free.
776 *
777 * Passing a non-NULL @array and @n == 0 as well as NULL @array are valid
778 * use-cases. If @array is NULL, the function does nothing.
779 */
780void kfree_strarray(char **array, size_t n)
781{
782 unsigned int i;
783
784 if (!array)
785 return;
786
787 for (i = 0; i < n; i++)
788 kfree(array[i]);
789 kfree(array);
790}
791EXPORT_SYMBOL_GPL(kfree_strarray);
cfecea6e 792
acdb89b6
AS
793struct strarray {
794 char **array;
795 size_t n;
796};
797
798static void devm_kfree_strarray(struct device *dev, void *res)
799{
800 struct strarray *array = res;
801
802 kfree_strarray(array->array, array->n);
803}
804
805char **devm_kasprintf_strarray(struct device *dev, const char *prefix, size_t n)
806{
807 struct strarray *ptr;
808
809 ptr = devres_alloc(devm_kfree_strarray, sizeof(*ptr), GFP_KERNEL);
810 if (!ptr)
811 return ERR_PTR(-ENOMEM);
812
813 ptr->array = kasprintf_strarray(GFP_KERNEL, prefix, n);
814 if (!ptr->array) {
815 devres_free(ptr);
816 return ERR_PTR(-ENOMEM);
817 }
818
cd290a98
PL
819 ptr->n = n;
820 devres_add(dev, ptr);
821
acdb89b6
AS
822 return ptr->array;
823}
824EXPORT_SYMBOL_GPL(devm_kasprintf_strarray);
825
cfecea6e
KC
826/**
827 * strscpy_pad() - Copy a C-string into a sized buffer
828 * @dest: Where to copy the string to
829 * @src: Where to copy the string from
830 * @count: Size of destination buffer
831 *
832 * Copy the string, or as much of it as fits, into the dest buffer. The
833 * behavior is undefined if the string buffers overlap. The destination
834 * buffer is always %NUL terminated, unless it's zero-sized.
835 *
836 * If the source string is shorter than the destination buffer, zeros
837 * the tail of the destination buffer.
838 *
839 * For full explanation of why you may want to consider using the
840 * 'strscpy' functions please see the function docstring for strscpy().
841 *
842 * Returns:
843 * * The number of characters copied (not including the trailing %NUL)
844 * * -E2BIG if count is 0 or @src was truncated.
845 */
846ssize_t strscpy_pad(char *dest, const char *src, size_t count)
847{
848 ssize_t written;
849
850 written = strscpy(dest, src, count);
851 if (written < 0 || written == count - 1)
852 return written;
853
854 memset(dest + written + 1, 0, count - written - 1);
855
856 return written;
857}
858EXPORT_SYMBOL(strscpy_pad);
859
860/**
861 * skip_spaces - Removes leading whitespace from @str.
862 * @str: The string to be stripped.
863 *
864 * Returns a pointer to the first non-whitespace character in @str.
865 */
866char *skip_spaces(const char *str)
867{
868 while (isspace(*str))
869 ++str;
870 return (char *)str;
871}
872EXPORT_SYMBOL(skip_spaces);
873
874/**
875 * strim - Removes leading and trailing whitespace from @s.
876 * @s: The string to be stripped.
877 *
878 * Note that the first trailing whitespace is replaced with a %NUL-terminator
879 * in the given string @s. Returns a pointer to the first non-whitespace
880 * character in @s.
881 */
882char *strim(char *s)
883{
884 size_t size;
885 char *end;
886
887 size = strlen(s);
888 if (!size)
889 return s;
890
891 end = s + size - 1;
892 while (end >= s && isspace(*end))
893 end--;
894 *(end + 1) = '\0';
895
896 return skip_spaces(s);
897}
898EXPORT_SYMBOL(strim);
899
900/**
901 * sysfs_streq - return true if strings are equal, modulo trailing newline
902 * @s1: one string
903 * @s2: another string
904 *
905 * This routine returns true iff two strings are equal, treating both
906 * NUL and newline-then-NUL as equivalent string terminations. It's
907 * geared for use with sysfs input strings, which generally terminate
908 * with newlines but are compared against values without newlines.
909 */
910bool sysfs_streq(const char *s1, const char *s2)
911{
912 while (*s1 && *s1 == *s2) {
913 s1++;
914 s2++;
915 }
916
917 if (*s1 == *s2)
918 return true;
919 if (!*s1 && *s2 == '\n' && !s2[1])
920 return true;
921 if (*s1 == '\n' && !s1[1] && !*s2)
922 return true;
923 return false;
924}
925EXPORT_SYMBOL(sysfs_streq);
926
927/**
928 * match_string - matches given string in an array
929 * @array: array of strings
930 * @n: number of strings in the array or -1 for NULL terminated arrays
931 * @string: string to match with
932 *
933 * This routine will look for a string in an array of strings up to the
934 * n-th element in the array or until the first NULL element.
935 *
936 * Historically the value of -1 for @n, was used to search in arrays that
937 * are NULL terminated. However, the function does not make a distinction
938 * when finishing the search: either @n elements have been compared OR
939 * the first NULL element was found.
940 *
941 * Return:
942 * index of a @string in the @array if matches, or %-EINVAL otherwise.
943 */
944int match_string(const char * const *array, size_t n, const char *string)
945{
946 int index;
947 const char *item;
948
949 for (index = 0; index < n; index++) {
950 item = array[index];
951 if (!item)
952 break;
953 if (!strcmp(item, string))
954 return index;
955 }
956
957 return -EINVAL;
958}
959EXPORT_SYMBOL(match_string);
960
961/**
962 * __sysfs_match_string - matches given string in an array
963 * @array: array of strings
964 * @n: number of strings in the array or -1 for NULL terminated arrays
965 * @str: string to match with
966 *
967 * Returns index of @str in the @array or -EINVAL, just like match_string().
968 * Uses sysfs_streq instead of strcmp for matching.
969 *
970 * This routine will look for a string in an array of strings up to the
971 * n-th element in the array or until the first NULL element.
972 *
973 * Historically the value of -1 for @n, was used to search in arrays that
974 * are NULL terminated. However, the function does not make a distinction
975 * when finishing the search: either @n elements have been compared OR
976 * the first NULL element was found.
977 */
978int __sysfs_match_string(const char * const *array, size_t n, const char *str)
979{
980 const char *item;
981 int index;
982
983 for (index = 0; index < n; index++) {
984 item = array[index];
985 if (!item)
986 break;
987 if (sysfs_streq(item, str))
988 return index;
989 }
990
991 return -EINVAL;
992}
993EXPORT_SYMBOL(__sysfs_match_string);
994
995/**
996 * strreplace - Replace all occurrences of character in string.
d01a77af 997 * @str: The string to operate on.
cfecea6e
KC
998 * @old: The character being replaced.
999 * @new: The character @old is replaced with.
1000 *
d01a77af
AS
1001 * Replaces the each @old character with a @new one in the given string @str.
1002 *
1003 * Return: pointer to the string @str itself.
cfecea6e 1004 */
d01a77af 1005char *strreplace(char *str, char old, char new)
cfecea6e 1006{
d01a77af
AS
1007 char *s = str;
1008
cfecea6e
KC
1009 for (; *s; ++s)
1010 if (*s == old)
1011 *s = new;
d01a77af 1012 return str;
cfecea6e
KC
1013}
1014EXPORT_SYMBOL(strreplace);
1015
5c4e0a21
GR
1016/**
1017 * memcpy_and_pad - Copy one buffer to another with padding
1018 * @dest: Where to copy to
1019 * @dest_len: The destination buffer size
1020 * @src: Where to copy from
1021 * @count: The number of bytes to copy
1022 * @pad: Character to use for padding if space is left in destination.
1023 */
1024void memcpy_and_pad(void *dest, size_t dest_len, const void *src, size_t count,
1025 int pad)
1026{
1027 if (dest_len > count) {
1028 memcpy(dest, src, count);
1029 memset(dest + count, pad, dest_len - count);
1030 } else {
1031 memcpy(dest, src, dest_len);
1032 }
1033}
1034EXPORT_SYMBOL(memcpy_and_pad);
1035
c430f600 1036#ifdef CONFIG_FORTIFY_SOURCE
f68f2ff9
KC
1037/* These are placeholders for fortify compile-time warnings. */
1038void __read_overflow2_field(size_t avail, size_t wanted) { }
1039EXPORT_SYMBOL(__read_overflow2_field);
1040void __write_overflow_field(size_t avail, size_t wanted) { }
1041EXPORT_SYMBOL(__write_overflow_field);
1042
cfecea6e
KC
1043void fortify_panic(const char *name)
1044{
1045 pr_emerg("detected buffer overflow in %s\n", name);
1046 BUG();
1047}
1048EXPORT_SYMBOL(fortify_panic);
c430f600 1049#endif /* CONFIG_FORTIFY_SOURCE */