~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/fs_parser.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /fs/fs_parser.c (Version linux-6.12-rc7) and /fs/fs_parser.c (Version linux-5.16.20)


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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php