2024-07-24 01:59:19 +07:00
|
|
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
2011-11-21 23:35:35 +07:00
|
|
|
/*
|
2013-01-16 20:27:21 +07:00
|
|
|
* Copyright (C) 2011-2013 ProFUSION embedded systems
|
2011-11-21 23:35:35 +07:00
|
|
|
*/
|
|
|
|
|
2012-07-18 20:19:48 +07:00
|
|
|
#pragma once
|
2011-11-24 00:24:34 +07:00
|
|
|
#ifndef _LIBKMOD_H_
|
|
|
|
#define _LIBKMOD_H_
|
2011-11-21 23:35:35 +07:00
|
|
|
|
2011-11-24 01:10:58 +07:00
|
|
|
#include <fcntl.h>
|
2011-11-21 23:35:35 +07:00
|
|
|
#include <stdarg.h>
|
2012-01-13 11:24:18 +07:00
|
|
|
#include <stdbool.h>
|
2011-11-22 14:42:09 +07:00
|
|
|
#include <inttypes.h>
|
2011-11-21 23:35:35 +07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* kmod_ctx
|
|
|
|
*
|
|
|
|
* library user context - reads the config and system
|
|
|
|
* environment, user variables, allows custom logging
|
|
|
|
*/
|
|
|
|
struct kmod_ctx;
|
2012-01-09 12:08:26 +07:00
|
|
|
struct kmod_ctx *kmod_new(const char *dirname, const char * const *config_paths);
|
2011-11-21 23:35:35 +07:00
|
|
|
struct kmod_ctx *kmod_ref(struct kmod_ctx *ctx);
|
|
|
|
struct kmod_ctx *kmod_unref(struct kmod_ctx *ctx);
|
|
|
|
void kmod_set_log_fn(struct kmod_ctx *ctx,
|
2011-12-08 22:47:55 +07:00
|
|
|
void (*log_fn)(void *log_data,
|
2012-02-01 02:23:35 +07:00
|
|
|
int priority, const char *file, int line,
|
|
|
|
const char *fn, const char *format,
|
|
|
|
va_list args),
|
2011-12-08 22:47:55 +07:00
|
|
|
const void *data);
|
2011-11-23 20:52:30 +07:00
|
|
|
int kmod_get_log_priority(const struct kmod_ctx *ctx);
|
2011-11-21 23:35:35 +07:00
|
|
|
void kmod_set_log_priority(struct kmod_ctx *ctx, int priority);
|
2011-11-23 20:52:30 +07:00
|
|
|
void *kmod_get_userdata(const struct kmod_ctx *ctx);
|
2011-12-03 05:24:07 +07:00
|
|
|
void kmod_set_userdata(struct kmod_ctx *ctx, const void *userdata);
|
2012-02-01 02:23:35 +07:00
|
|
|
|
2015-09-29 05:39:11 +07:00
|
|
|
const char *kmod_get_dirname(const struct kmod_ctx *ctx);
|
2012-02-01 02:23:35 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Management of libkmod's resources
|
|
|
|
*/
|
2011-12-08 23:59:51 +07:00
|
|
|
int kmod_load_resources(struct kmod_ctx *ctx);
|
|
|
|
void kmod_unload_resources(struct kmod_ctx *ctx);
|
2011-11-21 23:35:35 +07:00
|
|
|
|
2012-01-01 04:28:31 +07:00
|
|
|
enum kmod_resources {
|
|
|
|
KMOD_RESOURCES_OK = 0,
|
|
|
|
KMOD_RESOURCES_MUST_RELOAD = 1,
|
|
|
|
KMOD_RESOURCES_MUST_RECREATE = 2,
|
|
|
|
};
|
|
|
|
int kmod_validate_resources(struct kmod_ctx *ctx);
|
|
|
|
|
2012-01-16 21:01:48 +07:00
|
|
|
enum kmod_index {
|
|
|
|
KMOD_INDEX_MODULES_DEP = 0,
|
|
|
|
KMOD_INDEX_MODULES_ALIAS,
|
|
|
|
KMOD_INDEX_MODULES_SYMBOL,
|
2019-11-09 00:25:22 +07:00
|
|
|
KMOD_INDEX_MODULES_BUILTIN_ALIAS,
|
2012-02-17 05:43:16 +07:00
|
|
|
KMOD_INDEX_MODULES_BUILTIN,
|
2012-01-16 21:01:48 +07:00
|
|
|
/* Padding to make sure enum is not mapped to char */
|
2018-06-16 13:45:20 +07:00
|
|
|
_KMOD_INDEX_PAD = 1U << 31,
|
2012-01-16 21:01:48 +07:00
|
|
|
};
|
2012-01-17 01:43:47 +07:00
|
|
|
int kmod_dump_index(struct kmod_ctx *ctx, enum kmod_index type, int fd);
|
2012-01-17 00:56:17 +07:00
|
|
|
|
2011-11-21 23:35:35 +07:00
|
|
|
/*
|
|
|
|
* kmod_list
|
|
|
|
*
|
|
|
|
* access to kmod generated lists
|
|
|
|
*/
|
2011-11-22 14:38:28 +07:00
|
|
|
struct kmod_list;
|
2012-01-09 12:08:26 +07:00
|
|
|
struct kmod_list *kmod_list_next(const struct kmod_list *list,
|
|
|
|
const struct kmod_list *curr);
|
|
|
|
struct kmod_list *kmod_list_prev(const struct kmod_list *list,
|
|
|
|
const struct kmod_list *curr);
|
|
|
|
struct kmod_list *kmod_list_last(const struct kmod_list *list);
|
2011-12-17 07:32:33 +07:00
|
|
|
|
2011-11-22 14:38:28 +07:00
|
|
|
#define kmod_list_foreach(list_entry, first_entry) \
|
2011-11-21 23:35:35 +07:00
|
|
|
for (list_entry = first_entry; \
|
2011-11-21 23:59:23 +07:00
|
|
|
list_entry != NULL; \
|
2011-11-22 14:38:28 +07:00
|
|
|
list_entry = kmod_list_next(first_entry, list_entry))
|
2011-11-21 23:35:35 +07:00
|
|
|
|
2011-12-17 07:33:08 +07:00
|
|
|
#define kmod_list_foreach_reverse(list_entry, first_entry) \
|
|
|
|
for (list_entry = kmod_list_last(first_entry); \
|
|
|
|
list_entry != NULL; \
|
|
|
|
list_entry = kmod_list_prev(first_entry, list_entry))
|
|
|
|
|
2012-01-13 11:24:18 +07:00
|
|
|
/*
|
|
|
|
* kmod_config_iter
|
|
|
|
*
|
|
|
|
* access to configuration lists - it allows to get each configuration's
|
|
|
|
* key/value stored by kmod
|
|
|
|
*/
|
|
|
|
struct kmod_config_iter;
|
|
|
|
struct kmod_config_iter *kmod_config_get_blacklists(const struct kmod_ctx *ctx);
|
|
|
|
struct kmod_config_iter *kmod_config_get_install_commands(const struct kmod_ctx *ctx);
|
|
|
|
struct kmod_config_iter *kmod_config_get_remove_commands(const struct kmod_ctx *ctx);
|
|
|
|
struct kmod_config_iter *kmod_config_get_aliases(const struct kmod_ctx *ctx);
|
|
|
|
struct kmod_config_iter *kmod_config_get_options(const struct kmod_ctx *ctx);
|
|
|
|
struct kmod_config_iter *kmod_config_get_softdeps(const struct kmod_ctx *ctx);
|
libkmod: add weak dependecies
It has been seen that for some network mac drivers (i.e. lan78xx) the
related module for the phy is loaded dynamically depending on the current
hardware. In this case, the associated phy is read using mdio bus and then
the associated phy module is loaded during runtime (kernel function
phy_request_driver_module). However, no software dependency is defined, so
the user tools will no be able to get this dependency. For example, if
dracut is used and the hardware is present, lan78xx will be included but no
phy module will be added, and in the next restart the device will not work
from boot because no related phy will be found during initramfs stage.
In order to solve this, we could define a normal 'pre' software dependency
in lan78xx module with all the possible phy modules (there may be some),
but proceeding in that way, all the possible phy modules would be loaded
while only one is necessary.
The idea is to create a new type of dependency, that we are going to call
'weak' to be used only by the user tools that need to detect this situation.
In that way, for example, dracut could check the 'weak' dependency of the
modules involved in order to install these dependencies in initramfs too.
That is, for the commented lan78xx module, defining the 'weak' dependency
with the possible phy modules list, only the necessary phy would be loaded
on demand keeping the same behavior, but all the possible phy modules would
be available from initramfs.
A new function 'kmod_module_get_weakdeps' in libkmod will be added for
this to avoid breaking the API and maintain backward compatibility. This
general procedure could be useful for other similar cases (not only for
dynamic phy loading).
Signed-off-by: Jose Ignacio Tornos Martinez <jtornosm@redhat.com>
Link: https://lore.kernel.org/r/20240327141116.97587-1-jtornosm@redhat.com
2024-03-27 21:11:16 +07:00
|
|
|
struct kmod_config_iter *kmod_config_get_weakdeps(const struct kmod_ctx *ctx);
|
2012-01-13 11:24:18 +07:00
|
|
|
const char *kmod_config_iter_get_key(const struct kmod_config_iter *iter);
|
|
|
|
const char *kmod_config_iter_get_value(const struct kmod_config_iter *iter);
|
|
|
|
bool kmod_config_iter_next(struct kmod_config_iter *iter);
|
|
|
|
void kmod_config_iter_free_iter(struct kmod_config_iter *iter);
|
|
|
|
|
2012-02-01 02:23:35 +07:00
|
|
|
/*
|
|
|
|
* kmod_module
|
|
|
|
*
|
|
|
|
* Operate on kernel modules
|
|
|
|
*/
|
|
|
|
struct kmod_module;
|
|
|
|
int kmod_module_new_from_name(struct kmod_ctx *ctx, const char *name,
|
|
|
|
struct kmod_module **mod);
|
|
|
|
int kmod_module_new_from_path(struct kmod_ctx *ctx, const char *path,
|
|
|
|
struct kmod_module **mod);
|
|
|
|
int kmod_module_new_from_lookup(struct kmod_ctx *ctx, const char *given_alias,
|
|
|
|
struct kmod_list **list);
|
2022-02-16 14:10:58 +07:00
|
|
|
int kmod_module_new_from_name_lookup(struct kmod_ctx *ctx,
|
|
|
|
const char *modname,
|
|
|
|
struct kmod_module **mod);
|
2012-02-01 02:23:35 +07:00
|
|
|
int kmod_module_new_from_loaded(struct kmod_ctx *ctx,
|
|
|
|
struct kmod_list **list);
|
|
|
|
|
|
|
|
struct kmod_module *kmod_module_ref(struct kmod_module *mod);
|
|
|
|
struct kmod_module *kmod_module_unref(struct kmod_module *mod);
|
|
|
|
int kmod_module_unref_list(struct kmod_list *list);
|
|
|
|
struct kmod_module *kmod_module_get_module(const struct kmod_list *entry);
|
|
|
|
|
|
|
|
|
2011-12-21 04:31:14 +07:00
|
|
|
/* Removal flags */
|
2011-11-25 00:42:16 +07:00
|
|
|
enum kmod_remove {
|
2011-11-24 01:10:58 +07:00
|
|
|
KMOD_REMOVE_FORCE = O_TRUNC,
|
2013-09-20 13:30:07 +07:00
|
|
|
KMOD_REMOVE_NOWAIT = O_NONBLOCK, /* always set */
|
2022-06-04 04:50:41 +07:00
|
|
|
/* libkmod-only defines, not passed to kernel */
|
|
|
|
KMOD_REMOVE_NOLOG = 1,
|
2011-11-24 01:10:58 +07:00
|
|
|
};
|
|
|
|
|
2011-12-21 04:31:14 +07:00
|
|
|
/* Insertion flags */
|
2011-11-25 10:22:56 +07:00
|
|
|
enum kmod_insert {
|
|
|
|
KMOD_INSERT_FORCE_VERMAGIC = 0x1,
|
|
|
|
KMOD_INSERT_FORCE_MODVERSION = 0x2,
|
|
|
|
};
|
|
|
|
|
2011-12-27 20:40:10 +07:00
|
|
|
/* Flags to kmod_module_probe_insert_module() */
|
|
|
|
enum kmod_probe {
|
2012-01-31 01:37:57 +07:00
|
|
|
KMOD_PROBE_FORCE_VERMAGIC = 0x00001,
|
|
|
|
KMOD_PROBE_FORCE_MODVERSION = 0x00002,
|
|
|
|
KMOD_PROBE_IGNORE_COMMAND = 0x00004,
|
2012-01-31 03:54:45 +07:00
|
|
|
KMOD_PROBE_IGNORE_LOADED = 0x00008,
|
2012-01-31 04:00:58 +07:00
|
|
|
KMOD_PROBE_DRY_RUN = 0x00010,
|
2012-02-06 21:46:39 +07:00
|
|
|
KMOD_PROBE_FAIL_ON_LOADED = 0x00020,
|
2012-01-29 10:49:09 +07:00
|
|
|
|
|
|
|
/* codes below can be used in return value, too */
|
2012-01-31 01:37:57 +07:00
|
|
|
KMOD_PROBE_APPLY_BLACKLIST_ALL = 0x10000,
|
|
|
|
KMOD_PROBE_APPLY_BLACKLIST = 0x20000,
|
2012-08-17 19:38:05 +07:00
|
|
|
KMOD_PROBE_APPLY_BLACKLIST_ALIAS_ONLY = 0x40000,
|
2011-12-27 20:40:10 +07:00
|
|
|
};
|
|
|
|
|
2012-02-24 22:05:11 +07:00
|
|
|
/* Flags to kmod_module_apply_filter() */
|
|
|
|
enum kmod_filter {
|
|
|
|
KMOD_FILTER_BLACKLIST = 0x00001,
|
|
|
|
KMOD_FILTER_BUILTIN = 0x00002,
|
|
|
|
};
|
|
|
|
|
2011-11-25 10:22:56 +07:00
|
|
|
int kmod_module_remove_module(struct kmod_module *mod, unsigned int flags);
|
2012-02-01 02:23:35 +07:00
|
|
|
int kmod_module_insert_module(struct kmod_module *mod, unsigned int flags,
|
|
|
|
const char *options);
|
2011-12-27 20:40:10 +07:00
|
|
|
int kmod_module_probe_insert_module(struct kmod_module *mod,
|
2012-01-09 12:08:26 +07:00
|
|
|
unsigned int flags, const char *extra_options,
|
2012-02-01 02:23:35 +07:00
|
|
|
int (*run_install)(struct kmod_module *m,
|
|
|
|
const char *cmdline, void *data),
|
2012-01-31 02:02:06 +07:00
|
|
|
const void *data,
|
2012-02-01 02:23:35 +07:00
|
|
|
void (*print_action)(struct kmod_module *m, bool install,
|
|
|
|
const char *options));
|
|
|
|
|
2011-11-25 10:22:56 +07:00
|
|
|
|
2011-12-03 05:24:07 +07:00
|
|
|
const char *kmod_module_get_name(const struct kmod_module *mod);
|
|
|
|
const char *kmod_module_get_path(const struct kmod_module *mod);
|
2012-02-01 02:23:35 +07:00
|
|
|
const char *kmod_module_get_options(const struct kmod_module *mod);
|
|
|
|
const char *kmod_module_get_install_commands(const struct kmod_module *mod);
|
|
|
|
const char *kmod_module_get_remove_commands(const struct kmod_module *mod);
|
|
|
|
struct kmod_list *kmod_module_get_dependencies(const struct kmod_module *mod);
|
|
|
|
int kmod_module_get_softdeps(const struct kmod_module *mod,
|
|
|
|
struct kmod_list **pre, struct kmod_list **post);
|
libkmod: add weak dependecies
It has been seen that for some network mac drivers (i.e. lan78xx) the
related module for the phy is loaded dynamically depending on the current
hardware. In this case, the associated phy is read using mdio bus and then
the associated phy module is loaded during runtime (kernel function
phy_request_driver_module). However, no software dependency is defined, so
the user tools will no be able to get this dependency. For example, if
dracut is used and the hardware is present, lan78xx will be included but no
phy module will be added, and in the next restart the device will not work
from boot because no related phy will be found during initramfs stage.
In order to solve this, we could define a normal 'pre' software dependency
in lan78xx module with all the possible phy modules (there may be some),
but proceeding in that way, all the possible phy modules would be loaded
while only one is necessary.
The idea is to create a new type of dependency, that we are going to call
'weak' to be used only by the user tools that need to detect this situation.
In that way, for example, dracut could check the 'weak' dependency of the
modules involved in order to install these dependencies in initramfs too.
That is, for the commented lan78xx module, defining the 'weak' dependency
with the possible phy modules list, only the necessary phy would be loaded
on demand keeping the same behavior, but all the possible phy modules would
be available from initramfs.
A new function 'kmod_module_get_weakdeps' in libkmod will be added for
this to avoid breaking the API and maintain backward compatibility. This
general procedure could be useful for other similar cases (not only for
dynamic phy loading).
Signed-off-by: Jose Ignacio Tornos Martinez <jtornosm@redhat.com>
Link: https://lore.kernel.org/r/20240327141116.97587-1-jtornosm@redhat.com
2024-03-27 21:11:16 +07:00
|
|
|
int kmod_module_get_weakdeps(const struct kmod_module *mod,
|
|
|
|
struct kmod_list **weak);
|
2012-02-01 02:23:35 +07:00
|
|
|
int kmod_module_get_filtered_blacklist(const struct kmod_ctx *ctx,
|
2012-02-24 22:05:11 +07:00
|
|
|
const struct kmod_list *input,
|
|
|
|
struct kmod_list **output) __attribute__ ((deprecated));
|
|
|
|
int kmod_module_apply_filter(const struct kmod_ctx *ctx,
|
|
|
|
enum kmod_filter filter_type,
|
2012-02-01 02:23:35 +07:00
|
|
|
const struct kmod_list *input,
|
|
|
|
struct kmod_list **output);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Information regarding "live information" from module's state, as returned
|
|
|
|
* by kernel
|
|
|
|
*/
|
2011-12-01 04:01:01 +07:00
|
|
|
|
2011-12-04 21:40:00 +07:00
|
|
|
enum kmod_module_initstate {
|
|
|
|
KMOD_MODULE_BUILTIN = 0,
|
|
|
|
KMOD_MODULE_LIVE,
|
|
|
|
KMOD_MODULE_COMING,
|
2011-12-05 20:42:12 +07:00
|
|
|
KMOD_MODULE_GOING,
|
|
|
|
/* Padding to make sure enum is not mapped to char */
|
2018-06-16 13:45:20 +07:00
|
|
|
_KMOD_MODULE_PAD = 1U << 31,
|
2011-12-04 21:40:00 +07:00
|
|
|
};
|
2012-01-09 12:08:26 +07:00
|
|
|
const char *kmod_module_initstate_str(enum kmod_module_initstate state);
|
2011-12-04 21:40:00 +07:00
|
|
|
int kmod_module_get_initstate(const struct kmod_module *mod);
|
|
|
|
int kmod_module_get_refcnt(const struct kmod_module *mod);
|
|
|
|
struct kmod_list *kmod_module_get_holders(const struct kmod_module *mod);
|
|
|
|
struct kmod_list *kmod_module_get_sections(const struct kmod_module *mod);
|
|
|
|
const char *kmod_module_section_get_name(const struct kmod_list *entry);
|
|
|
|
unsigned long kmod_module_section_get_address(const struct kmod_list *entry);
|
|
|
|
void kmod_module_section_free_list(struct kmod_list *list);
|
2011-12-04 23:02:30 +07:00
|
|
|
long kmod_module_get_size(const struct kmod_module *mod);
|
2011-12-04 21:40:00 +07:00
|
|
|
|
2011-12-11 05:47:01 +07:00
|
|
|
|
2012-02-01 02:23:35 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Information retrieved from ELF headers and sections
|
|
|
|
*/
|
2011-12-17 06:18:10 +07:00
|
|
|
|
2011-12-18 10:25:06 +07:00
|
|
|
int kmod_module_get_info(const struct kmod_module *mod, struct kmod_list **list);
|
|
|
|
const char *kmod_module_info_get_key(const struct kmod_list *entry);
|
|
|
|
const char *kmod_module_info_get_value(const struct kmod_list *entry);
|
|
|
|
void kmod_module_info_free_list(struct kmod_list *list);
|
|
|
|
|
|
|
|
int kmod_module_get_versions(const struct kmod_module *mod, struct kmod_list **list);
|
|
|
|
const char *kmod_module_version_get_symbol(const struct kmod_list *entry);
|
|
|
|
uint64_t kmod_module_version_get_crc(const struct kmod_list *entry);
|
|
|
|
void kmod_module_versions_free_list(struct kmod_list *list);
|
|
|
|
|
2011-12-20 06:23:13 +07:00
|
|
|
int kmod_module_get_symbols(const struct kmod_module *mod, struct kmod_list **list);
|
|
|
|
const char *kmod_module_symbol_get_symbol(const struct kmod_list *entry);
|
|
|
|
uint64_t kmod_module_symbol_get_crc(const struct kmod_list *entry);
|
|
|
|
void kmod_module_symbols_free_list(struct kmod_list *list);
|
|
|
|
|
2011-12-20 20:54:53 +07:00
|
|
|
enum kmod_symbol_bind {
|
|
|
|
KMOD_SYMBOL_NONE = '\0',
|
|
|
|
KMOD_SYMBOL_LOCAL = 'L',
|
|
|
|
KMOD_SYMBOL_GLOBAL = 'G',
|
|
|
|
KMOD_SYMBOL_WEAK = 'W',
|
|
|
|
KMOD_SYMBOL_UNDEF = 'U'
|
|
|
|
};
|
|
|
|
|
|
|
|
int kmod_module_get_dependency_symbols(const struct kmod_module *mod, struct kmod_list **list);
|
|
|
|
const char *kmod_module_dependency_symbol_get_symbol(const struct kmod_list *entry);
|
|
|
|
int kmod_module_dependency_symbol_get_bind(const struct kmod_list *entry);
|
|
|
|
uint64_t kmod_module_dependency_symbol_get_crc(const struct kmod_list *entry);
|
|
|
|
void kmod_module_dependency_symbols_free_list(struct kmod_list *list);
|
|
|
|
|
2011-11-28 21:03:17 +07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
2011-11-21 23:35:35 +07:00
|
|
|
#endif
|