]> git.ipfire.org Git - thirdparty/kmod.git/blame - libkmod/libkmod.h
Prepare for API bump
[thirdparty/kmod.git] / libkmod / libkmod.h
CommitLineData
586fc304
LDM
1/*
2 * libkmod - interface to kernel module operations
3 *
a66a6a99 4 * Copyright (C) 2011-2012 ProFUSION embedded systems
586fc304
LDM
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
cb451f35
LDM
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
586fc304
LDM
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
6ad98307
LDM
21#ifndef _LIBKMOD_H_
22#define _LIBKMOD_H_
586fc304 23
6806a043 24#include <fcntl.h>
586fc304 25#include <stdarg.h>
00178629 26#include <stdbool.h>
5369797d 27#include <inttypes.h>
586fc304
LDM
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33/*
34 * kmod_ctx
35 *
36 * library user context - reads the config and system
37 * environment, user variables, allows custom logging
38 */
39struct kmod_ctx;
6a829211 40struct kmod_ctx *kmod_new(const char *dirname, const char * const *config_paths);
586fc304
LDM
41struct kmod_ctx *kmod_ref(struct kmod_ctx *ctx);
42struct kmod_ctx *kmod_unref(struct kmod_ctx *ctx);
586fc304 43void kmod_set_log_fn(struct kmod_ctx *ctx,
1bdd951e 44 void (*log_fn)(void *log_data,
e4351b05
LDM
45 int priority, const char *file, int line,
46 const char *fn, const char *format,
1bdd951e
GSB
47 va_list args),
48 const void *data);
6d177553 49int kmod_get_log_priority(const struct kmod_ctx *ctx);
586fc304 50void kmod_set_log_priority(struct kmod_ctx *ctx, int priority);
6d177553 51void *kmod_get_userdata(const struct kmod_ctx *ctx);
1ce08a56 52void kmod_set_userdata(struct kmod_ctx *ctx, const void *userdata);
33bb69b9
LDM
53int kmod_load_resources(struct kmod_ctx *ctx);
54void kmod_unload_resources(struct kmod_ctx *ctx);
586fc304 55
c4dc3ca8
LDM
56enum kmod_resources {
57 KMOD_RESOURCES_OK = 0,
58 KMOD_RESOURCES_MUST_RELOAD = 1,
59 KMOD_RESOURCES_MUST_RECREATE = 2,
60};
61
62int kmod_validate_resources(struct kmod_ctx *ctx);
63
b08314f7
LDM
64enum kmod_index {
65 KMOD_INDEX_MODULES_DEP = 0,
66 KMOD_INDEX_MODULES_ALIAS,
67 KMOD_INDEX_MODULES_SYMBOL,
68 /* Padding to make sure enum is not mapped to char */
69 _KMOD_INDEX_PAD = (1 << 31),
70};
71
0224482e 72int kmod_dump_index(struct kmod_ctx *ctx, enum kmod_index type, int fd);
758428a7 73
586fc304
LDM
74/*
75 * kmod_list
76 *
77 * access to kmod generated lists
78 */
6924e47a 79struct kmod_list;
6a829211
LDM
80struct kmod_list *kmod_list_next(const struct kmod_list *list,
81 const struct kmod_list *curr);
82struct kmod_list *kmod_list_prev(const struct kmod_list *list,
83 const struct kmod_list *curr);
84struct kmod_list *kmod_list_last(const struct kmod_list *list);
d5ec60bc 85
6924e47a 86#define kmod_list_foreach(list_entry, first_entry) \
586fc304 87 for (list_entry = first_entry; \
e4351b05 88 list_entry != NULL; \
6924e47a 89 list_entry = kmod_list_next(first_entry, list_entry))
586fc304 90
d6b55b7d
GSB
91#define kmod_list_foreach_reverse(list_entry, first_entry) \
92 for (list_entry = kmod_list_last(first_entry); \
93 list_entry != NULL; \
94 list_entry = kmod_list_prev(first_entry, list_entry))
95
00178629
LDM
96/*
97 * kmod_config_iter
98 *
99 * access to configuration lists - it allows to get each configuration's
100 * key/value stored by kmod
101 */
102struct kmod_config_iter;
103struct kmod_config_iter *kmod_config_get_blacklists(const struct kmod_ctx *ctx);
104struct kmod_config_iter *kmod_config_get_install_commands(const struct kmod_ctx *ctx);
105struct kmod_config_iter *kmod_config_get_remove_commands(const struct kmod_ctx *ctx);
106struct kmod_config_iter *kmod_config_get_aliases(const struct kmod_ctx *ctx);
107struct kmod_config_iter *kmod_config_get_options(const struct kmod_ctx *ctx);
108struct kmod_config_iter *kmod_config_get_softdeps(const struct kmod_ctx *ctx);
109const char *kmod_config_iter_get_key(const struct kmod_config_iter *iter);
110const char *kmod_config_iter_get_value(const struct kmod_config_iter *iter);
111bool kmod_config_iter_next(struct kmod_config_iter *iter);
112void kmod_config_iter_free_iter(struct kmod_config_iter *iter);
113
f39dc70e 114/* Removal flags */
423f856a 115enum kmod_remove {
6806a043
LDM
116 KMOD_REMOVE_FORCE = O_TRUNC,
117 KMOD_REMOVE_NOWAIT = O_NONBLOCK,
118};
119
f39dc70e 120/* Insertion flags */
8f788d58
LDM
121enum kmod_insert {
122 KMOD_INSERT_FORCE_VERMAGIC = 0x1,
123 KMOD_INSERT_FORCE_MODVERSION = 0x2,
8f788d58
LDM
124};
125
ddbda022
LDM
126/* Flags to kmod_module_probe_insert_module() */
127enum kmod_probe {
d851e9a1
LDM
128 KMOD_PROBE_FORCE_VERMAGIC = 0x00001,
129 KMOD_PROBE_FORCE_MODVERSION = 0x00002,
130 KMOD_PROBE_IGNORE_COMMAND = 0x00004,
7c10c69c 131 KMOD_PROBE_IGNORE_LOADED = 0x00008,
4c1ffb75 132 KMOD_PROBE_DRY_RUN = 0x00010,
3bc92e89 133 KMOD_PROBE_STOP_ON_ALREADY_LOADED = 0x00020,
b1a51256
LDM
134
135 /* codes below can be used in return value, too */
d851e9a1
LDM
136 KMOD_PROBE_APPLY_BLACKLIST_ALL = 0x10000,
137 KMOD_PROBE_APPLY_BLACKLIST = 0x20000,
ddbda022
LDM
138};
139
8f788d58
LDM
140/*
141 * kmod_module
142 *
143 * Operate on kernel modules
144 */
145struct kmod_module;
146int kmod_module_new_from_name(struct kmod_ctx *ctx, const char *name,
147 struct kmod_module **mod);
148int kmod_module_new_from_path(struct kmod_ctx *ctx, const char *path,
149 struct kmod_module **mod);
6a829211 150int kmod_module_new_from_lookup(struct kmod_ctx *ctx, const char *given_alias,
7f3eb0cc 151 struct kmod_list **list);
a102e262 152int kmod_module_new_from_loaded(struct kmod_ctx *ctx, struct kmod_list **list);
8f788d58
LDM
153
154struct kmod_module *kmod_module_ref(struct kmod_module *mod);
155struct kmod_module *kmod_module_unref(struct kmod_module *mod);
7f3eb0cc 156int kmod_module_unref_list(struct kmod_list *list);
ad4d1ae5 157struct kmod_module *kmod_module_get_module(const struct kmod_list *entry);
f1cd799f 158struct kmod_list *kmod_module_get_dependencies(const struct kmod_module *mod);
8f788d58 159
1487a64f
GSB
160int kmod_module_get_filtered_blacklist(const struct kmod_ctx *ctx, const struct kmod_list *input, struct kmod_list **output);
161
8f788d58 162int kmod_module_remove_module(struct kmod_module *mod, unsigned int flags);
3a721bbc 163int kmod_module_insert_module(struct kmod_module *mod, unsigned int flags, const char *options);
ddbda022 164int kmod_module_probe_insert_module(struct kmod_module *mod,
6a829211 165 unsigned int flags, const char *extra_options,
ddbda022 166 int (*run_install)(struct kmod_module *m, const char *cmdline, void *data),
6bd0713d
LDM
167 const void *data,
168 void (*print_action)(struct kmod_module *m, bool install, const char *options));
8f788d58 169
1ce08a56
GSB
170const char *kmod_module_get_name(const struct kmod_module *mod);
171const char *kmod_module_get_path(const struct kmod_module *mod);
6e869df7 172
f12ae3c4
GSB
173enum kmod_module_initstate {
174 KMOD_MODULE_BUILTIN = 0,
175 KMOD_MODULE_LIVE,
176 KMOD_MODULE_COMING,
49b741d0
LDM
177 KMOD_MODULE_GOING,
178 /* Padding to make sure enum is not mapped to char */
179 _KMOD_MODULE_PAD = (1 << 31),
f12ae3c4 180};
6a829211 181const char *kmod_module_initstate_str(enum kmod_module_initstate state);
f12ae3c4
GSB
182int kmod_module_get_initstate(const struct kmod_module *mod);
183int kmod_module_get_refcnt(const struct kmod_module *mod);
184struct kmod_list *kmod_module_get_holders(const struct kmod_module *mod);
185
186struct kmod_list *kmod_module_get_sections(const struct kmod_module *mod);
187const char *kmod_module_section_get_name(const struct kmod_list *entry);
188unsigned long kmod_module_section_get_address(const struct kmod_list *entry);
189void kmod_module_section_free_list(struct kmod_list *list);
190
69f9dd43 191long kmod_module_get_size(const struct kmod_module *mod);
f12ae3c4 192
bd3f5535
GSB
193const char *kmod_module_get_options(const struct kmod_module *mod);
194const char *kmod_module_get_install_commands(const struct kmod_module *mod);
195const char *kmod_module_get_remove_commands(const struct kmod_module *mod);
196
1c522600
GSB
197int kmod_module_get_softdeps(const struct kmod_module *mod, struct kmod_list **pre, struct kmod_list **post);
198
708624a4
GSB
199int kmod_module_get_info(const struct kmod_module *mod, struct kmod_list **list);
200const char *kmod_module_info_get_key(const struct kmod_list *entry);
201const char *kmod_module_info_get_value(const struct kmod_list *entry);
202void kmod_module_info_free_list(struct kmod_list *list);
203
204int kmod_module_get_versions(const struct kmod_module *mod, struct kmod_list **list);
205const char *kmod_module_version_get_symbol(const struct kmod_list *entry);
206uint64_t kmod_module_version_get_crc(const struct kmod_list *entry);
207void kmod_module_versions_free_list(struct kmod_list *list);
208
45e6db9c
GSB
209int kmod_module_get_symbols(const struct kmod_module *mod, struct kmod_list **list);
210const char *kmod_module_symbol_get_symbol(const struct kmod_list *entry);
211uint64_t kmod_module_symbol_get_crc(const struct kmod_list *entry);
212void kmod_module_symbols_free_list(struct kmod_list *list);
213
674f8590
GSB
214enum kmod_symbol_bind {
215 KMOD_SYMBOL_NONE = '\0',
216 KMOD_SYMBOL_LOCAL = 'L',
217 KMOD_SYMBOL_GLOBAL = 'G',
218 KMOD_SYMBOL_WEAK = 'W',
219 KMOD_SYMBOL_UNDEF = 'U'
220};
221
222int kmod_module_get_dependency_symbols(const struct kmod_module *mod, struct kmod_list **list);
223const char *kmod_module_dependency_symbol_get_symbol(const struct kmod_list *entry);
224int kmod_module_dependency_symbol_get_bind(const struct kmod_list *entry);
225uint64_t kmod_module_dependency_symbol_get_crc(const struct kmod_list *entry);
226void kmod_module_dependency_symbols_free_list(struct kmod_list *list);
227
2bd6299d
LDM
228#ifdef __cplusplus
229} /* extern "C" */
230#endif
586fc304 231#endif