blob: 52666d90ca9452251c539383ecc7b038ba9afbea [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
63 */
64enum {
65 KERNEL_PARAM_FL_UNSAFE = (1 << 0)
66};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct kernel_param {
69 const char *name;
Dan Streetmanb51d23e2015-06-17 06:18:52 +093070 struct module *mod;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060071 const struct kernel_param_ops *ops;
Dan Streetman5104b7d2015-06-17 06:17:52 +093072 const u16 perm;
Jani Nikula91f9d332014-08-27 06:22:23 +093073 s8 level;
74 u8 flags;
Jan Beulich22e48ea2007-10-16 23:29:34 -070075 union {
76 void *arg;
77 const struct kparam_string *str;
78 const struct kparam_array *arr;
79 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Geert Uytterhoeven63a12d92014-10-13 15:55:44 -070082extern const struct kernel_param __start___param[], __stop___param[];
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* Special one for strings we want to copy into */
85struct kparam_string {
86 unsigned int maxlen;
87 char *string;
88};
89
90/* Special one for arrays */
91struct kparam_array
92{
93 unsigned int max;
Richard Kennedyc5be0b22011-05-19 16:55:25 -060094 unsigned int elemsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 unsigned int *num;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060096 const struct kernel_param_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 void *elem;
98};
99
Rusty Russell546970b2010-08-11 23:04:20 -0600100/**
101 * module_param - typesafe helper for a module/cmdline parameter
102 * @value: the variable to alter, and exposed parameter name.
103 * @type: the type of the parameter
104 * @perm: visibility in sysfs.
105 *
106 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
107 * ".") the kernel commandline parameter. Note that - is changed to _, so
108 * the user can use "foo-bar=1" even for variable "foo_bar".
109 *
110 * @perm is 0 if the the variable is not to appear in sysfs, or 0444
111 * for world-readable, 0644 for root-writable, etc. Note that if it
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930112 * is writable, you may need to use kernel_param_lock() around
Rusty Russell546970b2010-08-11 23:04:20 -0600113 * accesses (esp. charp, which can be kfreed when it changes).
114 *
115 * The @type is simply pasted to refer to a param_ops_##type and a
116 * param_check_##type: for convenience many standard types are provided but
117 * you can create your own by defining those variables.
118 *
119 * Standard types are:
120 * byte, short, ushort, int, uint, long, ulong
121 * charp: a character pointer
122 * bool: a bool, values 0/1, y/n, Y/N.
123 * invbool: the above, only sense-reversed (N = true).
124 */
125#define module_param(name, type, perm) \
126 module_param_named(name, name, type, perm)
127
128/**
Jani Nikula3baee202014-08-27 06:23:23 +0930129 * module_param_unsafe - same as module_param but taints kernel
130 */
131#define module_param_unsafe(name, type, perm) \
132 module_param_named_unsafe(name, name, type, perm)
133
134/**
Rusty Russell546970b2010-08-11 23:04:20 -0600135 * module_param_named - typesafe helper for a renamed module/cmdline parameter
136 * @name: a valid C identifier which is the parameter name.
137 * @value: the actual lvalue to alter.
138 * @type: the type of the parameter
139 * @perm: visibility in sysfs.
140 *
141 * Usually it's a good idea to have variable names and user-exposed names the
142 * same, but that's harder if the variable must be non-static or is inside a
143 * structure. This allows exposure under a different name.
144 */
145#define module_param_named(name, value, type, perm) \
146 param_check_##type(name, &(value)); \
147 module_param_cb(name, &param_ops_##type, &value, perm); \
148 __MODULE_PARM_TYPE(name, #type)
149
150/**
Jani Nikula3baee202014-08-27 06:23:23 +0930151 * module_param_named_unsafe - same as module_param_named but taints kernel
152 */
153#define module_param_named_unsafe(name, value, type, perm) \
154 param_check_##type(name, &(value)); \
155 module_param_cb_unsafe(name, &param_ops_##type, &value, perm); \
156 __MODULE_PARM_TYPE(name, #type)
157
158/**
Rusty Russell546970b2010-08-11 23:04:20 -0600159 * module_param_cb - general callback for a module/cmdline parameter
160 * @name: a valid C identifier which is the parameter name.
161 * @ops: the set & get operations for this parameter.
162 * @perm: visibility in sysfs.
163 *
164 * The ops can have NULL set or get functions.
165 */
166#define module_param_cb(name, ops, arg, perm) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930167 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030168
Jani Nikula3baee202014-08-27 06:23:23 +0930169#define module_param_cb_unsafe(name, ops, arg, perm) \
170 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, \
171 KERNEL_PARAM_FL_UNSAFE)
172
Pawel Moll026cee02012-03-26 12:50:51 +1030173/**
174 * <level>_param_cb - general callback for a module/cmdline parameter
175 * to be evaluated before certain initcall level
176 * @name: a valid C identifier which is the parameter name.
177 * @ops: the set & get operations for this parameter.
178 * @perm: visibility in sysfs.
179 *
180 * The ops can have NULL set or get functions.
181 */
182#define __level_param_cb(name, ops, arg, perm, level) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930183 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030184
185#define core_param_cb(name, ops, arg, perm) \
186 __level_param_cb(name, ops, arg, perm, 1)
187
188#define postcore_param_cb(name, ops, arg, perm) \
189 __level_param_cb(name, ops, arg, perm, 2)
190
191#define arch_param_cb(name, ops, arg, perm) \
192 __level_param_cb(name, ops, arg, perm, 3)
193
194#define subsys_param_cb(name, ops, arg, perm) \
195 __level_param_cb(name, ops, arg, perm, 4)
196
197#define fs_param_cb(name, ops, arg, perm) \
198 __level_param_cb(name, ops, arg, perm, 5)
199
200#define device_param_cb(name, ops, arg, perm) \
201 __level_param_cb(name, ops, arg, perm, 6)
202
203#define late_param_cb(name, ops, arg, perm) \
204 __level_param_cb(name, ops, arg, perm, 7)
Rusty Russell546970b2010-08-11 23:04:20 -0600205
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800206/* On alpha, ia64 and ppc64 relocations to global data cannot go into
207 read-only sections (which is part of respective UNIX ABI on these
208 platforms). So 'const' makes no sense and even causes compile failures
209 with some compilers. */
210#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
211#define __moduleparam_const
212#else
213#define __moduleparam_const const
214#endif
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/* This is the fundamental function for registering boot/module
Rusty Russell546970b2010-08-11 23:04:20 -0600217 parameters. */
Jani Nikula91f9d332014-08-27 06:22:23 +0930218#define __module_param_call(prefix, name, ops, arg, perm, level, flags) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -0800219 /* Default value instead of permissions? */ \
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930220 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800221 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100222 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930224 = { __param_str_##name, THIS_MODULE, ops, \
225 VERIFY_OCTAL_PERMISSIONS(perm), level, flags, { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600227/* Obsolete - use module_param_cb() */
228#define module_param_call(name, set, get, arg, perm) \
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930229 static const struct kernel_param_ops __param_ops_##name = \
Mark Rustad184c3fc2014-09-11 09:47:23 +0930230 { .flags = 0, (void *)set, (void *)get }; \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600231 __module_param_call(MODULE_PARAM_PREFIX, \
232 name, &__param_ops_##name, arg, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930233 (perm) + sizeof(__check_old_set_param(set))*0, -1, 0)
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600234
235/* We don't get oldget: it's often a new-style param_get_uint, etc. */
236static inline int
237__check_old_set_param(int (*oldset)(const char *, struct kernel_param *))
238{
239 return 0;
240}
241
Rusty Russell907b29e2010-08-11 23:04:19 -0600242#ifdef CONFIG_SYSFS
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930243extern void kernel_param_lock(struct module *mod);
244extern void kernel_param_unlock(struct module *mod);
Rusty Russell907b29e2010-08-11 23:04:19 -0600245#else
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930246static inline void kernel_param_lock(struct module *mod)
Rusty Russell907b29e2010-08-11 23:04:19 -0600247{
248}
Dan Streetmanb51d23e2015-06-17 06:18:52 +0930249static inline void kernel_param_unlock(struct module *mod)
Rusty Russell907b29e2010-08-11 23:04:19 -0600250{
251}
252#endif
253
Rusty Russell67e67ce2008-10-22 10:00:23 -0500254#ifndef MODULE
255/**
256 * core_param - define a historical core kernel parameter.
257 * @name: the name of the cmdline and sysfs parameter (often the same as var)
258 * @var: the variable
Rusty Russell546970b2010-08-11 23:04:20 -0600259 * @type: the type of the parameter
Rusty Russell67e67ce2008-10-22 10:00:23 -0500260 * @perm: visibility in sysfs
261 *
262 * core_param is just like module_param(), but cannot be modular and
263 * doesn't add a prefix (such as "printk."). This is for compatibility
264 * with __setup(), and it makes sense as truly core parameters aren't
265 * tied to the particular file they're in.
266 */
267#define core_param(name, var, type, perm) \
268 param_check_##type(name, &(var)); \
Jani Nikula91f9d332014-08-27 06:22:23 +0930269 __module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
Dmitry Torokhovec0ccc12015-03-30 16:20:09 -0700270
271/**
272 * core_param_unsafe - same as core_param but taints kernel
273 */
274#define core_param_unsafe(name, var, type, perm) \
275 param_check_##type(name, &(var)); \
276 __module_param_call("", name, &param_ops_##type, &var, perm, \
277 -1, KERNEL_PARAM_FL_UNSAFE)
278
Rusty Russell67e67ce2008-10-22 10:00:23 -0500279#endif /* !MODULE */
280
Rusty Russell546970b2010-08-11 23:04:20 -0600281/**
282 * module_param_string - a char array parameter
283 * @name: the name of the parameter
284 * @string: the string variable
285 * @len: the maximum length of the string, incl. terminator
286 * @perm: visibility in sysfs.
287 *
288 * This actually copies the string when it's set (unlike type charp).
289 * @len is usually just sizeof(string).
290 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700292 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 = { len, string }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600294 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600295 &param_ops_string, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930296 .str = &__param_string_##name, perm, -1, 0);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 __MODULE_PARM_TYPE(name, "string")
298
Michal Schmidtb1e4d202011-10-10 00:03:37 +0200299/**
300 * parameq - checks if two parameter names match
301 * @name1: parameter name 1
302 * @name2: parameter name 2
303 *
304 * Returns true if the two parameter names are equal.
305 * Dashes (-) are considered equal to underscores (_).
306 */
307extern bool parameq(const char *name1, const char *name2);
308
309/**
310 * parameqn - checks if two parameter names match
311 * @name1: parameter name 1
312 * @name2: parameter name 2
313 * @n: the length to compare
314 *
315 * Similar to parameq(), except it compares @n characters.
316 */
317extern bool parameqn(const char *name1, const char *name2, size_t n);
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/* Called on module insert or kernel boot */
Rusty Russell51e158c2014-04-28 11:34:33 +0930320extern char *parse_args(const char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 char *args,
Rusty Russell914dcaa2010-08-11 23:04:18 -0600322 const struct kernel_param *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 unsigned num,
Pawel Moll026cee02012-03-26 12:50:51 +1030324 s16 level_min,
325 s16 level_max,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -0700326 void *arg,
Jim Cromie9fb48c72012-04-27 14:30:34 -0600327 int (*unknown)(char *param, char *val,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -0700328 const char *doing, void *arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Rusty Russelle180a6b2009-03-31 13:05:29 -0600330/* Called by module remove. */
331#ifdef CONFIG_SYSFS
332extern void destroy_params(const struct kernel_param *params, unsigned num);
333#else
334static inline void destroy_params(const struct kernel_param *params,
335 unsigned num)
336{
337}
338#endif /* !CONFIG_SYSFS */
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/* All the helper functions */
341/* The macros to do compile-time type checking stolen from Jakub
342 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
343#define __param_check(name, p, type) \
Mark Charlebois0283f9a2014-03-17 13:18:26 +1030344 static inline type __always_unused *__check_##name(void) { return(p); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930346extern const struct kernel_param_ops param_ops_byte;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600347extern int param_set_byte(const char *val, const struct kernel_param *kp);
348extern int param_get_byte(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349#define param_check_byte(name, p) __param_check(name, p, unsigned char)
350
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930351extern const struct kernel_param_ops param_ops_short;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600352extern int param_set_short(const char *val, const struct kernel_param *kp);
353extern int param_get_short(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#define param_check_short(name, p) __param_check(name, p, short)
355
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930356extern const struct kernel_param_ops param_ops_ushort;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600357extern int param_set_ushort(const char *val, const struct kernel_param *kp);
358extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
360
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930361extern const struct kernel_param_ops param_ops_int;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600362extern int param_set_int(const char *val, const struct kernel_param *kp);
363extern int param_get_int(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#define param_check_int(name, p) __param_check(name, p, int)
365
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930366extern const struct kernel_param_ops param_ops_uint;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600367extern int param_set_uint(const char *val, const struct kernel_param *kp);
368extern int param_get_uint(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#define param_check_uint(name, p) __param_check(name, p, unsigned int)
370
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930371extern const struct kernel_param_ops param_ops_long;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600372extern int param_set_long(const char *val, const struct kernel_param *kp);
373extern int param_get_long(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#define param_check_long(name, p) __param_check(name, p, long)
375
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930376extern const struct kernel_param_ops param_ops_ulong;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600377extern int param_set_ulong(const char *val, const struct kernel_param *kp);
378extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
380
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930381extern const struct kernel_param_ops param_ops_ullong;
Hannes Reineckeb4210b82014-06-25 15:27:37 +0200382extern int param_set_ullong(const char *val, const struct kernel_param *kp);
383extern int param_get_ullong(char *buffer, const struct kernel_param *kp);
384#define param_check_ullong(name, p) __param_check(name, p, unsigned long long)
385
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930386extern const struct kernel_param_ops param_ops_charp;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600387extern int param_set_charp(const char *val, const struct kernel_param *kp);
388extern int param_get_charp(char *buffer, const struct kernel_param *kp);
Dan Streetman3d9c6372015-11-06 16:29:12 -0800389extern void param_free_charp(void *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#define param_check_charp(name, p) __param_check(name, p, char *)
391
Rusty Russell72db3952012-01-13 09:32:28 +1030392/* We used to allow int as well as bool. We're taking that away! */
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930393extern const struct kernel_param_ops param_ops_bool;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600394extern int param_set_bool(const char *val, const struct kernel_param *kp);
395extern int param_get_bool(char *buffer, const struct kernel_param *kp);
Rusty Russell72db3952012-01-13 09:32:28 +1030396#define param_check_bool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Luis R. Rodriguezd19f05d2015-05-27 11:09:38 +0930398extern const struct kernel_param_ops param_ops_bool_enable_only;
399extern int param_set_bool_enable_only(const char *val,
400 const struct kernel_param *kp);
401/* getter is the same as for the regular bool */
402#define param_check_bool_enable_only param_check_bool
403
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930404extern const struct kernel_param_ops param_ops_invbool;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600405extern int param_set_invbool(const char *val, const struct kernel_param *kp);
406extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600407#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Rusty Russell69116f22012-01-13 09:32:17 +1030409/* An int, which can only be set like a bool (though it shows as an int). */
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930410extern const struct kernel_param_ops param_ops_bint;
Rusty Russell69116f22012-01-13 09:32:17 +1030411extern int param_set_bint(const char *val, const struct kernel_param *kp);
412#define param_get_bint param_get_int
413#define param_check_bint param_check_int
414
Rusty Russell546970b2010-08-11 23:04:20 -0600415/**
416 * module_param_array - a parameter which is an array of some type
417 * @name: the name of the array variable
418 * @type: the type, as per module_param()
419 * @nump: optional pointer filled in with the number written
420 * @perm: visibility in sysfs
421 *
422 * Input and output are as comma-separated values. Commas inside values
423 * don't work properly (eg. an array of charp).
424 *
425 * ARRAY_SIZE(@name) is used to determine the number of elements in the
426 * array, so the definition must be visible.
427 */
428#define module_param_array(name, type, nump, perm) \
429 module_param_array_named(name, name, type, nump, perm)
430
431/**
432 * module_param_array_named - renamed parameter which is an array of some type
433 * @name: a valid C identifier which is the parameter name
434 * @array: the name of the array variable
435 * @type: the type, as per module_param()
436 * @nump: optional pointer filled in with the number written
437 * @perm: visibility in sysfs
438 *
439 * This exposes a different name than the actual variable name. See
440 * module_param_named() for why this might be necessary.
441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#define module_param_array_named(name, array, type, nump, perm) \
Rusty Russellbafeafe2012-01-13 09:32:16 +1030443 param_check_##type(name, &(array)[0]); \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700444 static const struct kparam_array __param_arr_##name \
Richard Kennedyc5be0b22011-05-19 16:55:25 -0600445 = { .max = ARRAY_SIZE(array), .num = nump, \
446 .ops = &param_ops_##type, \
447 .elemsize = sizeof(array[0]), .elem = array }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600448 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600449 &param_array_ops, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600450 .arr = &__param_arr_##name, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930451 perm, -1, 0); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 __MODULE_PARM_TYPE(name, "array of " #type)
453
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930454extern const struct kernel_param_ops param_array_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930456extern const struct kernel_param_ops param_ops_string;
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600457extern int param_set_copystring(const char *val, const struct kernel_param *);
458extern int param_get_string(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Jean Delvareb634d132013-07-02 15:35:11 +0930460/* for exporting parameters in /sys/module/.../parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462struct module;
463
Randy Dunlapef665c12007-02-13 15:19:06 -0800464#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465extern int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600466 const struct kernel_param *kparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 unsigned int num_params);
468
469extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800470#else
471static inline int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600472 const struct kernel_param *kparam,
Randy Dunlapef665c12007-02-13 15:19:06 -0800473 unsigned int num_params)
474{
475 return 0;
476}
477
478static inline void module_param_sysfs_remove(struct module *mod)
479{ }
480#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482#endif /* _LINUX_MODULE_PARAMS_H */