2005-04-17 02:20:36 +04:00
|
|
|
#ifndef _LINUX_MODULE_PARAMS_H
|
|
|
|
#define _LINUX_MODULE_PARAMS_H
|
|
|
|
/* (C) Copyright 2001, 2002 Rusty Russell IBM Corporation */
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/stringify.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
|
|
|
/* You can override this manually, but generally this should match the
|
|
|
|
module name. */
|
|
|
|
#ifdef MODULE
|
|
|
|
#define MODULE_PARAM_PREFIX /* empty */
|
|
|
|
#else
|
2006-01-06 23:17:50 +03:00
|
|
|
#define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
|
|
|
|
2008-10-22 19:00:22 +04:00
|
|
|
/* Chosen so that structs with an unsigned long line up. */
|
|
|
|
#define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef MODULE
|
|
|
|
#define ___module_cat(a,b) __mod_ ## a ## b
|
|
|
|
#define __module_cat(a,b) ___module_cat(a,b)
|
|
|
|
#define __MODULE_INFO(tag, name, info) \
|
|
|
|
static const char __module_cat(name,__LINE__)[] \
|
2008-01-25 00:16:20 +03:00
|
|
|
__used \
|
2005-04-17 02:20:36 +04:00
|
|
|
__attribute__((section(".modinfo"),unused)) = __stringify(tag) "=" info
|
|
|
|
#else /* !MODULE */
|
|
|
|
#define __MODULE_INFO(tag, name, info)
|
|
|
|
#endif
|
|
|
|
#define __MODULE_PARM_TYPE(name, _type) \
|
|
|
|
__MODULE_INFO(parmtype, name##type, #name ":" _type)
|
|
|
|
|
|
|
|
struct kernel_param;
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
struct kernel_param_ops {
|
|
|
|
/* Returns 0, or -errno. arg is in kp->arg. */
|
|
|
|
int (*set)(const char *val, const struct kernel_param *kp);
|
|
|
|
/* Returns length written or -errno. Buffer is 4k (ie. be short!) */
|
|
|
|
int (*get)(char *buffer, const struct kernel_param *kp);
|
2010-08-12 09:04:17 +04:00
|
|
|
/* Optional function to free kp->arg when module unloaded. */
|
|
|
|
void (*free)(void *arg);
|
2010-08-12 09:04:12 +04:00
|
|
|
};
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2009-06-13 07:46:56 +04:00
|
|
|
/* Flag bits for kernel_param.flags */
|
2009-06-13 07:46:57 +04:00
|
|
|
#define KPARAM_ISBOOL 2
|
2009-06-13 07:46:56 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
struct kernel_param {
|
|
|
|
const char *name;
|
2010-08-12 09:04:12 +04:00
|
|
|
const struct kernel_param_ops *ops;
|
2009-06-13 07:46:56 +04:00
|
|
|
u16 perm;
|
|
|
|
u16 flags;
|
2007-10-17 10:29:34 +04:00
|
|
|
union {
|
|
|
|
void *arg;
|
|
|
|
const struct kparam_string *str;
|
|
|
|
const struct kparam_array *arr;
|
|
|
|
};
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Special one for strings we want to copy into */
|
|
|
|
struct kparam_string {
|
|
|
|
unsigned int maxlen;
|
|
|
|
char *string;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Special one for arrays */
|
|
|
|
struct kparam_array
|
|
|
|
{
|
|
|
|
unsigned int max;
|
|
|
|
unsigned int *num;
|
2010-08-12 09:04:12 +04:00
|
|
|
const struct kernel_param_ops *ops;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned int elemsize;
|
|
|
|
void *elem;
|
|
|
|
};
|
|
|
|
|
2008-02-14 02:03:26 +03:00
|
|
|
/* On alpha, ia64 and ppc64 relocations to global data cannot go into
|
|
|
|
read-only sections (which is part of respective UNIX ABI on these
|
|
|
|
platforms). So 'const' makes no sense and even causes compile failures
|
|
|
|
with some compilers. */
|
|
|
|
#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
|
|
|
|
#define __moduleparam_const
|
|
|
|
#else
|
|
|
|
#define __moduleparam_const const
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* This is the fundamental function for registering boot/module
|
2007-02-17 21:13:42 +03:00
|
|
|
parameters. perm sets the visibility in sysfs: 000 means it's
|
2005-04-17 02:20:36 +04:00
|
|
|
not there, read bits mean it's readable, write bits mean it's
|
|
|
|
writable. */
|
2010-08-12 09:04:12 +04:00
|
|
|
#define __module_param_call(prefix, name, ops, arg, isbool, perm) \
|
[PATCH] Compile-time check re world-writeable module params
One of the mistakes a module_param() user can make is to supply default
value of module parameter as the last argument. module_param() accepts
permissions instead. If default value is, say, 3 (-------wx), parameter
becomes world-writeable.
So far, the only remedy was to apply grep(1) and read drivers submitted
to -mm. BTDT.
With this patch applied, compiler will finally do some job.
*) bounds checking on permissions
*) world-writeable bit checking on permissions
*) compile breakage if checks trigger
First version of this check (only "& 2" part) directly caught 4 out of 7
places during my last grep.
Subject: Neverending module_param() bugs
[X] drivers/acpi/sbs.c:101:module_param(capacity_mode, int, CAPACITY_UNIT);
[X] drivers/acpi/sbs.c:102:module_param(update_mode, int, UPDATE_MODE);
[ ] drivers/acpi/sbs.c:103:module_param(update_info_mode, int, UPDATE_INFO_MODE);
[ ] drivers/acpi/sbs.c:104:module_param(update_time, int, UPDATE_TIME);
[ ] drivers/acpi/sbs.c:105:module_param(update_time2, int, UPDATE_TIME2);
[X] drivers/char/watchdog/sbc8360.c:203:module_param(timeout, int, 27);
[X] drivers/media/video/tuner-simple.c:13:module_param(offset, int, 0666);
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-12-07 07:36:56 +03:00
|
|
|
/* Default value instead of permissions? */ \
|
|
|
|
static int __param_perm_check_##name __attribute__((unused)) = \
|
2008-10-22 19:00:22 +04:00
|
|
|
BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \
|
|
|
|
+ BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \
|
2007-10-17 10:29:34 +04:00
|
|
|
static const char __param_str_##name[] = prefix #name; \
|
2008-02-14 02:03:26 +03:00
|
|
|
static struct kernel_param __moduleparam_const __param_##name \
|
2008-01-25 00:16:20 +03:00
|
|
|
__used \
|
2005-04-17 02:20:36 +04:00
|
|
|
__attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
|
2010-08-12 09:04:12 +04:00
|
|
|
= { __param_str_##name, ops, perm, isbool ? KPARAM_ISBOOL : 0, \
|
|
|
|
{ arg } }
|
|
|
|
|
|
|
|
/* Obsolete - use module_param_cb() */
|
|
|
|
#define module_param_call(name, set, get, arg, perm) \
|
|
|
|
static struct kernel_param_ops __param_ops_##name = \
|
|
|
|
{ (void *)set, (void *)get }; \
|
|
|
|
__module_param_call(MODULE_PARAM_PREFIX, \
|
|
|
|
name, &__param_ops_##name, arg, \
|
|
|
|
__same_type(*(arg), bool), \
|
|
|
|
(perm) + sizeof(__check_old_set_param(set))*0)
|
|
|
|
|
|
|
|
/* We don't get oldget: it's often a new-style param_get_uint, etc. */
|
|
|
|
static inline int
|
|
|
|
__check_old_set_param(int (*oldset)(const char *, struct kernel_param *))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
#define module_param_cb(name, ops, arg, perm) \
|
2009-06-13 07:46:57 +04:00
|
|
|
__module_param_call(MODULE_PARAM_PREFIX, \
|
2010-08-12 09:04:12 +04:00
|
|
|
name, ops, arg, __same_type(*(arg), bool), perm)
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
/*
|
|
|
|
* Helper functions: type is byte, short, ushort, int, uint, long,
|
|
|
|
* ulong, charp, bool or invbool, or XXX if you define param_ops_XXX
|
|
|
|
* and param_check_XXX.
|
|
|
|
*/
|
2005-04-17 02:20:36 +04:00
|
|
|
#define module_param_named(name, value, type, perm) \
|
|
|
|
param_check_##type(name, &(value)); \
|
2010-08-12 09:04:12 +04:00
|
|
|
module_param_cb(name, ¶m_ops_##type, &value, perm); \
|
2005-04-17 02:20:36 +04:00
|
|
|
__MODULE_PARM_TYPE(name, #type)
|
|
|
|
|
|
|
|
#define module_param(name, type, perm) \
|
|
|
|
module_param_named(name, name, type, perm)
|
|
|
|
|
2008-10-22 19:00:23 +04:00
|
|
|
#ifndef MODULE
|
|
|
|
/**
|
|
|
|
* core_param - define a historical core kernel parameter.
|
|
|
|
* @name: the name of the cmdline and sysfs parameter (often the same as var)
|
|
|
|
* @var: the variable
|
|
|
|
* @type: the type (for param_set_##type and param_get_##type)
|
|
|
|
* @perm: visibility in sysfs
|
|
|
|
*
|
|
|
|
* core_param is just like module_param(), but cannot be modular and
|
|
|
|
* doesn't add a prefix (such as "printk."). This is for compatibility
|
|
|
|
* with __setup(), and it makes sense as truly core parameters aren't
|
|
|
|
* tied to the particular file they're in.
|
|
|
|
*/
|
|
|
|
#define core_param(name, var, type, perm) \
|
|
|
|
param_check_##type(name, &(var)); \
|
2010-08-12 09:04:12 +04:00
|
|
|
__module_param_call("", name, ¶m_ops_##type, \
|
2009-06-13 07:46:57 +04:00
|
|
|
&var, __same_type(var, bool), perm)
|
2008-10-22 19:00:23 +04:00
|
|
|
#endif /* !MODULE */
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* Actually copy string: maxlen param is usually sizeof(string). */
|
|
|
|
#define module_param_string(name, string, len, perm) \
|
2007-10-17 10:29:34 +04:00
|
|
|
static const struct kparam_string __param_string_##name \
|
2005-04-17 02:20:36 +04:00
|
|
|
= { len, string }; \
|
2009-06-13 07:46:57 +04:00
|
|
|
__module_param_call(MODULE_PARAM_PREFIX, name, \
|
2010-08-12 09:04:12 +04:00
|
|
|
¶m_ops_string, \
|
2009-06-13 07:46:57 +04:00
|
|
|
.str = &__param_string_##name, 0, perm); \
|
2005-04-17 02:20:36 +04:00
|
|
|
__MODULE_PARM_TYPE(name, "string")
|
|
|
|
|
|
|
|
/* Called on module insert or kernel boot */
|
|
|
|
extern int parse_args(const char *name,
|
|
|
|
char *args,
|
2010-08-12 09:04:18 +04:00
|
|
|
const struct kernel_param *params,
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned num,
|
|
|
|
int (*unknown)(char *param, char *val));
|
|
|
|
|
2009-03-31 23:05:29 +04:00
|
|
|
/* Called by module remove. */
|
|
|
|
#ifdef CONFIG_SYSFS
|
|
|
|
extern void destroy_params(const struct kernel_param *params, unsigned num);
|
|
|
|
#else
|
|
|
|
static inline void destroy_params(const struct kernel_param *params,
|
|
|
|
unsigned num)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* !CONFIG_SYSFS */
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* All the helper functions */
|
|
|
|
/* The macros to do compile-time type checking stolen from Jakub
|
|
|
|
Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
|
|
|
|
#define __param_check(name, p, type) \
|
|
|
|
static inline type *__check_##name(void) { return(p); }
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_byte;
|
|
|
|
extern int param_set_byte(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_byte(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_byte(name, p) __param_check(name, p, unsigned char)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_short;
|
|
|
|
extern int param_set_short(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_short(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_short(name, p) __param_check(name, p, short)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_ushort;
|
|
|
|
extern int param_set_ushort(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_int;
|
|
|
|
extern int param_set_int(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_int(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_int(name, p) __param_check(name, p, int)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_uint;
|
|
|
|
extern int param_set_uint(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_uint(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_uint(name, p) __param_check(name, p, unsigned int)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_long;
|
|
|
|
extern int param_set_long(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_long(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_long(name, p) __param_check(name, p, long)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_ulong;
|
|
|
|
extern int param_set_ulong(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_charp;
|
|
|
|
extern int param_set_charp(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_charp(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
#define param_check_charp(name, p) __param_check(name, p, char *)
|
|
|
|
|
2009-06-13 07:46:57 +04:00
|
|
|
/* For historical reasons "bool" parameters can be (unsigned) "int". */
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_bool;
|
|
|
|
extern int param_set_bool(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_bool(char *buffer, const struct kernel_param *kp);
|
2009-06-13 07:46:57 +04:00
|
|
|
#define param_check_bool(name, p) \
|
|
|
|
static inline void __check_##name(void) \
|
|
|
|
{ \
|
|
|
|
BUILD_BUG_ON(!__same_type(*(p), bool) && \
|
|
|
|
!__same_type(*(p), unsigned int) && \
|
|
|
|
!__same_type(*(p), int)); \
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_invbool;
|
|
|
|
extern int param_set_invbool(const char *val, const struct kernel_param *kp);
|
|
|
|
extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
|
2009-06-13 07:46:53 +04:00
|
|
|
#define param_check_invbool(name, p) __param_check(name, p, bool)
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* Comma-separated array: *nump is set to number they actually specified. */
|
|
|
|
#define module_param_array_named(name, array, type, nump, perm) \
|
2007-10-17 10:29:34 +04:00
|
|
|
static const struct kparam_array __param_arr_##name \
|
2010-08-12 09:04:12 +04:00
|
|
|
= { ARRAY_SIZE(array), nump, ¶m_ops_##type, \
|
2005-04-17 02:20:36 +04:00
|
|
|
sizeof(array[0]), array }; \
|
2009-06-13 07:46:57 +04:00
|
|
|
__module_param_call(MODULE_PARAM_PREFIX, name, \
|
2010-08-12 09:04:12 +04:00
|
|
|
¶m_array_ops, \
|
2009-06-13 07:46:57 +04:00
|
|
|
.arr = &__param_arr_##name, \
|
|
|
|
__same_type(array[0], bool), perm); \
|
2005-04-17 02:20:36 +04:00
|
|
|
__MODULE_PARM_TYPE(name, "array of " #type)
|
|
|
|
|
|
|
|
#define module_param_array(name, type, nump, perm) \
|
|
|
|
module_param_array_named(name, name, type, nump, perm)
|
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_array_ops;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-08-12 09:04:12 +04:00
|
|
|
extern struct kernel_param_ops param_ops_string;
|
|
|
|
extern int param_set_copystring(const char *val, const struct kernel_param *);
|
|
|
|
extern int param_get_string(char *buffer, const struct kernel_param *kp);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* for exporting parameters in /sys/parameters */
|
|
|
|
|
|
|
|
struct module;
|
|
|
|
|
2007-02-14 02:19:06 +03:00
|
|
|
#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
|
2005-04-17 02:20:36 +04:00
|
|
|
extern int module_param_sysfs_setup(struct module *mod,
|
2010-08-12 09:04:12 +04:00
|
|
|
const struct kernel_param *kparam,
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned int num_params);
|
|
|
|
|
|
|
|
extern void module_param_sysfs_remove(struct module *mod);
|
2007-02-14 02:19:06 +03:00
|
|
|
#else
|
|
|
|
static inline int module_param_sysfs_setup(struct module *mod,
|
2010-08-12 09:04:12 +04:00
|
|
|
const struct kernel_param *kparam,
|
2007-02-14 02:19:06 +03:00
|
|
|
unsigned int num_params)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void module_param_sysfs_remove(struct module *mod)
|
|
|
|
{ }
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#endif /* _LINUX_MODULE_PARAMS_H */
|