]> git.ipfire.org Git - thirdparty/kmod.git/blame - libkmod/libkmod.h
build-sys: enable debug by default in autogen.sh
[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
8 * License as published by the Free Software Foundation version 2.1.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
6ad98307
LDM
20#ifndef _LIBKMOD_H_
21#define _LIBKMOD_H_
586fc304 22
6806a043 23#include <fcntl.h>
586fc304 24#include <stdarg.h>
5369797d 25#include <inttypes.h>
586fc304
LDM
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31/*
32 * kmod_ctx
33 *
34 * library user context - reads the config and system
35 * environment, user variables, allows custom logging
36 */
37struct kmod_ctx;
cb8d4d3e 38struct kmod_ctx *kmod_new(const char *dirname, const char * const *config_dirs);
586fc304
LDM
39struct kmod_ctx *kmod_ref(struct kmod_ctx *ctx);
40struct kmod_ctx *kmod_unref(struct kmod_ctx *ctx);
586fc304 41void kmod_set_log_fn(struct kmod_ctx *ctx,
1bdd951e 42 void (*log_fn)(void *log_data,
e4351b05
LDM
43 int priority, const char *file, int line,
44 const char *fn, const char *format,
1bdd951e
GSB
45 va_list args),
46 const void *data);
6d177553 47int kmod_get_log_priority(const struct kmod_ctx *ctx);
586fc304 48void kmod_set_log_priority(struct kmod_ctx *ctx, int priority);
6d177553 49void *kmod_get_userdata(const struct kmod_ctx *ctx);
1ce08a56 50void kmod_set_userdata(struct kmod_ctx *ctx, const void *userdata);
33bb69b9
LDM
51int kmod_load_resources(struct kmod_ctx *ctx);
52void kmod_unload_resources(struct kmod_ctx *ctx);
586fc304
LDM
53
54/*
55 * kmod_list
56 *
57 * access to kmod generated lists
58 */
6924e47a 59struct kmod_list;
1ce08a56
GSB
60struct kmod_list *kmod_list_next(const struct kmod_list *first_entry,
61 const struct kmod_list *list_entry);
62struct kmod_list *kmod_list_prev(const struct kmod_list *first_entry,
63 const struct kmod_list *list_entry);
6924e47a 64#define kmod_list_foreach(list_entry, first_entry) \
586fc304 65 for (list_entry = first_entry; \
e4351b05 66 list_entry != NULL; \
6924e47a 67 list_entry = kmod_list_next(first_entry, list_entry))
586fc304 68
423f856a 69enum kmod_remove {
6806a043
LDM
70 KMOD_REMOVE_FORCE = O_TRUNC,
71 KMOD_REMOVE_NOWAIT = O_NONBLOCK,
72};
73
8f788d58
LDM
74enum kmod_insert {
75 KMOD_INSERT_FORCE_VERMAGIC = 0x1,
76 KMOD_INSERT_FORCE_MODVERSION = 0x2,
77 KMOD_INSERT_HANDLE_DEPENDENCIES = 0x4,
78 KMOD_INSERT_IGNORE_CONFIG = 0x8,
79};
80
81/*
82 * kmod_module
83 *
84 * Operate on kernel modules
85 */
86struct kmod_module;
87int kmod_module_new_from_name(struct kmod_ctx *ctx, const char *name,
88 struct kmod_module **mod);
89int kmod_module_new_from_path(struct kmod_ctx *ctx, const char *path,
90 struct kmod_module **mod);
7f3eb0cc
LDM
91int kmod_module_new_from_lookup(struct kmod_ctx *ctx, const char *alias,
92 struct kmod_list **list);
a102e262 93int kmod_module_new_from_loaded(struct kmod_ctx *ctx, struct kmod_list **list);
8f788d58
LDM
94
95struct kmod_module *kmod_module_ref(struct kmod_module *mod);
96struct kmod_module *kmod_module_unref(struct kmod_module *mod);
7f3eb0cc 97int kmod_module_unref_list(struct kmod_list *list);
ad4d1ae5 98struct kmod_module *kmod_module_get_module(const struct kmod_list *entry);
f1cd799f 99struct kmod_list *kmod_module_get_dependencies(const struct kmod_module *mod);
8f788d58 100
1487a64f
GSB
101int kmod_module_get_filtered_blacklist(const struct kmod_ctx *ctx, const struct kmod_list *input, struct kmod_list **output);
102
8f788d58 103int kmod_module_remove_module(struct kmod_module *mod, unsigned int flags);
3a721bbc 104int kmod_module_insert_module(struct kmod_module *mod, unsigned int flags, const char *options);
8f788d58 105
1ce08a56
GSB
106const char *kmod_module_get_name(const struct kmod_module *mod);
107const char *kmod_module_get_path(const struct kmod_module *mod);
6e869df7 108
f12ae3c4
GSB
109enum kmod_module_initstate {
110 KMOD_MODULE_BUILTIN = 0,
111 KMOD_MODULE_LIVE,
112 KMOD_MODULE_COMING,
49b741d0
LDM
113 KMOD_MODULE_GOING,
114 /* Padding to make sure enum is not mapped to char */
115 _KMOD_MODULE_PAD = (1 << 31),
f12ae3c4
GSB
116};
117const char *kmod_module_initstate_str(enum kmod_module_initstate initstate);
118int kmod_module_get_initstate(const struct kmod_module *mod);
119int kmod_module_get_refcnt(const struct kmod_module *mod);
120struct kmod_list *kmod_module_get_holders(const struct kmod_module *mod);
121
122struct kmod_list *kmod_module_get_sections(const struct kmod_module *mod);
123const char *kmod_module_section_get_name(const struct kmod_list *entry);
124unsigned long kmod_module_section_get_address(const struct kmod_list *entry);
125void kmod_module_section_free_list(struct kmod_list *list);
126
69f9dd43 127long kmod_module_get_size(const struct kmod_module *mod);
f12ae3c4 128
bd3f5535
GSB
129const char *kmod_module_get_options(const struct kmod_module *mod);
130const char *kmod_module_get_install_commands(const struct kmod_module *mod);
131const char *kmod_module_get_remove_commands(const struct kmod_module *mod);
132
133int kmod_resolve_alias_options(struct kmod_ctx *ctx, const char *alias, char **options);
134
2bd6299d
LDM
135#ifdef __cplusplus
136} /* extern "C" */
137#endif
586fc304 138#endif