Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_MODULE_PARAMS_H |
| 2 | #define _LINUX_MODULE_PARAMS_H |
| 3 | /* (C) Copyright 2001, 2002 Rusty Russell IBM Corporation */ |
| 4 | #include <linux/init.h> |
| 5 | #include <linux/stringify.h> |
| 6 | #include <linux/kernel.h> |
| 7 | |
| 8 | /* You can override this manually, but generally this should match the |
| 9 | module name. */ |
| 10 | #ifdef MODULE |
| 11 | #define MODULE_PARAM_PREFIX /* empty */ |
| 12 | #else |
Sam Ravnborg | 367cb70 | 2006-01-06 21:17:50 +0100 | [diff] [blame] | 13 | #define MODULE_PARAM_PREFIX KBUILD_MODNAME "." |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #endif |
| 15 | |
Rusty Russell | 730b69d | 2008-10-22 10:00:22 -0500 | [diff] [blame] | 16 | /* Chosen so that structs with an unsigned long line up. */ |
| 17 | #define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long)) |
| 18 | |
Linus Walleij | b75be42 | 2011-01-05 13:27:04 +0100 | [diff] [blame] | 19 | #ifdef MODULE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define __MODULE_INFO(tag, name, info) \ |
Rusty Russell | 34182ee | 2012-11-22 12:30:25 +1030 | [diff] [blame] | 21 | static const char __UNIQUE_ID(name)[] \ |
Jan Beulich | b647277 | 2010-10-26 14:22:26 -0700 | [diff] [blame] | 22 | __used __attribute__((section(".modinfo"), unused, aligned(1))) \ |
| 23 | = __stringify(tag) "=" info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #else /* !MODULE */ |
Linus Walleij | b75be42 | 2011-01-05 13:27:04 +0100 | [diff] [blame] | 25 | /* This struct is here for syntactic coherency, it is not used */ |
| 26 | #define __MODULE_INFO(tag, name, info) \ |
Rusty Russell | 34182ee | 2012-11-22 12:30:25 +1030 | [diff] [blame] | 27 | struct __UNIQUE_ID(name) {} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #endif |
| 29 | #define __MODULE_PARM_TYPE(name, _type) \ |
| 30 | __MODULE_INFO(parmtype, name##type, #name ":" _type) |
| 31 | |
Paul Gortmaker | 639938e | 2011-08-30 11:24:44 -0400 | [diff] [blame] | 32 | /* One for each parameter, describing how to use it. Some files do |
| 33 | multiple of these per line, so can't just use MODULE_INFO. */ |
| 34 | #define MODULE_PARM_DESC(_parm, desc) \ |
| 35 | __MODULE_INFO(parm, _parm, #_parm ":" desc) |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | struct kernel_param; |
| 38 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 39 | struct kernel_param_ops { |
| 40 | /* Returns 0, or -errno. arg is in kp->arg. */ |
| 41 | int (*set)(const char *val, const struct kernel_param *kp); |
| 42 | /* Returns length written or -errno. Buffer is 4k (ie. be short!) */ |
| 43 | int (*get)(char *buffer, const struct kernel_param *kp); |
Rusty Russell | e6df34a | 2010-08-11 23:04:17 -0600 | [diff] [blame] | 44 | /* Optional function to free kp->arg when module unloaded. */ |
| 45 | void (*free)(void *arg); |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 46 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | struct kernel_param { |
| 49 | const char *name; |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 50 | const struct kernel_param_ops *ops; |
Rusty Russell | 45fcc70 | 2009-06-12 21:46:56 -0600 | [diff] [blame] | 51 | u16 perm; |
Pawel Moll | 026cee0 | 2012-03-26 12:50:51 +1030 | [diff] [blame] | 52 | s16 level; |
Jan Beulich | 22e48ea | 2007-10-16 23:29:34 -0700 | [diff] [blame] | 53 | union { |
| 54 | void *arg; |
| 55 | const struct kparam_string *str; |
| 56 | const struct kparam_array *arr; |
| 57 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | /* Special one for strings we want to copy into */ |
| 61 | struct kparam_string { |
| 62 | unsigned int maxlen; |
| 63 | char *string; |
| 64 | }; |
| 65 | |
| 66 | /* Special one for arrays */ |
| 67 | struct kparam_array |
| 68 | { |
| 69 | unsigned int max; |
Richard Kennedy | c5be0b2 | 2011-05-19 16:55:25 -0600 | [diff] [blame] | 70 | unsigned int elemsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | unsigned int *num; |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 72 | const struct kernel_param_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | void *elem; |
| 74 | }; |
| 75 | |
Rusty Russell | 546970b | 2010-08-11 23:04:20 -0600 | [diff] [blame] | 76 | /** |
| 77 | * module_param - typesafe helper for a module/cmdline parameter |
| 78 | * @value: the variable to alter, and exposed parameter name. |
| 79 | * @type: the type of the parameter |
| 80 | * @perm: visibility in sysfs. |
| 81 | * |
| 82 | * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a |
| 83 | * ".") the kernel commandline parameter. Note that - is changed to _, so |
| 84 | * the user can use "foo-bar=1" even for variable "foo_bar". |
| 85 | * |
| 86 | * @perm is 0 if the the variable is not to appear in sysfs, or 0444 |
| 87 | * for world-readable, 0644 for root-writable, etc. Note that if it |
| 88 | * is writable, you may need to use kparam_block_sysfs_write() around |
| 89 | * accesses (esp. charp, which can be kfreed when it changes). |
| 90 | * |
| 91 | * The @type is simply pasted to refer to a param_ops_##type and a |
| 92 | * param_check_##type: for convenience many standard types are provided but |
| 93 | * you can create your own by defining those variables. |
| 94 | * |
| 95 | * Standard types are: |
| 96 | * byte, short, ushort, int, uint, long, ulong |
| 97 | * charp: a character pointer |
| 98 | * bool: a bool, values 0/1, y/n, Y/N. |
| 99 | * invbool: the above, only sense-reversed (N = true). |
| 100 | */ |
| 101 | #define module_param(name, type, perm) \ |
| 102 | module_param_named(name, name, type, perm) |
| 103 | |
| 104 | /** |
| 105 | * module_param_named - typesafe helper for a renamed module/cmdline parameter |
| 106 | * @name: a valid C identifier which is the parameter name. |
| 107 | * @value: the actual lvalue to alter. |
| 108 | * @type: the type of the parameter |
| 109 | * @perm: visibility in sysfs. |
| 110 | * |
| 111 | * Usually it's a good idea to have variable names and user-exposed names the |
| 112 | * same, but that's harder if the variable must be non-static or is inside a |
| 113 | * structure. This allows exposure under a different name. |
| 114 | */ |
| 115 | #define module_param_named(name, value, type, perm) \ |
| 116 | param_check_##type(name, &(value)); \ |
| 117 | module_param_cb(name, ¶m_ops_##type, &value, perm); \ |
| 118 | __MODULE_PARM_TYPE(name, #type) |
| 119 | |
| 120 | /** |
| 121 | * module_param_cb - general callback for a module/cmdline parameter |
| 122 | * @name: a valid C identifier which is the parameter name. |
| 123 | * @ops: the set & get operations for this parameter. |
| 124 | * @perm: visibility in sysfs. |
| 125 | * |
| 126 | * The ops can have NULL set or get functions. |
| 127 | */ |
| 128 | #define module_param_cb(name, ops, arg, perm) \ |
Rusty Russell | ae82fdb | 2012-06-08 14:58:13 +0930 | [diff] [blame] | 129 | __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1) |
Pawel Moll | 026cee0 | 2012-03-26 12:50:51 +1030 | [diff] [blame] | 130 | |
| 131 | /** |
| 132 | * <level>_param_cb - general callback for a module/cmdline parameter |
| 133 | * to be evaluated before certain initcall level |
| 134 | * @name: a valid C identifier which is the parameter name. |
| 135 | * @ops: the set & get operations for this parameter. |
| 136 | * @perm: visibility in sysfs. |
| 137 | * |
| 138 | * The ops can have NULL set or get functions. |
| 139 | */ |
| 140 | #define __level_param_cb(name, ops, arg, perm, level) \ |
| 141 | __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level) |
| 142 | |
| 143 | #define core_param_cb(name, ops, arg, perm) \ |
| 144 | __level_param_cb(name, ops, arg, perm, 1) |
| 145 | |
| 146 | #define postcore_param_cb(name, ops, arg, perm) \ |
| 147 | __level_param_cb(name, ops, arg, perm, 2) |
| 148 | |
| 149 | #define arch_param_cb(name, ops, arg, perm) \ |
| 150 | __level_param_cb(name, ops, arg, perm, 3) |
| 151 | |
| 152 | #define subsys_param_cb(name, ops, arg, perm) \ |
| 153 | __level_param_cb(name, ops, arg, perm, 4) |
| 154 | |
| 155 | #define fs_param_cb(name, ops, arg, perm) \ |
| 156 | __level_param_cb(name, ops, arg, perm, 5) |
| 157 | |
| 158 | #define device_param_cb(name, ops, arg, perm) \ |
| 159 | __level_param_cb(name, ops, arg, perm, 6) |
| 160 | |
| 161 | #define late_param_cb(name, ops, arg, perm) \ |
| 162 | __level_param_cb(name, ops, arg, perm, 7) |
Rusty Russell | 546970b | 2010-08-11 23:04:20 -0600 | [diff] [blame] | 163 | |
Ivan Kokshaysky | 91d35dd | 2008-02-13 15:03:26 -0800 | [diff] [blame] | 164 | /* On alpha, ia64 and ppc64 relocations to global data cannot go into |
| 165 | read-only sections (which is part of respective UNIX ABI on these |
| 166 | platforms). So 'const' makes no sense and even causes compile failures |
| 167 | with some compilers. */ |
| 168 | #if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64) |
| 169 | #define __moduleparam_const |
| 170 | #else |
| 171 | #define __moduleparam_const const |
| 172 | #endif |
| 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* This is the fundamental function for registering boot/module |
Rusty Russell | 546970b | 2010-08-11 23:04:20 -0600 | [diff] [blame] | 175 | parameters. */ |
Pawel Moll | 026cee0 | 2012-03-26 12:50:51 +1030 | [diff] [blame] | 176 | #define __module_param_call(prefix, name, ops, arg, perm, level) \ |
Alexey Dobriyan | 9774a1f | 2006-12-06 20:36:56 -0800 | [diff] [blame] | 177 | /* Default value instead of permissions? */ \ |
| 178 | static int __param_perm_check_##name __attribute__((unused)) = \ |
Rusty Russell | 730b69d | 2008-10-22 10:00:22 -0500 | [diff] [blame] | 179 | BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \ |
| 180 | + BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \ |
Jan Beulich | 22e48ea | 2007-10-16 23:29:34 -0700 | [diff] [blame] | 181 | static const char __param_str_##name[] = prefix #name; \ |
Ivan Kokshaysky | 91d35dd | 2008-02-13 15:03:26 -0800 | [diff] [blame] | 182 | static struct kernel_param __moduleparam_const __param_##name \ |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 183 | __used \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \ |
Pawel Moll | 026cee0 | 2012-03-26 12:50:51 +1030 | [diff] [blame] | 185 | = { __param_str_##name, ops, perm, level, { arg } } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 187 | /* Obsolete - use module_param_cb() */ |
| 188 | #define module_param_call(name, set, get, arg, perm) \ |
| 189 | static struct kernel_param_ops __param_ops_##name = \ |
| 190 | { (void *)set, (void *)get }; \ |
| 191 | __module_param_call(MODULE_PARAM_PREFIX, \ |
| 192 | name, &__param_ops_##name, arg, \ |
Rusty Russell | ae82fdb | 2012-06-08 14:58:13 +0930 | [diff] [blame] | 193 | (perm) + sizeof(__check_old_set_param(set))*0, -1) |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 194 | |
| 195 | /* We don't get oldget: it's often a new-style param_get_uint, etc. */ |
| 196 | static inline int |
| 197 | __check_old_set_param(int (*oldset)(const char *, struct kernel_param *)) |
| 198 | { |
| 199 | return 0; |
| 200 | } |
| 201 | |
Rusty Russell | 907b29e | 2010-08-11 23:04:19 -0600 | [diff] [blame] | 202 | /** |
| 203 | * kparam_block_sysfs_write - make sure a parameter isn't written via sysfs. |
| 204 | * @name: the name of the parameter |
| 205 | * |
| 206 | * There's no point blocking write on a paramter that isn't writable via sysfs! |
| 207 | */ |
| 208 | #define kparam_block_sysfs_write(name) \ |
| 209 | do { \ |
| 210 | BUG_ON(!(__param_##name.perm & 0222)); \ |
| 211 | __kernel_param_lock(); \ |
| 212 | } while (0) |
| 213 | |
| 214 | /** |
| 215 | * kparam_unblock_sysfs_write - allows sysfs to write to a parameter again. |
| 216 | * @name: the name of the parameter |
| 217 | */ |
| 218 | #define kparam_unblock_sysfs_write(name) \ |
| 219 | do { \ |
| 220 | BUG_ON(!(__param_##name.perm & 0222)); \ |
| 221 | __kernel_param_unlock(); \ |
| 222 | } while (0) |
| 223 | |
| 224 | /** |
| 225 | * kparam_block_sysfs_read - make sure a parameter isn't read via sysfs. |
| 226 | * @name: the name of the parameter |
| 227 | * |
| 228 | * This also blocks sysfs writes. |
| 229 | */ |
| 230 | #define kparam_block_sysfs_read(name) \ |
| 231 | do { \ |
| 232 | BUG_ON(!(__param_##name.perm & 0444)); \ |
| 233 | __kernel_param_lock(); \ |
| 234 | } while (0) |
| 235 | |
| 236 | /** |
| 237 | * kparam_unblock_sysfs_read - allows sysfs to read a parameter again. |
| 238 | * @name: the name of the parameter |
| 239 | */ |
| 240 | #define kparam_unblock_sysfs_read(name) \ |
| 241 | do { \ |
| 242 | BUG_ON(!(__param_##name.perm & 0444)); \ |
| 243 | __kernel_param_unlock(); \ |
| 244 | } while (0) |
| 245 | |
| 246 | #ifdef CONFIG_SYSFS |
| 247 | extern void __kernel_param_lock(void); |
| 248 | extern void __kernel_param_unlock(void); |
| 249 | #else |
| 250 | static inline void __kernel_param_lock(void) |
| 251 | { |
| 252 | } |
| 253 | static inline void __kernel_param_unlock(void) |
| 254 | { |
| 255 | } |
| 256 | #endif |
| 257 | |
Rusty Russell | 67e67ce | 2008-10-22 10:00:23 -0500 | [diff] [blame] | 258 | #ifndef MODULE |
| 259 | /** |
| 260 | * core_param - define a historical core kernel parameter. |
| 261 | * @name: the name of the cmdline and sysfs parameter (often the same as var) |
| 262 | * @var: the variable |
Rusty Russell | 546970b | 2010-08-11 23:04:20 -0600 | [diff] [blame] | 263 | * @type: the type of the parameter |
Rusty Russell | 67e67ce | 2008-10-22 10:00:23 -0500 | [diff] [blame] | 264 | * @perm: visibility in sysfs |
| 265 | * |
| 266 | * core_param is just like module_param(), but cannot be modular and |
| 267 | * doesn't add a prefix (such as "printk."). This is for compatibility |
| 268 | * with __setup(), and it makes sense as truly core parameters aren't |
| 269 | * tied to the particular file they're in. |
| 270 | */ |
| 271 | #define core_param(name, var, type, perm) \ |
| 272 | param_check_##type(name, &(var)); \ |
Rusty Russell | ae82fdb | 2012-06-08 14:58:13 +0930 | [diff] [blame] | 273 | __module_param_call("", name, ¶m_ops_##type, &var, perm, -1) |
Rusty Russell | 67e67ce | 2008-10-22 10:00:23 -0500 | [diff] [blame] | 274 | #endif /* !MODULE */ |
| 275 | |
Rusty Russell | 546970b | 2010-08-11 23:04:20 -0600 | [diff] [blame] | 276 | /** |
| 277 | * module_param_string - a char array parameter |
| 278 | * @name: the name of the parameter |
| 279 | * @string: the string variable |
| 280 | * @len: the maximum length of the string, incl. terminator |
| 281 | * @perm: visibility in sysfs. |
| 282 | * |
| 283 | * This actually copies the string when it's set (unlike type charp). |
| 284 | * @len is usually just sizeof(string). |
| 285 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | #define module_param_string(name, string, len, perm) \ |
Jan Beulich | 22e48ea | 2007-10-16 23:29:34 -0700 | [diff] [blame] | 287 | static const struct kparam_string __param_string_##name \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | = { len, string }; \ |
Rusty Russell | fddd520 | 2009-06-12 21:46:57 -0600 | [diff] [blame] | 289 | __module_param_call(MODULE_PARAM_PREFIX, name, \ |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 290 | ¶m_ops_string, \ |
Rusty Russell | ae82fdb | 2012-06-08 14:58:13 +0930 | [diff] [blame] | 291 | .str = &__param_string_##name, perm, -1); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | __MODULE_PARM_TYPE(name, "string") |
| 293 | |
Michal Schmidt | b1e4d20 | 2011-10-10 00:03:37 +0200 | [diff] [blame] | 294 | /** |
| 295 | * parameq - checks if two parameter names match |
| 296 | * @name1: parameter name 1 |
| 297 | * @name2: parameter name 2 |
| 298 | * |
| 299 | * Returns true if the two parameter names are equal. |
| 300 | * Dashes (-) are considered equal to underscores (_). |
| 301 | */ |
| 302 | extern bool parameq(const char *name1, const char *name2); |
| 303 | |
| 304 | /** |
| 305 | * parameqn - checks if two parameter names match |
| 306 | * @name1: parameter name 1 |
| 307 | * @name2: parameter name 2 |
| 308 | * @n: the length to compare |
| 309 | * |
| 310 | * Similar to parameq(), except it compares @n characters. |
| 311 | */ |
| 312 | extern bool parameqn(const char *name1, const char *name2, size_t n); |
| 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | /* Called on module insert or kernel boot */ |
| 315 | extern int parse_args(const char *name, |
| 316 | char *args, |
Rusty Russell | 914dcaa | 2010-08-11 23:04:18 -0600 | [diff] [blame] | 317 | const struct kernel_param *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | unsigned num, |
Pawel Moll | 026cee0 | 2012-03-26 12:50:51 +1030 | [diff] [blame] | 319 | s16 level_min, |
| 320 | s16 level_max, |
Jim Cromie | 9fb48c7 | 2012-04-27 14:30:34 -0600 | [diff] [blame] | 321 | int (*unknown)(char *param, char *val, |
| 322 | const char *doing)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Rusty Russell | e180a6b | 2009-03-31 13:05:29 -0600 | [diff] [blame] | 324 | /* Called by module remove. */ |
| 325 | #ifdef CONFIG_SYSFS |
| 326 | extern void destroy_params(const struct kernel_param *params, unsigned num); |
| 327 | #else |
| 328 | static inline void destroy_params(const struct kernel_param *params, |
| 329 | unsigned num) |
| 330 | { |
| 331 | } |
| 332 | #endif /* !CONFIG_SYSFS */ |
| 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | /* All the helper functions */ |
| 335 | /* The macros to do compile-time type checking stolen from Jakub |
| 336 | Jelinek, who IIRC came up with this idea for the 2.4 module init code. */ |
| 337 | #define __param_check(name, p, type) \ |
| 338 | static inline type *__check_##name(void) { return(p); } |
| 339 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 340 | extern struct kernel_param_ops param_ops_byte; |
| 341 | extern int param_set_byte(const char *val, const struct kernel_param *kp); |
| 342 | extern int param_get_byte(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | #define param_check_byte(name, p) __param_check(name, p, unsigned char) |
| 344 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 345 | extern struct kernel_param_ops param_ops_short; |
| 346 | extern int param_set_short(const char *val, const struct kernel_param *kp); |
| 347 | extern int param_get_short(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | #define param_check_short(name, p) __param_check(name, p, short) |
| 349 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 350 | extern struct kernel_param_ops param_ops_ushort; |
| 351 | extern int param_set_ushort(const char *val, const struct kernel_param *kp); |
| 352 | extern int param_get_ushort(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | #define param_check_ushort(name, p) __param_check(name, p, unsigned short) |
| 354 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 355 | extern struct kernel_param_ops param_ops_int; |
| 356 | extern int param_set_int(const char *val, const struct kernel_param *kp); |
| 357 | extern int param_get_int(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | #define param_check_int(name, p) __param_check(name, p, int) |
| 359 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 360 | extern struct kernel_param_ops param_ops_uint; |
| 361 | extern int param_set_uint(const char *val, const struct kernel_param *kp); |
| 362 | extern int param_get_uint(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | #define param_check_uint(name, p) __param_check(name, p, unsigned int) |
| 364 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 365 | extern struct kernel_param_ops param_ops_long; |
| 366 | extern int param_set_long(const char *val, const struct kernel_param *kp); |
| 367 | extern int param_get_long(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | #define param_check_long(name, p) __param_check(name, p, long) |
| 369 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 370 | extern struct kernel_param_ops param_ops_ulong; |
| 371 | extern int param_set_ulong(const char *val, const struct kernel_param *kp); |
| 372 | extern int param_get_ulong(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | #define param_check_ulong(name, p) __param_check(name, p, unsigned long) |
| 374 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 375 | extern struct kernel_param_ops param_ops_charp; |
| 376 | extern int param_set_charp(const char *val, const struct kernel_param *kp); |
| 377 | extern int param_get_charp(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | #define param_check_charp(name, p) __param_check(name, p, char *) |
| 379 | |
Rusty Russell | 72db395 | 2012-01-13 09:32:28 +1030 | [diff] [blame] | 380 | /* We used to allow int as well as bool. We're taking that away! */ |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 381 | extern struct kernel_param_ops param_ops_bool; |
| 382 | extern int param_set_bool(const char *val, const struct kernel_param *kp); |
| 383 | extern int param_get_bool(char *buffer, const struct kernel_param *kp); |
Rusty Russell | 72db395 | 2012-01-13 09:32:28 +1030 | [diff] [blame] | 384 | #define param_check_bool(name, p) __param_check(name, p, bool) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 386 | extern struct kernel_param_ops param_ops_invbool; |
| 387 | extern int param_set_invbool(const char *val, const struct kernel_param *kp); |
| 388 | extern int param_get_invbool(char *buffer, const struct kernel_param *kp); |
Rusty Russell | 9a71af2 | 2009-06-12 21:46:53 -0600 | [diff] [blame] | 389 | #define param_check_invbool(name, p) __param_check(name, p, bool) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Rusty Russell | 69116f2 | 2012-01-13 09:32:17 +1030 | [diff] [blame] | 391 | /* An int, which can only be set like a bool (though it shows as an int). */ |
| 392 | extern struct kernel_param_ops param_ops_bint; |
| 393 | extern int param_set_bint(const char *val, const struct kernel_param *kp); |
| 394 | #define param_get_bint param_get_int |
| 395 | #define param_check_bint param_check_int |
| 396 | |
Rusty Russell | 546970b | 2010-08-11 23:04:20 -0600 | [diff] [blame] | 397 | /** |
| 398 | * module_param_array - a parameter which is an array of some type |
| 399 | * @name: the name of the array variable |
| 400 | * @type: the type, as per module_param() |
| 401 | * @nump: optional pointer filled in with the number written |
| 402 | * @perm: visibility in sysfs |
| 403 | * |
| 404 | * Input and output are as comma-separated values. Commas inside values |
| 405 | * don't work properly (eg. an array of charp). |
| 406 | * |
| 407 | * ARRAY_SIZE(@name) is used to determine the number of elements in the |
| 408 | * array, so the definition must be visible. |
| 409 | */ |
| 410 | #define module_param_array(name, type, nump, perm) \ |
| 411 | module_param_array_named(name, name, type, nump, perm) |
| 412 | |
| 413 | /** |
| 414 | * module_param_array_named - renamed parameter which is an array of some type |
| 415 | * @name: a valid C identifier which is the parameter name |
| 416 | * @array: the name of the array variable |
| 417 | * @type: the type, as per module_param() |
| 418 | * @nump: optional pointer filled in with the number written |
| 419 | * @perm: visibility in sysfs |
| 420 | * |
| 421 | * This exposes a different name than the actual variable name. See |
| 422 | * module_param_named() for why this might be necessary. |
| 423 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | #define module_param_array_named(name, array, type, nump, perm) \ |
Rusty Russell | bafeafe | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 425 | param_check_##type(name, &(array)[0]); \ |
Jan Beulich | 22e48ea | 2007-10-16 23:29:34 -0700 | [diff] [blame] | 426 | static const struct kparam_array __param_arr_##name \ |
Richard Kennedy | c5be0b2 | 2011-05-19 16:55:25 -0600 | [diff] [blame] | 427 | = { .max = ARRAY_SIZE(array), .num = nump, \ |
| 428 | .ops = ¶m_ops_##type, \ |
| 429 | .elemsize = sizeof(array[0]), .elem = array }; \ |
Rusty Russell | fddd520 | 2009-06-12 21:46:57 -0600 | [diff] [blame] | 430 | __module_param_call(MODULE_PARAM_PREFIX, name, \ |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 431 | ¶m_array_ops, \ |
Rusty Russell | fddd520 | 2009-06-12 21:46:57 -0600 | [diff] [blame] | 432 | .arr = &__param_arr_##name, \ |
Rusty Russell | ae82fdb | 2012-06-08 14:58:13 +0930 | [diff] [blame] | 433 | perm, -1); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | __MODULE_PARM_TYPE(name, "array of " #type) |
| 435 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 436 | extern struct kernel_param_ops param_array_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 438 | extern struct kernel_param_ops param_ops_string; |
| 439 | extern int param_set_copystring(const char *val, const struct kernel_param *); |
| 440 | extern int param_get_string(char *buffer, const struct kernel_param *kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Jean Delvare | b634d13 | 2013-07-02 15:35:11 +0930 | [diff] [blame^] | 442 | /* for exporting parameters in /sys/module/.../parameters */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
| 444 | struct module; |
| 445 | |
Randy Dunlap | ef665c1 | 2007-02-13 15:19:06 -0800 | [diff] [blame] | 446 | #if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | extern int module_param_sysfs_setup(struct module *mod, |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 448 | const struct kernel_param *kparam, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | unsigned int num_params); |
| 450 | |
| 451 | extern void module_param_sysfs_remove(struct module *mod); |
Randy Dunlap | ef665c1 | 2007-02-13 15:19:06 -0800 | [diff] [blame] | 452 | #else |
| 453 | static inline int module_param_sysfs_setup(struct module *mod, |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 454 | const struct kernel_param *kparam, |
Randy Dunlap | ef665c1 | 2007-02-13 15:19:06 -0800 | [diff] [blame] | 455 | unsigned int num_params) |
| 456 | { |
| 457 | return 0; |
| 458 | } |
| 459 | |
| 460 | static inline void module_param_sysfs_remove(struct module *mod) |
| 461 | { } |
| 462 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
| 464 | #endif /* _LINUX_MODULE_PARAMS_H */ |