blob: 6547c3cdbc4c17cddda61d0f92fe83352de2f77c [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 Torvalds1da177e2005-04-16 15:20:36 -070019#ifdef MODULE
20#define ___module_cat(a,b) __mod_ ## a ## b
21#define __module_cat(a,b) ___module_cat(a,b)
22#define __MODULE_INFO(tag, name, info) \
23static const char __module_cat(name,__LINE__)[] \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +010024 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 __attribute__((section(".modinfo"),unused)) = __stringify(tag) "=" info
26#else /* !MODULE */
27#define __MODULE_INFO(tag, name, info)
28#endif
29#define __MODULE_PARM_TYPE(name, _type) \
30 __MODULE_INFO(parmtype, name##type, #name ":" _type)
31
32struct kernel_param;
33
34/* Returns 0, or -errno. arg is in kp->arg. */
35typedef int (*param_set_fn)(const char *val, struct kernel_param *kp);
36/* Returns length written or -errno. Buffer is 4k (ie. be short!) */
37typedef int (*param_get_fn)(char *buffer, struct kernel_param *kp);
38
Rusty Russell45fcc702009-06-12 21:46:56 -060039/* Flag bits for kernel_param.flags */
40#define KPARAM_KMALLOCED 1
Rusty Russellfddd5202009-06-12 21:46:57 -060041#define KPARAM_ISBOOL 2
Rusty Russell45fcc702009-06-12 21:46:56 -060042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043struct kernel_param {
44 const char *name;
Rusty Russell45fcc702009-06-12 21:46:56 -060045 u16 perm;
46 u16 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 param_set_fn set;
48 param_get_fn get;
Jan Beulich22e48ea2007-10-16 23:29:34 -070049 union {
50 void *arg;
51 const struct kparam_string *str;
52 const struct kparam_array *arr;
53 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
56/* Special one for strings we want to copy into */
57struct kparam_string {
58 unsigned int maxlen;
59 char *string;
60};
61
62/* Special one for arrays */
63struct kparam_array
64{
65 unsigned int max;
66 unsigned int *num;
67 param_set_fn set;
68 param_get_fn get;
69 unsigned int elemsize;
70 void *elem;
71};
72
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -080073/* On alpha, ia64 and ppc64 relocations to global data cannot go into
74 read-only sections (which is part of respective UNIX ABI on these
75 platforms). So 'const' makes no sense and even causes compile failures
76 with some compilers. */
77#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
78#define __moduleparam_const
79#else
80#define __moduleparam_const const
81#endif
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* This is the fundamental function for registering boot/module
Robert P. J. Day405ae7d2007-02-17 19:13:42 +010084 parameters. perm sets the visibility in sysfs: 000 means it's
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 not there, read bits mean it's readable, write bits mean it's
86 writable. */
Rusty Russellfddd5202009-06-12 21:46:57 -060087#define __module_param_call(prefix, name, set, get, arg, isbool, perm) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -080088 /* Default value instead of permissions? */ \
89 static int __param_perm_check_##name __attribute__((unused)) = \
Rusty Russell730b69d2008-10-22 10:00:22 -050090 BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \
91 + BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \
Jan Beulich22e48ea2007-10-16 23:29:34 -070092 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -080093 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +010094 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Rusty Russellfddd5202009-06-12 21:46:57 -060096 = { __param_str_##name, perm, isbool ? KPARAM_ISBOOL : 0, \
97 set, get, { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#define module_param_call(name, set, get, arg, perm) \
Rusty Russellfddd5202009-06-12 21:46:57 -0600100 __module_param_call(MODULE_PARAM_PREFIX, \
101 name, set, get, arg, \
102 __same_type(*(arg), bool), perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/* Helper functions: type is byte, short, ushort, int, uint, long,
105 ulong, charp, bool or invbool, or XXX if you define param_get_XXX,
106 param_set_XXX and param_check_XXX. */
107#define module_param_named(name, value, type, perm) \
108 param_check_##type(name, &(value)); \
109 module_param_call(name, param_set_##type, param_get_##type, &value, perm); \
110 __MODULE_PARM_TYPE(name, #type)
111
112#define module_param(name, type, perm) \
113 module_param_named(name, name, type, perm)
114
Rusty Russell67e67ce2008-10-22 10:00:23 -0500115#ifndef MODULE
116/**
117 * core_param - define a historical core kernel parameter.
118 * @name: the name of the cmdline and sysfs parameter (often the same as var)
119 * @var: the variable
120 * @type: the type (for param_set_##type and param_get_##type)
121 * @perm: visibility in sysfs
122 *
123 * core_param is just like module_param(), but cannot be modular and
124 * doesn't add a prefix (such as "printk."). This is for compatibility
125 * with __setup(), and it makes sense as truly core parameters aren't
126 * tied to the particular file they're in.
127 */
128#define core_param(name, var, type, perm) \
129 param_check_##type(name, &(var)); \
130 __module_param_call("", name, param_set_##type, param_get_##type, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600131 &var, __same_type(var, bool), perm)
Rusty Russell67e67ce2008-10-22 10:00:23 -0500132#endif /* !MODULE */
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/* Actually copy string: maxlen param is usually sizeof(string). */
135#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700136 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 = { len, string }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600138 __module_param_call(MODULE_PARAM_PREFIX, name, \
139 param_set_copystring, param_get_string, \
140 .str = &__param_string_##name, 0, perm); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 __MODULE_PARM_TYPE(name, "string")
142
143/* Called on module insert or kernel boot */
144extern int parse_args(const char *name,
145 char *args,
146 struct kernel_param *params,
147 unsigned num,
148 int (*unknown)(char *param, char *val));
149
Rusty Russelle180a6b2009-03-31 13:05:29 -0600150/* Called by module remove. */
151#ifdef CONFIG_SYSFS
152extern void destroy_params(const struct kernel_param *params, unsigned num);
153#else
154static inline void destroy_params(const struct kernel_param *params,
155 unsigned num)
156{
157}
158#endif /* !CONFIG_SYSFS */
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/* All the helper functions */
161/* The macros to do compile-time type checking stolen from Jakub
162 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
163#define __param_check(name, p, type) \
164 static inline type *__check_##name(void) { return(p); }
165
166extern int param_set_byte(const char *val, struct kernel_param *kp);
167extern int param_get_byte(char *buffer, struct kernel_param *kp);
168#define param_check_byte(name, p) __param_check(name, p, unsigned char)
169
170extern int param_set_short(const char *val, struct kernel_param *kp);
171extern int param_get_short(char *buffer, struct kernel_param *kp);
172#define param_check_short(name, p) __param_check(name, p, short)
173
174extern int param_set_ushort(const char *val, struct kernel_param *kp);
175extern int param_get_ushort(char *buffer, struct kernel_param *kp);
176#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
177
178extern int param_set_int(const char *val, struct kernel_param *kp);
179extern int param_get_int(char *buffer, struct kernel_param *kp);
180#define param_check_int(name, p) __param_check(name, p, int)
181
182extern int param_set_uint(const char *val, struct kernel_param *kp);
183extern int param_get_uint(char *buffer, struct kernel_param *kp);
184#define param_check_uint(name, p) __param_check(name, p, unsigned int)
185
186extern int param_set_long(const char *val, struct kernel_param *kp);
187extern int param_get_long(char *buffer, struct kernel_param *kp);
188#define param_check_long(name, p) __param_check(name, p, long)
189
190extern int param_set_ulong(const char *val, struct kernel_param *kp);
191extern int param_get_ulong(char *buffer, struct kernel_param *kp);
192#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
193
194extern int param_set_charp(const char *val, struct kernel_param *kp);
195extern int param_get_charp(char *buffer, struct kernel_param *kp);
196#define param_check_charp(name, p) __param_check(name, p, char *)
197
Rusty Russellfddd5202009-06-12 21:46:57 -0600198/* For historical reasons "bool" parameters can be (unsigned) "int". */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199extern int param_set_bool(const char *val, struct kernel_param *kp);
200extern int param_get_bool(char *buffer, struct kernel_param *kp);
Rusty Russellfddd5202009-06-12 21:46:57 -0600201#define param_check_bool(name, p) \
202 static inline void __check_##name(void) \
203 { \
204 BUILD_BUG_ON(!__same_type(*(p), bool) && \
205 !__same_type(*(p), unsigned int) && \
206 !__same_type(*(p), int)); \
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209extern int param_set_invbool(const char *val, struct kernel_param *kp);
210extern int param_get_invbool(char *buffer, struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600211#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/* Comma-separated array: *nump is set to number they actually specified. */
214#define module_param_array_named(name, array, type, nump, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700215 static const struct kparam_array __param_arr_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 = { ARRAY_SIZE(array), nump, param_set_##type, param_get_##type,\
217 sizeof(array[0]), array }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600218 __module_param_call(MODULE_PARAM_PREFIX, name, \
219 param_array_set, param_array_get, \
220 .arr = &__param_arr_##name, \
221 __same_type(array[0], bool), perm); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 __MODULE_PARM_TYPE(name, "array of " #type)
223
224#define module_param_array(name, type, nump, perm) \
225 module_param_array_named(name, name, type, nump, perm)
226
227extern int param_array_set(const char *val, struct kernel_param *kp);
228extern int param_array_get(char *buffer, struct kernel_param *kp);
229
230extern int param_set_copystring(const char *val, struct kernel_param *kp);
231extern int param_get_string(char *buffer, struct kernel_param *kp);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/* for exporting parameters in /sys/parameters */
234
235struct module;
236
Randy Dunlapef665c12007-02-13 15:19:06 -0800237#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238extern int module_param_sysfs_setup(struct module *mod,
239 struct kernel_param *kparam,
240 unsigned int num_params);
241
242extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800243#else
244static inline int module_param_sysfs_setup(struct module *mod,
245 struct kernel_param *kparam,
246 unsigned int num_params)
247{
248 return 0;
249}
250
251static inline void module_param_sysfs_remove(struct module *mod)
252{ }
253#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255#endif /* _LINUX_MODULE_PARAMS_H */