]> bbs.cooldavid.org Git - net-next-2.6.git/blob - kernel/params.c
params: don't hand NULL values to param.set callbacks.
[net-next-2.6.git] / kernel / params.c
1 /* Helpers for initial module or kernel cmdline parsing
2    Copyright (C) 2001 Rusty Russell.
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17 */
18 #include <linux/moduleparam.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/errno.h>
22 #include <linux/module.h>
23 #include <linux/device.h>
24 #include <linux/err.h>
25 #include <linux/slab.h>
26 #include <linux/ctype.h>
27
28 #if 0
29 #define DEBUGP printk
30 #else
31 #define DEBUGP(fmt, a...)
32 #endif
33
34 static inline char dash2underscore(char c)
35 {
36         if (c == '-')
37                 return '_';
38         return c;
39 }
40
41 static inline int parameq(const char *input, const char *paramname)
42 {
43         unsigned int i;
44         for (i = 0; dash2underscore(input[i]) == paramname[i]; i++)
45                 if (input[i] == '\0')
46                         return 1;
47         return 0;
48 }
49
50 static int parse_one(char *param,
51                      char *val,
52                      struct kernel_param *params, 
53                      unsigned num_params,
54                      int (*handle_unknown)(char *param, char *val))
55 {
56         unsigned int i;
57
58         /* Find parameter */
59         for (i = 0; i < num_params; i++) {
60                 if (parameq(param, params[i].name)) {
61                         /* Noone handled NULL, so do it here. */
62                         if (!val && params[i].set != param_set_bool)
63                                 return -EINVAL;
64                         DEBUGP("They are equal!  Calling %p\n",
65                                params[i].set);
66                         return params[i].set(val, &params[i]);
67                 }
68         }
69
70         if (handle_unknown) {
71                 DEBUGP("Unknown argument: calling %p\n", handle_unknown);
72                 return handle_unknown(param, val);
73         }
74
75         DEBUGP("Unknown argument `%s'\n", param);
76         return -ENOENT;
77 }
78
79 /* You can use " around spaces, but can't escape ". */
80 /* Hyphens and underscores equivalent in parameter names. */
81 static char *next_arg(char *args, char **param, char **val)
82 {
83         unsigned int i, equals = 0;
84         int in_quote = 0, quoted = 0;
85         char *next;
86
87         if (*args == '"') {
88                 args++;
89                 in_quote = 1;
90                 quoted = 1;
91         }
92
93         for (i = 0; args[i]; i++) {
94                 if (isspace(args[i]) && !in_quote)
95                         break;
96                 if (equals == 0) {
97                         if (args[i] == '=')
98                                 equals = i;
99                 }
100                 if (args[i] == '"')
101                         in_quote = !in_quote;
102         }
103
104         *param = args;
105         if (!equals)
106                 *val = NULL;
107         else {
108                 args[equals] = '\0';
109                 *val = args + equals + 1;
110
111                 /* Don't include quotes in value. */
112                 if (**val == '"') {
113                         (*val)++;
114                         if (args[i-1] == '"')
115                                 args[i-1] = '\0';
116                 }
117                 if (quoted && args[i-1] == '"')
118                         args[i-1] = '\0';
119         }
120
121         if (args[i]) {
122                 args[i] = '\0';
123                 next = args + i + 1;
124         } else
125                 next = args + i;
126
127         /* Chew up trailing spaces. */
128         return skip_spaces(next);
129 }
130
131 /* Args looks like "foo=bar,bar2 baz=fuz wiz". */
132 int parse_args(const char *name,
133                char *args,
134                struct kernel_param *params,
135                unsigned num,
136                int (*unknown)(char *param, char *val))
137 {
138         char *param, *val;
139
140         DEBUGP("Parsing ARGS: %s\n", args);
141
142         /* Chew leading spaces */
143         args = skip_spaces(args);
144
145         while (*args) {
146                 int ret;
147                 int irq_was_disabled;
148
149                 args = next_arg(args, &param, &val);
150                 irq_was_disabled = irqs_disabled();
151                 ret = parse_one(param, val, params, num, unknown);
152                 if (irq_was_disabled && !irqs_disabled()) {
153                         printk(KERN_WARNING "parse_args(): option '%s' enabled "
154                                         "irq's!\n", param);
155                 }
156                 switch (ret) {
157                 case -ENOENT:
158                         printk(KERN_ERR "%s: Unknown parameter `%s'\n",
159                                name, param);
160                         return ret;
161                 case -ENOSPC:
162                         printk(KERN_ERR
163                                "%s: `%s' too large for parameter `%s'\n",
164                                name, val ?: "", param);
165                         return ret;
166                 case 0:
167                         break;
168                 default:
169                         printk(KERN_ERR
170                                "%s: `%s' invalid for parameter `%s'\n",
171                                name, val ?: "", param);
172                         return ret;
173                 }
174         }
175
176         /* All parsed OK. */
177         return 0;
178 }
179
180 /* Lazy bastard, eh? */
181 #define STANDARD_PARAM_DEF(name, type, format, tmptype, strtolfn)       \
182         int param_set_##name(const char *val, struct kernel_param *kp)  \
183         {                                                               \
184                 tmptype l;                                              \
185                 int ret;                                                \
186                                                                         \
187                 ret = strtolfn(val, 0, &l);                             \
188                 if (ret == -EINVAL || ((type)l != l))                   \
189                         return -EINVAL;                                 \
190                 *((type *)kp->arg) = l;                                 \
191                 return 0;                                               \
192         }                                                               \
193         int param_get_##name(char *buffer, struct kernel_param *kp)     \
194         {                                                               \
195                 return sprintf(buffer, format, *((type *)kp->arg));     \
196         }
197
198 STANDARD_PARAM_DEF(byte, unsigned char, "%c", unsigned long, strict_strtoul);
199 STANDARD_PARAM_DEF(short, short, "%hi", long, strict_strtol);
200 STANDARD_PARAM_DEF(ushort, unsigned short, "%hu", unsigned long, strict_strtoul);
201 STANDARD_PARAM_DEF(int, int, "%i", long, strict_strtol);
202 STANDARD_PARAM_DEF(uint, unsigned int, "%u", unsigned long, strict_strtoul);
203 STANDARD_PARAM_DEF(long, long, "%li", long, strict_strtol);
204 STANDARD_PARAM_DEF(ulong, unsigned long, "%lu", unsigned long, strict_strtoul);
205
206 int param_set_charp(const char *val, struct kernel_param *kp)
207 {
208         if (strlen(val) > 1024) {
209                 printk(KERN_ERR "%s: string parameter too long\n",
210                        kp->name);
211                 return -ENOSPC;
212         }
213
214         /* This is a hack.  We can't need to strdup in early boot, and we
215          * don't need to; this mangled commandline is preserved. */
216         if (slab_is_available()) {
217                 *(char **)kp->arg = kstrdup(val, GFP_KERNEL);
218                 if (!*(char **)kp->arg)
219                         return -ENOMEM;
220         } else
221                 *(const char **)kp->arg = val;
222
223         return 0;
224 }
225
226 int param_get_charp(char *buffer, struct kernel_param *kp)
227 {
228         return sprintf(buffer, "%s", *((char **)kp->arg));
229 }
230
231 /* Actually could be a bool or an int, for historical reasons. */
232 int param_set_bool(const char *val, struct kernel_param *kp)
233 {
234         bool v;
235
236         /* No equals means "set"... */
237         if (!val) val = "1";
238
239         /* One of =[yYnN01] */
240         switch (val[0]) {
241         case 'y': case 'Y': case '1':
242                 v = true;
243                 break;
244         case 'n': case 'N': case '0':
245                 v = false;
246                 break;
247         default:
248                 return -EINVAL;
249         }
250
251         if (kp->flags & KPARAM_ISBOOL)
252                 *(bool *)kp->arg = v;
253         else
254                 *(int *)kp->arg = v;
255         return 0;
256 }
257
258 int param_get_bool(char *buffer, struct kernel_param *kp)
259 {
260         bool val;
261         if (kp->flags & KPARAM_ISBOOL)
262                 val = *(bool *)kp->arg;
263         else
264                 val = *(int *)kp->arg;
265
266         /* Y and N chosen as being relatively non-coder friendly */
267         return sprintf(buffer, "%c", val ? 'Y' : 'N');
268 }
269
270 /* This one must be bool. */
271 int param_set_invbool(const char *val, struct kernel_param *kp)
272 {
273         int ret;
274         bool boolval;
275         struct kernel_param dummy;
276
277         dummy.arg = &boolval;
278         dummy.flags = KPARAM_ISBOOL;
279         ret = param_set_bool(val, &dummy);
280         if (ret == 0)
281                 *(bool *)kp->arg = !boolval;
282         return ret;
283 }
284
285 int param_get_invbool(char *buffer, struct kernel_param *kp)
286 {
287         return sprintf(buffer, "%c", (*(bool *)kp->arg) ? 'N' : 'Y');
288 }
289
290 /* We break the rule and mangle the string. */
291 static int param_array(const char *name,
292                        const char *val,
293                        unsigned int min, unsigned int max,
294                        void *elem, int elemsize,
295                        int (*set)(const char *, struct kernel_param *kp),
296                        u16 flags,
297                        unsigned int *num)
298 {
299         int ret;
300         struct kernel_param kp;
301         char save;
302
303         /* Get the name right for errors. */
304         kp.name = name;
305         kp.arg = elem;
306         kp.flags = flags;
307
308         *num = 0;
309         /* We expect a comma-separated list of values. */
310         do {
311                 int len;
312
313                 if (*num == max) {
314                         printk(KERN_ERR "%s: can only take %i arguments\n",
315                                name, max);
316                         return -EINVAL;
317                 }
318                 len = strcspn(val, ",");
319
320                 /* nul-terminate and parse */
321                 save = val[len];
322                 ((char *)val)[len] = '\0';
323                 ret = set(val, &kp);
324
325                 if (ret != 0)
326                         return ret;
327                 kp.arg += elemsize;
328                 val += len+1;
329                 (*num)++;
330         } while (save == ',');
331
332         if (*num < min) {
333                 printk(KERN_ERR "%s: needs at least %i arguments\n",
334                        name, min);
335                 return -EINVAL;
336         }
337         return 0;
338 }
339
340 int param_array_set(const char *val, struct kernel_param *kp)
341 {
342         const struct kparam_array *arr = kp->arr;
343         unsigned int temp_num;
344
345         return param_array(kp->name, val, 1, arr->max, arr->elem,
346                            arr->elemsize, arr->set, kp->flags,
347                            arr->num ?: &temp_num);
348 }
349
350 int param_array_get(char *buffer, struct kernel_param *kp)
351 {
352         int i, off, ret;
353         const struct kparam_array *arr = kp->arr;
354         struct kernel_param p;
355
356         p = *kp;
357         for (i = off = 0; i < (arr->num ? *arr->num : arr->max); i++) {
358                 if (i)
359                         buffer[off++] = ',';
360                 p.arg = arr->elem + arr->elemsize * i;
361                 ret = arr->get(buffer + off, &p);
362                 if (ret < 0)
363                         return ret;
364                 off += ret;
365         }
366         buffer[off] = '\0';
367         return off;
368 }
369
370 int param_set_copystring(const char *val, struct kernel_param *kp)
371 {
372         const struct kparam_string *kps = kp->str;
373
374         if (strlen(val)+1 > kps->maxlen) {
375                 printk(KERN_ERR "%s: string doesn't fit in %u chars.\n",
376                        kp->name, kps->maxlen-1);
377                 return -ENOSPC;
378         }
379         strcpy(kps->string, val);
380         return 0;
381 }
382
383 int param_get_string(char *buffer, struct kernel_param *kp)
384 {
385         const struct kparam_string *kps = kp->str;
386         return strlcpy(buffer, kps->string, kps->maxlen);
387 }
388
389 /* sysfs output in /sys/modules/XYZ/parameters/ */
390 #define to_module_attr(n) container_of(n, struct module_attribute, attr)
391 #define to_module_kobject(n) container_of(n, struct module_kobject, kobj)
392
393 extern struct kernel_param __start___param[], __stop___param[];
394
395 struct param_attribute
396 {
397         struct module_attribute mattr;
398         struct kernel_param *param;
399 };
400
401 struct module_param_attrs
402 {
403         unsigned int num;
404         struct attribute_group grp;
405         struct param_attribute attrs[0];
406 };
407
408 #ifdef CONFIG_SYSFS
409 #define to_param_attr(n) container_of(n, struct param_attribute, mattr)
410
411 static ssize_t param_attr_show(struct module_attribute *mattr,
412                                struct module *mod, char *buf)
413 {
414         int count;
415         struct param_attribute *attribute = to_param_attr(mattr);
416
417         if (!attribute->param->get)
418                 return -EPERM;
419
420         count = attribute->param->get(buf, attribute->param);
421         if (count > 0) {
422                 strcat(buf, "\n");
423                 ++count;
424         }
425         return count;
426 }
427
428 /* sysfs always hands a nul-terminated string in buf.  We rely on that. */
429 static ssize_t param_attr_store(struct module_attribute *mattr,
430                                 struct module *owner,
431                                 const char *buf, size_t len)
432 {
433         int err;
434         struct param_attribute *attribute = to_param_attr(mattr);
435
436         if (!attribute->param->set)
437                 return -EPERM;
438
439         err = attribute->param->set(buf, attribute->param);
440         if (!err)
441                 return len;
442         return err;
443 }
444 #endif
445
446 #ifdef CONFIG_MODULES
447 #define __modinit
448 #else
449 #define __modinit __init
450 #endif
451
452 #ifdef CONFIG_SYSFS
453 /*
454  * add_sysfs_param - add a parameter to sysfs
455  * @mk: struct module_kobject
456  * @kparam: the actual parameter definition to add to sysfs
457  * @name: name of parameter
458  *
459  * Create a kobject if for a (per-module) parameter if mp NULL, and
460  * create file in sysfs.  Returns an error on out of memory.  Always cleans up
461  * if there's an error.
462  */
463 static __modinit int add_sysfs_param(struct module_kobject *mk,
464                                      struct kernel_param *kp,
465                                      const char *name)
466 {
467         struct module_param_attrs *new;
468         struct attribute **attrs;
469         int err, num;
470
471         /* We don't bother calling this with invisible parameters. */
472         BUG_ON(!kp->perm);
473
474         if (!mk->mp) {
475                 num = 0;
476                 attrs = NULL;
477         } else {
478                 num = mk->mp->num;
479                 attrs = mk->mp->grp.attrs;
480         }
481
482         /* Enlarge. */
483         new = krealloc(mk->mp,
484                        sizeof(*mk->mp) + sizeof(mk->mp->attrs[0]) * (num+1),
485                        GFP_KERNEL);
486         if (!new) {
487                 kfree(mk->mp);
488                 err = -ENOMEM;
489                 goto fail;
490         }
491         attrs = krealloc(attrs, sizeof(new->grp.attrs[0])*(num+2), GFP_KERNEL);
492         if (!attrs) {
493                 err = -ENOMEM;
494                 goto fail_free_new;
495         }
496
497         /* Sysfs wants everything zeroed. */
498         memset(new, 0, sizeof(*new));
499         memset(&new->attrs[num], 0, sizeof(new->attrs[num]));
500         memset(&attrs[num], 0, sizeof(attrs[num]));
501         new->grp.name = "parameters";
502         new->grp.attrs = attrs;
503
504         /* Tack new one on the end. */
505         sysfs_attr_init(&new->attrs[num].mattr.attr);
506         new->attrs[num].param = kp;
507         new->attrs[num].mattr.show = param_attr_show;
508         new->attrs[num].mattr.store = param_attr_store;
509         new->attrs[num].mattr.attr.name = (char *)name;
510         new->attrs[num].mattr.attr.mode = kp->perm;
511         new->num = num+1;
512
513         /* Fix up all the pointers, since krealloc can move us */
514         for (num = 0; num < new->num; num++)
515                 new->grp.attrs[num] = &new->attrs[num].mattr.attr;
516         new->grp.attrs[num] = NULL;
517
518         mk->mp = new;
519         return 0;
520
521 fail_free_new:
522         kfree(new);
523 fail:
524         mk->mp = NULL;
525         return err;
526 }
527
528 #ifdef CONFIG_MODULES
529 static void free_module_param_attrs(struct module_kobject *mk)
530 {
531         kfree(mk->mp->grp.attrs);
532         kfree(mk->mp);
533         mk->mp = NULL;
534 }
535
536 /*
537  * module_param_sysfs_setup - setup sysfs support for one module
538  * @mod: module
539  * @kparam: module parameters (array)
540  * @num_params: number of module parameters
541  *
542  * Adds sysfs entries for module parameters under
543  * /sys/module/[mod->name]/parameters/
544  */
545 int module_param_sysfs_setup(struct module *mod,
546                              struct kernel_param *kparam,
547                              unsigned int num_params)
548 {
549         int i, err;
550         bool params = false;
551
552         for (i = 0; i < num_params; i++) {
553                 if (kparam[i].perm == 0)
554                         continue;
555                 err = add_sysfs_param(&mod->mkobj, &kparam[i], kparam[i].name);
556                 if (err)
557                         return err;
558                 params = true;
559         }
560
561         if (!params)
562                 return 0;
563
564         /* Create the param group. */
565         err = sysfs_create_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp);
566         if (err)
567                 free_module_param_attrs(&mod->mkobj);
568         return err;
569 }
570
571 /*
572  * module_param_sysfs_remove - remove sysfs support for one module
573  * @mod: module
574  *
575  * Remove sysfs entries for module parameters and the corresponding
576  * kobject.
577  */
578 void module_param_sysfs_remove(struct module *mod)
579 {
580         if (mod->mkobj.mp) {
581                 sysfs_remove_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp);
582                 /* We are positive that no one is using any param
583                  * attrs at this point.  Deallocate immediately. */
584                 free_module_param_attrs(&mod->mkobj);
585         }
586 }
587 #endif
588
589 void destroy_params(const struct kernel_param *params, unsigned num)
590 {
591         /* FIXME: This should free kmalloced charp parameters.  It doesn't. */
592 }
593
594 static void __init kernel_add_sysfs_param(const char *name,
595                                           struct kernel_param *kparam,
596                                           unsigned int name_skip)
597 {
598         struct module_kobject *mk;
599         struct kobject *kobj;
600         int err;
601
602         kobj = kset_find_obj(module_kset, name);
603         if (kobj) {
604                 /* We already have one.  Remove params so we can add more. */
605                 mk = to_module_kobject(kobj);
606                 /* We need to remove it before adding parameters. */
607                 sysfs_remove_group(&mk->kobj, &mk->mp->grp);
608         } else {
609                 mk = kzalloc(sizeof(struct module_kobject), GFP_KERNEL);
610                 BUG_ON(!mk);
611
612                 mk->mod = THIS_MODULE;
613                 mk->kobj.kset = module_kset;
614                 err = kobject_init_and_add(&mk->kobj, &module_ktype, NULL,
615                                            "%s", name);
616                 if (err) {
617                         kobject_put(&mk->kobj);
618                         printk(KERN_ERR "Module '%s' failed add to sysfs, "
619                                "error number %d\n", name, err);
620                         printk(KERN_ERR "The system will be unstable now.\n");
621                         return;
622                 }
623                 /* So that exit path is even. */
624                 kobject_get(&mk->kobj);
625         }
626
627         /* These should not fail at boot. */
628         err = add_sysfs_param(mk, kparam, kparam->name + name_skip);
629         BUG_ON(err);
630         err = sysfs_create_group(&mk->kobj, &mk->mp->grp);
631         BUG_ON(err);
632         kobject_uevent(&mk->kobj, KOBJ_ADD);
633         kobject_put(&mk->kobj);
634 }
635
636 /*
637  * param_sysfs_builtin - add contents in /sys/parameters for built-in modules
638  *
639  * Add module_parameters to sysfs for "modules" built into the kernel.
640  *
641  * The "module" name (KBUILD_MODNAME) is stored before a dot, the
642  * "parameter" name is stored behind a dot in kernel_param->name. So,
643  * extract the "module" name for all built-in kernel_param-eters,
644  * and for all who have the same, call kernel_add_sysfs_param.
645  */
646 static void __init param_sysfs_builtin(void)
647 {
648         struct kernel_param *kp;
649         unsigned int name_len;
650         char modname[MODULE_NAME_LEN];
651
652         for (kp = __start___param; kp < __stop___param; kp++) {
653                 char *dot;
654
655                 if (kp->perm == 0)
656                         continue;
657
658                 dot = strchr(kp->name, '.');
659                 if (!dot) {
660                         /* This happens for core_param() */
661                         strcpy(modname, "kernel");
662                         name_len = 0;
663                 } else {
664                         name_len = dot - kp->name + 1;
665                         strlcpy(modname, kp->name, name_len);
666                 }
667                 kernel_add_sysfs_param(modname, kp, name_len);
668         }
669 }
670
671
672 /* module-related sysfs stuff */
673
674 static ssize_t module_attr_show(struct kobject *kobj,
675                                 struct attribute *attr,
676                                 char *buf)
677 {
678         struct module_attribute *attribute;
679         struct module_kobject *mk;
680         int ret;
681
682         attribute = to_module_attr(attr);
683         mk = to_module_kobject(kobj);
684
685         if (!attribute->show)
686                 return -EIO;
687
688         ret = attribute->show(attribute, mk->mod, buf);
689
690         return ret;
691 }
692
693 static ssize_t module_attr_store(struct kobject *kobj,
694                                 struct attribute *attr,
695                                 const char *buf, size_t len)
696 {
697         struct module_attribute *attribute;
698         struct module_kobject *mk;
699         int ret;
700
701         attribute = to_module_attr(attr);
702         mk = to_module_kobject(kobj);
703
704         if (!attribute->store)
705                 return -EIO;
706
707         ret = attribute->store(attribute, mk->mod, buf, len);
708
709         return ret;
710 }
711
712 static const struct sysfs_ops module_sysfs_ops = {
713         .show = module_attr_show,
714         .store = module_attr_store,
715 };
716
717 static int uevent_filter(struct kset *kset, struct kobject *kobj)
718 {
719         struct kobj_type *ktype = get_ktype(kobj);
720
721         if (ktype == &module_ktype)
722                 return 1;
723         return 0;
724 }
725
726 static const struct kset_uevent_ops module_uevent_ops = {
727         .filter = uevent_filter,
728 };
729
730 struct kset *module_kset;
731 int module_sysfs_initialized;
732
733 struct kobj_type module_ktype = {
734         .sysfs_ops =    &module_sysfs_ops,
735 };
736
737 /*
738  * param_sysfs_init - wrapper for built-in params support
739  */
740 static int __init param_sysfs_init(void)
741 {
742         module_kset = kset_create_and_add("module", &module_uevent_ops, NULL);
743         if (!module_kset) {
744                 printk(KERN_WARNING "%s (%d): error creating kset\n",
745                         __FILE__, __LINE__);
746                 return -ENOMEM;
747         }
748         module_sysfs_initialized = 1;
749
750         param_sysfs_builtin();
751
752         return 0;
753 }
754 subsys_initcall(param_sysfs_init);
755
756 #endif /* CONFIG_SYSFS */
757
758 EXPORT_SYMBOL(param_set_byte);
759 EXPORT_SYMBOL(param_get_byte);
760 EXPORT_SYMBOL(param_set_short);
761 EXPORT_SYMBOL(param_get_short);
762 EXPORT_SYMBOL(param_set_ushort);
763 EXPORT_SYMBOL(param_get_ushort);
764 EXPORT_SYMBOL(param_set_int);
765 EXPORT_SYMBOL(param_get_int);
766 EXPORT_SYMBOL(param_set_uint);
767 EXPORT_SYMBOL(param_get_uint);
768 EXPORT_SYMBOL(param_set_long);
769 EXPORT_SYMBOL(param_get_long);
770 EXPORT_SYMBOL(param_set_ulong);
771 EXPORT_SYMBOL(param_get_ulong);
772 EXPORT_SYMBOL(param_set_charp);
773 EXPORT_SYMBOL(param_get_charp);
774 EXPORT_SYMBOL(param_set_bool);
775 EXPORT_SYMBOL(param_get_bool);
776 EXPORT_SYMBOL(param_set_invbool);
777 EXPORT_SYMBOL(param_get_invbool);
778 EXPORT_SYMBOL(param_array_set);
779 EXPORT_SYMBOL(param_array_get);
780 EXPORT_SYMBOL(param_set_copystring);
781 EXPORT_SYMBOL(param_get_string);