Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Helpers for formatting and printing strings |
| 4 | * |
| 5 | * Copyright 31 August 2008 James Bottomley |
Andy Shevchenko | 16c7fa0 | 2013-04-30 15:27:30 -0700 | [diff] [blame] | 6 | * Copyright (C) 2013, Intel Corporation |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 7 | */ |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 8 | #include <linux/bug.h> |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 9 | #include <linux/kernel.h> |
| 10 | #include <linux/math64.h> |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 11 | #include <linux/export.h> |
Andy Shevchenko | 16c7fa0 | 2013-04-30 15:27:30 -0700 | [diff] [blame] | 12 | #include <linux/ctype.h> |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 13 | #include <linux/errno.h> |
Kees Cook | 2198531 | 2016-04-20 15:46:25 -0700 | [diff] [blame] | 14 | #include <linux/fs.h> |
| 15 | #include <linux/limits.h> |
Kees Cook | 0d04432 | 2016-04-20 15:46:24 -0700 | [diff] [blame] | 16 | #include <linux/mm.h> |
Kees Cook | b53f27e | 2016-04-20 15:46:23 -0700 | [diff] [blame] | 17 | #include <linux/slab.h> |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 18 | #include <linux/string.h> |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 19 | #include <linux/string_helpers.h> |
| 20 | |
| 21 | /** |
| 22 | * string_get_size - get the size in the specified units |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 23 | * @size: The size to be converted in blocks |
| 24 | * @blk_size: Size of the block (use 1 for size in bytes) |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 25 | * @units: units to use (powers of 1000 or 1024) |
| 26 | * @buf: buffer to format to |
| 27 | * @len: length of buffer |
| 28 | * |
| 29 | * This function returns a string formatted to 3 significant figures |
Rasmus Villemoes | d1214c6 | 2015-02-12 15:01:50 -0800 | [diff] [blame] | 30 | * giving the size in the required units. @buf should have room for |
| 31 | * at least 9 bytes and will always be zero terminated. |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 32 | * |
| 33 | */ |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 34 | void string_get_size(u64 size, u64 blk_size, const enum string_size_units units, |
Rasmus Villemoes | d1214c6 | 2015-02-12 15:01:50 -0800 | [diff] [blame] | 35 | char *buf, int len) |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 36 | { |
Mathias Krause | 142cda5 | 2014-08-06 16:09:31 -0700 | [diff] [blame] | 37 | static const char *const units_10[] = { |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 38 | "B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" |
Mathias Krause | 142cda5 | 2014-08-06 16:09:31 -0700 | [diff] [blame] | 39 | }; |
| 40 | static const char *const units_2[] = { |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 41 | "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB" |
Mathias Krause | 142cda5 | 2014-08-06 16:09:31 -0700 | [diff] [blame] | 42 | }; |
| 43 | static const char *const *const units_str[] = { |
| 44 | [STRING_UNITS_10] = units_10, |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 45 | [STRING_UNITS_2] = units_2, |
| 46 | }; |
Andrew Morton | 68aecfb | 2012-05-29 15:07:32 -0700 | [diff] [blame] | 47 | static const unsigned int divisor[] = { |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 48 | [STRING_UNITS_10] = 1000, |
| 49 | [STRING_UNITS_2] = 1024, |
| 50 | }; |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 51 | static const unsigned int rounding[] = { 500, 50, 5 }; |
| 52 | int i = 0, j; |
| 53 | u32 remainder = 0, sf_cap; |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 54 | char tmp[8]; |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 55 | const char *unit; |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 56 | |
| 57 | tmp[0] = '\0'; |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 58 | |
| 59 | if (blk_size == 0) |
| 60 | size = 0; |
| 61 | if (size == 0) |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 62 | goto out; |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 63 | |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 64 | /* This is Napier's algorithm. Reduce the original block size to |
| 65 | * |
| 66 | * coefficient * divisor[units]^i |
| 67 | * |
| 68 | * we do the reduction so both coefficients are just under 32 bits so |
| 69 | * that multiplying them together won't overflow 64 bits and we keep |
| 70 | * as much precision as possible in the numbers. |
| 71 | * |
| 72 | * Note: it's safe to throw away the remainders here because all the |
| 73 | * precision is in the coefficients. |
Vitaly Kuznetsov | 62bef58 | 2015-09-17 16:01:51 -0700 | [diff] [blame] | 74 | */ |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 75 | while (blk_size >> 32) { |
| 76 | do_div(blk_size, divisor[units]); |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 77 | i++; |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 78 | } |
| 79 | |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 80 | while (size >> 32) { |
| 81 | do_div(size, divisor[units]); |
| 82 | i++; |
| 83 | } |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 84 | |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 85 | /* now perform the actual multiplication keeping i as the sum of the |
| 86 | * two logarithms */ |
| 87 | size *= blk_size; |
| 88 | |
| 89 | /* and logarithmically reduce it until it's just under the divisor */ |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 90 | while (size >= divisor[units]) { |
| 91 | remainder = do_div(size, divisor[units]); |
| 92 | i++; |
| 93 | } |
| 94 | |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 95 | /* work out in j how many digits of precision we need from the |
| 96 | * remainder */ |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 97 | sf_cap = size; |
| 98 | for (j = 0; sf_cap*10 < 1000; j++) |
| 99 | sf_cap *= 10; |
| 100 | |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 101 | if (units == STRING_UNITS_2) { |
| 102 | /* express the remainder as a decimal. It's currently the |
| 103 | * numerator of a fraction whose denominator is |
| 104 | * divisor[units], which is 1 << 10 for STRING_UNITS_2 */ |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 105 | remainder *= 1000; |
James Bottomley | 564b026 | 2016-01-20 14:58:29 -0800 | [diff] [blame] | 106 | remainder >>= 10; |
| 107 | } |
| 108 | |
| 109 | /* add a 5 to the digit below what will be printed to ensure |
| 110 | * an arithmetical round up and carry it through to size */ |
| 111 | remainder += rounding[j]; |
| 112 | if (remainder >= 1000) { |
| 113 | remainder -= 1000; |
| 114 | size += 1; |
| 115 | } |
| 116 | |
| 117 | if (j) { |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 118 | snprintf(tmp, sizeof(tmp), ".%03u", remainder); |
| 119 | tmp[j+1] = '\0'; |
| 120 | } |
| 121 | |
| 122 | out: |
| 123 | if (i >= ARRAY_SIZE(units_2)) |
| 124 | unit = "UNK"; |
| 125 | else |
| 126 | unit = units_str[units][i]; |
| 127 | |
Rasmus Villemoes | 84b9fbe | 2015-02-12 15:01:48 -0800 | [diff] [blame] | 128 | snprintf(buf, len, "%u%s %s", (u32)size, |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 129 | tmp, unit); |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 130 | } |
| 131 | EXPORT_SYMBOL(string_get_size); |
Andy Shevchenko | 16c7fa0 | 2013-04-30 15:27:30 -0700 | [diff] [blame] | 132 | |
| 133 | static bool unescape_space(char **src, char **dst) |
| 134 | { |
| 135 | char *p = *dst, *q = *src; |
| 136 | |
| 137 | switch (*q) { |
| 138 | case 'n': |
| 139 | *p = '\n'; |
| 140 | break; |
| 141 | case 'r': |
| 142 | *p = '\r'; |
| 143 | break; |
| 144 | case 't': |
| 145 | *p = '\t'; |
| 146 | break; |
| 147 | case 'v': |
| 148 | *p = '\v'; |
| 149 | break; |
| 150 | case 'f': |
| 151 | *p = '\f'; |
| 152 | break; |
| 153 | default: |
| 154 | return false; |
| 155 | } |
| 156 | *dst += 1; |
| 157 | *src += 1; |
| 158 | return true; |
| 159 | } |
| 160 | |
| 161 | static bool unescape_octal(char **src, char **dst) |
| 162 | { |
| 163 | char *p = *dst, *q = *src; |
| 164 | u8 num; |
| 165 | |
| 166 | if (isodigit(*q) == 0) |
| 167 | return false; |
| 168 | |
| 169 | num = (*q++) & 7; |
| 170 | while (num < 32 && isodigit(*q) && (q - *src < 3)) { |
| 171 | num <<= 3; |
| 172 | num += (*q++) & 7; |
| 173 | } |
| 174 | *p = num; |
| 175 | *dst += 1; |
| 176 | *src = q; |
| 177 | return true; |
| 178 | } |
| 179 | |
| 180 | static bool unescape_hex(char **src, char **dst) |
| 181 | { |
| 182 | char *p = *dst, *q = *src; |
| 183 | int digit; |
| 184 | u8 num; |
| 185 | |
| 186 | if (*q++ != 'x') |
| 187 | return false; |
| 188 | |
| 189 | num = digit = hex_to_bin(*q++); |
| 190 | if (digit < 0) |
| 191 | return false; |
| 192 | |
| 193 | digit = hex_to_bin(*q); |
| 194 | if (digit >= 0) { |
| 195 | q++; |
| 196 | num = (num << 4) | digit; |
| 197 | } |
| 198 | *p = num; |
| 199 | *dst += 1; |
| 200 | *src = q; |
| 201 | return true; |
| 202 | } |
| 203 | |
| 204 | static bool unescape_special(char **src, char **dst) |
| 205 | { |
| 206 | char *p = *dst, *q = *src; |
| 207 | |
| 208 | switch (*q) { |
| 209 | case '\"': |
| 210 | *p = '\"'; |
| 211 | break; |
| 212 | case '\\': |
| 213 | *p = '\\'; |
| 214 | break; |
| 215 | case 'a': |
| 216 | *p = '\a'; |
| 217 | break; |
| 218 | case 'e': |
| 219 | *p = '\e'; |
| 220 | break; |
| 221 | default: |
| 222 | return false; |
| 223 | } |
| 224 | *dst += 1; |
| 225 | *src += 1; |
| 226 | return true; |
| 227 | } |
| 228 | |
Andy Shevchenko | d295634 | 2014-10-13 15:55:11 -0700 | [diff] [blame] | 229 | /** |
| 230 | * string_unescape - unquote characters in the given string |
| 231 | * @src: source buffer (escaped) |
| 232 | * @dst: destination buffer (unescaped) |
| 233 | * @size: size of the destination buffer (0 to unlimit) |
Jonathan Corbet | b4658cd | 2019-07-16 16:27:36 -0700 | [diff] [blame] | 234 | * @flags: combination of the flags. |
Andy Shevchenko | d295634 | 2014-10-13 15:55:11 -0700 | [diff] [blame] | 235 | * |
| 236 | * Description: |
| 237 | * The function unquotes characters in the given string. |
| 238 | * |
| 239 | * Because the size of the output will be the same as or less than the size of |
| 240 | * the input, the transformation may be performed in place. |
| 241 | * |
| 242 | * Caller must provide valid source and destination pointers. Be aware that |
| 243 | * destination buffer will always be NULL-terminated. Source string must be |
Jonathan Corbet | b4658cd | 2019-07-16 16:27:36 -0700 | [diff] [blame] | 244 | * NULL-terminated as well. The supported flags are:: |
| 245 | * |
| 246 | * UNESCAPE_SPACE: |
| 247 | * '\f' - form feed |
| 248 | * '\n' - new line |
| 249 | * '\r' - carriage return |
| 250 | * '\t' - horizontal tab |
| 251 | * '\v' - vertical tab |
| 252 | * UNESCAPE_OCTAL: |
| 253 | * '\NNN' - byte with octal value NNN (1 to 3 digits) |
| 254 | * UNESCAPE_HEX: |
| 255 | * '\xHH' - byte with hexadecimal value HH (1 to 2 digits) |
| 256 | * UNESCAPE_SPECIAL: |
| 257 | * '\"' - double quote |
| 258 | * '\\' - backslash |
| 259 | * '\a' - alert (BEL) |
| 260 | * '\e' - escape |
| 261 | * UNESCAPE_ANY: |
| 262 | * all previous together |
Andy Shevchenko | d295634 | 2014-10-13 15:55:11 -0700 | [diff] [blame] | 263 | * |
| 264 | * Return: |
| 265 | * The amount of the characters processed to the destination buffer excluding |
| 266 | * trailing '\0' is returned. |
| 267 | */ |
Andy Shevchenko | 16c7fa0 | 2013-04-30 15:27:30 -0700 | [diff] [blame] | 268 | int string_unescape(char *src, char *dst, size_t size, unsigned int flags) |
| 269 | { |
| 270 | char *out = dst; |
| 271 | |
| 272 | while (*src && --size) { |
| 273 | if (src[0] == '\\' && src[1] != '\0' && size > 1) { |
| 274 | src++; |
| 275 | size--; |
| 276 | |
| 277 | if (flags & UNESCAPE_SPACE && |
| 278 | unescape_space(&src, &out)) |
| 279 | continue; |
| 280 | |
| 281 | if (flags & UNESCAPE_OCTAL && |
| 282 | unescape_octal(&src, &out)) |
| 283 | continue; |
| 284 | |
| 285 | if (flags & UNESCAPE_HEX && |
| 286 | unescape_hex(&src, &out)) |
| 287 | continue; |
| 288 | |
| 289 | if (flags & UNESCAPE_SPECIAL && |
| 290 | unescape_special(&src, &out)) |
| 291 | continue; |
| 292 | |
| 293 | *out++ = '\\'; |
| 294 | } |
| 295 | *out++ = *src++; |
| 296 | } |
| 297 | *out = '\0'; |
| 298 | |
| 299 | return out - dst; |
| 300 | } |
| 301 | EXPORT_SYMBOL(string_unescape); |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 302 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 303 | static bool escape_passthrough(unsigned char c, char **dst, char *end) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 304 | { |
| 305 | char *out = *dst; |
| 306 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 307 | if (out < end) |
| 308 | *out = c; |
| 309 | *dst = out + 1; |
| 310 | return true; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 313 | static bool escape_space(unsigned char c, char **dst, char *end) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 314 | { |
| 315 | char *out = *dst; |
| 316 | unsigned char to; |
| 317 | |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 318 | switch (c) { |
| 319 | case '\n': |
| 320 | to = 'n'; |
| 321 | break; |
| 322 | case '\r': |
| 323 | to = 'r'; |
| 324 | break; |
| 325 | case '\t': |
| 326 | to = 't'; |
| 327 | break; |
| 328 | case '\v': |
| 329 | to = 'v'; |
| 330 | break; |
| 331 | case '\f': |
| 332 | to = 'f'; |
| 333 | break; |
| 334 | default: |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 335 | return false; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 338 | if (out < end) |
| 339 | *out = '\\'; |
| 340 | ++out; |
| 341 | if (out < end) |
| 342 | *out = to; |
| 343 | ++out; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 344 | |
| 345 | *dst = out; |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 346 | return true; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 349 | static bool escape_special(unsigned char c, char **dst, char *end) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 350 | { |
| 351 | char *out = *dst; |
| 352 | unsigned char to; |
| 353 | |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 354 | switch (c) { |
| 355 | case '\\': |
| 356 | to = '\\'; |
| 357 | break; |
| 358 | case '\a': |
| 359 | to = 'a'; |
| 360 | break; |
| 361 | case '\e': |
| 362 | to = 'e'; |
| 363 | break; |
| 364 | default: |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 365 | return false; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 366 | } |
| 367 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 368 | if (out < end) |
| 369 | *out = '\\'; |
| 370 | ++out; |
| 371 | if (out < end) |
| 372 | *out = to; |
| 373 | ++out; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 374 | |
| 375 | *dst = out; |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 376 | return true; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 379 | static bool escape_null(unsigned char c, char **dst, char *end) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 380 | { |
| 381 | char *out = *dst; |
| 382 | |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 383 | if (c) |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 384 | return false; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 385 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 386 | if (out < end) |
| 387 | *out = '\\'; |
| 388 | ++out; |
| 389 | if (out < end) |
| 390 | *out = '0'; |
| 391 | ++out; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 392 | |
| 393 | *dst = out; |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 394 | return true; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 397 | static bool escape_octal(unsigned char c, char **dst, char *end) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 398 | { |
| 399 | char *out = *dst; |
| 400 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 401 | if (out < end) |
| 402 | *out = '\\'; |
| 403 | ++out; |
| 404 | if (out < end) |
| 405 | *out = ((c >> 6) & 0x07) + '0'; |
| 406 | ++out; |
| 407 | if (out < end) |
| 408 | *out = ((c >> 3) & 0x07) + '0'; |
| 409 | ++out; |
| 410 | if (out < end) |
| 411 | *out = ((c >> 0) & 0x07) + '0'; |
| 412 | ++out; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 413 | |
| 414 | *dst = out; |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 415 | return true; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 418 | static bool escape_hex(unsigned char c, char **dst, char *end) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 419 | { |
| 420 | char *out = *dst; |
| 421 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 422 | if (out < end) |
| 423 | *out = '\\'; |
| 424 | ++out; |
| 425 | if (out < end) |
| 426 | *out = 'x'; |
| 427 | ++out; |
| 428 | if (out < end) |
| 429 | *out = hex_asc_hi(c); |
| 430 | ++out; |
| 431 | if (out < end) |
| 432 | *out = hex_asc_lo(c); |
| 433 | ++out; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 434 | |
| 435 | *dst = out; |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 436 | return true; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | /** |
| 440 | * string_escape_mem - quote characters in the given memory buffer |
| 441 | * @src: source buffer (unescaped) |
| 442 | * @isz: source buffer size |
| 443 | * @dst: destination buffer (escaped) |
| 444 | * @osz: destination buffer size |
Jonathan Corbet | b4658cd | 2019-07-16 16:27:36 -0700 | [diff] [blame] | 445 | * @flags: combination of the flags |
| 446 | * @only: NULL-terminated string containing characters used to limit |
| 447 | * the selected escape class. If characters are included in @only |
| 448 | * that would not normally be escaped by the classes selected |
| 449 | * in @flags, they will be copied to @dst unescaped. |
| 450 | * |
| 451 | * Description: |
| 452 | * The process of escaping byte buffer includes several parts. They are applied |
| 453 | * in the following sequence. |
| 454 | * |
Andy Shevchenko | 62519b8 | 2021-06-30 18:55:08 -0700 | [diff] [blame] | 455 | * 1. The character is not matched to the one from @only string and thus |
Jonathan Corbet | b4658cd | 2019-07-16 16:27:36 -0700 | [diff] [blame] | 456 | * must go as-is to the output. |
Andy Shevchenko | 0362c27 | 2021-06-30 18:55:17 -0700 | [diff] [blame] | 457 | * 2. The character is matched to the printable and ASCII classes, if asked, |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 458 | * and in case of match it passes through to the output. |
Andy Shevchenko | 0362c27 | 2021-06-30 18:55:17 -0700 | [diff] [blame] | 459 | * 3. The character is matched to the printable or ASCII class, if asked, |
| 460 | * and in case of match it passes through to the output. |
| 461 | * 4. The character is checked if it falls into the class given by @flags. |
Jonathan Corbet | b4658cd | 2019-07-16 16:27:36 -0700 | [diff] [blame] | 462 | * %ESCAPE_OCTAL and %ESCAPE_HEX are going last since they cover any |
| 463 | * character. Note that they actually can't go together, otherwise |
| 464 | * %ESCAPE_HEX will be ignored. |
| 465 | * |
| 466 | * Caller must provide valid source and destination pointers. Be aware that |
| 467 | * destination buffer will not be NULL-terminated, thus caller have to append |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 468 | * it if needs. The supported flags are:: |
Jonathan Corbet | b4658cd | 2019-07-16 16:27:36 -0700 | [diff] [blame] | 469 | * |
Kees Cook | d89a3f7 | 2015-09-09 15:37:14 -0700 | [diff] [blame] | 470 | * %ESCAPE_SPACE: (special white space, not space itself) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 471 | * '\f' - form feed |
| 472 | * '\n' - new line |
| 473 | * '\r' - carriage return |
| 474 | * '\t' - horizontal tab |
| 475 | * '\v' - vertical tab |
| 476 | * %ESCAPE_SPECIAL: |
| 477 | * '\\' - backslash |
| 478 | * '\a' - alert (BEL) |
| 479 | * '\e' - escape |
| 480 | * %ESCAPE_NULL: |
| 481 | * '\0' - null |
| 482 | * %ESCAPE_OCTAL: |
| 483 | * '\NNN' - byte with octal value NNN (3 digits) |
| 484 | * %ESCAPE_ANY: |
| 485 | * all previous together |
| 486 | * %ESCAPE_NP: |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 487 | * escape only non-printable characters, checked by isprint() |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 488 | * %ESCAPE_ANY_NP: |
| 489 | * all previous together |
| 490 | * %ESCAPE_HEX: |
| 491 | * '\xHH' - byte with hexadecimal value HH (2 digits) |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 492 | * %ESCAPE_NA: |
| 493 | * escape only non-ascii characters, checked by isascii() |
Andy Shevchenko | 0362c27 | 2021-06-30 18:55:17 -0700 | [diff] [blame] | 494 | * %ESCAPE_NAP: |
| 495 | * escape only non-printable or non-ascii characters |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 496 | * %ESCAPE_APPEND: |
| 497 | * append characters from @only to be escaped by the given classes |
| 498 | * |
| 499 | * %ESCAPE_APPEND would help to pass additional characters to the escaped, when |
| 500 | * one of %ESCAPE_NP, %ESCAPE_NA, or %ESCAPE_NAP is provided. |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 501 | * |
Andy Shevchenko | 0362c27 | 2021-06-30 18:55:17 -0700 | [diff] [blame] | 502 | * One notable caveat, the %ESCAPE_NAP, %ESCAPE_NP and %ESCAPE_NA have the |
| 503 | * higher priority than the rest of the flags (%ESCAPE_NAP is the highest). |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 504 | * It doesn't make much sense to use either of them without %ESCAPE_OCTAL |
| 505 | * or %ESCAPE_HEX, because they cover most of the other character classes. |
Andy Shevchenko | 0362c27 | 2021-06-30 18:55:17 -0700 | [diff] [blame] | 506 | * %ESCAPE_NAP can utilize %ESCAPE_SPACE or %ESCAPE_SPECIAL in addition to |
| 507 | * the above. |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 508 | * |
| 509 | * Return: |
Rasmus Villemoes | 41416f2 | 2015-04-15 16:17:28 -0700 | [diff] [blame] | 510 | * The total size of the escaped output that would be generated for |
| 511 | * the given input and flags. To check whether the output was |
| 512 | * truncated, compare the return value to osz. There is room left in |
| 513 | * dst for a '\0' terminator if and only if ret < osz. |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 514 | */ |
Rasmus Villemoes | 41416f2 | 2015-04-15 16:17:28 -0700 | [diff] [blame] | 515 | int string_escape_mem(const char *src, size_t isz, char *dst, size_t osz, |
Kees Cook | b40bdb7 | 2015-09-09 15:37:16 -0700 | [diff] [blame] | 516 | unsigned int flags, const char *only) |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 517 | { |
Rasmus Villemoes | 41416f2 | 2015-04-15 16:17:28 -0700 | [diff] [blame] | 518 | char *p = dst; |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 519 | char *end = p + osz; |
Kees Cook | b40bdb7 | 2015-09-09 15:37:16 -0700 | [diff] [blame] | 520 | bool is_dict = only && *only; |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 521 | bool is_append = flags & ESCAPE_APPEND; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 522 | |
| 523 | while (isz--) { |
| 524 | unsigned char c = *src++; |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 525 | bool in_dict = is_dict && strchr(only, c); |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 526 | |
| 527 | /* |
| 528 | * Apply rules in the following sequence: |
Kees Cook | b40bdb7 | 2015-09-09 15:37:16 -0700 | [diff] [blame] | 529 | * - the @only string is supplied and does not contain a |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 530 | * character under question |
Andy Shevchenko | 0362c27 | 2021-06-30 18:55:17 -0700 | [diff] [blame] | 531 | * - the character is printable and ASCII, when @flags has |
| 532 | * %ESCAPE_NAP bit set |
Andy Shevchenko | 62519b8 | 2021-06-30 18:55:08 -0700 | [diff] [blame] | 533 | * - the character is printable, when @flags has |
| 534 | * %ESCAPE_NP bit set |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 535 | * - the character is ASCII, when @flags has |
| 536 | * %ESCAPE_NA bit set |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 537 | * - the character doesn't fall into a class of symbols |
| 538 | * defined by given @flags |
| 539 | * In these cases we just pass through a character to the |
| 540 | * output buffer. |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 541 | * |
| 542 | * When %ESCAPE_APPEND is passed, the characters from @only |
| 543 | * have been excluded from the %ESCAPE_NAP, %ESCAPE_NP, and |
| 544 | * %ESCAPE_NA cases. |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 545 | */ |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 546 | if (!(is_append || in_dict) && is_dict && |
Andy Shevchenko | 7e5969a | 2021-06-30 18:55:11 -0700 | [diff] [blame] | 547 | escape_passthrough(c, &p, end)) |
| 548 | continue; |
Andy Shevchenko | 62519b8 | 2021-06-30 18:55:08 -0700 | [diff] [blame] | 549 | |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 550 | if (!(is_append && in_dict) && isascii(c) && isprint(c) && |
Andy Shevchenko | 0362c27 | 2021-06-30 18:55:17 -0700 | [diff] [blame] | 551 | flags & ESCAPE_NAP && escape_passthrough(c, &p, end)) |
| 552 | continue; |
| 553 | |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 554 | if (!(is_append && in_dict) && isprint(c) && |
Andy Shevchenko | 7e5969a | 2021-06-30 18:55:11 -0700 | [diff] [blame] | 555 | flags & ESCAPE_NP && escape_passthrough(c, &p, end)) |
| 556 | continue; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 557 | |
Andy Shevchenko | aec0d09 | 2021-06-30 18:55:20 -0700 | [diff] [blame] | 558 | if (!(is_append && in_dict) && isascii(c) && |
Andy Shevchenko | a080978 | 2021-06-30 18:55:14 -0700 | [diff] [blame] | 559 | flags & ESCAPE_NA && escape_passthrough(c, &p, end)) |
| 560 | continue; |
| 561 | |
Andy Shevchenko | 7e5969a | 2021-06-30 18:55:11 -0700 | [diff] [blame] | 562 | if (flags & ESCAPE_SPACE && escape_space(c, &p, end)) |
| 563 | continue; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 564 | |
Andy Shevchenko | 7e5969a | 2021-06-30 18:55:11 -0700 | [diff] [blame] | 565 | if (flags & ESCAPE_SPECIAL && escape_special(c, &p, end)) |
| 566 | continue; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 567 | |
Andy Shevchenko | 7e5969a | 2021-06-30 18:55:11 -0700 | [diff] [blame] | 568 | if (flags & ESCAPE_NULL && escape_null(c, &p, end)) |
| 569 | continue; |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 570 | |
Andy Shevchenko | 7e5969a | 2021-06-30 18:55:11 -0700 | [diff] [blame] | 571 | /* ESCAPE_OCTAL and ESCAPE_HEX always go last */ |
| 572 | if (flags & ESCAPE_OCTAL && escape_octal(c, &p, end)) |
| 573 | continue; |
| 574 | |
| 575 | if (flags & ESCAPE_HEX && escape_hex(c, &p, end)) |
| 576 | continue; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 577 | |
Rasmus Villemoes | 3aeddc7 | 2015-04-15 16:17:25 -0700 | [diff] [blame] | 578 | escape_passthrough(c, &p, end); |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 579 | } |
| 580 | |
Rasmus Villemoes | 41416f2 | 2015-04-15 16:17:28 -0700 | [diff] [blame] | 581 | return p - dst; |
Andy Shevchenko | c825038 | 2014-10-13 15:55:16 -0700 | [diff] [blame] | 582 | } |
| 583 | EXPORT_SYMBOL(string_escape_mem); |
Kees Cook | b53f27e | 2016-04-20 15:46:23 -0700 | [diff] [blame] | 584 | |
| 585 | /* |
| 586 | * Return an allocated string that has been escaped of special characters |
| 587 | * and double quotes, making it safe to log in quotes. |
| 588 | */ |
| 589 | char *kstrdup_quotable(const char *src, gfp_t gfp) |
| 590 | { |
| 591 | size_t slen, dlen; |
| 592 | char *dst; |
| 593 | const int flags = ESCAPE_HEX; |
| 594 | const char esc[] = "\f\n\r\t\v\a\e\\\""; |
| 595 | |
| 596 | if (!src) |
| 597 | return NULL; |
| 598 | slen = strlen(src); |
| 599 | |
| 600 | dlen = string_escape_mem(src, slen, NULL, 0, flags, esc); |
| 601 | dst = kmalloc(dlen + 1, gfp); |
| 602 | if (!dst) |
| 603 | return NULL; |
| 604 | |
| 605 | WARN_ON(string_escape_mem(src, slen, dst, dlen, flags, esc) != dlen); |
| 606 | dst[dlen] = '\0'; |
| 607 | |
| 608 | return dst; |
| 609 | } |
| 610 | EXPORT_SYMBOL_GPL(kstrdup_quotable); |
Kees Cook | 0d04432 | 2016-04-20 15:46:24 -0700 | [diff] [blame] | 611 | |
| 612 | /* |
| 613 | * Returns allocated NULL-terminated string containing process |
| 614 | * command line, with inter-argument NULLs replaced with spaces, |
| 615 | * and other special characters escaped. |
| 616 | */ |
| 617 | char *kstrdup_quotable_cmdline(struct task_struct *task, gfp_t gfp) |
| 618 | { |
| 619 | char *buffer, *quoted; |
| 620 | int i, res; |
| 621 | |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 622 | buffer = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Kees Cook | 0d04432 | 2016-04-20 15:46:24 -0700 | [diff] [blame] | 623 | if (!buffer) |
| 624 | return NULL; |
| 625 | |
| 626 | res = get_cmdline(task, buffer, PAGE_SIZE - 1); |
| 627 | buffer[res] = '\0'; |
| 628 | |
| 629 | /* Collapse trailing NULLs, leave res pointing to last non-NULL. */ |
| 630 | while (--res >= 0 && buffer[res] == '\0') |
| 631 | ; |
| 632 | |
| 633 | /* Replace inter-argument NULLs. */ |
| 634 | for (i = 0; i <= res; i++) |
| 635 | if (buffer[i] == '\0') |
| 636 | buffer[i] = ' '; |
| 637 | |
| 638 | /* Make sure result is printable. */ |
| 639 | quoted = kstrdup_quotable(buffer, gfp); |
| 640 | kfree(buffer); |
| 641 | return quoted; |
| 642 | } |
| 643 | EXPORT_SYMBOL_GPL(kstrdup_quotable_cmdline); |
Kees Cook | 2198531 | 2016-04-20 15:46:25 -0700 | [diff] [blame] | 644 | |
| 645 | /* |
| 646 | * Returns allocated NULL-terminated string containing pathname, |
| 647 | * with special characters escaped, able to be safely logged. If |
| 648 | * there is an error, the leading character will be "<". |
| 649 | */ |
| 650 | char *kstrdup_quotable_file(struct file *file, gfp_t gfp) |
| 651 | { |
| 652 | char *temp, *pathname; |
| 653 | |
| 654 | if (!file) |
| 655 | return kstrdup("<unknown>", gfp); |
| 656 | |
| 657 | /* We add 11 spaces for ' (deleted)' to be appended */ |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 658 | temp = kmalloc(PATH_MAX + 11, GFP_KERNEL); |
Kees Cook | 2198531 | 2016-04-20 15:46:25 -0700 | [diff] [blame] | 659 | if (!temp) |
| 660 | return kstrdup("<no_memory>", gfp); |
| 661 | |
| 662 | pathname = file_path(file, temp, PATH_MAX + 11); |
| 663 | if (IS_ERR(pathname)) |
| 664 | pathname = kstrdup("<too_long>", gfp); |
| 665 | else |
| 666 | pathname = kstrdup_quotable(pathname, gfp); |
| 667 | |
| 668 | kfree(temp); |
| 669 | return pathname; |
| 670 | } |
| 671 | EXPORT_SYMBOL_GPL(kstrdup_quotable_file); |
Bartosz Golaszewski | 0fd1601 | 2020-09-29 12:09:55 +0200 | [diff] [blame] | 672 | |
| 673 | /** |
| 674 | * kfree_strarray - free a number of dynamically allocated strings contained |
| 675 | * in an array and the array itself |
| 676 | * |
| 677 | * @array: Dynamically allocated array of strings to free. |
| 678 | * @n: Number of strings (starting from the beginning of the array) to free. |
| 679 | * |
| 680 | * Passing a non-NULL @array and @n == 0 as well as NULL @array are valid |
| 681 | * use-cases. If @array is NULL, the function does nothing. |
| 682 | */ |
| 683 | void kfree_strarray(char **array, size_t n) |
| 684 | { |
| 685 | unsigned int i; |
| 686 | |
| 687 | if (!array) |
| 688 | return; |
| 689 | |
| 690 | for (i = 0; i < n; i++) |
| 691 | kfree(array[i]); |
| 692 | kfree(array); |
| 693 | } |
| 694 | EXPORT_SYMBOL_GPL(kfree_strarray); |