Linux Audio

Check our new training course

Loading...
v5.14.15
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#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#define __MODULE_INFO_PREFIX /* empty */
 14#else
 15#define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
 16/* We cannot use MODULE_PARAM_PREFIX because some modules override it. */
 17#define __MODULE_INFO_PREFIX KBUILD_MODNAME "."
 18#endif
 19
 20/* Chosen so that structs with an unsigned long line up. */
 21#define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
 22
 
 23#define __MODULE_INFO(tag, name, info)					  \
 24	static const char __UNIQUE_ID(name)[]				  \
 25		__used __section(".modinfo") __aligned(1)		  \
 26		= __MODULE_INFO_PREFIX __stringify(tag) "=" info
 27
 
 
 
 
 28#define __MODULE_PARM_TYPE(name, _type)					  \
 29	__MODULE_INFO(parmtype, name##type, #name ":" _type)
 30
 31/* One for each parameter, describing how to use it.  Some files do
 32   multiple of these per line, so can't just use MODULE_INFO. */
 33#define MODULE_PARM_DESC(_parm, desc) \
 34	__MODULE_INFO(parm, _parm, #_parm ":" desc)
 35
 36struct kernel_param;
 37
 38/*
 39 * Flags available for kernel_param_ops
 40 *
 41 * NOARG - the parameter allows for no argument (foo instead of foo=1)
 42 */
 43enum {
 44	KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
 45};
 46
 47struct kernel_param_ops {
 48	/* How the ops should behave */
 49	unsigned int flags;
 50	/* Returns 0, or -errno.  arg is in kp->arg. */
 51	int (*set)(const char *val, const struct kernel_param *kp);
 52	/* Returns length written or -errno.  Buffer is 4k (ie. be short!) */
 53	int (*get)(char *buffer, const struct kernel_param *kp);
 54	/* Optional function to free kp->arg when module unloaded. */
 55	void (*free)(void *arg);
 56};
 57
 58/*
 59 * Flags available for kernel_param
 60 *
 61 * UNSAFE - the parameter is dangerous and setting it will taint the kernel
 62 * HWPARAM - Hardware param not permitted in lockdown mode
 63 */
 64enum {
 65	KERNEL_PARAM_FL_UNSAFE	= (1 << 0),
 66	KERNEL_PARAM_FL_HWPARAM	= (1 << 1),
 67};
 68
 69struct kernel_param {
 70	const char *name;
 71	struct module *mod;
 72	const struct kernel_param_ops *ops;
 73	const u16 perm;
 74	s8 level;
 75	u8 flags;
 76	union {
 77		void *arg;
 78		const struct kparam_string *str;
 79		const struct kparam_array *arr;
 80	};
 81};
 82
 83extern const struct kernel_param __start___param[], __stop___param[];
 84
 85/* Special one for strings we want to copy into */
 86struct kparam_string {
 87	unsigned int maxlen;
 88	char *string;
 89};
 90
 91/* Special one for arrays */
 92struct kparam_array
 93{
 94	unsigned int max;
 95	unsigned int elemsize;
 96	unsigned int *num;
 97	const struct kernel_param_ops *ops;
 98	void *elem;
 99};
100
101/**
102 * module_param - typesafe helper for a module/cmdline parameter
103 * @name: the variable to alter, and exposed parameter name.
104 * @type: the type of the parameter
105 * @perm: visibility in sysfs.
106 *
107 * @name becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
108 * ".") the kernel commandline parameter.  Note that - is changed to _, so
109 * the user can use "foo-bar=1" even for variable "foo_bar".
110 *
111 * @perm is 0 if the variable is not to appear in sysfs, or 0444
112 * for world-readable, 0644 for root-writable, etc.  Note that if it
113 * is writable, you may need to use kernel_param_lock() around
114 * accesses (esp. charp, which can be kfreed when it changes).
115 *
116 * The @type is simply pasted to refer to a param_ops_##type and a
117 * param_check_##type: for convenience many standard types are provided but
118 * you can create your own by defining those variables.
119 *
120 * Standard types are:
121 *	byte, hexint, short, ushort, int, uint, long, ulong
122 *	charp: a character pointer
123 *	bool: a bool, values 0/1, y/n, Y/N.
124 *	invbool: the above, only sense-reversed (N = true).
125 */
126#define module_param(name, type, perm)				\
127	module_param_named(name, name, type, perm)
128
129/**
130 * module_param_unsafe - same as module_param but taints kernel
131 * @name: the variable to alter, and exposed parameter name.
132 * @type: the type of the parameter
133 * @perm: visibility in sysfs.
134 */
135#define module_param_unsafe(name, type, perm)			\
136	module_param_named_unsafe(name, name, type, perm)
137
138/**
139 * module_param_named - typesafe helper for a renamed module/cmdline parameter
140 * @name: a valid C identifier which is the parameter name.
141 * @value: the actual lvalue to alter.
142 * @type: the type of the parameter
143 * @perm: visibility in sysfs.
144 *
145 * Usually it's a good idea to have variable names and user-exposed names the
146 * same, but that's harder if the variable must be non-static or is inside a
147 * structure.  This allows exposure under a different name.
148 */
149#define module_param_named(name, value, type, perm)			   \
150	param_check_##type(name, &(value));				   \
151	module_param_cb(name, &param_ops_##type, &value, perm);		   \
152	__MODULE_PARM_TYPE(name, #type)
153
154/**
155 * module_param_named_unsafe - same as module_param_named but taints kernel
156 * @name: a valid C identifier which is the parameter name.
157 * @value: the actual lvalue to alter.
158 * @type: the type of the parameter
159 * @perm: visibility in sysfs.
160 */
161#define module_param_named_unsafe(name, value, type, perm)		\
162	param_check_##type(name, &(value));				\
163	module_param_cb_unsafe(name, &param_ops_##type, &value, perm);	\
164	__MODULE_PARM_TYPE(name, #type)
165
166/**
167 * module_param_cb - general callback for a module/cmdline parameter
168 * @name: a valid C identifier which is the parameter name.
169 * @ops: the set & get operations for this parameter.
170 * @arg: args for @ops
171 * @perm: visibility in sysfs.
172 *
173 * The ops can have NULL set or get functions.
174 */
175#define module_param_cb(name, ops, arg, perm)				      \
176	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
177
178#define module_param_cb_unsafe(name, ops, arg, perm)			      \
179	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1,    \
180			    KERNEL_PARAM_FL_UNSAFE)
181
182#define __level_param_cb(name, ops, arg, perm, level)			\
183	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
184/**
185 * core_param_cb - general callback for a module/cmdline parameter
186 *                 to be evaluated before core initcall level
187 * @name: a valid C identifier which is the parameter name.
188 * @ops: the set & get operations for this parameter.
189 * @arg: args for @ops
190 * @perm: visibility in sysfs.
191 *
192 * The ops can have NULL set or get functions.
193 */
 
 
 
194#define core_param_cb(name, ops, arg, perm)		\
195	__level_param_cb(name, ops, arg, perm, 1)
196
197/**
198 * postcore_param_cb - general callback for a module/cmdline parameter
199 *                     to be evaluated before postcore initcall level
200 * @name: a valid C identifier which is the parameter name.
201 * @ops: the set & get operations for this parameter.
202 * @arg: args for @ops
203 * @perm: visibility in sysfs.
204 *
205 * The ops can have NULL set or get functions.
206 */
207#define postcore_param_cb(name, ops, arg, perm)		\
208	__level_param_cb(name, ops, arg, perm, 2)
209
210/**
211 * arch_param_cb - general callback for a module/cmdline parameter
212 *                 to be evaluated before arch initcall level
213 * @name: a valid C identifier which is the parameter name.
214 * @ops: the set & get operations for this parameter.
215 * @arg: args for @ops
216 * @perm: visibility in sysfs.
217 *
218 * The ops can have NULL set or get functions.
219 */
220#define arch_param_cb(name, ops, arg, perm)		\
221	__level_param_cb(name, ops, arg, perm, 3)
222
223/**
224 * subsys_param_cb - general callback for a module/cmdline parameter
225 *                   to be evaluated before subsys initcall level
226 * @name: a valid C identifier which is the parameter name.
227 * @ops: the set & get operations for this parameter.
228 * @arg: args for @ops
229 * @perm: visibility in sysfs.
230 *
231 * The ops can have NULL set or get functions.
232 */
233#define subsys_param_cb(name, ops, arg, perm)		\
234	__level_param_cb(name, ops, arg, perm, 4)
235
236/**
237 * fs_param_cb - general callback for a module/cmdline parameter
238 *               to be evaluated before fs initcall level
239 * @name: a valid C identifier which is the parameter name.
240 * @ops: the set & get operations for this parameter.
241 * @arg: args for @ops
242 * @perm: visibility in sysfs.
243 *
244 * The ops can have NULL set or get functions.
245 */
246#define fs_param_cb(name, ops, arg, perm)		\
247	__level_param_cb(name, ops, arg, perm, 5)
248
249/**
250 * device_param_cb - general callback for a module/cmdline parameter
251 *                   to be evaluated before device initcall level
252 * @name: a valid C identifier which is the parameter name.
253 * @ops: the set & get operations for this parameter.
254 * @arg: args for @ops
255 * @perm: visibility in sysfs.
256 *
257 * The ops can have NULL set or get functions.
258 */
259#define device_param_cb(name, ops, arg, perm)		\
260	__level_param_cb(name, ops, arg, perm, 6)
261
262/**
263 * late_param_cb - general callback for a module/cmdline parameter
264 *                 to be evaluated before late initcall level
265 * @name: a valid C identifier which is the parameter name.
266 * @ops: the set & get operations for this parameter.
267 * @arg: args for @ops
268 * @perm: visibility in sysfs.
269 *
270 * The ops can have NULL set or get functions.
271 */
272#define late_param_cb(name, ops, arg, perm)		\
273	__level_param_cb(name, ops, arg, perm, 7)
274
275/* On alpha, ia64 and ppc64 relocations to global data cannot go into
276   read-only sections (which is part of respective UNIX ABI on these
277   platforms). So 'const' makes no sense and even causes compile failures
278   with some compilers. */
279#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
280#define __moduleparam_const
281#else
282#define __moduleparam_const const
283#endif
284
285/* This is the fundamental function for registering boot/module
286   parameters. */
287#define __module_param_call(prefix, name, ops, arg, perm, level, flags)	\
288	/* Default value instead of permissions? */			\
289	static const char __param_str_##name[] = prefix #name;		\
290	static struct kernel_param __moduleparam_const __param_##name	\
291	__used __section("__param")					\
292	__aligned(__alignof__(struct kernel_param))			\
293	= { __param_str_##name, THIS_MODULE, ops,			\
294	    VERIFY_OCTAL_PERMISSIONS(perm), level, flags, { arg } }
295
296/* Obsolete - use module_param_cb() */
297#define module_param_call(name, _set, _get, arg, perm)			\
298	static const struct kernel_param_ops __param_ops_##name =	\
299		{ .flags = 0, .set = _set, .get = _get };		\
300	__module_param_call(MODULE_PARAM_PREFIX,			\
301			    name, &__param_ops_##name, arg, perm, -1, 0)
 
 
 
 
 
 
 
 
302
303#ifdef CONFIG_SYSFS
304extern void kernel_param_lock(struct module *mod);
305extern void kernel_param_unlock(struct module *mod);
306#else
307static inline void kernel_param_lock(struct module *mod)
308{
309}
310static inline void kernel_param_unlock(struct module *mod)
311{
312}
313#endif
314
315#ifndef MODULE
316/**
317 * core_param - define a historical core kernel parameter.
318 * @name: the name of the cmdline and sysfs parameter (often the same as var)
319 * @var: the variable
320 * @type: the type of the parameter
321 * @perm: visibility in sysfs
322 *
323 * core_param is just like module_param(), but cannot be modular and
324 * doesn't add a prefix (such as "printk.").  This is for compatibility
325 * with __setup(), and it makes sense as truly core parameters aren't
326 * tied to the particular file they're in.
327 */
328#define core_param(name, var, type, perm)				\
329	param_check_##type(name, &(var));				\
330	__module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
331
332/**
333 * core_param_unsafe - same as core_param but taints kernel
334 * @name: the name of the cmdline and sysfs parameter (often the same as var)
335 * @var: the variable
336 * @type: the type of the parameter
337 * @perm: visibility in sysfs
338 */
339#define core_param_unsafe(name, var, type, perm)		\
340	param_check_##type(name, &(var));				\
341	__module_param_call("", name, &param_ops_##type, &var, perm,	\
342			    -1, KERNEL_PARAM_FL_UNSAFE)
343
344#endif /* !MODULE */
345
346/**
347 * module_param_string - a char array parameter
348 * @name: the name of the parameter
349 * @string: the string variable
350 * @len: the maximum length of the string, incl. terminator
351 * @perm: visibility in sysfs.
352 *
353 * This actually copies the string when it's set (unlike type charp).
354 * @len is usually just sizeof(string).
355 */
356#define module_param_string(name, string, len, perm)			\
357	static const struct kparam_string __param_string_##name		\
358		= { len, string };					\
359	__module_param_call(MODULE_PARAM_PREFIX, name,			\
360			    &param_ops_string,				\
361			    .str = &__param_string_##name, perm, -1, 0);\
362	__MODULE_PARM_TYPE(name, "string")
363
364/**
365 * parameq - checks if two parameter names match
366 * @name1: parameter name 1
367 * @name2: parameter name 2
368 *
369 * Returns true if the two parameter names are equal.
370 * Dashes (-) are considered equal to underscores (_).
371 */
372extern bool parameq(const char *name1, const char *name2);
373
374/**
375 * parameqn - checks if two parameter names match
376 * @name1: parameter name 1
377 * @name2: parameter name 2
378 * @n: the length to compare
379 *
380 * Similar to parameq(), except it compares @n characters.
381 */
382extern bool parameqn(const char *name1, const char *name2, size_t n);
383
384/* Called on module insert or kernel boot */
385extern char *parse_args(const char *name,
386		      char *args,
387		      const struct kernel_param *params,
388		      unsigned num,
389		      s16 level_min,
390		      s16 level_max,
391		      void *arg,
392		      int (*unknown)(char *param, char *val,
393				     const char *doing, void *arg));
394
395/* Called by module remove. */
396#ifdef CONFIG_SYSFS
397extern void destroy_params(const struct kernel_param *params, unsigned num);
398#else
399static inline void destroy_params(const struct kernel_param *params,
400				  unsigned num)
401{
402}
403#endif /* !CONFIG_SYSFS */
404
405/* All the helper functions */
406/* The macros to do compile-time type checking stolen from Jakub
407   Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
408#define __param_check(name, p, type) \
409	static inline type __always_unused *__check_##name(void) { return(p); }
410
411extern const struct kernel_param_ops param_ops_byte;
412extern int param_set_byte(const char *val, const struct kernel_param *kp);
413extern int param_get_byte(char *buffer, const struct kernel_param *kp);
414#define param_check_byte(name, p) __param_check(name, p, unsigned char)
415
416extern const struct kernel_param_ops param_ops_short;
417extern int param_set_short(const char *val, const struct kernel_param *kp);
418extern int param_get_short(char *buffer, const struct kernel_param *kp);
419#define param_check_short(name, p) __param_check(name, p, short)
420
421extern const struct kernel_param_ops param_ops_ushort;
422extern int param_set_ushort(const char *val, const struct kernel_param *kp);
423extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
424#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
425
426extern const struct kernel_param_ops param_ops_int;
427extern int param_set_int(const char *val, const struct kernel_param *kp);
428extern int param_get_int(char *buffer, const struct kernel_param *kp);
429#define param_check_int(name, p) __param_check(name, p, int)
430
431extern const struct kernel_param_ops param_ops_uint;
432extern int param_set_uint(const char *val, const struct kernel_param *kp);
433extern int param_get_uint(char *buffer, const struct kernel_param *kp);
434#define param_check_uint(name, p) __param_check(name, p, unsigned int)
435
436extern const struct kernel_param_ops param_ops_long;
437extern int param_set_long(const char *val, const struct kernel_param *kp);
438extern int param_get_long(char *buffer, const struct kernel_param *kp);
439#define param_check_long(name, p) __param_check(name, p, long)
440
441extern const struct kernel_param_ops param_ops_ulong;
442extern int param_set_ulong(const char *val, const struct kernel_param *kp);
443extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
444#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
445
446extern const struct kernel_param_ops param_ops_ullong;
447extern int param_set_ullong(const char *val, const struct kernel_param *kp);
448extern int param_get_ullong(char *buffer, const struct kernel_param *kp);
449#define param_check_ullong(name, p) __param_check(name, p, unsigned long long)
450
451extern const struct kernel_param_ops param_ops_hexint;
452extern int param_set_hexint(const char *val, const struct kernel_param *kp);
453extern int param_get_hexint(char *buffer, const struct kernel_param *kp);
454#define param_check_hexint(name, p) param_check_uint(name, p)
455
456extern const struct kernel_param_ops param_ops_charp;
457extern int param_set_charp(const char *val, const struct kernel_param *kp);
458extern int param_get_charp(char *buffer, const struct kernel_param *kp);
459extern void param_free_charp(void *arg);
460#define param_check_charp(name, p) __param_check(name, p, char *)
461
462/* We used to allow int as well as bool.  We're taking that away! */
463extern const struct kernel_param_ops param_ops_bool;
464extern int param_set_bool(const char *val, const struct kernel_param *kp);
465extern int param_get_bool(char *buffer, const struct kernel_param *kp);
466#define param_check_bool(name, p) __param_check(name, p, bool)
467
468extern const struct kernel_param_ops param_ops_bool_enable_only;
469extern int param_set_bool_enable_only(const char *val,
470				      const struct kernel_param *kp);
471/* getter is the same as for the regular bool */
472#define param_check_bool_enable_only param_check_bool
473
474extern const struct kernel_param_ops param_ops_invbool;
475extern int param_set_invbool(const char *val, const struct kernel_param *kp);
476extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
477#define param_check_invbool(name, p) __param_check(name, p, bool)
478
479/* An int, which can only be set like a bool (though it shows as an int). */
480extern const struct kernel_param_ops param_ops_bint;
481extern int param_set_bint(const char *val, const struct kernel_param *kp);
482#define param_get_bint param_get_int
483#define param_check_bint param_check_int
484
485/**
486 * module_param_array - a parameter which is an array of some type
487 * @name: the name of the array variable
488 * @type: the type, as per module_param()
489 * @nump: optional pointer filled in with the number written
490 * @perm: visibility in sysfs
491 *
492 * Input and output are as comma-separated values.  Commas inside values
493 * don't work properly (eg. an array of charp).
494 *
495 * ARRAY_SIZE(@name) is used to determine the number of elements in the
496 * array, so the definition must be visible.
497 */
498#define module_param_array(name, type, nump, perm)		\
499	module_param_array_named(name, name, type, nump, perm)
500
501/**
502 * module_param_array_named - renamed parameter which is an array of some type
503 * @name: a valid C identifier which is the parameter name
504 * @array: the name of the array variable
505 * @type: the type, as per module_param()
506 * @nump: optional pointer filled in with the number written
507 * @perm: visibility in sysfs
508 *
509 * This exposes a different name than the actual variable name.  See
510 * module_param_named() for why this might be necessary.
511 */
512#define module_param_array_named(name, array, type, nump, perm)		\
513	param_check_##type(name, &(array)[0]);				\
514	static const struct kparam_array __param_arr_##name		\
515	= { .max = ARRAY_SIZE(array), .num = nump,                      \
516	    .ops = &param_ops_##type,					\
517	    .elemsize = sizeof(array[0]), .elem = array };		\
518	__module_param_call(MODULE_PARAM_PREFIX, name,			\
519			    &param_array_ops,				\
520			    .arr = &__param_arr_##name,			\
521			    perm, -1, 0);				\
522	__MODULE_PARM_TYPE(name, "array of " #type)
523
524enum hwparam_type {
525	hwparam_ioport,		/* Module parameter configures an I/O port */
526	hwparam_iomem,		/* Module parameter configures an I/O mem address */
527	hwparam_ioport_or_iomem, /* Module parameter could be either, depending on other option */
528	hwparam_irq,		/* Module parameter configures an IRQ */
529	hwparam_dma,		/* Module parameter configures a DMA channel */
530	hwparam_dma_addr,	/* Module parameter configures a DMA buffer address */
531	hwparam_other,		/* Module parameter configures some other value */
532};
533
534/**
535 * module_param_hw_named - A parameter representing a hw parameters
536 * @name: a valid C identifier which is the parameter name.
537 * @value: the actual lvalue to alter.
538 * @type: the type of the parameter
539 * @hwtype: what the value represents (enum hwparam_type)
540 * @perm: visibility in sysfs.
541 *
542 * Usually it's a good idea to have variable names and user-exposed names the
543 * same, but that's harder if the variable must be non-static or is inside a
544 * structure.  This allows exposure under a different name.
545 */
546#define module_param_hw_named(name, value, type, hwtype, perm)		\
547	param_check_##type(name, &(value));				\
548	__module_param_call(MODULE_PARAM_PREFIX, name,			\
549			    &param_ops_##type, &value,			\
550			    perm, -1,					\
551			    KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0));	\
552	__MODULE_PARM_TYPE(name, #type)
553
554#define module_param_hw(name, type, hwtype, perm)		\
555	module_param_hw_named(name, name, type, hwtype, perm)
556
557/**
558 * module_param_hw_array - A parameter representing an array of hw parameters
559 * @name: the name of the array variable
560 * @type: the type, as per module_param()
561 * @hwtype: what the value represents (enum hwparam_type)
562 * @nump: optional pointer filled in with the number written
563 * @perm: visibility in sysfs
564 *
565 * Input and output are as comma-separated values.  Commas inside values
566 * don't work properly (eg. an array of charp).
567 *
568 * ARRAY_SIZE(@name) is used to determine the number of elements in the
569 * array, so the definition must be visible.
570 */
571#define module_param_hw_array(name, type, hwtype, nump, perm)		\
572	param_check_##type(name, &(name)[0]);				\
573	static const struct kparam_array __param_arr_##name		\
574	= { .max = ARRAY_SIZE(name), .num = nump,			\
575	    .ops = &param_ops_##type,					\
576	    .elemsize = sizeof(name[0]), .elem = name };		\
577	__module_param_call(MODULE_PARAM_PREFIX, name,			\
578			    &param_array_ops,				\
579			    .arr = &__param_arr_##name,			\
580			    perm, -1,					\
581			    KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0));	\
582	__MODULE_PARM_TYPE(name, "array of " #type)
583
584
585extern const struct kernel_param_ops param_array_ops;
586
587extern const struct kernel_param_ops param_ops_string;
588extern int param_set_copystring(const char *val, const struct kernel_param *);
589extern int param_get_string(char *buffer, const struct kernel_param *kp);
590
591/* for exporting parameters in /sys/module/.../parameters */
592
593struct module;
594
595#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
596extern int module_param_sysfs_setup(struct module *mod,
597				    const struct kernel_param *kparam,
598				    unsigned int num_params);
599
600extern void module_param_sysfs_remove(struct module *mod);
601#else
602static inline int module_param_sysfs_setup(struct module *mod,
603			     const struct kernel_param *kparam,
604			     unsigned int num_params)
605{
606	return 0;
607}
608
609static inline void module_param_sysfs_remove(struct module *mod)
610{ }
611#endif
612
613#endif /* _LINUX_MODULE_PARAMS_H */
v4.6
 
  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
 13#define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
 
 
 14#endif
 15
 16/* Chosen so that structs with an unsigned long line up. */
 17#define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
 18
 19#ifdef MODULE
 20#define __MODULE_INFO(tag, name, info)					  \
 21static const char __UNIQUE_ID(name)[]					  \
 22  __used __attribute__((section(".modinfo"), unused, aligned(1)))	  \
 23  = __stringify(tag) "=" info
 24#else  /* !MODULE */
 25/* This struct is here for syntactic coherency, it is not used */
 26#define __MODULE_INFO(tag, name, info)					  \
 27  struct __UNIQUE_ID(name) {}
 28#endif
 29#define __MODULE_PARM_TYPE(name, _type)					  \
 30  __MODULE_INFO(parmtype, name##type, #name ":" _type)
 31
 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
 37struct kernel_param;
 38
 39/*
 40 * Flags available for kernel_param_ops
 41 *
 42 * NOARG - the parameter allows for no argument (foo instead of foo=1)
 43 */
 44enum {
 45	KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
 46};
 47
 48struct kernel_param_ops {
 49	/* How the ops should behave */
 50	unsigned int flags;
 51	/* 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);
 55	/* Optional function to free kp->arg when module unloaded. */
 56	void (*free)(void *arg);
 57};
 58
 59/*
 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
 68struct kernel_param {
 69	const char *name;
 70	struct module *mod;
 71	const struct kernel_param_ops *ops;
 72	const u16 perm;
 73	s8 level;
 74	u8 flags;
 75	union {
 76		void *arg;
 77		const struct kparam_string *str;
 78		const struct kparam_array *arr;
 79	};
 80};
 81
 82extern const struct kernel_param __start___param[], __stop___param[];
 83
 84/* 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;
 94	unsigned int elemsize;
 95	unsigned int *num;
 96	const struct kernel_param_ops *ops;
 97	void *elem;
 98};
 99
100/**
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
112 * is writable, you may need to use kernel_param_lock() around
113 * 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/**
129 * 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/**
135 * 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/**
151 * 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/**
159 * 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)				      \
167	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
168
169#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
 
 
173/**
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)			\
183	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
184
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)
205
206/* 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
216/* This is the fundamental function for registering boot/module
217   parameters. */
218#define __module_param_call(prefix, name, ops, arg, perm, level, flags)	\
219	/* Default value instead of permissions? */			\
220	static const char __param_str_##name[] = prefix #name;		\
221	static struct kernel_param __moduleparam_const __param_##name	\
222	__used								\
223    __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
224	= { __param_str_##name, THIS_MODULE, ops,			\
225	    VERIFY_OCTAL_PERMISSIONS(perm), level, flags, { arg } }
226
227/* Obsolete - use module_param_cb() */
228#define module_param_call(name, set, get, arg, perm)			\
229	static const struct kernel_param_ops __param_ops_##name =		\
230		{ .flags = 0, (void *)set, (void *)get };		\
231	__module_param_call(MODULE_PARAM_PREFIX,			\
232			    name, &__param_ops_##name, arg,		\
233			    (perm) + sizeof(__check_old_set_param(set))*0, -1, 0)
234
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
242#ifdef CONFIG_SYSFS
243extern void kernel_param_lock(struct module *mod);
244extern void kernel_param_unlock(struct module *mod);
245#else
246static inline void kernel_param_lock(struct module *mod)
247{
248}
249static inline void kernel_param_unlock(struct module *mod)
250{
251}
252#endif
253
254#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
259 * @type: the type of the parameter
260 * @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));				\
269	__module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
270
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
279#endif /* !MODULE */
280
281/**
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 */
291#define module_param_string(name, string, len, perm)			\
292	static const struct kparam_string __param_string_##name		\
293		= { len, string };					\
294	__module_param_call(MODULE_PARAM_PREFIX, name,			\
295			    &param_ops_string,				\
296			    .str = &__param_string_##name, perm, -1, 0);\
297	__MODULE_PARM_TYPE(name, "string")
298
299/**
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
319/* Called on module insert or kernel boot */
320extern char *parse_args(const char *name,
321		      char *args,
322		      const struct kernel_param *params,
323		      unsigned num,
324		      s16 level_min,
325		      s16 level_max,
326		      void *arg,
327		      int (*unknown)(char *param, char *val,
328				     const char *doing, void *arg));
329
330/* 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
340/* 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) \
344	static inline type __always_unused *__check_##name(void) { return(p); }
345
346extern const struct kernel_param_ops param_ops_byte;
347extern int param_set_byte(const char *val, const struct kernel_param *kp);
348extern int param_get_byte(char *buffer, const struct kernel_param *kp);
349#define param_check_byte(name, p) __param_check(name, p, unsigned char)
350
351extern const struct kernel_param_ops param_ops_short;
352extern int param_set_short(const char *val, const struct kernel_param *kp);
353extern int param_get_short(char *buffer, const struct kernel_param *kp);
354#define param_check_short(name, p) __param_check(name, p, short)
355
356extern const struct kernel_param_ops param_ops_ushort;
357extern int param_set_ushort(const char *val, const struct kernel_param *kp);
358extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
359#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
360
361extern const struct kernel_param_ops param_ops_int;
362extern int param_set_int(const char *val, const struct kernel_param *kp);
363extern int param_get_int(char *buffer, const struct kernel_param *kp);
364#define param_check_int(name, p) __param_check(name, p, int)
365
366extern const struct kernel_param_ops param_ops_uint;
367extern int param_set_uint(const char *val, const struct kernel_param *kp);
368extern int param_get_uint(char *buffer, const struct kernel_param *kp);
369#define param_check_uint(name, p) __param_check(name, p, unsigned int)
370
371extern const struct kernel_param_ops param_ops_long;
372extern int param_set_long(const char *val, const struct kernel_param *kp);
373extern int param_get_long(char *buffer, const struct kernel_param *kp);
374#define param_check_long(name, p) __param_check(name, p, long)
375
376extern const struct kernel_param_ops param_ops_ulong;
377extern int param_set_ulong(const char *val, const struct kernel_param *kp);
378extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
379#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
380
381extern const struct kernel_param_ops param_ops_ullong;
382extern 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
 
 
 
 
 
386extern const struct kernel_param_ops param_ops_charp;
387extern int param_set_charp(const char *val, const struct kernel_param *kp);
388extern int param_get_charp(char *buffer, const struct kernel_param *kp);
389extern void param_free_charp(void *arg);
390#define param_check_charp(name, p) __param_check(name, p, char *)
391
392/* We used to allow int as well as bool.  We're taking that away! */
393extern const struct kernel_param_ops param_ops_bool;
394extern int param_set_bool(const char *val, const struct kernel_param *kp);
395extern int param_get_bool(char *buffer, const struct kernel_param *kp);
396#define param_check_bool(name, p) __param_check(name, p, bool)
397
398extern 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
404extern const struct kernel_param_ops param_ops_invbool;
405extern int param_set_invbool(const char *val, const struct kernel_param *kp);
406extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
407#define param_check_invbool(name, p) __param_check(name, p, bool)
408
409/* An int, which can only be set like a bool (though it shows as an int). */
410extern const struct kernel_param_ops param_ops_bint;
411extern 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
415/**
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 */
442#define module_param_array_named(name, array, type, nump, perm)		\
443	param_check_##type(name, &(array)[0]);				\
444	static const struct kparam_array __param_arr_##name		\
445	= { .max = ARRAY_SIZE(array), .num = nump,                      \
446	    .ops = &param_ops_##type,					\
447	    .elemsize = sizeof(array[0]), .elem = array };		\
448	__module_param_call(MODULE_PARAM_PREFIX, name,			\
449			    &param_array_ops,				\
450			    .arr = &__param_arr_##name,			\
451			    perm, -1, 0);				\
452	__MODULE_PARM_TYPE(name, "array of " #type)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
453
454extern const struct kernel_param_ops param_array_ops;
455
456extern const struct kernel_param_ops param_ops_string;
457extern int param_set_copystring(const char *val, const struct kernel_param *);
458extern int param_get_string(char *buffer, const struct kernel_param *kp);
459
460/* for exporting parameters in /sys/module/.../parameters */
461
462struct module;
463
464#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
465extern int module_param_sysfs_setup(struct module *mod,
466				    const struct kernel_param *kparam,
467				    unsigned int num_params);
468
469extern void module_param_sysfs_remove(struct module *mod);
470#else
471static inline int module_param_sysfs_setup(struct module *mod,
472			     const struct kernel_param *kparam,
473			     unsigned int num_params)
474{
475	return 0;
476}
477
478static inline void module_param_sysfs_remove(struct module *mod)
479{ }
480#endif
481
482#endif /* _LINUX_MODULE_PARAMS_H */