]> git.ipfire.org Git - thirdparty/kmod.git/blame - libkmod/libkmod.h
index: save timestamp of each loaded index
[thirdparty/kmod.git] / libkmod / libkmod.h
CommitLineData
586fc304
LDM
1/*
2 * libkmod - interface to kernel module operations
3 *
4 * Copyright (C) 2011 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>
5369797d 26#include <inttypes.h>
586fc304
LDM
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/*
33 * kmod_ctx
34 *
35 * library user context - reads the config and system
36 * environment, user variables, allows custom logging
37 */
38struct kmod_ctx;
cb8d4d3e 39struct kmod_ctx *kmod_new(const char *dirname, const char * const *config_dirs);
586fc304
LDM
40struct kmod_ctx *kmod_ref(struct kmod_ctx *ctx);
41struct kmod_ctx *kmod_unref(struct kmod_ctx *ctx);
586fc304 42void kmod_set_log_fn(struct kmod_ctx *ctx,
1bdd951e 43 void (*log_fn)(void *log_data,
e4351b05
LDM
44 int priority, const char *file, int line,
45 const char *fn, const char *format,
1bdd951e
GSB
46 va_list args),
47 const void *data);
6d177553 48int kmod_get_log_priority(const struct kmod_ctx *ctx);
586fc304 49void kmod_set_log_priority(struct kmod_ctx *ctx, int priority);
6d177553 50void *kmod_get_userdata(const struct kmod_ctx *ctx);
1ce08a56 51void kmod_set_userdata(struct kmod_ctx *ctx, const void *userdata);
33bb69b9
LDM
52int kmod_load_resources(struct kmod_ctx *ctx);
53void kmod_unload_resources(struct kmod_ctx *ctx);
586fc304
LDM
54
55/*
56 * kmod_list
57 *
58 * access to kmod generated lists
59 */
6924e47a 60struct kmod_list;
1ce08a56
GSB
61struct kmod_list *kmod_list_next(const struct kmod_list *first_entry,
62 const struct kmod_list *list_entry);
63struct kmod_list *kmod_list_prev(const struct kmod_list *first_entry,
64 const struct kmod_list *list_entry);
d5ec60bc
GSB
65struct kmod_list *kmod_list_last(const struct kmod_list *first_entry);
66
6924e47a 67#define kmod_list_foreach(list_entry, first_entry) \
586fc304 68 for (list_entry = first_entry; \
e4351b05 69 list_entry != NULL; \
6924e47a 70 list_entry = kmod_list_next(first_entry, list_entry))
586fc304 71
d6b55b7d
GSB
72#define kmod_list_foreach_reverse(list_entry, first_entry) \
73 for (list_entry = kmod_list_last(first_entry); \
74 list_entry != NULL; \
75 list_entry = kmod_list_prev(first_entry, list_entry))
76
f39dc70e 77/* Removal flags */
423f856a 78enum kmod_remove {
6806a043
LDM
79 KMOD_REMOVE_FORCE = O_TRUNC,
80 KMOD_REMOVE_NOWAIT = O_NONBLOCK,
81};
82
f39dc70e 83/* Insertion flags */
8f788d58
LDM
84enum kmod_insert {
85 KMOD_INSERT_FORCE_VERMAGIC = 0x1,
86 KMOD_INSERT_FORCE_MODVERSION = 0x2,
8f788d58
LDM
87};
88
ddbda022
LDM
89/* Flags to kmod_module_probe_insert_module() */
90enum kmod_probe {
91 KMOD_PROBE_FORCE_VERMAGIC = 0x1,
92 KMOD_PROBE_FORCE_MODVERSION = 0x2,
93 KMOD_PROBE_STOP_ON_BLACKLIST = 0x4,
94 KMOD_PROBE_STOP_ON_FAILURE = 0x8,
95 KMOD_PROBE_STOP_ON_COMMAND = 0x16,
96};
97
8f788d58
LDM
98/*
99 * kmod_module
100 *
101 * Operate on kernel modules
102 */
103struct kmod_module;
104int kmod_module_new_from_name(struct kmod_ctx *ctx, const char *name,
105 struct kmod_module **mod);
106int kmod_module_new_from_path(struct kmod_ctx *ctx, const char *path,
107 struct kmod_module **mod);
7f3eb0cc
LDM
108int kmod_module_new_from_lookup(struct kmod_ctx *ctx, const char *alias,
109 struct kmod_list **list);
a102e262 110int kmod_module_new_from_loaded(struct kmod_ctx *ctx, struct kmod_list **list);
8f788d58
LDM
111
112struct kmod_module *kmod_module_ref(struct kmod_module *mod);
113struct kmod_module *kmod_module_unref(struct kmod_module *mod);
7f3eb0cc 114int kmod_module_unref_list(struct kmod_list *list);
ad4d1ae5 115struct kmod_module *kmod_module_get_module(const struct kmod_list *entry);
f1cd799f 116struct kmod_list *kmod_module_get_dependencies(const struct kmod_module *mod);
8f788d58 117
1487a64f
GSB
118int kmod_module_get_filtered_blacklist(const struct kmod_ctx *ctx, const struct kmod_list *input, struct kmod_list **output);
119
8f788d58 120int kmod_module_remove_module(struct kmod_module *mod, unsigned int flags);
3a721bbc 121int kmod_module_insert_module(struct kmod_module *mod, unsigned int flags, const char *options);
ddbda022
LDM
122int kmod_module_probe_insert_module(struct kmod_module *mod,
123 unsigned int flags, const char *options,
124 int (*run_install)(struct kmod_module *m, const char *cmdline, void *data),
125 const void *data);
8f788d58 126
1ce08a56
GSB
127const char *kmod_module_get_name(const struct kmod_module *mod);
128const char *kmod_module_get_path(const struct kmod_module *mod);
6e869df7 129
f12ae3c4
GSB
130enum kmod_module_initstate {
131 KMOD_MODULE_BUILTIN = 0,
132 KMOD_MODULE_LIVE,
133 KMOD_MODULE_COMING,
49b741d0
LDM
134 KMOD_MODULE_GOING,
135 /* Padding to make sure enum is not mapped to char */
136 _KMOD_MODULE_PAD = (1 << 31),
f12ae3c4
GSB
137};
138const char *kmod_module_initstate_str(enum kmod_module_initstate initstate);
139int kmod_module_get_initstate(const struct kmod_module *mod);
140int kmod_module_get_refcnt(const struct kmod_module *mod);
141struct kmod_list *kmod_module_get_holders(const struct kmod_module *mod);
142
143struct kmod_list *kmod_module_get_sections(const struct kmod_module *mod);
144const char *kmod_module_section_get_name(const struct kmod_list *entry);
145unsigned long kmod_module_section_get_address(const struct kmod_list *entry);
146void kmod_module_section_free_list(struct kmod_list *list);
147
69f9dd43 148long kmod_module_get_size(const struct kmod_module *mod);
f12ae3c4 149
bd3f5535
GSB
150const char *kmod_module_get_options(const struct kmod_module *mod);
151const char *kmod_module_get_install_commands(const struct kmod_module *mod);
152const char *kmod_module_get_remove_commands(const struct kmod_module *mod);
153
1c522600
GSB
154int kmod_module_get_softdeps(const struct kmod_module *mod, struct kmod_list **pre, struct kmod_list **post);
155
708624a4
GSB
156int kmod_module_get_info(const struct kmod_module *mod, struct kmod_list **list);
157const char *kmod_module_info_get_key(const struct kmod_list *entry);
158const char *kmod_module_info_get_value(const struct kmod_list *entry);
159void kmod_module_info_free_list(struct kmod_list *list);
160
161int kmod_module_get_versions(const struct kmod_module *mod, struct kmod_list **list);
162const char *kmod_module_version_get_symbol(const struct kmod_list *entry);
163uint64_t kmod_module_version_get_crc(const struct kmod_list *entry);
164void kmod_module_versions_free_list(struct kmod_list *list);
165
45e6db9c
GSB
166int kmod_module_get_symbols(const struct kmod_module *mod, struct kmod_list **list);
167const char *kmod_module_symbol_get_symbol(const struct kmod_list *entry);
168uint64_t kmod_module_symbol_get_crc(const struct kmod_list *entry);
169void kmod_module_symbols_free_list(struct kmod_list *list);
170
674f8590
GSB
171enum kmod_symbol_bind {
172 KMOD_SYMBOL_NONE = '\0',
173 KMOD_SYMBOL_LOCAL = 'L',
174 KMOD_SYMBOL_GLOBAL = 'G',
175 KMOD_SYMBOL_WEAK = 'W',
176 KMOD_SYMBOL_UNDEF = 'U'
177};
178
179int kmod_module_get_dependency_symbols(const struct kmod_module *mod, struct kmod_list **list);
180const char *kmod_module_dependency_symbol_get_symbol(const struct kmod_list *entry);
181int kmod_module_dependency_symbol_get_bind(const struct kmod_list *entry);
182uint64_t kmod_module_dependency_symbol_get_crc(const struct kmod_list *entry);
183void kmod_module_dependency_symbols_free_list(struct kmod_list *list);
184
2bd6299d
LDM
185#ifdef __cplusplus
186} /* extern "C" */
187#endif
586fc304 188#endif