blob: ba36506db4fb71f4b4297f81c1bcb893d30b8145 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_MODULE_PARAMS_H
3#define _LINUX_MODULE_PARAMS_H
4/* (C) Copyright 2001, 2002 Rusty Russell IBM Corporation */
5#include <linux/init.h>
6#include <linux/stringify.h>
7#include <linux/kernel.h>
8
9/* You can override this manually, but generally this should match the
10 module name. */
11#ifdef MODULE
12#define MODULE_PARAM_PREFIX /* empty */
13#else
Sam Ravnborg367cb702006-01-06 21:17:50 +010014#define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#endif
16
Rusty Russell730b69d2008-10-22 10:00:22 -050017/* Chosen so that structs with an unsigned long line up. */
18#define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
19
Linus Walleijb75be422011-01-05 13:27:04 +010020#ifdef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103022static const char __UNIQUE_ID(name)[] \
Jan Beulichb6472772010-10-26 14:22:26 -070023 __used __attribute__((section(".modinfo"), unused, aligned(1))) \
24 = __stringify(tag) "=" info
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#else /* !MODULE */
Linus Walleijb75be422011-01-05 13:27:04 +010026/* This struct is here for syntactic coherency, it is not used */
27#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103028 struct __UNIQUE_ID(name) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#endif
30#define __MODULE_PARM_TYPE(name, _type) \
31 __MODULE_INFO(parmtype, name##type, #name ":" _type)
32
Paul Gortmaker639938e2011-08-30 11:24:44 -040033/* One for each parameter, describing how to use it. Some files do
34 multiple of these per line, so can't just use MODULE_INFO. */
35#define MODULE_PARM_DESC(_parm, desc) \
36 __MODULE_INFO(parm, _parm, #_parm ":" desc)
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038struct kernel_param;
39
Steven Rostedtab013c52013-08-20 15:33:19 +093040/*
41 * Flags available for kernel_param_ops
42 *
43 * NOARG - the parameter allows for no argument (foo instead of foo=1)
44 */
45enum {
Jani Nikula6a4c2642014-08-27 06:21:23 +093046 KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
Steven Rostedtab013c52013-08-20 15:33:19 +093047};
48
Rusty Russell9bbb9e52010-08-11 23:04:12 -060049struct kernel_param_ops {
Steven Rostedtab013c52013-08-20 15:33:19 +093050 /* How the ops should behave */
51 unsigned int flags;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060052 /* Returns 0, or -errno. arg is in kp->arg. */
53 int (*set)(const char *val, const struct kernel_param *kp);
54 /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
55 int (*get)(char *buffer, const struct kernel_param *kp);
Rusty Russelle6df34a2010-08-11 23:04:17 -060056 /* Optional function to free kp->arg when module unloaded. */
57 void (*free)(void *arg);
Rusty Russell9bbb9e52010-08-11 23:04:12 -060058};
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Jani Nikula91f9d332014-08-27 06:22:23 +093060/*
61 * Flags available for kernel_param
62 *
63 * UNSAFE - the parameter is dangerous and setting it will taint the kernel
David Howellsbf616d22017-04-04 16:54:21 +010064 * HWPARAM - Hardware param not permitted in lockdown mode
Jani Nikula91f9d332014-08-27 06:22:23 +093065 */
66enum {
David Howellsbf616d22017-04-04 16:54:21 +010067 KERNEL_PARAM_FL_UNSAFE = (1 << 0),
68 KERNEL_PARAM_FL_HWPARAM = (1 << 1),
Jani Nikula91f9d332014-08-27 06:22:23 +093069};
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071struct kernel_param {
72 const char *name;
Dan Streetmanb51d23e2015-06-17 06:18:52 +093073 struct module *mod;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060074 const struct kernel_param_ops *ops;
Dan Streetman5104b7d2015-06-17 06:17:52 +093075 const u16 perm;
Jani Nikula91f9d332014-08-27 06:22:23 +093076 s8 level;
77 u8 flags;
Jan Beulich22e48ea2007-10-16 23:29:34 -070078 union {
79 void *arg;
80 const struct kparam_string *str;
81 const struct kparam_array *arr;
82 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Geert Uytterhoeven63a12d92014-10-13 15:55:44 -070085extern const struct kernel_param __start___param[], __stop___param[];
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* Special one for strings we want to copy into */
88struct kparam_string {
89 unsigned int maxlen;
90 char *string;
91};
92
93/* Special one for arrays */
94struct kparam_array
95{
96 unsigned int max;
Richard Kennedyc5be0b22011-05-19 16:55:25 -060097 unsigned int elemsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 unsigned int *num;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060099 const struct kernel_param_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 void *elem;
101};
102
Rusty Russell546970b2010-08-11 23:04:20 -0600103/**
104 * module_param - typesafe helper for a module/cmdline parameter
105 * @value: the variable to alter, and exposed parameter name.
106 * @type: the type of the parameter
107 * @perm: visibility in sysfs.
108 *
109 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
110 * ".") the kernel commandline parameter. Note that - is changed to _, so
111 * the user can use "foo-bar=1" even for variable "foo_bar".
112 *
113 * @perm is 0 if the the variable is not to appear in sysfs, or 0444
114 * for world-readable, 0644 for root-writable, etc. Note that if it
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930115 * is writable, you may need to use kernel_param_lock() around
Rusty Russell546970b2010-08-11 23:04:20 -0600116 * accesses (esp. charp, which can be kfreed when it changes).
117 *
118 * The @type is simply pasted to refer to a param_ops_##type and a
119 * param_check_##type: for convenience many standard types are provided but
120 * you can create your own by defining those variables.
121 *
122 * Standard types are:
123 * byte, short, ushort, int, uint, long, ulong
124 * charp: a character pointer
125 * bool: a bool, values 0/1, y/n, Y/N.
126 * invbool: the above, only sense-reversed (N = true).
127 */
128#define module_param(name, type, perm) \
129 module_param_named(name, name, type, perm)
130
131/**
Jani Nikula3baee202014-08-27 06:23:23 +0930132 * module_param_unsafe - same as module_param but taints kernel
133 */
134#define module_param_unsafe(name, type, perm) \
135 module_param_named_unsafe(name, name, type, perm)
136
137/**
Rusty Russell546970b2010-08-11 23:04:20 -0600138 * module_param_named - typesafe helper for a renamed module/cmdline parameter
139 * @name: a valid C identifier which is the parameter name.
140 * @value: the actual lvalue to alter.
141 * @type: the type of the parameter
142 * @perm: visibility in sysfs.
143 *
144 * Usually it's a good idea to have variable names and user-exposed names the
145 * same, but that's harder if the variable must be non-static or is inside a
146 * structure. This allows exposure under a different name.
147 */
148#define module_param_named(name, value, type, perm) \
149 param_check_##type(name, &(value)); \
150 module_param_cb(name, &param_ops_##type, &value, perm); \
151 __MODULE_PARM_TYPE(name, #type)
152
153/**
Jani Nikula3baee202014-08-27 06:23:23 +0930154 * module_param_named_unsafe - same as module_param_named but taints kernel
155 */
156#define module_param_named_unsafe(name, value, type, perm) \
157 param_check_##type(name, &(value)); \
158 module_param_cb_unsafe(name, &param_ops_##type, &value, perm); \
159 __MODULE_PARM_TYPE(name, #type)
160
161/**
Rusty Russell546970b2010-08-11 23:04:20 -0600162 * module_param_cb - general callback for a module/cmdline parameter
163 * @name: a valid C identifier which is the parameter name.
164 * @ops: the set & get operations for this parameter.
165 * @perm: visibility in sysfs.
166 *
167 * The ops can have NULL set or get functions.
168 */
169#define module_param_cb(name, ops, arg, perm) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930170 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030171
Jani Nikula3baee202014-08-27 06:23:23 +0930172#define module_param_cb_unsafe(name, ops, arg, perm) \
173 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, \
174 KERNEL_PARAM_FL_UNSAFE)
175
Pawel Moll026cee02012-03-26 12:50:51 +1030176/**
177 * <level>_param_cb - general callback for a module/cmdline parameter
178 * to be evaluated before certain initcall level
179 * @name: a valid C identifier which is the parameter name.
180 * @ops: the set & get operations for this parameter.
181 * @perm: visibility in sysfs.
182 *
183 * The ops can have NULL set or get functions.
184 */
185#define __level_param_cb(name, ops, arg, perm, level) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930186 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030187
188#define core_param_cb(name, ops, arg, perm) \
189 __level_param_cb(name, ops, arg, perm, 1)
190
191#define postcore_param_cb(name, ops, arg, perm) \
192 __level_param_cb(name, ops, arg, perm, 2)
193
194#define arch_param_cb(name, ops, arg, perm) \
195 __level_param_cb(name, ops, arg, perm, 3)
196
197#define subsys_param_cb(name, ops, arg, perm) \
198 __level_param_cb(name, ops, arg, perm, 4)
199
200#define fs_param_cb(name, ops, arg, perm) \
201 __level_param_cb(name, ops, arg, perm, 5)
202
203#define device_param_cb(name, ops, arg, perm) \
204 __level_param_cb(name, ops, arg, perm, 6)
205
206#define late_param_cb(name, ops, arg, perm) \
207 __level_param_cb(name, ops, arg, perm, 7)
Rusty Russell546970b2010-08-11 23:04:20 -0600208
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800209/* On alpha, ia64 and ppc64 relocations to global data cannot go into
210 read-only sections (which is part of respective UNIX ABI on these
211 platforms). So 'const' makes no sense and even causes compile failures
212 with some compilers. */
213#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
214#define __moduleparam_const
215#else
216#define __moduleparam_const const
217#endif
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/* This is the fundamental function for registering boot/module
Rusty Russell546970b2010-08-11 23:04:20 -0600220 parameters. */
Jani Nikula91f9d332014-08-27 06:22:23 +0930221#define __module_param_call(prefix, name, ops, arg, perm, level, flags) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -0800222 /* Default value instead of permissions? */ \
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930223 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800224 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100225 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930227 = { __param_str_##name, THIS_MODULE, ops, \
228 VERIFY_OCTAL_PERMISSIONS(perm), level, flags, { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600230/* Obsolete - use module_param_cb() */
Kees Cookece19962017-10-17 19:04:43 -0700231#define module_param_call(name, _set, _get, arg, perm) \
Kees Cookb2f270e2017-10-17 19:04:41 -0700232 static const struct kernel_param_ops __param_ops_##name = \
Kees Cookece19962017-10-17 19:04:43 -0700233 { .flags = 0, .set = _set, .get = _get }; \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600234 __module_param_call(MODULE_PARAM_PREFIX, \
Kees Cookb2f270e2017-10-17 19:04:41 -0700235 name, &__param_ops_##name, arg, perm, -1, 0)
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600236
Rusty Russell907b29e2010-08-11 23:04:19 -0600237#ifdef CONFIG_SYSFS
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930238extern void kernel_param_lock(struct module *mod);
239extern void kernel_param_unlock(struct module *mod);
Rusty Russell907b29e2010-08-11 23:04:19 -0600240#else
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930241static inline void kernel_param_lock(struct module *mod)
Rusty Russell907b29e2010-08-11 23:04:19 -0600242{
243}
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930244static inline void kernel_param_unlock(struct module *mod)
Rusty Russell907b29e2010-08-11 23:04:19 -0600245{
246}
247#endif
248
Rusty Russell67e67ce2008-10-22 10:00:23 -0500249#ifndef MODULE
250/**
251 * core_param - define a historical core kernel parameter.
252 * @name: the name of the cmdline and sysfs parameter (often the same as var)
253 * @var: the variable
Rusty Russell546970b2010-08-11 23:04:20 -0600254 * @type: the type of the parameter
Rusty Russell67e67ce2008-10-22 10:00:23 -0500255 * @perm: visibility in sysfs
256 *
257 * core_param is just like module_param(), but cannot be modular and
258 * doesn't add a prefix (such as "printk."). This is for compatibility
259 * with __setup(), and it makes sense as truly core parameters aren't
260 * tied to the particular file they're in.
261 */
262#define core_param(name, var, type, perm) \
263 param_check_##type(name, &(var)); \
Jani Nikula91f9d332014-08-27 06:22:23 +0930264 __module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
Dmitry Torokhovec0ccc12015-03-30 16:20:09 -0700265
266/**
267 * core_param_unsafe - same as core_param but taints kernel
268 */
269#define core_param_unsafe(name, var, type, perm) \
270 param_check_##type(name, &(var)); \
271 __module_param_call("", name, &param_ops_##type, &var, perm, \
272 -1, KERNEL_PARAM_FL_UNSAFE)
273
Rusty Russell67e67ce2008-10-22 10:00:23 -0500274#endif /* !MODULE */
275
Rusty Russell546970b2010-08-11 23:04:20 -0600276/**
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 Torvalds1da177e2005-04-16 15:20:36 -0700286#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700287 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 = { len, string }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600289 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600290 &param_ops_string, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930291 .str = &__param_string_##name, perm, -1, 0);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 __MODULE_PARM_TYPE(name, "string")
293
Michal Schmidtb1e4d202011-10-10 00:03:37 +0200294/**
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 */
302extern 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 */
312extern bool parameqn(const char *name1, const char *name2, size_t n);
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/* Called on module insert or kernel boot */
Rusty Russell51e158c2014-04-28 11:34:33 +0930315extern char *parse_args(const char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 char *args,
Rusty Russell914dcaa2010-08-11 23:04:18 -0600317 const struct kernel_param *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 unsigned num,
Pawel Moll026cee02012-03-26 12:50:51 +1030319 s16 level_min,
320 s16 level_max,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -0700321 void *arg,
Jim Cromie9fb48c72012-04-27 14:30:34 -0600322 int (*unknown)(char *param, char *val,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -0700323 const char *doing, void *arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Rusty Russelle180a6b2009-03-31 13:05:29 -0600325/* Called by module remove. */
326#ifdef CONFIG_SYSFS
327extern void destroy_params(const struct kernel_param *params, unsigned num);
328#else
329static inline void destroy_params(const struct kernel_param *params,
330 unsigned num)
331{
332}
333#endif /* !CONFIG_SYSFS */
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/* All the helper functions */
336/* The macros to do compile-time type checking stolen from Jakub
337 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
338#define __param_check(name, p, type) \
Mark Charlebois0283f9a2014-03-17 13:18:26 +1030339 static inline type __always_unused *__check_##name(void) { return(p); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930341extern const struct kernel_param_ops param_ops_byte;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600342extern int param_set_byte(const char *val, const struct kernel_param *kp);
343extern int param_get_byte(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#define param_check_byte(name, p) __param_check(name, p, unsigned char)
345
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930346extern const struct kernel_param_ops param_ops_short;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600347extern int param_set_short(const char *val, const struct kernel_param *kp);
348extern int param_get_short(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349#define param_check_short(name, p) __param_check(name, p, short)
350
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930351extern const struct kernel_param_ops param_ops_ushort;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600352extern int param_set_ushort(const char *val, const struct kernel_param *kp);
353extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
355
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930356extern const struct kernel_param_ops param_ops_int;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600357extern int param_set_int(const char *val, const struct kernel_param *kp);
358extern int param_get_int(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#define param_check_int(name, p) __param_check(name, p, int)
360
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930361extern const struct kernel_param_ops param_ops_uint;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600362extern int param_set_uint(const char *val, const struct kernel_param *kp);
363extern int param_get_uint(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#define param_check_uint(name, p) __param_check(name, p, unsigned int)
365
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930366extern const struct kernel_param_ops param_ops_long;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600367extern int param_set_long(const char *val, const struct kernel_param *kp);
368extern int param_get_long(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#define param_check_long(name, p) __param_check(name, p, long)
370
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930371extern const struct kernel_param_ops param_ops_ulong;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600372extern int param_set_ulong(const char *val, const struct kernel_param *kp);
373extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
375
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930376extern const struct kernel_param_ops param_ops_ullong;
Hannes Reineckeb4210b82014-06-25 15:27:37 +0200377extern int param_set_ullong(const char *val, const struct kernel_param *kp);
378extern int param_get_ullong(char *buffer, const struct kernel_param *kp);
379#define param_check_ullong(name, p) __param_check(name, p, unsigned long long)
380
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930381extern const struct kernel_param_ops param_ops_charp;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600382extern int param_set_charp(const char *val, const struct kernel_param *kp);
383extern int param_get_charp(char *buffer, const struct kernel_param *kp);
Dan Streetman3d9c6372015-11-06 16:29:12 -0800384extern void param_free_charp(void *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#define param_check_charp(name, p) __param_check(name, p, char *)
386
Rusty Russell72db3952012-01-13 09:32:28 +1030387/* We used to allow int as well as bool. We're taking that away! */
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930388extern const struct kernel_param_ops param_ops_bool;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600389extern int param_set_bool(const char *val, const struct kernel_param *kp);
390extern int param_get_bool(char *buffer, const struct kernel_param *kp);
Rusty Russell72db3952012-01-13 09:32:28 +1030391#define param_check_bool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Luis R. Rodriguezd19f05d2015-05-27 11:09:38 +0930393extern const struct kernel_param_ops param_ops_bool_enable_only;
394extern int param_set_bool_enable_only(const char *val,
395 const struct kernel_param *kp);
396/* getter is the same as for the regular bool */
397#define param_check_bool_enable_only param_check_bool
398
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930399extern const struct kernel_param_ops param_ops_invbool;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600400extern int param_set_invbool(const char *val, const struct kernel_param *kp);
401extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600402#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Rusty Russell69116f22012-01-13 09:32:17 +1030404/* An int, which can only be set like a bool (though it shows as an int). */
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930405extern const struct kernel_param_ops param_ops_bint;
Rusty Russell69116f22012-01-13 09:32:17 +1030406extern int param_set_bint(const char *val, const struct kernel_param *kp);
407#define param_get_bint param_get_int
408#define param_check_bint param_check_int
409
Rusty Russell546970b2010-08-11 23:04:20 -0600410/**
411 * module_param_array - a parameter which is an array of some type
412 * @name: the name of the array variable
413 * @type: the type, as per module_param()
414 * @nump: optional pointer filled in with the number written
415 * @perm: visibility in sysfs
416 *
417 * Input and output are as comma-separated values. Commas inside values
418 * don't work properly (eg. an array of charp).
419 *
420 * ARRAY_SIZE(@name) is used to determine the number of elements in the
421 * array, so the definition must be visible.
422 */
423#define module_param_array(name, type, nump, perm) \
424 module_param_array_named(name, name, type, nump, perm)
425
426/**
427 * module_param_array_named - renamed parameter which is an array of some type
428 * @name: a valid C identifier which is the parameter name
429 * @array: the name of the array variable
430 * @type: the type, as per module_param()
431 * @nump: optional pointer filled in with the number written
432 * @perm: visibility in sysfs
433 *
434 * This exposes a different name than the actual variable name. See
435 * module_param_named() for why this might be necessary.
436 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437#define module_param_array_named(name, array, type, nump, perm) \
Rusty Russellbafeafe2012-01-13 09:32:16 +1030438 param_check_##type(name, &(array)[0]); \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700439 static const struct kparam_array __param_arr_##name \
Richard Kennedyc5be0b22011-05-19 16:55:25 -0600440 = { .max = ARRAY_SIZE(array), .num = nump, \
441 .ops = &param_ops_##type, \
442 .elemsize = sizeof(array[0]), .elem = array }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600443 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600444 &param_array_ops, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600445 .arr = &__param_arr_##name, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930446 perm, -1, 0); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 __MODULE_PARM_TYPE(name, "array of " #type)
448
David Howellsbf616d22017-04-04 16:54:21 +0100449enum hwparam_type {
450 hwparam_ioport, /* Module parameter configures an I/O port */
451 hwparam_iomem, /* Module parameter configures an I/O mem address */
452 hwparam_ioport_or_iomem, /* Module parameter could be either, depending on other option */
Sylvain 'ythier' Hitier401e0002017-07-02 15:21:56 +0200453 hwparam_irq, /* Module parameter configures an IRQ */
David Howellsbf616d22017-04-04 16:54:21 +0100454 hwparam_dma, /* Module parameter configures a DMA channel */
455 hwparam_dma_addr, /* Module parameter configures a DMA buffer address */
456 hwparam_other, /* Module parameter configures some other value */
457};
458
459/**
460 * module_param_hw_named - A parameter representing a hw parameters
461 * @name: a valid C identifier which is the parameter name.
462 * @value: the actual lvalue to alter.
463 * @type: the type of the parameter
464 * @hwtype: what the value represents (enum hwparam_type)
465 * @perm: visibility in sysfs.
466 *
467 * Usually it's a good idea to have variable names and user-exposed names the
468 * same, but that's harder if the variable must be non-static or is inside a
469 * structure. This allows exposure under a different name.
470 */
471#define module_param_hw_named(name, value, type, hwtype, perm) \
472 param_check_##type(name, &(value)); \
473 __module_param_call(MODULE_PARAM_PREFIX, name, \
474 &param_ops_##type, &value, \
475 perm, -1, \
476 KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0)); \
477 __MODULE_PARM_TYPE(name, #type)
478
479#define module_param_hw(name, type, hwtype, perm) \
480 module_param_hw_named(name, name, type, hwtype, perm)
481
482/**
483 * module_param_hw_array - A parameter representing an array of hw parameters
484 * @name: the name of the array variable
485 * @type: the type, as per module_param()
486 * @hwtype: what the value represents (enum hwparam_type)
487 * @nump: optional pointer filled in with the number written
488 * @perm: visibility in sysfs
489 *
490 * Input and output are as comma-separated values. Commas inside values
491 * don't work properly (eg. an array of charp).
492 *
493 * ARRAY_SIZE(@name) is used to determine the number of elements in the
494 * array, so the definition must be visible.
495 */
496#define module_param_hw_array(name, type, hwtype, nump, perm) \
497 param_check_##type(name, &(name)[0]); \
498 static const struct kparam_array __param_arr_##name \
499 = { .max = ARRAY_SIZE(name), .num = nump, \
500 .ops = &param_ops_##type, \
501 .elemsize = sizeof(name[0]), .elem = name }; \
502 __module_param_call(MODULE_PARAM_PREFIX, name, \
503 &param_array_ops, \
504 .arr = &__param_arr_##name, \
505 perm, -1, \
506 KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0)); \
507 __MODULE_PARM_TYPE(name, "array of " #type)
508
509
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930510extern const struct kernel_param_ops param_array_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930512extern const struct kernel_param_ops param_ops_string;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600513extern int param_set_copystring(const char *val, const struct kernel_param *);
514extern int param_get_string(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Jean Delvareb634d132013-07-02 15:35:11 +0930516/* for exporting parameters in /sys/module/.../parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518struct module;
519
Randy Dunlapef665c12007-02-13 15:19:06 -0800520#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521extern int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600522 const struct kernel_param *kparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 unsigned int num_params);
524
525extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800526#else
527static inline int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600528 const struct kernel_param *kparam,
Randy Dunlapef665c12007-02-13 15:19:06 -0800529 unsigned int num_params)
530{
531 return 0;
532}
533
534static inline void module_param_sysfs_remove(struct module *mod)
535{ }
536#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538#endif /* _LINUX_MODULE_PARAMS_H */