Thomas Gleixner | b4d0d23 | 2019-05-20 19:08:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 2 | /* Filesystem parameter parser. |
| 3 | * |
| 4 | * Copyright (C) 2018 Red Hat, Inc. All Rights Reserved. |
| 5 | * Written by David Howells (dhowells@redhat.com) |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/export.h> |
| 9 | #include <linux/fs_context.h> |
| 10 | #include <linux/fs_parser.h> |
| 11 | #include <linux/slab.h> |
| 12 | #include <linux/security.h> |
| 13 | #include <linux/namei.h> |
| 14 | #include "internal.h" |
| 15 | |
| 16 | static const struct constant_table bool_names[] = { |
| 17 | { "0", false }, |
| 18 | { "1", true }, |
| 19 | { "false", false }, |
| 20 | { "no", false }, |
| 21 | { "true", true }, |
| 22 | { "yes", true }, |
Al Viro | 34264ae | 2019-12-16 13:45:41 -0500 | [diff] [blame^] | 23 | { }, |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 24 | }; |
| 25 | |
Al Viro | 34264ae | 2019-12-16 13:45:41 -0500 | [diff] [blame^] | 26 | static const struct constant_table * |
| 27 | __lookup_constant(const struct constant_table *tbl, const char *name) |
| 28 | { |
| 29 | for ( ; tbl->name; tbl++) |
| 30 | if (strcmp(name, tbl->name) == 0) |
| 31 | return tbl; |
| 32 | return NULL; |
| 33 | } |
| 34 | |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 35 | /** |
| 36 | * lookup_constant - Look up a constant by name in an ordered table |
| 37 | * @tbl: The table of constants to search. |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 38 | * @name: The name to look up. |
| 39 | * @not_found: The value to return if the name is not found. |
| 40 | */ |
Al Viro | 34264ae | 2019-12-16 13:45:41 -0500 | [diff] [blame^] | 41 | int lookup_constant(const struct constant_table *tbl, const char *name, int not_found) |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 42 | { |
Al Viro | 34264ae | 2019-12-16 13:45:41 -0500 | [diff] [blame^] | 43 | const struct constant_table *p = __lookup_constant(tbl, name); |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 44 | |
Al Viro | 34264ae | 2019-12-16 13:45:41 -0500 | [diff] [blame^] | 45 | return p ? p->value : not_found; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 46 | } |
Al Viro | 34264ae | 2019-12-16 13:45:41 -0500 | [diff] [blame^] | 47 | EXPORT_SYMBOL(lookup_constant); |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 48 | |
| 49 | static const struct fs_parameter_spec *fs_lookup_key( |
| 50 | const struct fs_parameter_description *desc, |
| 51 | const char *name) |
| 52 | { |
| 53 | const struct fs_parameter_spec *p; |
| 54 | |
| 55 | if (!desc->specs) |
| 56 | return NULL; |
| 57 | |
| 58 | for (p = desc->specs; p->name; p++) |
| 59 | if (strcmp(p->name, name) == 0) |
| 60 | return p; |
| 61 | |
| 62 | return NULL; |
| 63 | } |
| 64 | |
| 65 | /* |
| 66 | * fs_parse - Parse a filesystem configuration parameter |
| 67 | * @fc: The filesystem context to log errors through. |
| 68 | * @desc: The parameter description to use. |
| 69 | * @param: The parameter. |
| 70 | * @result: Where to place the result of the parse |
| 71 | * |
| 72 | * Parse a filesystem configuration parameter and attempt a conversion for a |
| 73 | * simple parameter for which this is requested. If successful, the determined |
| 74 | * parameter ID is placed into @result->key, the desired type is indicated in |
| 75 | * @result->t and any converted value is placed into an appropriate member of |
| 76 | * the union in @result. |
| 77 | * |
| 78 | * The function returns the parameter number if the parameter was matched, |
| 79 | * -ENOPARAM if it wasn't matched and @desc->ignore_unknown indicated that |
| 80 | * unknown parameters are okay and -EINVAL if there was a conversion issue or |
| 81 | * the parameter wasn't recognised and unknowns aren't okay. |
| 82 | */ |
| 83 | int fs_parse(struct fs_context *fc, |
| 84 | const struct fs_parameter_description *desc, |
| 85 | struct fs_parameter *param, |
| 86 | struct fs_parse_result *result) |
| 87 | { |
| 88 | const struct fs_parameter_spec *p; |
Al Viro | 5eede62 | 2019-12-16 13:33:32 -0500 | [diff] [blame] | 89 | const struct constant_table *e; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 90 | int ret = -ENOPARAM, b; |
| 91 | |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 92 | result->negated = false; |
| 93 | result->uint_64 = 0; |
| 94 | |
| 95 | p = fs_lookup_key(desc, param->key); |
| 96 | if (!p) { |
| 97 | /* If we didn't find something that looks like "noxxx", see if |
| 98 | * "xxx" takes the "no"-form negative - but only if there |
| 99 | * wasn't an value. |
| 100 | */ |
Al Viro | 0f89589 | 2019-12-17 14:15:04 -0500 | [diff] [blame] | 101 | if (param->type != fs_value_is_flag) |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 102 | goto unknown_parameter; |
| 103 | if (param->key[0] != 'n' || param->key[1] != 'o' || !param->key[2]) |
| 104 | goto unknown_parameter; |
| 105 | |
| 106 | p = fs_lookup_key(desc, param->key + 2); |
| 107 | if (!p) |
| 108 | goto unknown_parameter; |
| 109 | if (!(p->flags & fs_param_neg_with_no)) |
| 110 | goto unknown_parameter; |
| 111 | result->boolean = false; |
| 112 | result->negated = true; |
| 113 | } |
| 114 | |
| 115 | if (p->flags & fs_param_deprecated) |
| 116 | warnf(fc, "%s: Deprecated parameter '%s'", |
| 117 | desc->name, param->key); |
| 118 | |
| 119 | if (result->negated) |
| 120 | goto okay; |
| 121 | |
| 122 | /* Certain parameter types only take a string and convert it. */ |
| 123 | switch (p->type) { |
| 124 | case __fs_param_wasnt_defined: |
| 125 | return -EINVAL; |
| 126 | case fs_param_is_u32: |
| 127 | case fs_param_is_u32_octal: |
| 128 | case fs_param_is_u32_hex: |
| 129 | case fs_param_is_s32: |
| 130 | case fs_param_is_u64: |
| 131 | case fs_param_is_enum: |
| 132 | case fs_param_is_string: |
Al Viro | 0f89589 | 2019-12-17 14:15:04 -0500 | [diff] [blame] | 133 | if (param->type == fs_value_is_string) { |
| 134 | if (p->flags & fs_param_v_optional) |
| 135 | break; |
| 136 | if (!*param->string) |
| 137 | goto bad_value; |
| 138 | break; |
| 139 | } |
| 140 | if (param->type == fs_value_is_flag) { |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 141 | if (p->flags & fs_param_v_optional) |
| 142 | goto okay; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 143 | } |
Al Viro | 0f89589 | 2019-12-17 14:15:04 -0500 | [diff] [blame] | 144 | goto bad_value; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 145 | default: |
| 146 | break; |
| 147 | } |
| 148 | |
| 149 | /* Try to turn the type we were given into the type desired by the |
| 150 | * parameter and give an error if we can't. |
| 151 | */ |
| 152 | switch (p->type) { |
| 153 | case fs_param_is_flag: |
Al Viro | 0f89589 | 2019-12-17 14:15:04 -0500 | [diff] [blame] | 154 | if (param->type != fs_value_is_flag) |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 155 | return invalf(fc, "%s: Unexpected value for '%s'", |
| 156 | desc->name, param->key); |
| 157 | result->boolean = true; |
| 158 | goto okay; |
| 159 | |
| 160 | case fs_param_is_bool: |
| 161 | switch (param->type) { |
| 162 | case fs_value_is_flag: |
| 163 | result->boolean = true; |
| 164 | goto okay; |
| 165 | case fs_value_is_string: |
| 166 | if (param->size == 0) { |
| 167 | result->boolean = true; |
| 168 | goto okay; |
| 169 | } |
| 170 | b = lookup_constant(bool_names, param->string, -1); |
| 171 | if (b == -1) |
| 172 | goto bad_value; |
| 173 | result->boolean = b; |
| 174 | goto okay; |
| 175 | default: |
| 176 | goto bad_value; |
| 177 | } |
| 178 | |
| 179 | case fs_param_is_u32: |
| 180 | ret = kstrtouint(param->string, 0, &result->uint_32); |
| 181 | goto maybe_okay; |
| 182 | case fs_param_is_u32_octal: |
| 183 | ret = kstrtouint(param->string, 8, &result->uint_32); |
| 184 | goto maybe_okay; |
| 185 | case fs_param_is_u32_hex: |
| 186 | ret = kstrtouint(param->string, 16, &result->uint_32); |
| 187 | goto maybe_okay; |
| 188 | case fs_param_is_s32: |
| 189 | ret = kstrtoint(param->string, 0, &result->int_32); |
| 190 | goto maybe_okay; |
| 191 | case fs_param_is_u64: |
| 192 | ret = kstrtoull(param->string, 0, &result->uint_64); |
| 193 | goto maybe_okay; |
| 194 | |
| 195 | case fs_param_is_enum: |
Al Viro | 34264ae | 2019-12-16 13:45:41 -0500 | [diff] [blame^] | 196 | e = __lookup_constant(p->data, param->string); |
| 197 | if (e) { |
| 198 | result->uint_32 = e->value; |
| 199 | goto okay; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 200 | } |
| 201 | goto bad_value; |
| 202 | |
| 203 | case fs_param_is_string: |
| 204 | goto okay; |
| 205 | case fs_param_is_blob: |
| 206 | if (param->type != fs_value_is_blob) |
| 207 | goto bad_value; |
| 208 | goto okay; |
| 209 | |
| 210 | case fs_param_is_fd: { |
David Howells | 74983ac | 2019-03-25 16:38:31 +0000 | [diff] [blame] | 211 | switch (param->type) { |
| 212 | case fs_value_is_string: |
David Howells | 74983ac | 2019-03-25 16:38:31 +0000 | [diff] [blame] | 213 | ret = kstrtouint(param->string, 0, &result->uint_32); |
| 214 | break; |
| 215 | case fs_value_is_file: |
| 216 | result->uint_32 = param->dirfd; |
| 217 | ret = 0; |
| 218 | default: |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 219 | goto bad_value; |
David Howells | 74983ac | 2019-03-25 16:38:31 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | if (result->uint_32 > INT_MAX) |
| 223 | goto bad_value; |
| 224 | goto maybe_okay; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | case fs_param_is_blockdev: |
| 228 | case fs_param_is_path: |
| 229 | goto okay; |
| 230 | default: |
| 231 | BUG(); |
| 232 | } |
| 233 | |
| 234 | maybe_okay: |
| 235 | if (ret < 0) |
| 236 | goto bad_value; |
| 237 | okay: |
| 238 | return p->opt; |
| 239 | |
| 240 | bad_value: |
| 241 | return invalf(fc, "%s: Bad value for '%s'", desc->name, param->key); |
| 242 | unknown_parameter: |
| 243 | return -ENOPARAM; |
| 244 | } |
| 245 | EXPORT_SYMBOL(fs_parse); |
| 246 | |
| 247 | /** |
| 248 | * fs_lookup_param - Look up a path referred to by a parameter |
| 249 | * @fc: The filesystem context to log errors through. |
| 250 | * @param: The parameter. |
| 251 | * @want_bdev: T if want a blockdev |
| 252 | * @_path: The result of the lookup |
| 253 | */ |
| 254 | int fs_lookup_param(struct fs_context *fc, |
| 255 | struct fs_parameter *param, |
| 256 | bool want_bdev, |
| 257 | struct path *_path) |
| 258 | { |
| 259 | struct filename *f; |
| 260 | unsigned int flags = 0; |
| 261 | bool put_f; |
| 262 | int ret; |
| 263 | |
| 264 | switch (param->type) { |
| 265 | case fs_value_is_string: |
| 266 | f = getname_kernel(param->string); |
| 267 | if (IS_ERR(f)) |
| 268 | return PTR_ERR(f); |
| 269 | put_f = true; |
| 270 | break; |
| 271 | case fs_value_is_filename_empty: |
| 272 | flags = LOOKUP_EMPTY; |
| 273 | /* Fall through */ |
| 274 | case fs_value_is_filename: |
| 275 | f = param->name; |
| 276 | put_f = false; |
| 277 | break; |
| 278 | default: |
| 279 | return invalf(fc, "%s: not usable as path", param->key); |
| 280 | } |
| 281 | |
David Howells | 7cdfa44 | 2019-03-25 16:38:22 +0000 | [diff] [blame] | 282 | f->refcnt++; /* filename_lookup() drops our ref. */ |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 283 | ret = filename_lookup(param->dirfd, f, flags, _path, NULL); |
| 284 | if (ret < 0) { |
| 285 | errorf(fc, "%s: Lookup failure for '%s'", param->key, f->name); |
| 286 | goto out; |
| 287 | } |
| 288 | |
| 289 | if (want_bdev && |
| 290 | !S_ISBLK(d_backing_inode(_path->dentry)->i_mode)) { |
| 291 | path_put(_path); |
| 292 | _path->dentry = NULL; |
| 293 | _path->mnt = NULL; |
| 294 | errorf(fc, "%s: Non-blockdev passed as '%s'", |
| 295 | param->key, f->name); |
| 296 | ret = -ENOTBLK; |
| 297 | } |
| 298 | |
| 299 | out: |
| 300 | if (put_f) |
| 301 | putname(f); |
| 302 | return ret; |
| 303 | } |
| 304 | EXPORT_SYMBOL(fs_lookup_param); |
| 305 | |
| 306 | #ifdef CONFIG_VALIDATE_FS_PARSER |
| 307 | /** |
| 308 | * validate_constant_table - Validate a constant table |
| 309 | * @name: Name to use in reporting |
| 310 | * @tbl: The constant table to validate. |
| 311 | * @tbl_size: The size of the table. |
| 312 | * @low: The lowest permissible value. |
| 313 | * @high: The highest permissible value. |
| 314 | * @special: One special permissible value outside of the range. |
| 315 | */ |
| 316 | bool validate_constant_table(const struct constant_table *tbl, size_t tbl_size, |
| 317 | int low, int high, int special) |
| 318 | { |
| 319 | size_t i; |
| 320 | bool good = true; |
| 321 | |
| 322 | if (tbl_size == 0) { |
| 323 | pr_warn("VALIDATE C-TBL: Empty\n"); |
| 324 | return true; |
| 325 | } |
| 326 | |
| 327 | for (i = 0; i < tbl_size; i++) { |
| 328 | if (!tbl[i].name) { |
| 329 | pr_err("VALIDATE C-TBL[%zu]: Null\n", i); |
| 330 | good = false; |
| 331 | } else if (i > 0 && tbl[i - 1].name) { |
| 332 | int c = strcmp(tbl[i-1].name, tbl[i].name); |
| 333 | |
| 334 | if (c == 0) { |
| 335 | pr_err("VALIDATE C-TBL[%zu]: Duplicate %s\n", |
| 336 | i, tbl[i].name); |
| 337 | good = false; |
| 338 | } |
| 339 | if (c > 0) { |
| 340 | pr_err("VALIDATE C-TBL[%zu]: Missorted %s>=%s\n", |
| 341 | i, tbl[i-1].name, tbl[i].name); |
| 342 | good = false; |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | if (tbl[i].value != special && |
| 347 | (tbl[i].value < low || tbl[i].value > high)) { |
| 348 | pr_err("VALIDATE C-TBL[%zu]: %s->%d const out of range (%d-%d)\n", |
| 349 | i, tbl[i].name, tbl[i].value, low, high); |
| 350 | good = false; |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | return good; |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * fs_validate_description - Validate a parameter description |
| 359 | * @desc: The parameter description to validate. |
| 360 | */ |
| 361 | bool fs_validate_description(const struct fs_parameter_description *desc) |
| 362 | { |
| 363 | const struct fs_parameter_spec *param, *p2; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 364 | const char *name = desc->name; |
Al Viro | 2710c957a | 2019-09-06 22:12:08 -0400 | [diff] [blame] | 365 | bool good = true; |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 366 | |
| 367 | pr_notice("*** VALIDATE %s ***\n", name); |
| 368 | |
| 369 | if (!name[0]) { |
| 370 | pr_err("VALIDATE Parser: No name\n"); |
| 371 | name = "Unknown"; |
| 372 | good = false; |
| 373 | } |
| 374 | |
| 375 | if (desc->specs) { |
| 376 | for (param = desc->specs; param->name; param++) { |
| 377 | enum fs_parameter_type t = param->type; |
| 378 | |
| 379 | /* Check that the type is in range */ |
| 380 | if (t == __fs_param_wasnt_defined || |
| 381 | t >= nr__fs_parameter_type) { |
| 382 | pr_err("VALIDATE %s: PARAM[%s] Bad type %u\n", |
| 383 | name, param->name, t); |
| 384 | good = false; |
| 385 | } else if (t == fs_param_is_enum) { |
Al Viro | 5eede62 | 2019-12-16 13:33:32 -0500 | [diff] [blame] | 386 | const struct constant_table *e = param->data; |
Al Viro | 2710c957a | 2019-09-06 22:12:08 -0400 | [diff] [blame] | 387 | if (!e || !e->name) { |
| 388 | pr_err("VALIDATE %s: PARAM[%s] enum with no values\n", |
| 389 | name, param->name); |
| 390 | good = false; |
| 391 | } |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | /* Check for duplicate parameter names */ |
| 395 | for (p2 = desc->specs; p2 < param; p2++) { |
| 396 | if (strcmp(param->name, p2->name) == 0) { |
| 397 | pr_err("VALIDATE %s: PARAM[%s]: Duplicate\n", |
| 398 | name, param->name); |
| 399 | good = false; |
| 400 | } |
| 401 | } |
| 402 | } |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 403 | } |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 404 | return good; |
| 405 | } |
| 406 | #endif /* CONFIG_VALIDATE_FS_PARSER */ |