blob: ca74a3402d6390d6f3aceb4dc64d64c8d57c0792 [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
Rusty Russell9bbb9e52010-08-11 23:04:12 -060034struct kernel_param_ops {
35 /* Returns 0, or -errno. arg is in kp->arg. */
36 int (*set)(const char *val, const struct kernel_param *kp);
37 /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
38 int (*get)(char *buffer, const struct kernel_param *kp);
Rusty Russelle6df34a2010-08-11 23:04:17 -060039 /* Optional function to free kp->arg when module unloaded. */
40 void (*free)(void *arg);
Rusty Russell9bbb9e52010-08-11 23:04:12 -060041};
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Rusty Russell45fcc702009-06-12 21:46:56 -060043/* Flag bits for kernel_param.flags */
Rusty Russellfddd5202009-06-12 21:46:57 -060044#define KPARAM_ISBOOL 2
Rusty Russell45fcc702009-06-12 21:46:56 -060045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046struct kernel_param {
47 const char *name;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060048 const struct kernel_param_ops *ops;
Rusty Russell45fcc702009-06-12 21:46:56 -060049 u16 perm;
50 u16 flags;
Jan Beulich22e48ea2007-10-16 23:29:34 -070051 union {
52 void *arg;
53 const struct kparam_string *str;
54 const struct kparam_array *arr;
55 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
58/* Special one for strings we want to copy into */
59struct kparam_string {
60 unsigned int maxlen;
61 char *string;
62};
63
64/* Special one for arrays */
65struct kparam_array
66{
67 unsigned int max;
68 unsigned int *num;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060069 const struct kernel_param_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 unsigned int elemsize;
71 void *elem;
72};
73
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -080074/* On alpha, ia64 and ppc64 relocations to global data cannot go into
75 read-only sections (which is part of respective UNIX ABI on these
76 platforms). So 'const' makes no sense and even causes compile failures
77 with some compilers. */
78#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
79#define __moduleparam_const
80#else
81#define __moduleparam_const const
82#endif
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* This is the fundamental function for registering boot/module
Robert P. J. Day405ae7d2007-02-17 19:13:42 +010085 parameters. perm sets the visibility in sysfs: 000 means it's
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 not there, read bits mean it's readable, write bits mean it's
87 writable. */
Rusty Russell9bbb9e52010-08-11 23:04:12 -060088#define __module_param_call(prefix, name, ops, arg, isbool, perm) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -080089 /* Default value instead of permissions? */ \
90 static int __param_perm_check_##name __attribute__((unused)) = \
Rusty Russell730b69d2008-10-22 10:00:22 -050091 BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \
92 + BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \
Jan Beulich22e48ea2007-10-16 23:29:34 -070093 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -080094 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +010095 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Rusty Russell9bbb9e52010-08-11 23:04:12 -060097 = { __param_str_##name, ops, perm, isbool ? KPARAM_ISBOOL : 0, \
98 { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600100/* Obsolete - use module_param_cb() */
101#define module_param_call(name, set, get, arg, perm) \
102 static struct kernel_param_ops __param_ops_##name = \
103 { (void *)set, (void *)get }; \
104 __module_param_call(MODULE_PARAM_PREFIX, \
105 name, &__param_ops_##name, arg, \
106 __same_type(*(arg), bool), \
107 (perm) + sizeof(__check_old_set_param(set))*0)
108
109/* We don't get oldget: it's often a new-style param_get_uint, etc. */
110static inline int
111__check_old_set_param(int (*oldset)(const char *, struct kernel_param *))
112{
113 return 0;
114}
115
116#define module_param_cb(name, ops, arg, perm) \
Rusty Russellfddd5202009-06-12 21:46:57 -0600117 __module_param_call(MODULE_PARAM_PREFIX, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600118 name, ops, arg, __same_type(*(arg), bool), perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600120/*
121 * Helper functions: type is byte, short, ushort, int, uint, long,
122 * ulong, charp, bool or invbool, or XXX if you define param_ops_XXX
123 * and param_check_XXX.
124 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#define module_param_named(name, value, type, perm) \
126 param_check_##type(name, &(value)); \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600127 module_param_cb(name, &param_ops_##type, &value, perm); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 __MODULE_PARM_TYPE(name, #type)
129
130#define module_param(name, type, perm) \
131 module_param_named(name, name, type, perm)
132
Rusty Russell907b29e2010-08-11 23:04:19 -0600133/**
134 * kparam_block_sysfs_write - make sure a parameter isn't written via sysfs.
135 * @name: the name of the parameter
136 *
137 * There's no point blocking write on a paramter that isn't writable via sysfs!
138 */
139#define kparam_block_sysfs_write(name) \
140 do { \
141 BUG_ON(!(__param_##name.perm & 0222)); \
142 __kernel_param_lock(); \
143 } while (0)
144
145/**
146 * kparam_unblock_sysfs_write - allows sysfs to write to a parameter again.
147 * @name: the name of the parameter
148 */
149#define kparam_unblock_sysfs_write(name) \
150 do { \
151 BUG_ON(!(__param_##name.perm & 0222)); \
152 __kernel_param_unlock(); \
153 } while (0)
154
155/**
156 * kparam_block_sysfs_read - make sure a parameter isn't read via sysfs.
157 * @name: the name of the parameter
158 *
159 * This also blocks sysfs writes.
160 */
161#define kparam_block_sysfs_read(name) \
162 do { \
163 BUG_ON(!(__param_##name.perm & 0444)); \
164 __kernel_param_lock(); \
165 } while (0)
166
167/**
168 * kparam_unblock_sysfs_read - allows sysfs to read a parameter again.
169 * @name: the name of the parameter
170 */
171#define kparam_unblock_sysfs_read(name) \
172 do { \
173 BUG_ON(!(__param_##name.perm & 0444)); \
174 __kernel_param_unlock(); \
175 } while (0)
176
177#ifdef CONFIG_SYSFS
178extern void __kernel_param_lock(void);
179extern void __kernel_param_unlock(void);
180#else
181static inline void __kernel_param_lock(void)
182{
183}
184static inline void __kernel_param_unlock(void)
185{
186}
187#endif
188
Rusty Russell67e67ce2008-10-22 10:00:23 -0500189#ifndef MODULE
190/**
191 * core_param - define a historical core kernel parameter.
192 * @name: the name of the cmdline and sysfs parameter (often the same as var)
193 * @var: the variable
194 * @type: the type (for param_set_##type and param_get_##type)
195 * @perm: visibility in sysfs
196 *
197 * core_param is just like module_param(), but cannot be modular and
198 * doesn't add a prefix (such as "printk."). This is for compatibility
199 * with __setup(), and it makes sense as truly core parameters aren't
200 * tied to the particular file they're in.
201 */
202#define core_param(name, var, type, perm) \
203 param_check_##type(name, &(var)); \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600204 __module_param_call("", name, &param_ops_##type, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600205 &var, __same_type(var, bool), perm)
Rusty Russell67e67ce2008-10-22 10:00:23 -0500206#endif /* !MODULE */
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/* Actually copy string: maxlen param is usually sizeof(string). */
209#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700210 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 = { len, string }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600212 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600213 &param_ops_string, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600214 .str = &__param_string_##name, 0, perm); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 __MODULE_PARM_TYPE(name, "string")
216
217/* Called on module insert or kernel boot */
218extern int parse_args(const char *name,
219 char *args,
Rusty Russell914dcaa2010-08-11 23:04:18 -0600220 const struct kernel_param *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 unsigned num,
222 int (*unknown)(char *param, char *val));
223
Rusty Russelle180a6b2009-03-31 13:05:29 -0600224/* Called by module remove. */
225#ifdef CONFIG_SYSFS
226extern void destroy_params(const struct kernel_param *params, unsigned num);
227#else
228static inline void destroy_params(const struct kernel_param *params,
229 unsigned num)
230{
231}
232#endif /* !CONFIG_SYSFS */
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/* All the helper functions */
235/* The macros to do compile-time type checking stolen from Jakub
236 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
237#define __param_check(name, p, type) \
238 static inline type *__check_##name(void) { return(p); }
239
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600240extern struct kernel_param_ops param_ops_byte;
241extern int param_set_byte(const char *val, const struct kernel_param *kp);
242extern int param_get_byte(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#define param_check_byte(name, p) __param_check(name, p, unsigned char)
244
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600245extern struct kernel_param_ops param_ops_short;
246extern int param_set_short(const char *val, const struct kernel_param *kp);
247extern int param_get_short(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#define param_check_short(name, p) __param_check(name, p, short)
249
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600250extern struct kernel_param_ops param_ops_ushort;
251extern int param_set_ushort(const char *val, const struct kernel_param *kp);
252extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
254
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600255extern struct kernel_param_ops param_ops_int;
256extern int param_set_int(const char *val, const struct kernel_param *kp);
257extern int param_get_int(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#define param_check_int(name, p) __param_check(name, p, int)
259
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600260extern struct kernel_param_ops param_ops_uint;
261extern int param_set_uint(const char *val, const struct kernel_param *kp);
262extern int param_get_uint(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263#define param_check_uint(name, p) __param_check(name, p, unsigned int)
264
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600265extern struct kernel_param_ops param_ops_long;
266extern int param_set_long(const char *val, const struct kernel_param *kp);
267extern int param_get_long(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#define param_check_long(name, p) __param_check(name, p, long)
269
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600270extern struct kernel_param_ops param_ops_ulong;
271extern int param_set_ulong(const char *val, const struct kernel_param *kp);
272extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
274
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600275extern struct kernel_param_ops param_ops_charp;
276extern int param_set_charp(const char *val, const struct kernel_param *kp);
277extern int param_get_charp(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278#define param_check_charp(name, p) __param_check(name, p, char *)
279
Rusty Russellfddd5202009-06-12 21:46:57 -0600280/* For historical reasons "bool" parameters can be (unsigned) "int". */
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600281extern struct kernel_param_ops param_ops_bool;
282extern int param_set_bool(const char *val, const struct kernel_param *kp);
283extern int param_get_bool(char *buffer, const struct kernel_param *kp);
Rusty Russellfddd5202009-06-12 21:46:57 -0600284#define param_check_bool(name, p) \
285 static inline void __check_##name(void) \
286 { \
287 BUILD_BUG_ON(!__same_type(*(p), bool) && \
288 !__same_type(*(p), unsigned int) && \
289 !__same_type(*(p), int)); \
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600292extern struct kernel_param_ops param_ops_invbool;
293extern int param_set_invbool(const char *val, const struct kernel_param *kp);
294extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600295#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297/* Comma-separated array: *nump is set to number they actually specified. */
298#define module_param_array_named(name, array, type, nump, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700299 static const struct kparam_array __param_arr_##name \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600300 = { ARRAY_SIZE(array), nump, &param_ops_##type, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 sizeof(array[0]), array }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600302 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600303 &param_array_ops, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600304 .arr = &__param_arr_##name, \
305 __same_type(array[0], bool), perm); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 __MODULE_PARM_TYPE(name, "array of " #type)
307
308#define module_param_array(name, type, nump, perm) \
309 module_param_array_named(name, name, type, nump, perm)
310
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600311extern struct kernel_param_ops param_array_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600313extern struct kernel_param_ops param_ops_string;
314extern int param_set_copystring(const char *val, const struct kernel_param *);
315extern int param_get_string(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/* for exporting parameters in /sys/parameters */
318
319struct module;
320
Randy Dunlapef665c12007-02-13 15:19:06 -0800321#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322extern int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600323 const struct kernel_param *kparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unsigned int num_params);
325
326extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800327#else
328static inline int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600329 const struct kernel_param *kparam,
Randy Dunlapef665c12007-02-13 15:19:06 -0800330 unsigned int num_params)
331{
332 return 0;
333}
334
335static inline void module_param_sysfs_remove(struct module *mod)
336{ }
337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339#endif /* _LINUX_MODULE_PARAMS_H */