]> Pileus Git - ~andy/linux/blob - kernel/params.c
module: Add flag to allow mod params to have no arguments
[~andy/linux] / 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/kernel.h>
19 #include <linux/string.h>
20 #include <linux/errno.h>
21 #include <linux/module.h>
22 #include <linux/device.h>
23 #include <linux/err.h>
24 #include <linux/slab.h>
25 #include <linux/ctype.h>
26
27 /* Protects all parameters, and incidentally kmalloced_param list. */
28 static DEFINE_MUTEX(param_lock);
29
30 /* This just allows us to keep track of which parameters are kmalloced. */
31 struct kmalloced_param {
32         struct list_head list;
33         char val[];
34 };
35 static LIST_HEAD(kmalloced_params);
36
37 static void *kmalloc_parameter(unsigned int size)
38 {
39         struct kmalloced_param *p;
40
41         p = kmalloc(sizeof(*p) + size, GFP_KERNEL);
42         if (!p)
43                 return NULL;
44
45         list_add(&p->list, &kmalloced_params);
46         return p->val;
47 }
48
49 /* Does nothing if parameter wasn't kmalloced above. */
50 static void maybe_kfree_parameter(void *param)
51 {
52         struct kmalloced_param *p;
53
54         list_for_each_entry(p, &kmalloced_params, list) {
55                 if (p->val == param) {
56                         list_del(&p->list);
57                         kfree(p);
58                         break;
59                 }
60         }
61 }
62
63 static char dash2underscore(char c)
64 {
65         if (c == '-')
66                 return '_';
67         return c;
68 }
69
70 bool parameqn(const char *a, const char *b, size_t n)
71 {
72         size_t i;
73
74         for (i = 0; i < n; i++) {
75                 if (dash2underscore(a[i]) != dash2underscore(b[i]))
76                         return false;
77         }
78         return true;
79 }
80
81 bool parameq(const char *a, const char *b)
82 {
83         return parameqn(a, b, strlen(a)+1);
84 }
85
86 static int parse_one(char *param,
87                      char *val,
88                      const char *doing,
89                      const struct kernel_param *params,
90                      unsigned num_params,
91                      s16 min_level,
92                      s16 max_level,
93                      int (*handle_unknown)(char *param, char *val,
94                                      const char *doing))
95 {
96         unsigned int i;
97         int err;
98
99         /* Find parameter */
100         for (i = 0; i < num_params; i++) {
101                 if (parameq(param, params[i].name)) {
102                         if (params[i].level < min_level
103                             || params[i].level > max_level)
104                                 return 0;
105                         /* No one handled NULL, so do it here. */
106                         if (!val &&
107                             !(params[i].ops->flags & KERNEL_PARAM_FL_NOARG))
108                                 return -EINVAL;
109                         pr_debug("handling %s with %p\n", param,
110                                 params[i].ops->set);
111                         mutex_lock(&param_lock);
112                         err = params[i].ops->set(val, &params[i]);
113                         mutex_unlock(&param_lock);
114                         return err;
115                 }
116         }
117
118         if (handle_unknown) {
119                 pr_debug("doing %s: %s='%s'\n", doing, param, val);
120                 return handle_unknown(param, val, doing);
121         }
122
123         pr_debug("Unknown argument '%s'\n", param);
124         return -ENOENT;
125 }
126
127 /* You can use " around spaces, but can't escape ". */
128 /* Hyphens and underscores equivalent in parameter names. */
129 static char *next_arg(char *args, char **param, char **val)
130 {
131         unsigned int i, equals = 0;
132         int in_quote = 0, quoted = 0;
133         char *next;
134
135         if (*args == '"') {
136                 args++;
137                 in_quote = 1;
138                 quoted = 1;
139         }
140
141         for (i = 0; args[i]; i++) {
142                 if (isspace(args[i]) && !in_quote)
143                         break;
144                 if (equals == 0) {
145                         if (args[i] == '=')
146                                 equals = i;
147                 }
148                 if (args[i] == '"')
149                         in_quote = !in_quote;
150         }
151
152         *param = args;
153         if (!equals)
154                 *val = NULL;
155         else {
156                 args[equals] = '\0';
157                 *val = args + equals + 1;
158
159                 /* Don't include quotes in value. */
160                 if (**val == '"') {
161                         (*val)++;
162                         if (args[i-1] == '"')
163                                 args[i-1] = '\0';
164                 }
165                 if (quoted && args[i-1] == '"')
166                         args[i-1] = '\0';
167         }
168
169         if (args[i]) {
170                 args[i] = '\0';
171                 next = args + i + 1;
172         } else
173                 next = args + i;
174
175         /* Chew up trailing spaces. */
176         return skip_spaces(next);
177 }
178
179 /* Args looks like "foo=bar,bar2 baz=fuz wiz". */
180 int parse_args(const char *doing,
181                char *args,
182                const struct kernel_param *params,
183                unsigned num,
184                s16 min_level,
185                s16 max_level,
186                int (*unknown)(char *param, char *val, const char *doing))
187 {
188         char *param, *val;
189
190         /* Chew leading spaces */
191         args = skip_spaces(args);
192
193         if (*args)
194                 pr_debug("doing %s, parsing ARGS: '%s'\n", doing, args);
195
196         while (*args) {
197                 int ret;
198                 int irq_was_disabled;
199
200                 args = next_arg(args, &param, &val);
201                 irq_was_disabled = irqs_disabled();
202                 ret = parse_one(param, val, doing, params, num,
203                                 min_level, max_level, unknown);
204                 if (irq_was_disabled && !irqs_disabled())
205                         pr_warn("%s: option '%s' enabled irq's!\n",
206                                 doing, param);
207
208                 switch (ret) {
209                 case -ENOENT:
210                         pr_err("%s: Unknown parameter `%s'\n", doing, param);
211                         return ret;
212                 case -ENOSPC:
213                         pr_err("%s: `%s' too large for parameter `%s'\n",
214                                doing, val ?: "", param);
215                         return ret;
216                 case 0:
217                         break;
218                 default:
219                         pr_err("%s: `%s' invalid for parameter `%s'\n",
220                                doing, val ?: "", param);
221                         return ret;
222                 }
223         }
224
225         /* All parsed OK. */
226         return 0;
227 }
228
229 /* Lazy bastard, eh? */
230 #define STANDARD_PARAM_DEF(name, type, format, tmptype, strtolfn)       \
231         int param_set_##name(const char *val, const struct kernel_param *kp) \
232         {                                                               \
233                 tmptype l;                                              \
234                 int ret;                                                \
235                                                                         \
236                 ret = strtolfn(val, 0, &l);                             \
237                 if (ret < 0 || ((type)l != l))                          \
238                         return ret < 0 ? ret : -EINVAL;                 \
239                 *((type *)kp->arg) = l;                                 \
240                 return 0;                                               \
241         }                                                               \
242         int param_get_##name(char *buffer, const struct kernel_param *kp) \
243         {                                                               \
244                 return sprintf(buffer, format, *((type *)kp->arg));     \
245         }                                                               \
246         struct kernel_param_ops param_ops_##name = {                    \
247                 .set = param_set_##name,                                \
248                 .get = param_get_##name,                                \
249         };                                                              \
250         EXPORT_SYMBOL(param_set_##name);                                \
251         EXPORT_SYMBOL(param_get_##name);                                \
252         EXPORT_SYMBOL(param_ops_##name)
253
254
255 STANDARD_PARAM_DEF(byte, unsigned char, "%hhu", unsigned long, strict_strtoul);
256 STANDARD_PARAM_DEF(short, short, "%hi", long, strict_strtol);
257 STANDARD_PARAM_DEF(ushort, unsigned short, "%hu", unsigned long, strict_strtoul);
258 STANDARD_PARAM_DEF(int, int, "%i", long, strict_strtol);
259 STANDARD_PARAM_DEF(uint, unsigned int, "%u", unsigned long, strict_strtoul);
260 STANDARD_PARAM_DEF(long, long, "%li", long, strict_strtol);
261 STANDARD_PARAM_DEF(ulong, unsigned long, "%lu", unsigned long, strict_strtoul);
262
263 int param_set_charp(const char *val, const struct kernel_param *kp)
264 {
265         if (strlen(val) > 1024) {
266                 pr_err("%s: string parameter too long\n", kp->name);
267                 return -ENOSPC;
268         }
269
270         maybe_kfree_parameter(*(char **)kp->arg);
271
272         /* This is a hack.  We can't kmalloc in early boot, and we
273          * don't need to; this mangled commandline is preserved. */
274         if (slab_is_available()) {
275                 *(char **)kp->arg = kmalloc_parameter(strlen(val)+1);
276                 if (!*(char **)kp->arg)
277                         return -ENOMEM;
278                 strcpy(*(char **)kp->arg, val);
279         } else
280                 *(const char **)kp->arg = val;
281
282         return 0;
283 }
284 EXPORT_SYMBOL(param_set_charp);
285
286 int param_get_charp(char *buffer, const struct kernel_param *kp)
287 {
288         return sprintf(buffer, "%s", *((char **)kp->arg));
289 }
290 EXPORT_SYMBOL(param_get_charp);
291
292 static void param_free_charp(void *arg)
293 {
294         maybe_kfree_parameter(*((char **)arg));
295 }
296
297 struct kernel_param_ops param_ops_charp = {
298         .set = param_set_charp,
299         .get = param_get_charp,
300         .free = param_free_charp,
301 };
302 EXPORT_SYMBOL(param_ops_charp);
303
304 /* Actually could be a bool or an int, for historical reasons. */
305 int param_set_bool(const char *val, const struct kernel_param *kp)
306 {
307         /* No equals means "set"... */
308         if (!val) val = "1";
309
310         /* One of =[yYnN01] */
311         return strtobool(val, kp->arg);
312 }
313 EXPORT_SYMBOL(param_set_bool);
314
315 int param_get_bool(char *buffer, const struct kernel_param *kp)
316 {
317         /* Y and N chosen as being relatively non-coder friendly */
318         return sprintf(buffer, "%c", *(bool *)kp->arg ? 'Y' : 'N');
319 }
320 EXPORT_SYMBOL(param_get_bool);
321
322 struct kernel_param_ops param_ops_bool = {
323         .flags = KERNEL_PARAM_FL_NOARG,
324         .set = param_set_bool,
325         .get = param_get_bool,
326 };
327 EXPORT_SYMBOL(param_ops_bool);
328
329 /* This one must be bool. */
330 int param_set_invbool(const char *val, const struct kernel_param *kp)
331 {
332         int ret;
333         bool boolval;
334         struct kernel_param dummy;
335
336         dummy.arg = &boolval;
337         ret = param_set_bool(val, &dummy);
338         if (ret == 0)
339                 *(bool *)kp->arg = !boolval;
340         return ret;
341 }
342 EXPORT_SYMBOL(param_set_invbool);
343
344 int param_get_invbool(char *buffer, const struct kernel_param *kp)
345 {
346         return sprintf(buffer, "%c", (*(bool *)kp->arg) ? 'N' : 'Y');
347 }
348 EXPORT_SYMBOL(param_get_invbool);
349
350 struct kernel_param_ops param_ops_invbool = {
351         .set = param_set_invbool,
352         .get = param_get_invbool,
353 };
354 EXPORT_SYMBOL(param_ops_invbool);
355
356 int param_set_bint(const char *val, const struct kernel_param *kp)
357 {
358         struct kernel_param boolkp;
359         bool v;
360         int ret;
361
362         /* Match bool exactly, by re-using it. */
363         boolkp = *kp;
364         boolkp.arg = &v;
365
366         ret = param_set_bool(val, &boolkp);
367         if (ret == 0)
368                 *(int *)kp->arg = v;
369         return ret;
370 }
371 EXPORT_SYMBOL(param_set_bint);
372
373 struct kernel_param_ops param_ops_bint = {
374         .flags = KERNEL_PARAM_FL_NOARG,
375         .set = param_set_bint,
376         .get = param_get_int,
377 };
378 EXPORT_SYMBOL(param_ops_bint);
379
380 /* We break the rule and mangle the string. */
381 static int param_array(const char *name,
382                        const char *val,
383                        unsigned int min, unsigned int max,
384                        void *elem, int elemsize,
385                        int (*set)(const char *, const struct kernel_param *kp),
386                        s16 level,
387                        unsigned int *num)
388 {
389         int ret;
390         struct kernel_param kp;
391         char save;
392
393         /* Get the name right for errors. */
394         kp.name = name;
395         kp.arg = elem;
396         kp.level = level;
397
398         *num = 0;
399         /* We expect a comma-separated list of values. */
400         do {
401                 int len;
402
403                 if (*num == max) {
404                         pr_err("%s: can only take %i arguments\n", name, max);
405                         return -EINVAL;
406                 }
407                 len = strcspn(val, ",");
408
409                 /* nul-terminate and parse */
410                 save = val[len];
411                 ((char *)val)[len] = '\0';
412                 BUG_ON(!mutex_is_locked(&param_lock));
413                 ret = set(val, &kp);
414
415                 if (ret != 0)
416                         return ret;
417                 kp.arg += elemsize;
418                 val += len+1;
419                 (*num)++;
420         } while (save == ',');
421
422         if (*num < min) {
423                 pr_err("%s: needs at least %i arguments\n", name, min);
424                 return -EINVAL;
425         }
426         return 0;
427 }
428
429 static int param_array_set(const char *val, const struct kernel_param *kp)
430 {
431         const struct kparam_array *arr = kp->arr;
432         unsigned int temp_num;
433
434         return param_array(kp->name, val, 1, arr->max, arr->elem,
435                            arr->elemsize, arr->ops->set, kp->level,
436                            arr->num ?: &temp_num);
437 }
438
439 static int param_array_get(char *buffer, const struct kernel_param *kp)
440 {
441         int i, off, ret;
442         const struct kparam_array *arr = kp->arr;
443         struct kernel_param p;
444
445         p = *kp;
446         for (i = off = 0; i < (arr->num ? *arr->num : arr->max); i++) {
447                 if (i)
448                         buffer[off++] = ',';
449                 p.arg = arr->elem + arr->elemsize * i;
450                 BUG_ON(!mutex_is_locked(&param_lock));
451                 ret = arr->ops->get(buffer + off, &p);
452                 if (ret < 0)
453                         return ret;
454                 off += ret;
455         }
456         buffer[off] = '\0';
457         return off;
458 }
459
460 static void param_array_free(void *arg)
461 {
462         unsigned int i;
463         const struct kparam_array *arr = arg;
464
465         if (arr->ops->free)
466                 for (i = 0; i < (arr->num ? *arr->num : arr->max); i++)
467                         arr->ops->free(arr->elem + arr->elemsize * i);
468 }
469
470 struct kernel_param_ops param_array_ops = {
471         .set = param_array_set,
472         .get = param_array_get,
473         .free = param_array_free,
474 };
475 EXPORT_SYMBOL(param_array_ops);
476
477 int param_set_copystring(const char *val, const struct kernel_param *kp)
478 {
479         const struct kparam_string *kps = kp->str;
480
481         if (strlen(val)+1 > kps->maxlen) {
482                 pr_err("%s: string doesn't fit in %u chars.\n",
483                        kp->name, kps->maxlen-1);
484                 return -ENOSPC;
485         }
486         strcpy(kps->string, val);
487         return 0;
488 }
489 EXPORT_SYMBOL(param_set_copystring);
490
491 int param_get_string(char *buffer, const struct kernel_param *kp)
492 {
493         const struct kparam_string *kps = kp->str;
494         return strlcpy(buffer, kps->string, kps->maxlen);
495 }
496 EXPORT_SYMBOL(param_get_string);
497
498 struct kernel_param_ops param_ops_string = {
499         .set = param_set_copystring,
500         .get = param_get_string,
501 };
502 EXPORT_SYMBOL(param_ops_string);
503
504 /* sysfs output in /sys/modules/XYZ/parameters/ */
505 #define to_module_attr(n) container_of(n, struct module_attribute, attr)
506 #define to_module_kobject(n) container_of(n, struct module_kobject, kobj)
507
508 extern struct kernel_param __start___param[], __stop___param[];
509
510 struct param_attribute
511 {
512         struct module_attribute mattr;
513         const struct kernel_param *param;
514 };
515
516 struct module_param_attrs
517 {
518         unsigned int num;
519         struct attribute_group grp;
520         struct param_attribute attrs[0];
521 };
522
523 #ifdef CONFIG_SYSFS
524 #define to_param_attr(n) container_of(n, struct param_attribute, mattr)
525
526 static ssize_t param_attr_show(struct module_attribute *mattr,
527                                struct module_kobject *mk, char *buf)
528 {
529         int count;
530         struct param_attribute *attribute = to_param_attr(mattr);
531
532         if (!attribute->param->ops->get)
533                 return -EPERM;
534
535         mutex_lock(&param_lock);
536         count = attribute->param->ops->get(buf, attribute->param);
537         mutex_unlock(&param_lock);
538         if (count > 0) {
539                 strcat(buf, "\n");
540                 ++count;
541         }
542         return count;
543 }
544
545 /* sysfs always hands a nul-terminated string in buf.  We rely on that. */
546 static ssize_t param_attr_store(struct module_attribute *mattr,
547                                 struct module_kobject *km,
548                                 const char *buf, size_t len)
549 {
550         int err;
551         struct param_attribute *attribute = to_param_attr(mattr);
552
553         if (!attribute->param->ops->set)
554                 return -EPERM;
555
556         mutex_lock(&param_lock);
557         err = attribute->param->ops->set(buf, attribute->param);
558         mutex_unlock(&param_lock);
559         if (!err)
560                 return len;
561         return err;
562 }
563 #endif
564
565 #ifdef CONFIG_MODULES
566 #define __modinit
567 #else
568 #define __modinit __init
569 #endif
570
571 #ifdef CONFIG_SYSFS
572 void __kernel_param_lock(void)
573 {
574         mutex_lock(&param_lock);
575 }
576 EXPORT_SYMBOL(__kernel_param_lock);
577
578 void __kernel_param_unlock(void)
579 {
580         mutex_unlock(&param_lock);
581 }
582 EXPORT_SYMBOL(__kernel_param_unlock);
583
584 /*
585  * add_sysfs_param - add a parameter to sysfs
586  * @mk: struct module_kobject
587  * @kparam: the actual parameter definition to add to sysfs
588  * @name: name of parameter
589  *
590  * Create a kobject if for a (per-module) parameter if mp NULL, and
591  * create file in sysfs.  Returns an error on out of memory.  Always cleans up
592  * if there's an error.
593  */
594 static __modinit int add_sysfs_param(struct module_kobject *mk,
595                                      const struct kernel_param *kp,
596                                      const char *name)
597 {
598         struct module_param_attrs *new;
599         struct attribute **attrs;
600         int err, num;
601
602         /* We don't bother calling this with invisible parameters. */
603         BUG_ON(!kp->perm);
604
605         if (!mk->mp) {
606                 num = 0;
607                 attrs = NULL;
608         } else {
609                 num = mk->mp->num;
610                 attrs = mk->mp->grp.attrs;
611         }
612
613         /* Enlarge. */
614         new = krealloc(mk->mp,
615                        sizeof(*mk->mp) + sizeof(mk->mp->attrs[0]) * (num+1),
616                        GFP_KERNEL);
617         if (!new) {
618                 kfree(attrs);
619                 err = -ENOMEM;
620                 goto fail;
621         }
622         /* Despite looking like the typical realloc() bug, this is safe.
623          * We *want* the old 'attrs' to be freed either way, and we'll store
624          * the new one in the success case. */
625         attrs = krealloc(attrs, sizeof(new->grp.attrs[0])*(num+2), GFP_KERNEL);
626         if (!attrs) {
627                 err = -ENOMEM;
628                 goto fail_free_new;
629         }
630
631         /* Sysfs wants everything zeroed. */
632         memset(new, 0, sizeof(*new));
633         memset(&new->attrs[num], 0, sizeof(new->attrs[num]));
634         memset(&attrs[num], 0, sizeof(attrs[num]));
635         new->grp.name = "parameters";
636         new->grp.attrs = attrs;
637
638         /* Tack new one on the end. */
639         sysfs_attr_init(&new->attrs[num].mattr.attr);
640         new->attrs[num].param = kp;
641         new->attrs[num].mattr.show = param_attr_show;
642         new->attrs[num].mattr.store = param_attr_store;
643         new->attrs[num].mattr.attr.name = (char *)name;
644         new->attrs[num].mattr.attr.mode = kp->perm;
645         new->num = num+1;
646
647         /* Fix up all the pointers, since krealloc can move us */
648         for (num = 0; num < new->num; num++)
649                 new->grp.attrs[num] = &new->attrs[num].mattr.attr;
650         new->grp.attrs[num] = NULL;
651
652         mk->mp = new;
653         return 0;
654
655 fail_free_new:
656         kfree(new);
657 fail:
658         mk->mp = NULL;
659         return err;
660 }
661
662 #ifdef CONFIG_MODULES
663 static void free_module_param_attrs(struct module_kobject *mk)
664 {
665         kfree(mk->mp->grp.attrs);
666         kfree(mk->mp);
667         mk->mp = NULL;
668 }
669
670 /*
671  * module_param_sysfs_setup - setup sysfs support for one module
672  * @mod: module
673  * @kparam: module parameters (array)
674  * @num_params: number of module parameters
675  *
676  * Adds sysfs entries for module parameters under
677  * /sys/module/[mod->name]/parameters/
678  */
679 int module_param_sysfs_setup(struct module *mod,
680                              const struct kernel_param *kparam,
681                              unsigned int num_params)
682 {
683         int i, err;
684         bool params = false;
685
686         for (i = 0; i < num_params; i++) {
687                 if (kparam[i].perm == 0)
688                         continue;
689                 err = add_sysfs_param(&mod->mkobj, &kparam[i], kparam[i].name);
690                 if (err)
691                         return err;
692                 params = true;
693         }
694
695         if (!params)
696                 return 0;
697
698         /* Create the param group. */
699         err = sysfs_create_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp);
700         if (err)
701                 free_module_param_attrs(&mod->mkobj);
702         return err;
703 }
704
705 /*
706  * module_param_sysfs_remove - remove sysfs support for one module
707  * @mod: module
708  *
709  * Remove sysfs entries for module parameters and the corresponding
710  * kobject.
711  */
712 void module_param_sysfs_remove(struct module *mod)
713 {
714         if (mod->mkobj.mp) {
715                 sysfs_remove_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp);
716                 /* We are positive that no one is using any param
717                  * attrs at this point.  Deallocate immediately. */
718                 free_module_param_attrs(&mod->mkobj);
719         }
720 }
721 #endif
722
723 void destroy_params(const struct kernel_param *params, unsigned num)
724 {
725         unsigned int i;
726
727         for (i = 0; i < num; i++)
728                 if (params[i].ops->free)
729                         params[i].ops->free(params[i].arg);
730 }
731
732 static struct module_kobject * __init locate_module_kobject(const char *name)
733 {
734         struct module_kobject *mk;
735         struct kobject *kobj;
736         int err;
737
738         kobj = kset_find_obj(module_kset, name);
739         if (kobj) {
740                 mk = to_module_kobject(kobj);
741         } else {
742                 mk = kzalloc(sizeof(struct module_kobject), GFP_KERNEL);
743                 BUG_ON(!mk);
744
745                 mk->mod = THIS_MODULE;
746                 mk->kobj.kset = module_kset;
747                 err = kobject_init_and_add(&mk->kobj, &module_ktype, NULL,
748                                            "%s", name);
749 #ifdef CONFIG_MODULES
750                 if (!err)
751                         err = sysfs_create_file(&mk->kobj, &module_uevent.attr);
752 #endif
753                 if (err) {
754                         kobject_put(&mk->kobj);
755                         pr_crit("Adding module '%s' to sysfs failed (%d), the system may be unstable.\n",
756                                 name, err);
757                         return NULL;
758                 }
759
760                 /* So that we hold reference in both cases. */
761                 kobject_get(&mk->kobj);
762         }
763
764         return mk;
765 }
766
767 static void __init kernel_add_sysfs_param(const char *name,
768                                           struct kernel_param *kparam,
769                                           unsigned int name_skip)
770 {
771         struct module_kobject *mk;
772         int err;
773
774         mk = locate_module_kobject(name);
775         if (!mk)
776                 return;
777
778         /* We need to remove old parameters before adding more. */
779         if (mk->mp)
780                 sysfs_remove_group(&mk->kobj, &mk->mp->grp);
781
782         /* These should not fail at boot. */
783         err = add_sysfs_param(mk, kparam, kparam->name + name_skip);
784         BUG_ON(err);
785         err = sysfs_create_group(&mk->kobj, &mk->mp->grp);
786         BUG_ON(err);
787         kobject_uevent(&mk->kobj, KOBJ_ADD);
788         kobject_put(&mk->kobj);
789 }
790
791 /*
792  * param_sysfs_builtin - add sysfs parameters for built-in modules
793  *
794  * Add module_parameters to sysfs for "modules" built into the kernel.
795  *
796  * The "module" name (KBUILD_MODNAME) is stored before a dot, the
797  * "parameter" name is stored behind a dot in kernel_param->name. So,
798  * extract the "module" name for all built-in kernel_param-eters,
799  * and for all who have the same, call kernel_add_sysfs_param.
800  */
801 static void __init param_sysfs_builtin(void)
802 {
803         struct kernel_param *kp;
804         unsigned int name_len;
805         char modname[MODULE_NAME_LEN];
806
807         for (kp = __start___param; kp < __stop___param; kp++) {
808                 char *dot;
809
810                 if (kp->perm == 0)
811                         continue;
812
813                 dot = strchr(kp->name, '.');
814                 if (!dot) {
815                         /* This happens for core_param() */
816                         strcpy(modname, "kernel");
817                         name_len = 0;
818                 } else {
819                         name_len = dot - kp->name + 1;
820                         strlcpy(modname, kp->name, name_len);
821                 }
822                 kernel_add_sysfs_param(modname, kp, name_len);
823         }
824 }
825
826 ssize_t __modver_version_show(struct module_attribute *mattr,
827                               struct module_kobject *mk, char *buf)
828 {
829         struct module_version_attribute *vattr =
830                 container_of(mattr, struct module_version_attribute, mattr);
831
832         return sprintf(buf, "%s\n", vattr->version);
833 }
834
835 extern const struct module_version_attribute *__start___modver[];
836 extern const struct module_version_attribute *__stop___modver[];
837
838 static void __init version_sysfs_builtin(void)
839 {
840         const struct module_version_attribute **p;
841         struct module_kobject *mk;
842         int err;
843
844         for (p = __start___modver; p < __stop___modver; p++) {
845                 const struct module_version_attribute *vattr = *p;
846
847                 mk = locate_module_kobject(vattr->module_name);
848                 if (mk) {
849                         err = sysfs_create_file(&mk->kobj, &vattr->mattr.attr);
850                         kobject_uevent(&mk->kobj, KOBJ_ADD);
851                         kobject_put(&mk->kobj);
852                 }
853         }
854 }
855
856 /* module-related sysfs stuff */
857
858 static ssize_t module_attr_show(struct kobject *kobj,
859                                 struct attribute *attr,
860                                 char *buf)
861 {
862         struct module_attribute *attribute;
863         struct module_kobject *mk;
864         int ret;
865
866         attribute = to_module_attr(attr);
867         mk = to_module_kobject(kobj);
868
869         if (!attribute->show)
870                 return -EIO;
871
872         ret = attribute->show(attribute, mk, buf);
873
874         return ret;
875 }
876
877 static ssize_t module_attr_store(struct kobject *kobj,
878                                 struct attribute *attr,
879                                 const char *buf, size_t len)
880 {
881         struct module_attribute *attribute;
882         struct module_kobject *mk;
883         int ret;
884
885         attribute = to_module_attr(attr);
886         mk = to_module_kobject(kobj);
887
888         if (!attribute->store)
889                 return -EIO;
890
891         ret = attribute->store(attribute, mk, buf, len);
892
893         return ret;
894 }
895
896 static const struct sysfs_ops module_sysfs_ops = {
897         .show = module_attr_show,
898         .store = module_attr_store,
899 };
900
901 static int uevent_filter(struct kset *kset, struct kobject *kobj)
902 {
903         struct kobj_type *ktype = get_ktype(kobj);
904
905         if (ktype == &module_ktype)
906                 return 1;
907         return 0;
908 }
909
910 static const struct kset_uevent_ops module_uevent_ops = {
911         .filter = uevent_filter,
912 };
913
914 struct kset *module_kset;
915 int module_sysfs_initialized;
916
917 struct kobj_type module_ktype = {
918         .sysfs_ops =    &module_sysfs_ops,
919 };
920
921 /*
922  * param_sysfs_init - wrapper for built-in params support
923  */
924 static int __init param_sysfs_init(void)
925 {
926         module_kset = kset_create_and_add("module", &module_uevent_ops, NULL);
927         if (!module_kset) {
928                 printk(KERN_WARNING "%s (%d): error creating kset\n",
929                         __FILE__, __LINE__);
930                 return -ENOMEM;
931         }
932         module_sysfs_initialized = 1;
933
934         version_sysfs_builtin();
935         param_sysfs_builtin();
936
937         return 0;
938 }
939 subsys_initcall(param_sysfs_init);
940
941 #endif /* CONFIG_SYSFS */