Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Common modutils related functions for busybox |
| 3 | * |
| 4 | * Copyright (C) 2008 by Timo Teras <timo.teras@iki.fi> |
| 5 | * |
| 6 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
| 7 | */ |
| 8 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 9 | #ifndef MODUTILS_H |
| 10 | #define MODUTILS_H 1 |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 11 | |
| 12 | #include "libbb.h" |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 13 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 14 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 15 | |
Denis Vlasenko | 48637e0 | 2009-02-26 12:00:52 +0000 | [diff] [blame] | 16 | /* linux/include/linux/module.h has 64, but this is also used |
| 17 | * internally for the maximum alias name length, which can be quite long */ |
| 18 | #define MODULE_NAME_LEN 256 |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 19 | |
| 20 | const char *moderror(int err) FAST_FUNC; |
| 21 | llist_t *llist_find(llist_t *first, const char *str) FAST_FUNC; |
| 22 | void replace(char *s, char what, char with) FAST_FUNC; |
| 23 | char *replace_underscores(char *s) FAST_FUNC; |
Denis Vlasenko | 36309cf | 2008-11-22 18:29:01 +0000 | [diff] [blame] | 24 | int string_to_llist(char *string, llist_t **llist, const char *delim) FAST_FUNC; |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 25 | char *filename2modname(const char *filename, char *modname) FAST_FUNC; |
| 26 | char *parse_cmdline_module_options(char **argv) FAST_FUNC; |
| 27 | |
Denis Vlasenko | c574100 | 2009-03-05 09:26:17 +0000 | [diff] [blame] | 28 | #define INSMOD_OPTS \ |
| 29 | "vq" \ |
| 30 | USE_FEATURE_2_4_MODULES("sLo:fkx") \ |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 31 | USE_FEATURE_INSMOD_LOAD_MAP("m") |
Denis Vlasenko | c574100 | 2009-03-05 09:26:17 +0000 | [diff] [blame] | 32 | |
| 33 | #define INSMOD_ARGS USE_FEATURE_2_4_MODULES(, NULL) |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 34 | |
| 35 | enum { |
| 36 | INSMOD_OPT_VERBOSE = 0x0001, |
| 37 | INSMOD_OPT_SILENT = 0x0002, |
| 38 | INSMOD_OPT_SYSLOG = 0x0004 * ENABLE_FEATURE_2_4_MODULES, |
| 39 | INSMOD_OPT_LOCK = 0x0008 * ENABLE_FEATURE_2_4_MODULES, |
| 40 | INSMOD_OPT_OUTPUTNAME = 0x0010 * ENABLE_FEATURE_2_4_MODULES, |
| 41 | INSMOD_OPT_FORCE = 0x0020 * ENABLE_FEATURE_2_4_MODULES, |
| 42 | INSMOD_OPT_KERNELD = 0x0040 * ENABLE_FEATURE_2_4_MODULES, |
| 43 | INSMOD_OPT_NO_EXPORT = 0x0080 * ENABLE_FEATURE_2_4_MODULES, |
| 44 | INSMOD_OPT_PRINT_MAP = 0x0100 * ENABLE_FEATURE_INSMOD_LOAD_MAP, |
| 45 | #if ENABLE_FEATURE_2_4_MODULES |
Denis Vlasenko | c574100 | 2009-03-05 09:26:17 +0000 | [diff] [blame] | 46 | # if ENABLE_FEATURE_INSMOD_LOAD_MAP |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 47 | INSMOD_OPT_UNUSED = 0x0200, |
Denis Vlasenko | c574100 | 2009-03-05 09:26:17 +0000 | [diff] [blame] | 48 | # else |
| 49 | INSMOD_OPT_UNUSED = 0x0100, |
| 50 | # endif |
| 51 | #else |
| 52 | INSMOD_OPT_UNUSED = 0x0004, |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 53 | #endif |
| 54 | }; |
| 55 | |
| 56 | int FAST_FUNC bb_init_module(const char *module, const char *options); |
| 57 | int FAST_FUNC bb_delete_module(const char *module, unsigned int flags); |
| 58 | |
| 59 | #if ENABLE_FEATURE_2_4_MODULES |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 60 | int FAST_FUNC bb_init_module_24(const char *module, const char *options); |
| 61 | #endif |
| 62 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 63 | POP_SAVED_FUNCTION_VISIBILITY |
Denis Vlasenko | ba1315d | 2008-09-13 14:59:38 +0000 | [diff] [blame] | 64 | |
| 65 | #endif |