moduleparam.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. #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. /* You can override this manually, but generally this should match the
  8. module name. */
  9. #ifdef MODULE
  10. #define MODULE_PARAM_PREFIX /* empty */
  11. #else
  12. #define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
  13. #endif
  14. /* Chosen so that structs with an unsigned long line up. */
  15. #define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
  16. #ifdef MODULE
  17. #define ___module_cat(a,b) __mod_ ## a ## b
  18. #define __module_cat(a,b) ___module_cat(a,b)
  19. #define __MODULE_INFO(tag, name, info) \
  20. static const char __module_cat(name,__LINE__)[] \
  21. __used \
  22. __attribute__((section(".modinfo"),unused)) = __stringify(tag) "=" info
  23. #else /* !MODULE */
  24. #define __MODULE_INFO(tag, name, info)
  25. #endif
  26. #define __MODULE_PARM_TYPE(name, _type) \
  27. __MODULE_INFO(parmtype, name##type, #name ":" _type)
  28. struct kernel_param;
  29. /* Returns 0, or -errno. arg is in kp->arg. */
  30. typedef int (*param_set_fn)(const char *val, struct kernel_param *kp);
  31. /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
  32. typedef int (*param_get_fn)(char *buffer, struct kernel_param *kp);
  33. /* Flag bits for kernel_param.flags */
  34. #define KPARAM_KMALLOCED 1
  35. #define KPARAM_ISBOOL 2
  36. struct kernel_param {
  37. const char *name;
  38. u16 perm;
  39. u16 flags;
  40. param_set_fn set;
  41. param_get_fn get;
  42. union {
  43. void *arg;
  44. const struct kparam_string *str;
  45. const struct kparam_array *arr;
  46. };
  47. };
  48. /* Special one for strings we want to copy into */
  49. struct kparam_string {
  50. unsigned int maxlen;
  51. char *string;
  52. };
  53. /* Special one for arrays */
  54. struct kparam_array
  55. {
  56. unsigned int max;
  57. unsigned int *num;
  58. param_set_fn set;
  59. param_get_fn get;
  60. unsigned int elemsize;
  61. void *elem;
  62. };
  63. /* On alpha, ia64 and ppc64 relocations to global data cannot go into
  64. read-only sections (which is part of respective UNIX ABI on these
  65. platforms). So 'const' makes no sense and even causes compile failures
  66. with some compilers. */
  67. #if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
  68. #define __moduleparam_const
  69. #else
  70. #define __moduleparam_const const
  71. #endif
  72. /* This is the fundamental function for registering boot/module
  73. parameters. perm sets the visibility in sysfs: 000 means it's
  74. not there, read bits mean it's readable, write bits mean it's
  75. writable. */
  76. #define __module_param_call(prefix, name, set, get, arg, isbool, perm) \
  77. /* Default value instead of permissions? */ \
  78. static int __param_perm_check_##name __attribute__((unused)) = \
  79. BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \
  80. + BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \
  81. static const char __param_str_##name[] = prefix #name; \
  82. static struct kernel_param __moduleparam_const __param_##name \
  83. __used \
  84. __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
  85. = { __param_str_##name, perm, isbool ? KPARAM_ISBOOL : 0, \
  86. set, get, { arg } }
  87. #define module_param_call(name, set, get, arg, perm) \
  88. __module_param_call(MODULE_PARAM_PREFIX, \
  89. name, set, get, arg, \
  90. __same_type(*(arg), bool), perm)
  91. /* Helper functions: type is byte, short, ushort, int, uint, long,
  92. ulong, charp, bool or invbool, or XXX if you define param_get_XXX,
  93. param_set_XXX and param_check_XXX. */
  94. #define module_param_named(name, value, type, perm) \
  95. param_check_##type(name, &(value)); \
  96. module_param_call(name, param_set_##type, param_get_##type, &value, perm); \
  97. __MODULE_PARM_TYPE(name, #type)
  98. #define module_param(name, type, perm) \
  99. module_param_named(name, name, type, perm)
  100. #ifndef MODULE
  101. /**
  102. * core_param - define a historical core kernel parameter.
  103. * @name: the name of the cmdline and sysfs parameter (often the same as var)
  104. * @var: the variable
  105. * @type: the type (for param_set_##type and param_get_##type)
  106. * @perm: visibility in sysfs
  107. *
  108. * core_param is just like module_param(), but cannot be modular and
  109. * doesn't add a prefix (such as "printk."). This is for compatibility
  110. * with __setup(), and it makes sense as truly core parameters aren't
  111. * tied to the particular file they're in.
  112. */
  113. #define core_param(name, var, type, perm) \
  114. param_check_##type(name, &(var)); \
  115. __module_param_call("", name, param_set_##type, param_get_##type, \
  116. &var, __same_type(var, bool), perm)
  117. #endif /* !MODULE */
  118. /* Actually copy string: maxlen param is usually sizeof(string). */
  119. #define module_param_string(name, string, len, perm) \
  120. static const struct kparam_string __param_string_##name \
  121. = { len, string }; \
  122. __module_param_call(MODULE_PARAM_PREFIX, name, \
  123. param_set_copystring, param_get_string, \
  124. .str = &__param_string_##name, 0, perm); \
  125. __MODULE_PARM_TYPE(name, "string")
  126. /* Called on module insert or kernel boot */
  127. extern int parse_args(const char *name,
  128. char *args,
  129. struct kernel_param *params,
  130. unsigned num,
  131. int (*unknown)(char *param, char *val));
  132. /* Called by module remove. */
  133. #ifdef CONFIG_SYSFS
  134. extern void destroy_params(const struct kernel_param *params, unsigned num);
  135. #else
  136. static inline void destroy_params(const struct kernel_param *params,
  137. unsigned num)
  138. {
  139. }
  140. #endif /* !CONFIG_SYSFS */
  141. /* All the helper functions */
  142. /* The macros to do compile-time type checking stolen from Jakub
  143. Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
  144. #define __param_check(name, p, type) \
  145. static inline type *__check_##name(void) { return(p); }
  146. extern int param_set_byte(const char *val, struct kernel_param *kp);
  147. extern int param_get_byte(char *buffer, struct kernel_param *kp);
  148. #define param_check_byte(name, p) __param_check(name, p, unsigned char)
  149. extern int param_set_short(const char *val, struct kernel_param *kp);
  150. extern int param_get_short(char *buffer, struct kernel_param *kp);
  151. #define param_check_short(name, p) __param_check(name, p, short)
  152. extern int param_set_ushort(const char *val, struct kernel_param *kp);
  153. extern int param_get_ushort(char *buffer, struct kernel_param *kp);
  154. #define param_check_ushort(name, p) __param_check(name, p, unsigned short)
  155. extern int param_set_int(const char *val, struct kernel_param *kp);
  156. extern int param_get_int(char *buffer, struct kernel_param *kp);
  157. #define param_check_int(name, p) __param_check(name, p, int)
  158. extern int param_set_uint(const char *val, struct kernel_param *kp);
  159. extern int param_get_uint(char *buffer, struct kernel_param *kp);
  160. #define param_check_uint(name, p) __param_check(name, p, unsigned int)
  161. extern int param_set_long(const char *val, struct kernel_param *kp);
  162. extern int param_get_long(char *buffer, struct kernel_param *kp);
  163. #define param_check_long(name, p) __param_check(name, p, long)
  164. extern int param_set_ulong(const char *val, struct kernel_param *kp);
  165. extern int param_get_ulong(char *buffer, struct kernel_param *kp);
  166. #define param_check_ulong(name, p) __param_check(name, p, unsigned long)
  167. extern int param_set_charp(const char *val, struct kernel_param *kp);
  168. extern int param_get_charp(char *buffer, struct kernel_param *kp);
  169. #define param_check_charp(name, p) __param_check(name, p, char *)
  170. /* For historical reasons "bool" parameters can be (unsigned) "int". */
  171. extern int param_set_bool(const char *val, struct kernel_param *kp);
  172. extern int param_get_bool(char *buffer, struct kernel_param *kp);
  173. #define param_check_bool(name, p) \
  174. static inline void __check_##name(void) \
  175. { \
  176. BUILD_BUG_ON(!__same_type(*(p), bool) && \
  177. !__same_type(*(p), unsigned int) && \
  178. !__same_type(*(p), int)); \
  179. }
  180. extern int param_set_invbool(const char *val, struct kernel_param *kp);
  181. extern int param_get_invbool(char *buffer, struct kernel_param *kp);
  182. #define param_check_invbool(name, p) __param_check(name, p, bool)
  183. /* Comma-separated array: *nump is set to number they actually specified. */
  184. #define module_param_array_named(name, array, type, nump, perm) \
  185. static const struct kparam_array __param_arr_##name \
  186. = { ARRAY_SIZE(array), nump, param_set_##type, param_get_##type,\
  187. sizeof(array[0]), array }; \
  188. __module_param_call(MODULE_PARAM_PREFIX, name, \
  189. param_array_set, param_array_get, \
  190. .arr = &__param_arr_##name, \
  191. __same_type(array[0], bool), perm); \
  192. __MODULE_PARM_TYPE(name, "array of " #type)
  193. #define module_param_array(name, type, nump, perm) \
  194. module_param_array_named(name, name, type, nump, perm)
  195. extern int param_array_set(const char *val, struct kernel_param *kp);
  196. extern int param_array_get(char *buffer, struct kernel_param *kp);
  197. extern int param_set_copystring(const char *val, struct kernel_param *kp);
  198. extern int param_get_string(char *buffer, struct kernel_param *kp);
  199. /* for exporting parameters in /sys/parameters */
  200. struct module;
  201. #if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
  202. extern int module_param_sysfs_setup(struct module *mod,
  203. struct kernel_param *kparam,
  204. unsigned int num_params);
  205. extern void module_param_sysfs_remove(struct module *mod);
  206. #else
  207. static inline int module_param_sysfs_setup(struct module *mod,
  208. struct kernel_param *kparam,
  209. unsigned int num_params)
  210. {
  211. return 0;
  212. }
  213. static inline void module_param_sysfs_remove(struct module *mod)
  214. { }
  215. #endif
  216. #endif /* _LINUX_MODULE_PARAMS_H */