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