blob: 009a5f768768555ca43a73b00a36a5aeea7415cd [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
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042struct kernel_param {
43 const char *name;
Rusty Russell45fcc702009-06-12 21:46:56 -060044 u16 perm;
45 u16 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 param_set_fn set;
47 param_get_fn get;
Jan Beulich22e48ea2007-10-16 23:29:34 -070048 union {
49 void *arg;
50 const struct kparam_string *str;
51 const struct kparam_array *arr;
52 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
55/* Special one for strings we want to copy into */
56struct kparam_string {
57 unsigned int maxlen;
58 char *string;
59};
60
61/* Special one for arrays */
62struct kparam_array
63{
64 unsigned int max;
65 unsigned int *num;
66 param_set_fn set;
67 param_get_fn get;
68 unsigned int elemsize;
69 void *elem;
70};
71
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -080072/* On alpha, ia64 and ppc64 relocations to global data cannot go into
73 read-only sections (which is part of respective UNIX ABI on these
74 platforms). So 'const' makes no sense and even causes compile failures
75 with some compilers. */
76#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
77#define __moduleparam_const
78#else
79#define __moduleparam_const const
80#endif
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* This is the fundamental function for registering boot/module
Robert P. J. Day405ae7d2007-02-17 19:13:42 +010083 parameters. perm sets the visibility in sysfs: 000 means it's
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 not there, read bits mean it's readable, write bits mean it's
85 writable. */
86#define __module_param_call(prefix, name, set, get, arg, perm) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -080087 /* Default value instead of permissions? */ \
88 static int __param_perm_check_##name __attribute__((unused)) = \
Rusty Russell730b69d2008-10-22 10:00:22 -050089 BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \
90 + BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \
Jan Beulich22e48ea2007-10-16 23:29:34 -070091 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -080092 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +010093 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Rusty Russell45fcc702009-06-12 21:46:56 -060095 = { __param_str_##name, perm, 0, set, get, { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#define module_param_call(name, set, get, arg, perm) \
98 __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
99
100/* Helper functions: type is byte, short, ushort, int, uint, long,
101 ulong, charp, bool or invbool, or XXX if you define param_get_XXX,
102 param_set_XXX and param_check_XXX. */
103#define module_param_named(name, value, type, perm) \
104 param_check_##type(name, &(value)); \
105 module_param_call(name, param_set_##type, param_get_##type, &value, perm); \
106 __MODULE_PARM_TYPE(name, #type)
107
108#define module_param(name, type, perm) \
109 module_param_named(name, name, type, perm)
110
Rusty Russell67e67ce2008-10-22 10:00:23 -0500111#ifndef MODULE
112/**
113 * core_param - define a historical core kernel parameter.
114 * @name: the name of the cmdline and sysfs parameter (often the same as var)
115 * @var: the variable
116 * @type: the type (for param_set_##type and param_get_##type)
117 * @perm: visibility in sysfs
118 *
119 * core_param is just like module_param(), but cannot be modular and
120 * doesn't add a prefix (such as "printk."). This is for compatibility
121 * with __setup(), and it makes sense as truly core parameters aren't
122 * tied to the particular file they're in.
123 */
124#define core_param(name, var, type, perm) \
125 param_check_##type(name, &(var)); \
126 __module_param_call("", name, param_set_##type, param_get_##type, \
127 &var, perm)
128#endif /* !MODULE */
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/* Actually copy string: maxlen param is usually sizeof(string). */
131#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700132 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 = { len, string }; \
134 module_param_call(name, param_set_copystring, param_get_string, \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700135 .str = &__param_string_##name, perm); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 __MODULE_PARM_TYPE(name, "string")
137
138/* Called on module insert or kernel boot */
139extern int parse_args(const char *name,
140 char *args,
141 struct kernel_param *params,
142 unsigned num,
143 int (*unknown)(char *param, char *val));
144
Rusty Russelle180a6b2009-03-31 13:05:29 -0600145/* Called by module remove. */
146#ifdef CONFIG_SYSFS
147extern void destroy_params(const struct kernel_param *params, unsigned num);
148#else
149static inline void destroy_params(const struct kernel_param *params,
150 unsigned num)
151{
152}
153#endif /* !CONFIG_SYSFS */
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/* All the helper functions */
156/* The macros to do compile-time type checking stolen from Jakub
157 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
158#define __param_check(name, p, type) \
159 static inline type *__check_##name(void) { return(p); }
160
161extern int param_set_byte(const char *val, struct kernel_param *kp);
162extern int param_get_byte(char *buffer, struct kernel_param *kp);
163#define param_check_byte(name, p) __param_check(name, p, unsigned char)
164
165extern int param_set_short(const char *val, struct kernel_param *kp);
166extern int param_get_short(char *buffer, struct kernel_param *kp);
167#define param_check_short(name, p) __param_check(name, p, short)
168
169extern int param_set_ushort(const char *val, struct kernel_param *kp);
170extern int param_get_ushort(char *buffer, struct kernel_param *kp);
171#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
172
173extern int param_set_int(const char *val, struct kernel_param *kp);
174extern int param_get_int(char *buffer, struct kernel_param *kp);
175#define param_check_int(name, p) __param_check(name, p, int)
176
177extern int param_set_uint(const char *val, struct kernel_param *kp);
178extern int param_get_uint(char *buffer, struct kernel_param *kp);
179#define param_check_uint(name, p) __param_check(name, p, unsigned int)
180
181extern int param_set_long(const char *val, struct kernel_param *kp);
182extern int param_get_long(char *buffer, struct kernel_param *kp);
183#define param_check_long(name, p) __param_check(name, p, long)
184
185extern int param_set_ulong(const char *val, struct kernel_param *kp);
186extern int param_get_ulong(char *buffer, struct kernel_param *kp);
187#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
188
189extern int param_set_charp(const char *val, struct kernel_param *kp);
190extern int param_get_charp(char *buffer, struct kernel_param *kp);
191#define param_check_charp(name, p) __param_check(name, p, char *)
192
193extern int param_set_bool(const char *val, struct kernel_param *kp);
194extern int param_get_bool(char *buffer, struct kernel_param *kp);
195#define param_check_bool(name, p) __param_check(name, p, int)
196
197extern int param_set_invbool(const char *val, struct kernel_param *kp);
198extern int param_get_invbool(char *buffer, struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600199#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201/* Comma-separated array: *nump is set to number they actually specified. */
202#define module_param_array_named(name, array, type, nump, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700203 static const struct kparam_array __param_arr_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 = { ARRAY_SIZE(array), nump, param_set_##type, param_get_##type,\
205 sizeof(array[0]), array }; \
206 module_param_call(name, param_array_set, param_array_get, \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700207 .arr = &__param_arr_##name, perm); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 __MODULE_PARM_TYPE(name, "array of " #type)
209
210#define module_param_array(name, type, nump, perm) \
211 module_param_array_named(name, name, type, nump, perm)
212
213extern int param_array_set(const char *val, struct kernel_param *kp);
214extern int param_array_get(char *buffer, struct kernel_param *kp);
215
216extern int param_set_copystring(const char *val, struct kernel_param *kp);
217extern int param_get_string(char *buffer, struct kernel_param *kp);
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/* for exporting parameters in /sys/parameters */
220
221struct module;
222
Randy Dunlapef665c12007-02-13 15:19:06 -0800223#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224extern int module_param_sysfs_setup(struct module *mod,
225 struct kernel_param *kparam,
226 unsigned int num_params);
227
228extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800229#else
230static inline int module_param_sysfs_setup(struct module *mod,
231 struct kernel_param *kparam,
232 unsigned int num_params)
233{
234 return 0;
235}
236
237static inline void module_param_sysfs_remove(struct module *mod)
238{ }
239#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241#endif /* _LINUX_MODULE_PARAMS_H */