blob: 980d44fd3a3639deeccfb23fc463d37e6d06bd88 [file] [log] [blame]
Thomas Gleixnerb4d0d232019-05-20 19:08:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells31d921c2018-11-01 23:07:24 +00002/* Filesystem parameter parser.
3 *
4 * Copyright (C) 2018 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells31d921c2018-11-01 23:07:24 +00006 */
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
16static 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 Viro34264ae2019-12-16 13:45:41 -050023 { },
David Howells31d921c2018-11-01 23:07:24 +000024};
25
Al Viro34264ae2019-12-16 13:45:41 -050026static 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 Howells31d921c2018-11-01 23:07:24 +000035/**
36 * lookup_constant - Look up a constant by name in an ordered table
37 * @tbl: The table of constants to search.
David Howells31d921c2018-11-01 23:07:24 +000038 * @name: The name to look up.
39 * @not_found: The value to return if the name is not found.
40 */
Al Viro34264ae2019-12-16 13:45:41 -050041int lookup_constant(const struct constant_table *tbl, const char *name, int not_found)
David Howells31d921c2018-11-01 23:07:24 +000042{
Al Viro34264ae2019-12-16 13:45:41 -050043 const struct constant_table *p = __lookup_constant(tbl, name);
David Howells31d921c2018-11-01 23:07:24 +000044
Al Viro34264ae2019-12-16 13:45:41 -050045 return p ? p->value : not_found;
David Howells31d921c2018-11-01 23:07:24 +000046}
Al Viro34264ae2019-12-16 13:45:41 -050047EXPORT_SYMBOL(lookup_constant);
David Howells31d921c2018-11-01 23:07:24 +000048
Al Viro48ce73b2019-12-17 20:03:59 -050049static inline bool is_flag(const struct fs_parameter_spec *p)
50{
Al Viro328de522019-12-18 00:02:31 -050051 return p->type == NULL;
Al Viro48ce73b2019-12-17 20:03:59 -050052}
53
David Howells31d921c2018-11-01 23:07:24 +000054static const struct fs_parameter_spec *fs_lookup_key(
Al Virod7167b12019-09-07 07:23:15 -040055 const struct fs_parameter_spec *desc,
Al Viro48ce73b2019-12-17 20:03:59 -050056 struct fs_parameter *param, bool *negated)
David Howells31d921c2018-11-01 23:07:24 +000057{
Al Viro48ce73b2019-12-17 20:03:59 -050058 const struct fs_parameter_spec *p, *other = NULL;
59 const char *name = param->key;
60 bool want_flag = param->type == fs_value_is_flag;
David Howells31d921c2018-11-01 23:07:24 +000061
Al Viro48ce73b2019-12-17 20:03:59 -050062 *negated = false;
63 for (p = desc; p->name; p++) {
64 if (strcmp(p->name, name) != 0)
65 continue;
66 if (likely(is_flag(p) == want_flag))
David Howells31d921c2018-11-01 23:07:24 +000067 return p;
Al Viro48ce73b2019-12-17 20:03:59 -050068 other = p;
69 }
70 if (want_flag) {
71 if (name[0] == 'n' && name[1] == 'o' && name[2]) {
72 for (p = desc; p->name; p++) {
73 if (strcmp(p->name, name + 2) != 0)
74 continue;
75 if (!(p->flags & fs_param_neg_with_no))
76 continue;
77 *negated = true;
78 return p;
79 }
80 }
81 }
82 return other;
David Howells31d921c2018-11-01 23:07:24 +000083}
84
85/*
86 * fs_parse - Parse a filesystem configuration parameter
87 * @fc: The filesystem context to log errors through.
88 * @desc: The parameter description to use.
89 * @param: The parameter.
90 * @result: Where to place the result of the parse
91 *
92 * Parse a filesystem configuration parameter and attempt a conversion for a
93 * simple parameter for which this is requested. If successful, the determined
94 * parameter ID is placed into @result->key, the desired type is indicated in
95 * @result->t and any converted value is placed into an appropriate member of
96 * the union in @result.
97 *
98 * The function returns the parameter number if the parameter was matched,
99 * -ENOPARAM if it wasn't matched and @desc->ignore_unknown indicated that
100 * unknown parameters are okay and -EINVAL if there was a conversion issue or
101 * the parameter wasn't recognised and unknowns aren't okay.
102 */
Al Viro7f5d3812019-12-20 23:52:55 -0500103int __fs_parse(struct p_log *log,
Al Virod7167b12019-09-07 07:23:15 -0400104 const struct fs_parameter_spec *desc,
David Howells31d921c2018-11-01 23:07:24 +0000105 struct fs_parameter *param,
106 struct fs_parse_result *result)
107{
108 const struct fs_parameter_spec *p;
David Howells31d921c2018-11-01 23:07:24 +0000109
David Howells31d921c2018-11-01 23:07:24 +0000110 result->uint_64 = 0;
111
Al Viro48ce73b2019-12-17 20:03:59 -0500112 p = fs_lookup_key(desc, param, &result->negated);
113 if (!p)
114 return -ENOPARAM;
David Howells31d921c2018-11-01 23:07:24 +0000115
116 if (p->flags & fs_param_deprecated)
Al Viro7f5d3812019-12-20 23:52:55 -0500117 warn_plog(log, "Deprecated parameter '%s'", param->key);
David Howells31d921c2018-11-01 23:07:24 +0000118
David Howells31d921c2018-11-01 23:07:24 +0000119 /* Try to turn the type we were given into the type desired by the
120 * parameter and give an error if we can't.
121 */
Al Viro328de522019-12-18 00:02:31 -0500122 if (is_flag(p)) {
Al Viro0f895892019-12-17 14:15:04 -0500123 if (param->type != fs_value_is_flag)
Al Viro7f5d3812019-12-20 23:52:55 -0500124 return inval_plog(log, "Unexpected value for '%s'",
125 param->key);
Al Viro48ce73b2019-12-17 20:03:59 -0500126 result->boolean = !result->negated;
Al Viro328de522019-12-18 00:02:31 -0500127 } else {
128 int ret = p->type(log, p, param, result);
129 if (ret)
130 return ret;
David Howells31d921c2018-11-01 23:07:24 +0000131 }
David Howells31d921c2018-11-01 23:07:24 +0000132 return p->opt;
David Howells31d921c2018-11-01 23:07:24 +0000133}
Al Viro7f5d3812019-12-20 23:52:55 -0500134EXPORT_SYMBOL(__fs_parse);
135
David Howells31d921c2018-11-01 23:07:24 +0000136/**
137 * fs_lookup_param - Look up a path referred to by a parameter
138 * @fc: The filesystem context to log errors through.
139 * @param: The parameter.
140 * @want_bdev: T if want a blockdev
141 * @_path: The result of the lookup
142 */
143int fs_lookup_param(struct fs_context *fc,
144 struct fs_parameter *param,
145 bool want_bdev,
146 struct path *_path)
147{
148 struct filename *f;
149 unsigned int flags = 0;
150 bool put_f;
151 int ret;
152
153 switch (param->type) {
154 case fs_value_is_string:
155 f = getname_kernel(param->string);
156 if (IS_ERR(f))
157 return PTR_ERR(f);
158 put_f = true;
159 break;
David Howells31d921c2018-11-01 23:07:24 +0000160 case fs_value_is_filename:
161 f = param->name;
162 put_f = false;
163 break;
164 default:
165 return invalf(fc, "%s: not usable as path", param->key);
166 }
167
David Howells7cdfa442019-03-25 16:38:22 +0000168 f->refcnt++; /* filename_lookup() drops our ref. */
David Howells31d921c2018-11-01 23:07:24 +0000169 ret = filename_lookup(param->dirfd, f, flags, _path, NULL);
170 if (ret < 0) {
171 errorf(fc, "%s: Lookup failure for '%s'", param->key, f->name);
172 goto out;
173 }
174
175 if (want_bdev &&
176 !S_ISBLK(d_backing_inode(_path->dentry)->i_mode)) {
177 path_put(_path);
178 _path->dentry = NULL;
179 _path->mnt = NULL;
180 errorf(fc, "%s: Non-blockdev passed as '%s'",
181 param->key, f->name);
182 ret = -ENOTBLK;
183 }
184
185out:
186 if (put_f)
187 putname(f);
188 return ret;
189}
190EXPORT_SYMBOL(fs_lookup_param);
191
Luo Jiaxing97383c72020-10-13 16:48:30 -0700192static int fs_param_bad_value(struct p_log *log, struct fs_parameter *param)
Al Viro328de522019-12-18 00:02:31 -0500193{
194 return inval_plog(log, "Bad value for '%s'", param->key);
195}
196
197int fs_param_is_bool(struct p_log *log, const struct fs_parameter_spec *p,
198 struct fs_parameter *param, struct fs_parse_result *result)
199{
200 int b;
201 if (param->type != fs_value_is_string)
202 return fs_param_bad_value(log, param);
203 b = lookup_constant(bool_names, param->string, -1);
204 if (b == -1)
205 return fs_param_bad_value(log, param);
206 result->boolean = b;
207 return 0;
208}
209EXPORT_SYMBOL(fs_param_is_bool);
210
211int fs_param_is_u32(struct p_log *log, const struct fs_parameter_spec *p,
212 struct fs_parameter *param, struct fs_parse_result *result)
213{
214 int base = (unsigned long)p->data;
215 if (param->type != fs_value_is_string ||
216 kstrtouint(param->string, base, &result->uint_32) < 0)
217 return fs_param_bad_value(log, param);
218 return 0;
219}
220EXPORT_SYMBOL(fs_param_is_u32);
221
222int fs_param_is_s32(struct p_log *log, const struct fs_parameter_spec *p,
223 struct fs_parameter *param, struct fs_parse_result *result)
224{
225 if (param->type != fs_value_is_string ||
226 kstrtoint(param->string, 0, &result->int_32) < 0)
227 return fs_param_bad_value(log, param);
228 return 0;
229}
230EXPORT_SYMBOL(fs_param_is_s32);
231
232int fs_param_is_u64(struct p_log *log, const struct fs_parameter_spec *p,
233 struct fs_parameter *param, struct fs_parse_result *result)
234{
235 if (param->type != fs_value_is_string ||
236 kstrtoull(param->string, 0, &result->uint_64) < 0)
237 return fs_param_bad_value(log, param);
238 return 0;
239}
240EXPORT_SYMBOL(fs_param_is_u64);
241
242int fs_param_is_enum(struct p_log *log, const struct fs_parameter_spec *p,
243 struct fs_parameter *param, struct fs_parse_result *result)
244{
245 const struct constant_table *c;
246 if (param->type != fs_value_is_string)
247 return fs_param_bad_value(log, param);
248 c = __lookup_constant(p->data, param->string);
249 if (!c)
250 return fs_param_bad_value(log, param);
251 result->uint_32 = c->value;
252 return 0;
253}
254EXPORT_SYMBOL(fs_param_is_enum);
255
256int fs_param_is_string(struct p_log *log, const struct fs_parameter_spec *p,
257 struct fs_parameter *param, struct fs_parse_result *result)
258{
259 if (param->type != fs_value_is_string || !*param->string)
260 return fs_param_bad_value(log, param);
261 return 0;
262}
263EXPORT_SYMBOL(fs_param_is_string);
264
265int fs_param_is_blob(struct p_log *log, const struct fs_parameter_spec *p,
266 struct fs_parameter *param, struct fs_parse_result *result)
267{
268 if (param->type != fs_value_is_blob)
269 return fs_param_bad_value(log, param);
270 return 0;
271}
272EXPORT_SYMBOL(fs_param_is_blob);
273
274int fs_param_is_fd(struct p_log *log, const struct fs_parameter_spec *p,
275 struct fs_parameter *param, struct fs_parse_result *result)
276{
277 switch (param->type) {
278 case fs_value_is_string:
279 if (kstrtouint(param->string, 0, &result->uint_32) < 0)
280 break;
281 if (result->uint_32 <= INT_MAX)
282 return 0;
283 break;
284 case fs_value_is_file:
285 result->uint_32 = param->dirfd;
286 if (result->uint_32 <= INT_MAX)
287 return 0;
288 break;
289 default:
290 break;
291 }
292 return fs_param_bad_value(log, param);
293}
294EXPORT_SYMBOL(fs_param_is_fd);
295
296int fs_param_is_blockdev(struct p_log *log, const struct fs_parameter_spec *p,
297 struct fs_parameter *param, struct fs_parse_result *result)
298{
299 return 0;
300}
301EXPORT_SYMBOL(fs_param_is_blockdev);
302
303int fs_param_is_path(struct p_log *log, const struct fs_parameter_spec *p,
304 struct fs_parameter *param, struct fs_parse_result *result)
305{
306 return 0;
307}
308EXPORT_SYMBOL(fs_param_is_path);
309
David Howells31d921c2018-11-01 23:07:24 +0000310#ifdef CONFIG_VALIDATE_FS_PARSER
311/**
312 * validate_constant_table - Validate a constant table
David Howells31d921c2018-11-01 23:07:24 +0000313 * @tbl: The constant table to validate.
314 * @tbl_size: The size of the table.
315 * @low: The lowest permissible value.
316 * @high: The highest permissible value.
317 * @special: One special permissible value outside of the range.
318 */
319bool validate_constant_table(const struct constant_table *tbl, size_t tbl_size,
320 int low, int high, int special)
321{
322 size_t i;
323 bool good = true;
324
325 if (tbl_size == 0) {
326 pr_warn("VALIDATE C-TBL: Empty\n");
327 return true;
328 }
329
330 for (i = 0; i < tbl_size; i++) {
331 if (!tbl[i].name) {
332 pr_err("VALIDATE C-TBL[%zu]: Null\n", i);
333 good = false;
334 } else if (i > 0 && tbl[i - 1].name) {
335 int c = strcmp(tbl[i-1].name, tbl[i].name);
336
337 if (c == 0) {
338 pr_err("VALIDATE C-TBL[%zu]: Duplicate %s\n",
339 i, tbl[i].name);
340 good = false;
341 }
342 if (c > 0) {
343 pr_err("VALIDATE C-TBL[%zu]: Missorted %s>=%s\n",
344 i, tbl[i-1].name, tbl[i].name);
345 good = false;
346 }
347 }
348
349 if (tbl[i].value != special &&
350 (tbl[i].value < low || tbl[i].value > high)) {
351 pr_err("VALIDATE C-TBL[%zu]: %s->%d const out of range (%d-%d)\n",
352 i, tbl[i].name, tbl[i].value, low, high);
353 good = false;
354 }
355 }
356
357 return good;
358}
359
360/**
361 * fs_validate_description - Validate a parameter description
Randy Dunlap21ae3ad2021-04-29 22:54:17 -0700362 * @name: The parameter name to search for.
David Howells31d921c2018-11-01 23:07:24 +0000363 * @desc: The parameter description to validate.
364 */
Eric Sandeen96cafb92019-12-06 10:45:01 -0600365bool fs_validate_description(const char *name,
Al Virod7167b12019-09-07 07:23:15 -0400366 const struct fs_parameter_spec *desc)
David Howells31d921c2018-11-01 23:07:24 +0000367{
368 const struct fs_parameter_spec *param, *p2;
Al Viro2710c957a2019-09-06 22:12:08 -0400369 bool good = true;
David Howells31d921c2018-11-01 23:07:24 +0000370
Al Virod7167b12019-09-07 07:23:15 -0400371 for (param = desc; param->name; param++) {
Al Virod7167b12019-09-07 07:23:15 -0400372 /* Check for duplicate parameter names */
373 for (p2 = desc; p2 < param; p2++) {
374 if (strcmp(param->name, p2->name) == 0) {
Al Viro48ce73b2019-12-17 20:03:59 -0500375 if (is_flag(param) != is_flag(p2))
376 continue;
Al Virod7167b12019-09-07 07:23:15 -0400377 pr_err("VALIDATE %s: PARAM[%s]: Duplicate\n",
378 name, param->name);
379 good = false;
David Howells31d921c2018-11-01 23:07:24 +0000380 }
381 }
David Howells31d921c2018-11-01 23:07:24 +0000382 }
David Howells31d921c2018-11-01 23:07:24 +0000383 return good;
384}
385#endif /* CONFIG_VALIDATE_FS_PARSER */