blob: b43f4752304e26410a0a870a6d8a15edd48058fd [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 Walleijb75be422011-01-05 13:27:04 +010019#ifdef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103021static const char __UNIQUE_ID(name)[] \
Jan Beulichb6472772010-10-26 14:22:26 -070022 __used __attribute__((section(".modinfo"), unused, aligned(1))) \
23 = __stringify(tag) "=" info
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#else /* !MODULE */
Linus Walleijb75be422011-01-05 13:27:04 +010025/* This struct is here for syntactic coherency, it is not used */
26#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103027 struct __UNIQUE_ID(name) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#endif
29#define __MODULE_PARM_TYPE(name, _type) \
30 __MODULE_INFO(parmtype, name##type, #name ":" _type)
31
Paul Gortmaker639938e2011-08-30 11:24:44 -040032/* One for each parameter, describing how to use it. Some files do
33 multiple of these per line, so can't just use MODULE_INFO. */
34#define MODULE_PARM_DESC(_parm, desc) \
35 __MODULE_INFO(parm, _parm, #_parm ":" desc)
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037struct kernel_param;
38
Steven Rostedtab013c52013-08-20 15:33:19 +093039/*
40 * Flags available for kernel_param_ops
41 *
42 * NOARG - the parameter allows for no argument (foo instead of foo=1)
43 */
44enum {
Jani Nikula6a4c2642014-08-27 06:21:23 +093045 KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
Steven Rostedtab013c52013-08-20 15:33:19 +093046};
47
Rusty Russell9bbb9e52010-08-11 23:04:12 -060048struct kernel_param_ops {
Steven Rostedtab013c52013-08-20 15:33:19 +093049 /* How the ops should behave */
50 unsigned int flags;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060051 /* Returns 0, or -errno. arg is in kp->arg. */
52 int (*set)(const char *val, const struct kernel_param *kp);
53 /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
54 int (*get)(char *buffer, const struct kernel_param *kp);
Rusty Russelle6df34a2010-08-11 23:04:17 -060055 /* Optional function to free kp->arg when module unloaded. */
56 void (*free)(void *arg);
Rusty Russell9bbb9e52010-08-11 23:04:12 -060057};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Jani Nikula91f9d332014-08-27 06:22:23 +093059/*
60 * Flags available for kernel_param
61 *
62 * UNSAFE - the parameter is dangerous and setting it will taint the kernel
63 */
64enum {
65 KERNEL_PARAM_FL_UNSAFE = (1 << 0)
66};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct kernel_param {
69 const char *name;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060070 const struct kernel_param_ops *ops;
Rusty Russell45fcc702009-06-12 21:46:56 -060071 u16 perm;
Jani Nikula91f9d332014-08-27 06:22:23 +093072 s8 level;
73 u8 flags;
Jan Beulich22e48ea2007-10-16 23:29:34 -070074 union {
75 void *arg;
76 const struct kparam_string *str;
77 const struct kparam_array *arr;
78 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
81/* Special one for strings we want to copy into */
82struct kparam_string {
83 unsigned int maxlen;
84 char *string;
85};
86
87/* Special one for arrays */
88struct kparam_array
89{
90 unsigned int max;
Richard Kennedyc5be0b22011-05-19 16:55:25 -060091 unsigned int elemsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 unsigned int *num;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060093 const struct kernel_param_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 void *elem;
95};
96
Rusty Russell546970b2010-08-11 23:04:20 -060097/**
98 * module_param - typesafe helper for a module/cmdline parameter
99 * @value: the variable to alter, and exposed parameter name.
100 * @type: the type of the parameter
101 * @perm: visibility in sysfs.
102 *
103 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
104 * ".") the kernel commandline parameter. Note that - is changed to _, so
105 * the user can use "foo-bar=1" even for variable "foo_bar".
106 *
107 * @perm is 0 if the the variable is not to appear in sysfs, or 0444
108 * for world-readable, 0644 for root-writable, etc. Note that if it
109 * is writable, you may need to use kparam_block_sysfs_write() around
110 * accesses (esp. charp, which can be kfreed when it changes).
111 *
112 * The @type is simply pasted to refer to a param_ops_##type and a
113 * param_check_##type: for convenience many standard types are provided but
114 * you can create your own by defining those variables.
115 *
116 * Standard types are:
117 * byte, short, ushort, int, uint, long, ulong
118 * charp: a character pointer
119 * bool: a bool, values 0/1, y/n, Y/N.
120 * invbool: the above, only sense-reversed (N = true).
121 */
122#define module_param(name, type, perm) \
123 module_param_named(name, name, type, perm)
124
125/**
Jani Nikula3baee202014-08-27 06:23:23 +0930126 * module_param_unsafe - same as module_param but taints kernel
127 */
128#define module_param_unsafe(name, type, perm) \
129 module_param_named_unsafe(name, name, type, perm)
130
131/**
Rusty Russell546970b2010-08-11 23:04:20 -0600132 * module_param_named - typesafe helper for a renamed module/cmdline parameter
133 * @name: a valid C identifier which is the parameter name.
134 * @value: the actual lvalue to alter.
135 * @type: the type of the parameter
136 * @perm: visibility in sysfs.
137 *
138 * Usually it's a good idea to have variable names and user-exposed names the
139 * same, but that's harder if the variable must be non-static or is inside a
140 * structure. This allows exposure under a different name.
141 */
142#define module_param_named(name, value, type, perm) \
143 param_check_##type(name, &(value)); \
144 module_param_cb(name, &param_ops_##type, &value, perm); \
145 __MODULE_PARM_TYPE(name, #type)
146
147/**
Jani Nikula3baee202014-08-27 06:23:23 +0930148 * module_param_named_unsafe - same as module_param_named but taints kernel
149 */
150#define module_param_named_unsafe(name, value, type, perm) \
151 param_check_##type(name, &(value)); \
152 module_param_cb_unsafe(name, &param_ops_##type, &value, perm); \
153 __MODULE_PARM_TYPE(name, #type)
154
155/**
Rusty Russell546970b2010-08-11 23:04:20 -0600156 * module_param_cb - general callback for a module/cmdline parameter
157 * @name: a valid C identifier which is the parameter name.
158 * @ops: the set & get operations for this parameter.
159 * @perm: visibility in sysfs.
160 *
161 * The ops can have NULL set or get functions.
162 */
163#define module_param_cb(name, ops, arg, perm) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930164 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030165
Jani Nikula3baee202014-08-27 06:23:23 +0930166#define module_param_cb_unsafe(name, ops, arg, perm) \
167 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, \
168 KERNEL_PARAM_FL_UNSAFE)
169
Pawel Moll026cee02012-03-26 12:50:51 +1030170/**
171 * <level>_param_cb - general callback for a module/cmdline parameter
172 * to be evaluated before certain initcall level
173 * @name: a valid C identifier which is the parameter name.
174 * @ops: the set & get operations for this parameter.
175 * @perm: visibility in sysfs.
176 *
177 * The ops can have NULL set or get functions.
178 */
179#define __level_param_cb(name, ops, arg, perm, level) \
Jani Nikula91f9d332014-08-27 06:22:23 +0930180 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
Pawel Moll026cee02012-03-26 12:50:51 +1030181
182#define core_param_cb(name, ops, arg, perm) \
183 __level_param_cb(name, ops, arg, perm, 1)
184
185#define postcore_param_cb(name, ops, arg, perm) \
186 __level_param_cb(name, ops, arg, perm, 2)
187
188#define arch_param_cb(name, ops, arg, perm) \
189 __level_param_cb(name, ops, arg, perm, 3)
190
191#define subsys_param_cb(name, ops, arg, perm) \
192 __level_param_cb(name, ops, arg, perm, 4)
193
194#define fs_param_cb(name, ops, arg, perm) \
195 __level_param_cb(name, ops, arg, perm, 5)
196
197#define device_param_cb(name, ops, arg, perm) \
198 __level_param_cb(name, ops, arg, perm, 6)
199
200#define late_param_cb(name, ops, arg, perm) \
201 __level_param_cb(name, ops, arg, perm, 7)
Rusty Russell546970b2010-08-11 23:04:20 -0600202
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800203/* On alpha, ia64 and ppc64 relocations to global data cannot go into
204 read-only sections (which is part of respective UNIX ABI on these
205 platforms). So 'const' makes no sense and even causes compile failures
206 with some compilers. */
207#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
208#define __moduleparam_const
209#else
210#define __moduleparam_const const
211#endif
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/* This is the fundamental function for registering boot/module
Rusty Russell546970b2010-08-11 23:04:20 -0600214 parameters. */
Jani Nikula91f9d332014-08-27 06:22:23 +0930215#define __module_param_call(prefix, name, ops, arg, perm, level, flags) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -0800216 /* Default value instead of permissions? */ \
Rusty Russell58f86cc2014-03-24 12:00:34 +1030217 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800218 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100219 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Rusty Russell58f86cc2014-03-24 12:00:34 +1030221 = { __param_str_##name, ops, VERIFY_OCTAL_PERMISSIONS(perm), \
Jani Nikula91f9d332014-08-27 06:22:23 +0930222 level, flags, { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600224/* Obsolete - use module_param_cb() */
225#define module_param_call(name, set, get, arg, perm) \
226 static struct kernel_param_ops __param_ops_##name = \
Mark Rustad184c3fc2014-09-11 09:47:23 +0930227 { .flags = 0, (void *)set, (void *)get }; \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600228 __module_param_call(MODULE_PARAM_PREFIX, \
229 name, &__param_ops_##name, arg, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930230 (perm) + sizeof(__check_old_set_param(set))*0, -1, 0)
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600231
232/* We don't get oldget: it's often a new-style param_get_uint, etc. */
233static inline int
234__check_old_set_param(int (*oldset)(const char *, struct kernel_param *))
235{
236 return 0;
237}
238
Rusty Russell907b29e2010-08-11 23:04:19 -0600239/**
240 * kparam_block_sysfs_write - make sure a parameter isn't written via sysfs.
241 * @name: the name of the parameter
242 *
243 * There's no point blocking write on a paramter that isn't writable via sysfs!
244 */
245#define kparam_block_sysfs_write(name) \
246 do { \
247 BUG_ON(!(__param_##name.perm & 0222)); \
248 __kernel_param_lock(); \
249 } while (0)
250
251/**
252 * kparam_unblock_sysfs_write - allows sysfs to write to a parameter again.
253 * @name: the name of the parameter
254 */
255#define kparam_unblock_sysfs_write(name) \
256 do { \
257 BUG_ON(!(__param_##name.perm & 0222)); \
258 __kernel_param_unlock(); \
259 } while (0)
260
261/**
262 * kparam_block_sysfs_read - make sure a parameter isn't read via sysfs.
263 * @name: the name of the parameter
264 *
265 * This also blocks sysfs writes.
266 */
267#define kparam_block_sysfs_read(name) \
268 do { \
269 BUG_ON(!(__param_##name.perm & 0444)); \
270 __kernel_param_lock(); \
271 } while (0)
272
273/**
274 * kparam_unblock_sysfs_read - allows sysfs to read a parameter again.
275 * @name: the name of the parameter
276 */
277#define kparam_unblock_sysfs_read(name) \
278 do { \
279 BUG_ON(!(__param_##name.perm & 0444)); \
280 __kernel_param_unlock(); \
281 } while (0)
282
283#ifdef CONFIG_SYSFS
284extern void __kernel_param_lock(void);
285extern void __kernel_param_unlock(void);
286#else
287static inline void __kernel_param_lock(void)
288{
289}
290static inline void __kernel_param_unlock(void)
291{
292}
293#endif
294
Rusty Russell67e67ce2008-10-22 10:00:23 -0500295#ifndef MODULE
296/**
297 * core_param - define a historical core kernel parameter.
298 * @name: the name of the cmdline and sysfs parameter (often the same as var)
299 * @var: the variable
Rusty Russell546970b2010-08-11 23:04:20 -0600300 * @type: the type of the parameter
Rusty Russell67e67ce2008-10-22 10:00:23 -0500301 * @perm: visibility in sysfs
302 *
303 * core_param is just like module_param(), but cannot be modular and
304 * doesn't add a prefix (such as "printk."). This is for compatibility
305 * with __setup(), and it makes sense as truly core parameters aren't
306 * tied to the particular file they're in.
307 */
308#define core_param(name, var, type, perm) \
309 param_check_##type(name, &(var)); \
Jani Nikula91f9d332014-08-27 06:22:23 +0930310 __module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
Rusty Russell67e67ce2008-10-22 10:00:23 -0500311#endif /* !MODULE */
312
Rusty Russell546970b2010-08-11 23:04:20 -0600313/**
314 * module_param_string - a char array parameter
315 * @name: the name of the parameter
316 * @string: the string variable
317 * @len: the maximum length of the string, incl. terminator
318 * @perm: visibility in sysfs.
319 *
320 * This actually copies the string when it's set (unlike type charp).
321 * @len is usually just sizeof(string).
322 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700324 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 = { len, string }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600326 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600327 &param_ops_string, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930328 .str = &__param_string_##name, perm, -1, 0);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 __MODULE_PARM_TYPE(name, "string")
330
Michal Schmidtb1e4d202011-10-10 00:03:37 +0200331/**
332 * parameq - checks if two parameter names match
333 * @name1: parameter name 1
334 * @name2: parameter name 2
335 *
336 * Returns true if the two parameter names are equal.
337 * Dashes (-) are considered equal to underscores (_).
338 */
339extern bool parameq(const char *name1, const char *name2);
340
341/**
342 * parameqn - checks if two parameter names match
343 * @name1: parameter name 1
344 * @name2: parameter name 2
345 * @n: the length to compare
346 *
347 * Similar to parameq(), except it compares @n characters.
348 */
349extern bool parameqn(const char *name1, const char *name2, size_t n);
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351/* Called on module insert or kernel boot */
Rusty Russell51e158c2014-04-28 11:34:33 +0930352extern char *parse_args(const char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 char *args,
Rusty Russell914dcaa2010-08-11 23:04:18 -0600354 const struct kernel_param *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 unsigned num,
Pawel Moll026cee02012-03-26 12:50:51 +1030356 s16 level_min,
357 s16 level_max,
Jim Cromie9fb48c72012-04-27 14:30:34 -0600358 int (*unknown)(char *param, char *val,
359 const char *doing));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Rusty Russelle180a6b2009-03-31 13:05:29 -0600361/* Called by module remove. */
362#ifdef CONFIG_SYSFS
363extern void destroy_params(const struct kernel_param *params, unsigned num);
364#else
365static inline void destroy_params(const struct kernel_param *params,
366 unsigned num)
367{
368}
369#endif /* !CONFIG_SYSFS */
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/* All the helper functions */
372/* The macros to do compile-time type checking stolen from Jakub
373 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
374#define __param_check(name, p, type) \
Mark Charlebois0283f9a2014-03-17 13:18:26 +1030375 static inline type __always_unused *__check_##name(void) { return(p); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600377extern struct kernel_param_ops param_ops_byte;
378extern int param_set_byte(const char *val, const struct kernel_param *kp);
379extern int param_get_byte(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#define param_check_byte(name, p) __param_check(name, p, unsigned char)
381
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600382extern struct kernel_param_ops param_ops_short;
383extern int param_set_short(const char *val, const struct kernel_param *kp);
384extern int param_get_short(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#define param_check_short(name, p) __param_check(name, p, short)
386
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600387extern struct kernel_param_ops param_ops_ushort;
388extern int param_set_ushort(const char *val, const struct kernel_param *kp);
389extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
391
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600392extern struct kernel_param_ops param_ops_int;
393extern int param_set_int(const char *val, const struct kernel_param *kp);
394extern int param_get_int(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#define param_check_int(name, p) __param_check(name, p, int)
396
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600397extern struct kernel_param_ops param_ops_uint;
398extern int param_set_uint(const char *val, const struct kernel_param *kp);
399extern int param_get_uint(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400#define param_check_uint(name, p) __param_check(name, p, unsigned int)
401
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600402extern struct kernel_param_ops param_ops_long;
403extern int param_set_long(const char *val, const struct kernel_param *kp);
404extern int param_get_long(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405#define param_check_long(name, p) __param_check(name, p, long)
406
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600407extern struct kernel_param_ops param_ops_ulong;
408extern int param_set_ulong(const char *val, const struct kernel_param *kp);
409extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
411
Hannes Reineckeb4210b82014-06-25 15:27:37 +0200412extern struct kernel_param_ops param_ops_ullong;
413extern int param_set_ullong(const char *val, const struct kernel_param *kp);
414extern int param_get_ullong(char *buffer, const struct kernel_param *kp);
415#define param_check_ullong(name, p) __param_check(name, p, unsigned long long)
416
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600417extern struct kernel_param_ops param_ops_charp;
418extern int param_set_charp(const char *val, const struct kernel_param *kp);
419extern int param_get_charp(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#define param_check_charp(name, p) __param_check(name, p, char *)
421
Rusty Russell72db3952012-01-13 09:32:28 +1030422/* We used to allow int as well as bool. We're taking that away! */
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600423extern struct kernel_param_ops param_ops_bool;
424extern int param_set_bool(const char *val, const struct kernel_param *kp);
425extern int param_get_bool(char *buffer, const struct kernel_param *kp);
Rusty Russell72db3952012-01-13 09:32:28 +1030426#define param_check_bool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600428extern struct kernel_param_ops param_ops_invbool;
429extern int param_set_invbool(const char *val, const struct kernel_param *kp);
430extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600431#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Rusty Russell69116f22012-01-13 09:32:17 +1030433/* An int, which can only be set like a bool (though it shows as an int). */
434extern struct kernel_param_ops param_ops_bint;
435extern int param_set_bint(const char *val, const struct kernel_param *kp);
436#define param_get_bint param_get_int
437#define param_check_bint param_check_int
438
Rusty Russell546970b2010-08-11 23:04:20 -0600439/**
440 * module_param_array - a parameter which is an array of some type
441 * @name: the name of the array variable
442 * @type: the type, as per module_param()
443 * @nump: optional pointer filled in with the number written
444 * @perm: visibility in sysfs
445 *
446 * Input and output are as comma-separated values. Commas inside values
447 * don't work properly (eg. an array of charp).
448 *
449 * ARRAY_SIZE(@name) is used to determine the number of elements in the
450 * array, so the definition must be visible.
451 */
452#define module_param_array(name, type, nump, perm) \
453 module_param_array_named(name, name, type, nump, perm)
454
455/**
456 * module_param_array_named - renamed parameter which is an array of some type
457 * @name: a valid C identifier which is the parameter name
458 * @array: the name of the array variable
459 * @type: the type, as per module_param()
460 * @nump: optional pointer filled in with the number written
461 * @perm: visibility in sysfs
462 *
463 * This exposes a different name than the actual variable name. See
464 * module_param_named() for why this might be necessary.
465 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#define module_param_array_named(name, array, type, nump, perm) \
Rusty Russellbafeafe2012-01-13 09:32:16 +1030467 param_check_##type(name, &(array)[0]); \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700468 static const struct kparam_array __param_arr_##name \
Richard Kennedyc5be0b22011-05-19 16:55:25 -0600469 = { .max = ARRAY_SIZE(array), .num = nump, \
470 .ops = &param_ops_##type, \
471 .elemsize = sizeof(array[0]), .elem = array }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600472 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600473 &param_array_ops, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600474 .arr = &__param_arr_##name, \
Jani Nikula91f9d332014-08-27 06:22:23 +0930475 perm, -1, 0); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 __MODULE_PARM_TYPE(name, "array of " #type)
477
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600478extern struct kernel_param_ops param_array_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600480extern struct kernel_param_ops param_ops_string;
481extern int param_set_copystring(const char *val, const struct kernel_param *);
482extern int param_get_string(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Jean Delvareb634d132013-07-02 15:35:11 +0930484/* for exporting parameters in /sys/module/.../parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486struct module;
487
Randy Dunlapef665c12007-02-13 15:19:06 -0800488#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489extern int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600490 const struct kernel_param *kparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 unsigned int num_params);
492
493extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800494#else
495static inline int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600496 const struct kernel_param *kparam,
Randy Dunlapef665c12007-02-13 15:19:06 -0800497 unsigned int num_params)
498{
499 return 0;
500}
501
502static inline void module_param_sysfs_remove(struct module *mod)
503{ }
504#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506#endif /* _LINUX_MODULE_PARAMS_H */