xref: /linux/include/linux/moduleparam.h (revision ec0ccc16a09fc32f7142ef3ddf1c2276fbbb35d0)
11da177e4SLinus Torvalds #ifndef _LINUX_MODULE_PARAMS_H
21da177e4SLinus Torvalds #define _LINUX_MODULE_PARAMS_H
31da177e4SLinus Torvalds /* (C) Copyright 2001, 2002 Rusty Russell IBM Corporation */
41da177e4SLinus Torvalds #include <linux/init.h>
51da177e4SLinus Torvalds #include <linux/stringify.h>
61da177e4SLinus Torvalds #include <linux/kernel.h>
71da177e4SLinus Torvalds 
81da177e4SLinus Torvalds /* You can override this manually, but generally this should match the
91da177e4SLinus Torvalds    module name. */
101da177e4SLinus Torvalds #ifdef MODULE
111da177e4SLinus Torvalds #define MODULE_PARAM_PREFIX /* empty */
121da177e4SLinus Torvalds #else
13367cb704SSam Ravnborg #define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
141da177e4SLinus Torvalds #endif
151da177e4SLinus Torvalds 
16730b69d2SRusty Russell /* Chosen so that structs with an unsigned long line up. */
17730b69d2SRusty Russell #define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
18730b69d2SRusty Russell 
19b75be420SLinus Walleij #ifdef MODULE
201da177e4SLinus Torvalds #define __MODULE_INFO(tag, name, info)					  \
2134182eeaSRusty Russell static const char __UNIQUE_ID(name)[]					  \
22b6472776SJan Beulich   __used __attribute__((section(".modinfo"), unused, aligned(1)))	  \
23b6472776SJan Beulich   = __stringify(tag) "=" info
241da177e4SLinus Torvalds #else  /* !MODULE */
25b75be420SLinus Walleij /* This struct is here for syntactic coherency, it is not used */
26b75be420SLinus Walleij #define __MODULE_INFO(tag, name, info)					  \
2734182eeaSRusty Russell   struct __UNIQUE_ID(name) {}
281da177e4SLinus Torvalds #endif
291da177e4SLinus Torvalds #define __MODULE_PARM_TYPE(name, _type)					  \
301da177e4SLinus Torvalds   __MODULE_INFO(parmtype, name##type, #name ":" _type)
311da177e4SLinus Torvalds 
32639938ebSPaul Gortmaker /* One for each parameter, describing how to use it.  Some files do
33639938ebSPaul Gortmaker    multiple of these per line, so can't just use MODULE_INFO. */
34639938ebSPaul Gortmaker #define MODULE_PARM_DESC(_parm, desc) \
35639938ebSPaul Gortmaker 	__MODULE_INFO(parm, _parm, #_parm ":" desc)
36639938ebSPaul Gortmaker 
371da177e4SLinus Torvalds struct kernel_param;
381da177e4SLinus Torvalds 
39ab013c5fSSteven Rostedt /*
40ab013c5fSSteven Rostedt  * Flags available for kernel_param_ops
41ab013c5fSSteven Rostedt  *
42ab013c5fSSteven Rostedt  * NOARG - the parameter allows for no argument (foo instead of foo=1)
43ab013c5fSSteven Rostedt  */
44ab013c5fSSteven Rostedt enum {
456a4c2643SJani Nikula 	KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
46ab013c5fSSteven Rostedt };
47ab013c5fSSteven Rostedt 
489bbb9e5aSRusty Russell struct kernel_param_ops {
49ab013c5fSSteven Rostedt 	/* How the ops should behave */
50ab013c5fSSteven Rostedt 	unsigned int flags;
511da177e4SLinus Torvalds 	/* Returns 0, or -errno.  arg is in kp->arg. */
529bbb9e5aSRusty Russell 	int (*set)(const char *val, const struct kernel_param *kp);
531da177e4SLinus Torvalds 	/* Returns length written or -errno.  Buffer is 4k (ie. be short!) */
549bbb9e5aSRusty Russell 	int (*get)(char *buffer, const struct kernel_param *kp);
55e6df34a4SRusty Russell 	/* Optional function to free kp->arg when module unloaded. */
56e6df34a4SRusty Russell 	void (*free)(void *arg);
579bbb9e5aSRusty Russell };
581da177e4SLinus Torvalds 
5991f9d330SJani Nikula /*
6091f9d330SJani Nikula  * Flags available for kernel_param
6191f9d330SJani Nikula  *
6291f9d330SJani Nikula  * UNSAFE - the parameter is dangerous and setting it will taint the kernel
6391f9d330SJani Nikula  */
6491f9d330SJani Nikula enum {
6591f9d330SJani Nikula 	KERNEL_PARAM_FL_UNSAFE = (1 << 0)
6691f9d330SJani Nikula };
6791f9d330SJani Nikula 
681da177e4SLinus Torvalds struct kernel_param {
691da177e4SLinus Torvalds 	const char *name;
709bbb9e5aSRusty Russell 	const struct kernel_param_ops *ops;
7145fcc70cSRusty Russell 	u16 perm;
7291f9d330SJani Nikula 	s8 level;
7391f9d330SJani Nikula 	u8 flags;
7422e48eafSJan Beulich 	union {
751da177e4SLinus Torvalds 		void *arg;
7622e48eafSJan Beulich 		const struct kparam_string *str;
7722e48eafSJan Beulich 		const struct kparam_array *arr;
7822e48eafSJan Beulich 	};
791da177e4SLinus Torvalds };
801da177e4SLinus Torvalds 
8163a12d9dSGeert Uytterhoeven extern const struct kernel_param __start___param[], __stop___param[];
8263a12d9dSGeert Uytterhoeven 
831da177e4SLinus Torvalds /* Special one for strings we want to copy into */
841da177e4SLinus Torvalds struct kparam_string {
851da177e4SLinus Torvalds 	unsigned int maxlen;
861da177e4SLinus Torvalds 	char *string;
871da177e4SLinus Torvalds };
881da177e4SLinus Torvalds 
891da177e4SLinus Torvalds /* Special one for arrays */
901da177e4SLinus Torvalds struct kparam_array
911da177e4SLinus Torvalds {
921da177e4SLinus Torvalds 	unsigned int max;
93c5be0b2eSRichard Kennedy 	unsigned int elemsize;
941da177e4SLinus Torvalds 	unsigned int *num;
959bbb9e5aSRusty Russell 	const struct kernel_param_ops *ops;
961da177e4SLinus Torvalds 	void *elem;
971da177e4SLinus Torvalds };
981da177e4SLinus Torvalds 
99546970bcSRusty Russell /**
100546970bcSRusty Russell  * module_param - typesafe helper for a module/cmdline parameter
101546970bcSRusty Russell  * @value: the variable to alter, and exposed parameter name.
102546970bcSRusty Russell  * @type: the type of the parameter
103546970bcSRusty Russell  * @perm: visibility in sysfs.
104546970bcSRusty Russell  *
105546970bcSRusty Russell  * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
106546970bcSRusty Russell  * ".") the kernel commandline parameter.  Note that - is changed to _, so
107546970bcSRusty Russell  * the user can use "foo-bar=1" even for variable "foo_bar".
108546970bcSRusty Russell  *
109546970bcSRusty Russell  * @perm is 0 if the the variable is not to appear in sysfs, or 0444
110546970bcSRusty Russell  * for world-readable, 0644 for root-writable, etc.  Note that if it
111546970bcSRusty Russell  * is writable, you may need to use kparam_block_sysfs_write() around
112546970bcSRusty Russell  * accesses (esp. charp, which can be kfreed when it changes).
113546970bcSRusty Russell  *
114546970bcSRusty Russell  * The @type is simply pasted to refer to a param_ops_##type and a
115546970bcSRusty Russell  * param_check_##type: for convenience many standard types are provided but
116546970bcSRusty Russell  * you can create your own by defining those variables.
117546970bcSRusty Russell  *
118546970bcSRusty Russell  * Standard types are:
119546970bcSRusty Russell  *	byte, short, ushort, int, uint, long, ulong
120546970bcSRusty Russell  *	charp: a character pointer
121546970bcSRusty Russell  *	bool: a bool, values 0/1, y/n, Y/N.
122546970bcSRusty Russell  *	invbool: the above, only sense-reversed (N = true).
123546970bcSRusty Russell  */
124546970bcSRusty Russell #define module_param(name, type, perm)				\
125546970bcSRusty Russell 	module_param_named(name, name, type, perm)
126546970bcSRusty Russell 
127546970bcSRusty Russell /**
1283baee201SJani Nikula  * module_param_unsafe - same as module_param but taints kernel
1293baee201SJani Nikula  */
1303baee201SJani Nikula #define module_param_unsafe(name, type, perm)			\
1313baee201SJani Nikula 	module_param_named_unsafe(name, name, type, perm)
1323baee201SJani Nikula 
1333baee201SJani Nikula /**
134546970bcSRusty Russell  * module_param_named - typesafe helper for a renamed module/cmdline parameter
135546970bcSRusty Russell  * @name: a valid C identifier which is the parameter name.
136546970bcSRusty Russell  * @value: the actual lvalue to alter.
137546970bcSRusty Russell  * @type: the type of the parameter
138546970bcSRusty Russell  * @perm: visibility in sysfs.
139546970bcSRusty Russell  *
140546970bcSRusty Russell  * Usually it's a good idea to have variable names and user-exposed names the
141546970bcSRusty Russell  * same, but that's harder if the variable must be non-static or is inside a
142546970bcSRusty Russell  * structure.  This allows exposure under a different name.
143546970bcSRusty Russell  */
144546970bcSRusty Russell #define module_param_named(name, value, type, perm)			   \
145546970bcSRusty Russell 	param_check_##type(name, &(value));				   \
146546970bcSRusty Russell 	module_param_cb(name, &param_ops_##type, &value, perm);		   \
147546970bcSRusty Russell 	__MODULE_PARM_TYPE(name, #type)
148546970bcSRusty Russell 
149546970bcSRusty Russell /**
1503baee201SJani Nikula  * module_param_named_unsafe - same as module_param_named but taints kernel
1513baee201SJani Nikula  */
1523baee201SJani Nikula #define module_param_named_unsafe(name, value, type, perm)		\
1533baee201SJani Nikula 	param_check_##type(name, &(value));				\
1543baee201SJani Nikula 	module_param_cb_unsafe(name, &param_ops_##type, &value, perm);	\
1553baee201SJani Nikula 	__MODULE_PARM_TYPE(name, #type)
1563baee201SJani Nikula 
1573baee201SJani Nikula /**
158546970bcSRusty Russell  * module_param_cb - general callback for a module/cmdline parameter
159546970bcSRusty Russell  * @name: a valid C identifier which is the parameter name.
160546970bcSRusty Russell  * @ops: the set & get operations for this parameter.
161546970bcSRusty Russell  * @perm: visibility in sysfs.
162546970bcSRusty Russell  *
163546970bcSRusty Russell  * The ops can have NULL set or get functions.
164546970bcSRusty Russell  */
165546970bcSRusty Russell #define module_param_cb(name, ops, arg, perm)				      \
16691f9d330SJani Nikula 	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
167026cee00SPawel Moll 
1683baee201SJani Nikula #define module_param_cb_unsafe(name, ops, arg, perm)			      \
1693baee201SJani Nikula 	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1,    \
1703baee201SJani Nikula 			    KERNEL_PARAM_FL_UNSAFE)
1713baee201SJani Nikula 
172026cee00SPawel Moll /**
173026cee00SPawel Moll  * <level>_param_cb - general callback for a module/cmdline parameter
174026cee00SPawel Moll  *                    to be evaluated before certain initcall level
175026cee00SPawel Moll  * @name: a valid C identifier which is the parameter name.
176026cee00SPawel Moll  * @ops: the set & get operations for this parameter.
177026cee00SPawel Moll  * @perm: visibility in sysfs.
178026cee00SPawel Moll  *
179026cee00SPawel Moll  * The ops can have NULL set or get functions.
180026cee00SPawel Moll  */
181026cee00SPawel Moll #define __level_param_cb(name, ops, arg, perm, level)			\
18291f9d330SJani Nikula 	__module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
183026cee00SPawel Moll 
184026cee00SPawel Moll #define core_param_cb(name, ops, arg, perm)		\
185026cee00SPawel Moll 	__level_param_cb(name, ops, arg, perm, 1)
186026cee00SPawel Moll 
187026cee00SPawel Moll #define postcore_param_cb(name, ops, arg, perm)		\
188026cee00SPawel Moll 	__level_param_cb(name, ops, arg, perm, 2)
189026cee00SPawel Moll 
190026cee00SPawel Moll #define arch_param_cb(name, ops, arg, perm)		\
191026cee00SPawel Moll 	__level_param_cb(name, ops, arg, perm, 3)
192026cee00SPawel Moll 
193026cee00SPawel Moll #define subsys_param_cb(name, ops, arg, perm)		\
194026cee00SPawel Moll 	__level_param_cb(name, ops, arg, perm, 4)
195026cee00SPawel Moll 
196026cee00SPawel Moll #define fs_param_cb(name, ops, arg, perm)		\
197026cee00SPawel Moll 	__level_param_cb(name, ops, arg, perm, 5)
198026cee00SPawel Moll 
199026cee00SPawel Moll #define device_param_cb(name, ops, arg, perm)		\
200026cee00SPawel Moll 	__level_param_cb(name, ops, arg, perm, 6)
201026cee00SPawel Moll 
202026cee00SPawel Moll #define late_param_cb(name, ops, arg, perm)		\
203026cee00SPawel Moll 	__level_param_cb(name, ops, arg, perm, 7)
204546970bcSRusty Russell 
20591d35dd9SIvan Kokshaysky /* On alpha, ia64 and ppc64 relocations to global data cannot go into
20691d35dd9SIvan Kokshaysky    read-only sections (which is part of respective UNIX ABI on these
20791d35dd9SIvan Kokshaysky    platforms). So 'const' makes no sense and even causes compile failures
20891d35dd9SIvan Kokshaysky    with some compilers. */
20991d35dd9SIvan Kokshaysky #if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
21091d35dd9SIvan Kokshaysky #define __moduleparam_const
21191d35dd9SIvan Kokshaysky #else
21291d35dd9SIvan Kokshaysky #define __moduleparam_const const
21391d35dd9SIvan Kokshaysky #endif
21491d35dd9SIvan Kokshaysky 
2151da177e4SLinus Torvalds /* This is the fundamental function for registering boot/module
216546970bcSRusty Russell    parameters. */
21791f9d330SJani Nikula #define __module_param_call(prefix, name, ops, arg, perm, level, flags)	\
2189774a1f5SAlexey Dobriyan 	/* Default value instead of permissions? */			\
21922e48eafSJan Beulich 	static const char __param_str_##name[] = prefix #name; \
22091d35dd9SIvan Kokshaysky 	static struct kernel_param __moduleparam_const __param_##name	\
2213ff6eeccSAdrian Bunk 	__used								\
2221da177e4SLinus Torvalds     __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
22358f86cc8SRusty Russell 	= { __param_str_##name, ops, VERIFY_OCTAL_PERMISSIONS(perm),	\
22491f9d330SJani Nikula 	    level, flags, { arg } }
2251da177e4SLinus Torvalds 
2269bbb9e5aSRusty Russell /* Obsolete - use module_param_cb() */
2271da177e4SLinus Torvalds #define module_param_call(name, set, get, arg, perm)			\
2289bbb9e5aSRusty Russell 	static struct kernel_param_ops __param_ops_##name =		\
229184c3fc3SMark Rustad 		{ .flags = 0, (void *)set, (void *)get };		\
230fddd5201SRusty Russell 	__module_param_call(MODULE_PARAM_PREFIX,			\
2319bbb9e5aSRusty Russell 			    name, &__param_ops_##name, arg,		\
23291f9d330SJani Nikula 			    (perm) + sizeof(__check_old_set_param(set))*0, -1, 0)
2331da177e4SLinus Torvalds 
2349bbb9e5aSRusty Russell /* We don't get oldget: it's often a new-style param_get_uint, etc. */
2359bbb9e5aSRusty Russell static inline int
2369bbb9e5aSRusty Russell __check_old_set_param(int (*oldset)(const char *, struct kernel_param *))
2379bbb9e5aSRusty Russell {
2389bbb9e5aSRusty Russell 	return 0;
2399bbb9e5aSRusty Russell }
2409bbb9e5aSRusty Russell 
241907b29ebSRusty Russell /**
242907b29ebSRusty Russell  * kparam_block_sysfs_write - make sure a parameter isn't written via sysfs.
243907b29ebSRusty Russell  * @name: the name of the parameter
244907b29ebSRusty Russell  *
245907b29ebSRusty Russell  * There's no point blocking write on a paramter that isn't writable via sysfs!
246907b29ebSRusty Russell  */
247907b29ebSRusty Russell #define kparam_block_sysfs_write(name)			\
248907b29ebSRusty Russell 	do {						\
249907b29ebSRusty Russell 		BUG_ON(!(__param_##name.perm & 0222));	\
250907b29ebSRusty Russell 		__kernel_param_lock();			\
251907b29ebSRusty Russell 	} while (0)
252907b29ebSRusty Russell 
253907b29ebSRusty Russell /**
254907b29ebSRusty Russell  * kparam_unblock_sysfs_write - allows sysfs to write to a parameter again.
255907b29ebSRusty Russell  * @name: the name of the parameter
256907b29ebSRusty Russell  */
257907b29ebSRusty Russell #define kparam_unblock_sysfs_write(name)		\
258907b29ebSRusty Russell 	do {						\
259907b29ebSRusty Russell 		BUG_ON(!(__param_##name.perm & 0222));	\
260907b29ebSRusty Russell 		__kernel_param_unlock();		\
261907b29ebSRusty Russell 	} while (0)
262907b29ebSRusty Russell 
263907b29ebSRusty Russell /**
264907b29ebSRusty Russell  * kparam_block_sysfs_read - make sure a parameter isn't read via sysfs.
265907b29ebSRusty Russell  * @name: the name of the parameter
266907b29ebSRusty Russell  *
267907b29ebSRusty Russell  * This also blocks sysfs writes.
268907b29ebSRusty Russell  */
269907b29ebSRusty Russell #define kparam_block_sysfs_read(name)			\
270907b29ebSRusty Russell 	do {						\
271907b29ebSRusty Russell 		BUG_ON(!(__param_##name.perm & 0444));	\
272907b29ebSRusty Russell 		__kernel_param_lock();			\
273907b29ebSRusty Russell 	} while (0)
274907b29ebSRusty Russell 
275907b29ebSRusty Russell /**
276907b29ebSRusty Russell  * kparam_unblock_sysfs_read - allows sysfs to read a parameter again.
277907b29ebSRusty Russell  * @name: the name of the parameter
278907b29ebSRusty Russell  */
279907b29ebSRusty Russell #define kparam_unblock_sysfs_read(name)			\
280907b29ebSRusty Russell 	do {						\
281907b29ebSRusty Russell 		BUG_ON(!(__param_##name.perm & 0444));	\
282907b29ebSRusty Russell 		__kernel_param_unlock();		\
283907b29ebSRusty Russell 	} while (0)
284907b29ebSRusty Russell 
285907b29ebSRusty Russell #ifdef CONFIG_SYSFS
286907b29ebSRusty Russell extern void __kernel_param_lock(void);
287907b29ebSRusty Russell extern void __kernel_param_unlock(void);
288907b29ebSRusty Russell #else
289907b29ebSRusty Russell static inline void __kernel_param_lock(void)
290907b29ebSRusty Russell {
291907b29ebSRusty Russell }
292907b29ebSRusty Russell static inline void __kernel_param_unlock(void)
293907b29ebSRusty Russell {
294907b29ebSRusty Russell }
295907b29ebSRusty Russell #endif
296907b29ebSRusty Russell 
29767e67ceaSRusty Russell #ifndef MODULE
29867e67ceaSRusty Russell /**
29967e67ceaSRusty Russell  * core_param - define a historical core kernel parameter.
30067e67ceaSRusty Russell  * @name: the name of the cmdline and sysfs parameter (often the same as var)
30167e67ceaSRusty Russell  * @var: the variable
302546970bcSRusty Russell  * @type: the type of the parameter
30367e67ceaSRusty Russell  * @perm: visibility in sysfs
30467e67ceaSRusty Russell  *
30567e67ceaSRusty Russell  * core_param is just like module_param(), but cannot be modular and
30667e67ceaSRusty Russell  * doesn't add a prefix (such as "printk.").  This is for compatibility
30767e67ceaSRusty Russell  * with __setup(), and it makes sense as truly core parameters aren't
30867e67ceaSRusty Russell  * tied to the particular file they're in.
30967e67ceaSRusty Russell  */
31067e67ceaSRusty Russell #define core_param(name, var, type, perm)				\
31167e67ceaSRusty Russell 	param_check_##type(name, &(var));				\
31291f9d330SJani Nikula 	__module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
313*ec0ccc16SDmitry Torokhov 
314*ec0ccc16SDmitry Torokhov /**
315*ec0ccc16SDmitry Torokhov  * core_param_unsafe - same as core_param but taints kernel
316*ec0ccc16SDmitry Torokhov  */
317*ec0ccc16SDmitry Torokhov #define core_param_unsafe(name, var, type, perm)		\
318*ec0ccc16SDmitry Torokhov 	param_check_##type(name, &(var));				\
319*ec0ccc16SDmitry Torokhov 	__module_param_call("", name, &param_ops_##type, &var, perm,	\
320*ec0ccc16SDmitry Torokhov 			    -1, KERNEL_PARAM_FL_UNSAFE)
321*ec0ccc16SDmitry Torokhov 
32267e67ceaSRusty Russell #endif /* !MODULE */
32367e67ceaSRusty Russell 
324546970bcSRusty Russell /**
325546970bcSRusty Russell  * module_param_string - a char array parameter
326546970bcSRusty Russell  * @name: the name of the parameter
327546970bcSRusty Russell  * @string: the string variable
328546970bcSRusty Russell  * @len: the maximum length of the string, incl. terminator
329546970bcSRusty Russell  * @perm: visibility in sysfs.
330546970bcSRusty Russell  *
331546970bcSRusty Russell  * This actually copies the string when it's set (unlike type charp).
332546970bcSRusty Russell  * @len is usually just sizeof(string).
333546970bcSRusty Russell  */
3341da177e4SLinus Torvalds #define module_param_string(name, string, len, perm)			\
33522e48eafSJan Beulich 	static const struct kparam_string __param_string_##name		\
3361da177e4SLinus Torvalds 		= { len, string };					\
337fddd5201SRusty Russell 	__module_param_call(MODULE_PARAM_PREFIX, name,			\
3389bbb9e5aSRusty Russell 			    &param_ops_string,				\
33991f9d330SJani Nikula 			    .str = &__param_string_##name, perm, -1, 0);\
3401da177e4SLinus Torvalds 	__MODULE_PARM_TYPE(name, "string")
3411da177e4SLinus Torvalds 
342b1e4d20cSMichal Schmidt /**
343b1e4d20cSMichal Schmidt  * parameq - checks if two parameter names match
344b1e4d20cSMichal Schmidt  * @name1: parameter name 1
345b1e4d20cSMichal Schmidt  * @name2: parameter name 2
346b1e4d20cSMichal Schmidt  *
347b1e4d20cSMichal Schmidt  * Returns true if the two parameter names are equal.
348b1e4d20cSMichal Schmidt  * Dashes (-) are considered equal to underscores (_).
349b1e4d20cSMichal Schmidt  */
350b1e4d20cSMichal Schmidt extern bool parameq(const char *name1, const char *name2);
351b1e4d20cSMichal Schmidt 
352b1e4d20cSMichal Schmidt /**
353b1e4d20cSMichal Schmidt  * parameqn - checks if two parameter names match
354b1e4d20cSMichal Schmidt  * @name1: parameter name 1
355b1e4d20cSMichal Schmidt  * @name2: parameter name 2
356b1e4d20cSMichal Schmidt  * @n: the length to compare
357b1e4d20cSMichal Schmidt  *
358b1e4d20cSMichal Schmidt  * Similar to parameq(), except it compares @n characters.
359b1e4d20cSMichal Schmidt  */
360b1e4d20cSMichal Schmidt extern bool parameqn(const char *name1, const char *name2, size_t n);
361b1e4d20cSMichal Schmidt 
3621da177e4SLinus Torvalds /* Called on module insert or kernel boot */
36351e158c1SRusty Russell extern char *parse_args(const char *name,
3641da177e4SLinus Torvalds 		      char *args,
365914dcaa8SRusty Russell 		      const struct kernel_param *params,
3661da177e4SLinus Torvalds 		      unsigned num,
367026cee00SPawel Moll 		      s16 level_min,
368026cee00SPawel Moll 		      s16 level_max,
369ecc86170SLuis R. Rodriguez 		      void *arg,
3709fb48c74SJim Cromie 		      int (*unknown)(char *param, char *val,
371ecc86170SLuis R. Rodriguez 				     const char *doing, void *arg));
3721da177e4SLinus Torvalds 
373e180a6b7SRusty Russell /* Called by module remove. */
374e180a6b7SRusty Russell #ifdef CONFIG_SYSFS
375e180a6b7SRusty Russell extern void destroy_params(const struct kernel_param *params, unsigned num);
376e180a6b7SRusty Russell #else
377e180a6b7SRusty Russell static inline void destroy_params(const struct kernel_param *params,
378e180a6b7SRusty Russell 				  unsigned num)
379e180a6b7SRusty Russell {
380e180a6b7SRusty Russell }
381e180a6b7SRusty Russell #endif /* !CONFIG_SYSFS */
382e180a6b7SRusty Russell 
3831da177e4SLinus Torvalds /* All the helper functions */
3841da177e4SLinus Torvalds /* The macros to do compile-time type checking stolen from Jakub
3851da177e4SLinus Torvalds    Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
3861da177e4SLinus Torvalds #define __param_check(name, p, type) \
3870283f9a5SMark Charlebois 	static inline type __always_unused *__check_##name(void) { return(p); }
3881da177e4SLinus Torvalds 
3899bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_byte;
3909bbb9e5aSRusty Russell extern int param_set_byte(const char *val, const struct kernel_param *kp);
3919bbb9e5aSRusty Russell extern int param_get_byte(char *buffer, const struct kernel_param *kp);
3921da177e4SLinus Torvalds #define param_check_byte(name, p) __param_check(name, p, unsigned char)
3931da177e4SLinus Torvalds 
3949bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_short;
3959bbb9e5aSRusty Russell extern int param_set_short(const char *val, const struct kernel_param *kp);
3969bbb9e5aSRusty Russell extern int param_get_short(char *buffer, const struct kernel_param *kp);
3971da177e4SLinus Torvalds #define param_check_short(name, p) __param_check(name, p, short)
3981da177e4SLinus Torvalds 
3999bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_ushort;
4009bbb9e5aSRusty Russell extern int param_set_ushort(const char *val, const struct kernel_param *kp);
4019bbb9e5aSRusty Russell extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
4021da177e4SLinus Torvalds #define param_check_ushort(name, p) __param_check(name, p, unsigned short)
4031da177e4SLinus Torvalds 
4049bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_int;
4059bbb9e5aSRusty Russell extern int param_set_int(const char *val, const struct kernel_param *kp);
4069bbb9e5aSRusty Russell extern int param_get_int(char *buffer, const struct kernel_param *kp);
4071da177e4SLinus Torvalds #define param_check_int(name, p) __param_check(name, p, int)
4081da177e4SLinus Torvalds 
4099bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_uint;
4109bbb9e5aSRusty Russell extern int param_set_uint(const char *val, const struct kernel_param *kp);
4119bbb9e5aSRusty Russell extern int param_get_uint(char *buffer, const struct kernel_param *kp);
4121da177e4SLinus Torvalds #define param_check_uint(name, p) __param_check(name, p, unsigned int)
4131da177e4SLinus Torvalds 
4149bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_long;
4159bbb9e5aSRusty Russell extern int param_set_long(const char *val, const struct kernel_param *kp);
4169bbb9e5aSRusty Russell extern int param_get_long(char *buffer, const struct kernel_param *kp);
4171da177e4SLinus Torvalds #define param_check_long(name, p) __param_check(name, p, long)
4181da177e4SLinus Torvalds 
4199bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_ulong;
4209bbb9e5aSRusty Russell extern int param_set_ulong(const char *val, const struct kernel_param *kp);
4219bbb9e5aSRusty Russell extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
4221da177e4SLinus Torvalds #define param_check_ulong(name, p) __param_check(name, p, unsigned long)
4231da177e4SLinus Torvalds 
424b4210b81SHannes Reinecke extern struct kernel_param_ops param_ops_ullong;
425b4210b81SHannes Reinecke extern int param_set_ullong(const char *val, const struct kernel_param *kp);
426b4210b81SHannes Reinecke extern int param_get_ullong(char *buffer, const struct kernel_param *kp);
427b4210b81SHannes Reinecke #define param_check_ullong(name, p) __param_check(name, p, unsigned long long)
428b4210b81SHannes Reinecke 
4299bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_charp;
4309bbb9e5aSRusty Russell extern int param_set_charp(const char *val, const struct kernel_param *kp);
4319bbb9e5aSRusty Russell extern int param_get_charp(char *buffer, const struct kernel_param *kp);
4321da177e4SLinus Torvalds #define param_check_charp(name, p) __param_check(name, p, char *)
4331da177e4SLinus Torvalds 
43472db395fSRusty Russell /* We used to allow int as well as bool.  We're taking that away! */
4359bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_bool;
4369bbb9e5aSRusty Russell extern int param_set_bool(const char *val, const struct kernel_param *kp);
4379bbb9e5aSRusty Russell extern int param_get_bool(char *buffer, const struct kernel_param *kp);
43872db395fSRusty Russell #define param_check_bool(name, p) __param_check(name, p, bool)
4391da177e4SLinus Torvalds 
4409bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_invbool;
4419bbb9e5aSRusty Russell extern int param_set_invbool(const char *val, const struct kernel_param *kp);
4429bbb9e5aSRusty Russell extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
4439a71af2cSRusty Russell #define param_check_invbool(name, p) __param_check(name, p, bool)
4441da177e4SLinus Torvalds 
44569116f27SRusty Russell /* An int, which can only be set like a bool (though it shows as an int). */
44669116f27SRusty Russell extern struct kernel_param_ops param_ops_bint;
44769116f27SRusty Russell extern int param_set_bint(const char *val, const struct kernel_param *kp);
44869116f27SRusty Russell #define param_get_bint param_get_int
44969116f27SRusty Russell #define param_check_bint param_check_int
45069116f27SRusty Russell 
451546970bcSRusty Russell /**
452546970bcSRusty Russell  * module_param_array - a parameter which is an array of some type
453546970bcSRusty Russell  * @name: the name of the array variable
454546970bcSRusty Russell  * @type: the type, as per module_param()
455546970bcSRusty Russell  * @nump: optional pointer filled in with the number written
456546970bcSRusty Russell  * @perm: visibility in sysfs
457546970bcSRusty Russell  *
458546970bcSRusty Russell  * Input and output are as comma-separated values.  Commas inside values
459546970bcSRusty Russell  * don't work properly (eg. an array of charp).
460546970bcSRusty Russell  *
461546970bcSRusty Russell  * ARRAY_SIZE(@name) is used to determine the number of elements in the
462546970bcSRusty Russell  * array, so the definition must be visible.
463546970bcSRusty Russell  */
464546970bcSRusty Russell #define module_param_array(name, type, nump, perm)		\
465546970bcSRusty Russell 	module_param_array_named(name, name, type, nump, perm)
466546970bcSRusty Russell 
467546970bcSRusty Russell /**
468546970bcSRusty Russell  * module_param_array_named - renamed parameter which is an array of some type
469546970bcSRusty Russell  * @name: a valid C identifier which is the parameter name
470546970bcSRusty Russell  * @array: the name of the array variable
471546970bcSRusty Russell  * @type: the type, as per module_param()
472546970bcSRusty Russell  * @nump: optional pointer filled in with the number written
473546970bcSRusty Russell  * @perm: visibility in sysfs
474546970bcSRusty Russell  *
475546970bcSRusty Russell  * This exposes a different name than the actual variable name.  See
476546970bcSRusty Russell  * module_param_named() for why this might be necessary.
477546970bcSRusty Russell  */
4781da177e4SLinus Torvalds #define module_param_array_named(name, array, type, nump, perm)		\
479bafeafeaSRusty Russell 	param_check_##type(name, &(array)[0]);				\
48022e48eafSJan Beulich 	static const struct kparam_array __param_arr_##name		\
481c5be0b2eSRichard Kennedy 	= { .max = ARRAY_SIZE(array), .num = nump,                      \
482c5be0b2eSRichard Kennedy 	    .ops = &param_ops_##type,					\
483c5be0b2eSRichard Kennedy 	    .elemsize = sizeof(array[0]), .elem = array };		\
484fddd5201SRusty Russell 	__module_param_call(MODULE_PARAM_PREFIX, name,			\
4859bbb9e5aSRusty Russell 			    &param_array_ops,				\
486fddd5201SRusty Russell 			    .arr = &__param_arr_##name,			\
48791f9d330SJani Nikula 			    perm, -1, 0);				\
4881da177e4SLinus Torvalds 	__MODULE_PARM_TYPE(name, "array of " #type)
4891da177e4SLinus Torvalds 
4909bbb9e5aSRusty Russell extern struct kernel_param_ops param_array_ops;
4911da177e4SLinus Torvalds 
4929bbb9e5aSRusty Russell extern struct kernel_param_ops param_ops_string;
4939bbb9e5aSRusty Russell extern int param_set_copystring(const char *val, const struct kernel_param *);
4949bbb9e5aSRusty Russell extern int param_get_string(char *buffer, const struct kernel_param *kp);
4951da177e4SLinus Torvalds 
496b634d130SJean Delvare /* for exporting parameters in /sys/module/.../parameters */
4971da177e4SLinus Torvalds 
4981da177e4SLinus Torvalds struct module;
4991da177e4SLinus Torvalds 
500ef665c1aSRandy Dunlap #if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
5011da177e4SLinus Torvalds extern int module_param_sysfs_setup(struct module *mod,
5029bbb9e5aSRusty Russell 				    const struct kernel_param *kparam,
5031da177e4SLinus Torvalds 				    unsigned int num_params);
5041da177e4SLinus Torvalds 
5051da177e4SLinus Torvalds extern void module_param_sysfs_remove(struct module *mod);
506ef665c1aSRandy Dunlap #else
507ef665c1aSRandy Dunlap static inline int module_param_sysfs_setup(struct module *mod,
5089bbb9e5aSRusty Russell 			     const struct kernel_param *kparam,
509ef665c1aSRandy Dunlap 			     unsigned int num_params)
510ef665c1aSRandy Dunlap {
511ef665c1aSRandy Dunlap 	return 0;
512ef665c1aSRandy Dunlap }
513ef665c1aSRandy Dunlap 
514ef665c1aSRandy Dunlap static inline void module_param_sysfs_remove(struct module *mod)
515ef665c1aSRandy Dunlap { }
516ef665c1aSRandy Dunlap #endif
5171da177e4SLinus Torvalds 
5181da177e4SLinus Torvalds #endif /* _LINUX_MODULE_PARAMS_H */
519