blob: 1ee7b30dafecdb27067a2e83fa0bbaccad96e8d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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 Ravnborg367cb702006-01-06 21:17:50 +010013#define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#endif
15
Rusty Russell730b69d2008-10-22 10:00:22 -050016/* Chosen so that structs with an unsigned long line up. */
17#define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
18
Linus Walleijb75be422011-01-05 13:27:04 +010019#ifdef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103021static const char __UNIQUE_ID(name)[] \
Jan Beulichb6472772010-10-26 14:22:26 -070022 __used __attribute__((section(".modinfo"), unused, aligned(1))) \
23 = __stringify(tag) "=" info
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#else /* !MODULE */
Linus Walleijb75be422011-01-05 13:27:04 +010025/* This struct is here for syntactic coherency, it is not used */
26#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103027 struct __UNIQUE_ID(name) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#endif
29#define __MODULE_PARM_TYPE(name, _type) \
30 __MODULE_INFO(parmtype, name##type, #name ":" _type)
31
Paul Gortmaker639938e2011-08-30 11:24:44 -040032/* 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 Torvalds1da177e2005-04-16 15:20:36 -070037struct kernel_param;
38
Steven Rostedtab013c52013-08-20 15:33:19 +093039/*
40 * Flags available for kernel_param_ops
41 *
42 * NOARG - the parameter allows for no argument (foo instead of foo=1)
43 */
44enum {
Jani Nikula6a4c2642014-08-27 06:21:23 +093045 KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
Steven Rostedtab013c52013-08-20 15:33:19 +093046};
47
Rusty Russell9bbb9e52010-08-11 23:04:12 -060048struct kernel_param_ops {
Steven Rostedtab013c52013-08-20 15:33:19 +093049 /* How the ops should behave */
50 unsigned int flags;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060051 /* Returns 0, or -errno. arg is in kp->arg. */
52 int (*set)(const char *val, const struct kernel_param *kp);
53 /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
54 int (*get)(char *buffer, const struct kernel_param *kp);
Rusty Russelle6df34a2010-08-11 23:04:17 -060055 /* Optional function to free kp->arg when module unloaded. */
56 void (*free)(void *arg);
Rusty Russell9bbb9e52010-08-11 23:04:12 -060057};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Jani Nikula91f9d332014-08-27 06:22:23 +093059/*
60 * Flags available for kernel_param
61 *
62 * UNSAFE - the parameter is dangerous and setting it will taint the kernel
David Howellsbf616d22017-04-04 16:54:21 +010063 * HWPARAM - Hardware param not permitted in lockdown mode
Jani Nikula91f9d332014-08-27 06:22:23 +093064 */
65enum {
David Howellsbf616d22017-04-04 16:54:21 +010066 KERNEL_PARAM_FL_UNSAFE = (1 << 0),
67 KERNEL_PARAM_FL_HWPARAM = (1 << 1),
Jani Nikula91f9d332014-08-27 06:22:23 +093068};
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070struct kernel_param {
71 const char *name;
Dan Streetmanb51d23e2015-06-17 06:18:52 +093072 struct module *mod;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060073 const struct kernel_param_ops *ops;
Dan Streetman5104b7d2015-06-17 06:17:52 +093074 const u16 perm;
Jani Nikula91f9d332014-08-27 06:22:23 +093075 s8 level;
76 u8 flags;
Jan Beulich22e48ea2007-10-16 23:29:34 -070077 union {
78 void *arg;
79 const struct kparam_string *str;
80 const struct kparam_array *arr;
81 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
Geert Uytterhoeven63a12d92014-10-13 15:55:44 -070084extern const struct kernel_param __start___param[], __stop___param[];
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* Special one for strings we want to copy into */
87struct kparam_string {
88 unsigned int maxlen;
89 char *string;
90};
91
92/* Special one for arrays */
93struct kparam_array
94{
95 unsigned int max;
Richard Kennedyc5be0b22011-05-19 16:55:25 -060096 unsigned int elemsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 unsigned int *num;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060098 const struct kernel_param_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 void *elem;
100};
101
Rusty Russell546970b2010-08-11 23:04:20 -0600102/**
103 * module_param - typesafe helper for a module/cmdline parameter
104 * @value: the variable to alter, and exposed parameter name.
105 * @type: the type of the parameter
106 * @perm: visibility in sysfs.
107 *
108 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
109 * ".") the kernel commandline parameter. Note that - is changed to _, so
110 * the user can use "foo-bar=1" even for variable "foo_bar".
111 *
112 * @perm is 0 if the the variable is not to appear in sysfs, or 0444
113 * for world-readable, 0644 for root-writable, etc. Note that if it
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930114 * is writable, you may need to use kernel_param_lock() around
Rusty Russell546970b2010-08-11 23:04:20 -0600115 * accesses (esp. charp, which can be kfreed when it changes).
116 *
117 * The @type is simply pasted to refer to a param_ops_##type and a
118 * param_check_##type: for convenience many standard types are provided but
119 * you can create your own by defining those variables.
120 *
121 * Standard types are:
122 * byte, short, ushort, int, uint, long, ulong
123 * charp: a character pointer
124 * bool: a bool, values 0/1, y/n, Y/N.
125 * invbool: the above, only sense-reversed (N = true).
126 */
127#define module_param(name, type, perm) \
128 module_param_named(name, name, type, perm)
129
130/**
Jani Nikula3baee202014-08-27 06:23:23 +0930131 * module_param_unsafe - same as module_param but taints kernel
132 */
133#define module_param_unsafe(name, type, perm) \
134 module_param_named_unsafe(name, name, type, perm)
135
136/**
Rusty Russell546970b2010-08-11 23:04:20 -0600137 * module_param_named - typesafe helper for a renamed module/cmdline parameter
138 * @name: a valid C identifier which is the parameter name.
139 * @value: the actual lvalue to alter.
140 * @type: the type of the parameter
141 * @perm: visibility in sysfs.
142 *
143 * Usually it's a good idea to have variable names and user-exposed names the
144 * same, but that's harder if the variable must be non-static or is inside a
145 * structure. This allows exposure under a different name.
146 */
147#define module_param_named(name, value, type, perm) \
148 param_check_##type(name, &(value)); \
149 module_param_cb(name, &param_ops_##type, &value, perm); \
150 __MODULE_PARM_TYPE(name, #type)
151
152/**
Jani Nikula3baee202014-08-27 06:23:23 +0930153 * module_param_named_unsafe - same as module_param_named but taints kernel
154 */
155#define module_param_named_unsafe(name, value, type, perm) \
156 param_check_##type(name, &(value)); \
157 module_param_cb_unsafe(name, &param_ops_##type, &value, perm); \
158 __MODULE_PARM_TYPE(name, #type)
159
160/**
Rusty Russell546970b2010-08-11 23:04:20 -0600161 * module_param_cb - general callback for a module/cmdline parameter
162 * @name: a valid C identifier which is the parameter name.
163 * @ops: the set & get operations for this parameter.
164 * @perm: visibility in sysfs.
165 *
166 * The ops can have NULL set or get functions.
167 */
168#define module_param_cb(name, ops, arg, perm) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930169 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030170
Jani Nikula3baee202014-08-27 06:23:23 +0930171#define module_param_cb_unsafe(name, ops, arg, perm) \
172 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, \
173 KERNEL_PARAM_FL_UNSAFE)
174
Pawel Moll026cee02012-03-26 12:50:51 +1030175/**
176 * <level>_param_cb - general callback for a module/cmdline parameter
177 * to be evaluated before certain initcall level
178 * @name: a valid C identifier which is the parameter name.
179 * @ops: the set & get operations for this parameter.
180 * @perm: visibility in sysfs.
181 *
182 * The ops can have NULL set or get functions.
183 */
184#define __level_param_cb(name, ops, arg, perm, level) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930185 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030186
187#define core_param_cb(name, ops, arg, perm) \
188 __level_param_cb(name, ops, arg, perm, 1)
189
190#define postcore_param_cb(name, ops, arg, perm) \
191 __level_param_cb(name, ops, arg, perm, 2)
192
193#define arch_param_cb(name, ops, arg, perm) \
194 __level_param_cb(name, ops, arg, perm, 3)
195
196#define subsys_param_cb(name, ops, arg, perm) \
197 __level_param_cb(name, ops, arg, perm, 4)
198
199#define fs_param_cb(name, ops, arg, perm) \
200 __level_param_cb(name, ops, arg, perm, 5)
201
202#define device_param_cb(name, ops, arg, perm) \
203 __level_param_cb(name, ops, arg, perm, 6)
204
205#define late_param_cb(name, ops, arg, perm) \
206 __level_param_cb(name, ops, arg, perm, 7)
Rusty Russell546970b2010-08-11 23:04:20 -0600207
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800208/* On alpha, ia64 and ppc64 relocations to global data cannot go into
209 read-only sections (which is part of respective UNIX ABI on these
210 platforms). So 'const' makes no sense and even causes compile failures
211 with some compilers. */
212#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
213#define __moduleparam_const
214#else
215#define __moduleparam_const const
216#endif
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/* This is the fundamental function for registering boot/module
Rusty Russell546970b2010-08-11 23:04:20 -0600219 parameters. */
Jani Nikula91f9d332014-08-27 06:22:23 +0930220#define __module_param_call(prefix, name, ops, arg, perm, level, flags) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -0800221 /* Default value instead of permissions? */ \
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930222 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800223 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100224 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930226 = { __param_str_##name, THIS_MODULE, ops, \
227 VERIFY_OCTAL_PERMISSIONS(perm), level, flags, { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600229/* Obsolete - use module_param_cb() */
230#define module_param_call(name, set, get, arg, perm) \
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930231 static const struct kernel_param_ops __param_ops_##name = \
Mark Rustad184c3fc2014-09-11 09:47:23 +0930232 { .flags = 0, (void *)set, (void *)get }; \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600233 __module_param_call(MODULE_PARAM_PREFIX, \
234 name, &__param_ops_##name, arg, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930235 (perm) + sizeof(__check_old_set_param(set))*0, -1, 0)
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600236
237/* We don't get oldget: it's often a new-style param_get_uint, etc. */
238static inline int
239__check_old_set_param(int (*oldset)(const char *, struct kernel_param *))
240{
241 return 0;
242}
243
Rusty Russell907b29e2010-08-11 23:04:19 -0600244#ifdef CONFIG_SYSFS
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930245extern void kernel_param_lock(struct module *mod);
246extern void kernel_param_unlock(struct module *mod);
Rusty Russell907b29e2010-08-11 23:04:19 -0600247#else
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930248static inline void kernel_param_lock(struct module *mod)
Rusty Russell907b29e2010-08-11 23:04:19 -0600249{
250}
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930251static inline void kernel_param_unlock(struct module *mod)
Rusty Russell907b29e2010-08-11 23:04:19 -0600252{
253}
254#endif
255
Rusty Russell67e67ce2008-10-22 10:00:23 -0500256#ifndef MODULE
257/**
258 * core_param - define a historical core kernel parameter.
259 * @name: the name of the cmdline and sysfs parameter (often the same as var)
260 * @var: the variable
Rusty Russell546970b2010-08-11 23:04:20 -0600261 * @type: the type of the parameter
Rusty Russell67e67ce2008-10-22 10:00:23 -0500262 * @perm: visibility in sysfs
263 *
264 * core_param is just like module_param(), but cannot be modular and
265 * doesn't add a prefix (such as "printk."). This is for compatibility
266 * with __setup(), and it makes sense as truly core parameters aren't
267 * tied to the particular file they're in.
268 */
269#define core_param(name, var, type, perm) \
270 param_check_##type(name, &(var)); \
Jani Nikula91f9d332014-08-27 06:22:23 +0930271 __module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
Dmitry Torokhovec0ccc12015-03-30 16:20:09 -0700272
273/**
274 * core_param_unsafe - same as core_param but taints kernel
275 */
276#define core_param_unsafe(name, var, type, perm) \
277 param_check_##type(name, &(var)); \
278 __module_param_call("", name, &param_ops_##type, &var, perm, \
279 -1, KERNEL_PARAM_FL_UNSAFE)
280
Rusty Russell67e67ce2008-10-22 10:00:23 -0500281#endif /* !MODULE */
282
Rusty Russell546970b2010-08-11 23:04:20 -0600283/**
284 * module_param_string - a char array parameter
285 * @name: the name of the parameter
286 * @string: the string variable
287 * @len: the maximum length of the string, incl. terminator
288 * @perm: visibility in sysfs.
289 *
290 * This actually copies the string when it's set (unlike type charp).
291 * @len is usually just sizeof(string).
292 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700294 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 = { len, string }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600296 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600297 &param_ops_string, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930298 .str = &__param_string_##name, perm, -1, 0);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 __MODULE_PARM_TYPE(name, "string")
300
Michal Schmidtb1e4d202011-10-10 00:03:37 +0200301/**
302 * parameq - checks if two parameter names match
303 * @name1: parameter name 1
304 * @name2: parameter name 2
305 *
306 * Returns true if the two parameter names are equal.
307 * Dashes (-) are considered equal to underscores (_).
308 */
309extern bool parameq(const char *name1, const char *name2);
310
311/**
312 * parameqn - checks if two parameter names match
313 * @name1: parameter name 1
314 * @name2: parameter name 2
315 * @n: the length to compare
316 *
317 * Similar to parameq(), except it compares @n characters.
318 */
319extern bool parameqn(const char *name1, const char *name2, size_t n);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/* Called on module insert or kernel boot */
Rusty Russell51e158c2014-04-28 11:34:33 +0930322extern char *parse_args(const char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 char *args,
Rusty Russell914dcaa2010-08-11 23:04:18 -0600324 const struct kernel_param *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 unsigned num,
Pawel Moll026cee02012-03-26 12:50:51 +1030326 s16 level_min,
327 s16 level_max,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -0700328 void *arg,
Jim Cromie9fb48c72012-04-27 14:30:34 -0600329 int (*unknown)(char *param, char *val,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -0700330 const char *doing, void *arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Rusty Russelle180a6b2009-03-31 13:05:29 -0600332/* Called by module remove. */
333#ifdef CONFIG_SYSFS
334extern void destroy_params(const struct kernel_param *params, unsigned num);
335#else
336static inline void destroy_params(const struct kernel_param *params,
337 unsigned num)
338{
339}
340#endif /* !CONFIG_SYSFS */
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/* All the helper functions */
343/* The macros to do compile-time type checking stolen from Jakub
344 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
345#define __param_check(name, p, type) \
Mark Charlebois0283f9a2014-03-17 13:18:26 +1030346 static inline type __always_unused *__check_##name(void) { return(p); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930348extern const struct kernel_param_ops param_ops_byte;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600349extern int param_set_byte(const char *val, const struct kernel_param *kp);
350extern int param_get_byte(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#define param_check_byte(name, p) __param_check(name, p, unsigned char)
352
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930353extern const struct kernel_param_ops param_ops_short;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600354extern int param_set_short(const char *val, const struct kernel_param *kp);
355extern int param_get_short(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356#define param_check_short(name, p) __param_check(name, p, short)
357
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930358extern const struct kernel_param_ops param_ops_ushort;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600359extern int param_set_ushort(const char *val, const struct kernel_param *kp);
360extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
362
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930363extern const struct kernel_param_ops param_ops_int;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600364extern int param_set_int(const char *val, const struct kernel_param *kp);
365extern int param_get_int(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#define param_check_int(name, p) __param_check(name, p, int)
367
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930368extern const struct kernel_param_ops param_ops_uint;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600369extern int param_set_uint(const char *val, const struct kernel_param *kp);
370extern int param_get_uint(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371#define param_check_uint(name, p) __param_check(name, p, unsigned int)
372
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930373extern const struct kernel_param_ops param_ops_long;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600374extern int param_set_long(const char *val, const struct kernel_param *kp);
375extern int param_get_long(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#define param_check_long(name, p) __param_check(name, p, long)
377
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930378extern const struct kernel_param_ops param_ops_ulong;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600379extern int param_set_ulong(const char *val, const struct kernel_param *kp);
380extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
382
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930383extern const struct kernel_param_ops param_ops_ullong;
Hannes Reineckeb4210b82014-06-25 15:27:37 +0200384extern int param_set_ullong(const char *val, const struct kernel_param *kp);
385extern int param_get_ullong(char *buffer, const struct kernel_param *kp);
386#define param_check_ullong(name, p) __param_check(name, p, unsigned long long)
387
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930388extern const struct kernel_param_ops param_ops_charp;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600389extern int param_set_charp(const char *val, const struct kernel_param *kp);
390extern int param_get_charp(char *buffer, const struct kernel_param *kp);
Dan Streetman3d9c6372015-11-06 16:29:12 -0800391extern void param_free_charp(void *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#define param_check_charp(name, p) __param_check(name, p, char *)
393
Rusty Russell72db3952012-01-13 09:32:28 +1030394/* We used to allow int as well as bool. We're taking that away! */
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930395extern const struct kernel_param_ops param_ops_bool;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600396extern int param_set_bool(const char *val, const struct kernel_param *kp);
397extern int param_get_bool(char *buffer, const struct kernel_param *kp);
Rusty Russell72db3952012-01-13 09:32:28 +1030398#define param_check_bool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Luis R. Rodriguezd19f05d2015-05-27 11:09:38 +0930400extern const struct kernel_param_ops param_ops_bool_enable_only;
401extern int param_set_bool_enable_only(const char *val,
402 const struct kernel_param *kp);
403/* getter is the same as for the regular bool */
404#define param_check_bool_enable_only param_check_bool
405
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930406extern const struct kernel_param_ops param_ops_invbool;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600407extern int param_set_invbool(const char *val, const struct kernel_param *kp);
408extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600409#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Rusty Russell69116f22012-01-13 09:32:17 +1030411/* An int, which can only be set like a bool (though it shows as an int). */
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930412extern const struct kernel_param_ops param_ops_bint;
Rusty Russell69116f22012-01-13 09:32:17 +1030413extern int param_set_bint(const char *val, const struct kernel_param *kp);
414#define param_get_bint param_get_int
415#define param_check_bint param_check_int
416
Rusty Russell546970b2010-08-11 23:04:20 -0600417/**
418 * module_param_array - a parameter which is an array of some type
419 * @name: the name of the array variable
420 * @type: the type, as per module_param()
421 * @nump: optional pointer filled in with the number written
422 * @perm: visibility in sysfs
423 *
424 * Input and output are as comma-separated values. Commas inside values
425 * don't work properly (eg. an array of charp).
426 *
427 * ARRAY_SIZE(@name) is used to determine the number of elements in the
428 * array, so the definition must be visible.
429 */
430#define module_param_array(name, type, nump, perm) \
431 module_param_array_named(name, name, type, nump, perm)
432
433/**
434 * module_param_array_named - renamed parameter which is an array of some type
435 * @name: a valid C identifier which is the parameter name
436 * @array: the name of the array variable
437 * @type: the type, as per module_param()
438 * @nump: optional pointer filled in with the number written
439 * @perm: visibility in sysfs
440 *
441 * This exposes a different name than the actual variable name. See
442 * module_param_named() for why this might be necessary.
443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#define module_param_array_named(name, array, type, nump, perm) \
Rusty Russellbafeafe2012-01-13 09:32:16 +1030445 param_check_##type(name, &(array)[0]); \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700446 static const struct kparam_array __param_arr_##name \
Richard Kennedyc5be0b22011-05-19 16:55:25 -0600447 = { .max = ARRAY_SIZE(array), .num = nump, \
448 .ops = &param_ops_##type, \
449 .elemsize = sizeof(array[0]), .elem = array }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600450 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600451 &param_array_ops, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600452 .arr = &__param_arr_##name, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930453 perm, -1, 0); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 __MODULE_PARM_TYPE(name, "array of " #type)
455
David Howellsbf616d22017-04-04 16:54:21 +0100456enum hwparam_type {
457 hwparam_ioport, /* Module parameter configures an I/O port */
458 hwparam_iomem, /* Module parameter configures an I/O mem address */
459 hwparam_ioport_or_iomem, /* Module parameter could be either, depending on other option */
Sylvain 'ythier' Hitier401e0002017-07-02 15:21:56 +0200460 hwparam_irq, /* Module parameter configures an IRQ */
David Howellsbf616d22017-04-04 16:54:21 +0100461 hwparam_dma, /* Module parameter configures a DMA channel */
462 hwparam_dma_addr, /* Module parameter configures a DMA buffer address */
463 hwparam_other, /* Module parameter configures some other value */
464};
465
466/**
467 * module_param_hw_named - A parameter representing a hw parameters
468 * @name: a valid C identifier which is the parameter name.
469 * @value: the actual lvalue to alter.
470 * @type: the type of the parameter
471 * @hwtype: what the value represents (enum hwparam_type)
472 * @perm: visibility in sysfs.
473 *
474 * Usually it's a good idea to have variable names and user-exposed names the
475 * same, but that's harder if the variable must be non-static or is inside a
476 * structure. This allows exposure under a different name.
477 */
478#define module_param_hw_named(name, value, type, hwtype, perm) \
479 param_check_##type(name, &(value)); \
480 __module_param_call(MODULE_PARAM_PREFIX, name, \
481 &param_ops_##type, &value, \
482 perm, -1, \
483 KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0)); \
484 __MODULE_PARM_TYPE(name, #type)
485
486#define module_param_hw(name, type, hwtype, perm) \
487 module_param_hw_named(name, name, type, hwtype, perm)
488
489/**
490 * module_param_hw_array - A parameter representing an array of hw parameters
491 * @name: the name of the array variable
492 * @type: the type, as per module_param()
493 * @hwtype: what the value represents (enum hwparam_type)
494 * @nump: optional pointer filled in with the number written
495 * @perm: visibility in sysfs
496 *
497 * Input and output are as comma-separated values. Commas inside values
498 * don't work properly (eg. an array of charp).
499 *
500 * ARRAY_SIZE(@name) is used to determine the number of elements in the
501 * array, so the definition must be visible.
502 */
503#define module_param_hw_array(name, type, hwtype, nump, perm) \
504 param_check_##type(name, &(name)[0]); \
505 static const struct kparam_array __param_arr_##name \
506 = { .max = ARRAY_SIZE(name), .num = nump, \
507 .ops = &param_ops_##type, \
508 .elemsize = sizeof(name[0]), .elem = name }; \
509 __module_param_call(MODULE_PARAM_PREFIX, name, \
510 &param_array_ops, \
511 .arr = &__param_arr_##name, \
512 perm, -1, \
513 KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0)); \
514 __MODULE_PARM_TYPE(name, "array of " #type)
515
516
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930517extern const struct kernel_param_ops param_array_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930519extern const struct kernel_param_ops param_ops_string;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600520extern int param_set_copystring(const char *val, const struct kernel_param *);
521extern int param_get_string(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Jean Delvareb634d132013-07-02 15:35:11 +0930523/* for exporting parameters in /sys/module/.../parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525struct module;
526
Randy Dunlapef665c12007-02-13 15:19:06 -0800527#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528extern int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600529 const struct kernel_param *kparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 unsigned int num_params);
531
532extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800533#else
534static inline int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600535 const struct kernel_param *kparam,
Randy Dunlapef665c12007-02-13 15:19:06 -0800536 unsigned int num_params)
537{
538 return 0;
539}
540
541static inline void module_param_sysfs_remove(struct module *mod)
542{ }
543#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545#endif /* _LINUX_MODULE_PARAMS_H */