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