2011-11-21 23:35:35 +07:00
|
|
|
/*
|
|
|
|
* libkmod - interface to kernel module operations
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 ProFUSION embedded systems
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation version 2.1.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
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>
|
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;
|
2011-11-25 01:41:01 +07:00
|
|
|
struct kmod_ctx *kmod_new(const char *dirname);
|
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-11-21 23:59:23 +07:00
|
|
|
void (*log_fn)(struct kmod_ctx *ctx,
|
|
|
|
int priority, const char *file, int line,
|
|
|
|
const char *fn, const char *format,
|
|
|
|
va_list args));
|
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);
|
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;
|
2011-12-03 05:24:07 +07:00
|
|
|
struct kmod_list *kmod_list_next(const struct kmod_list *first_entry,
|
|
|
|
const struct kmod_list *list_entry);
|
|
|
|
struct kmod_list *kmod_list_prev(const struct kmod_list *first_entry,
|
|
|
|
const struct kmod_list *list_entry);
|
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-04 23:02:30 +07:00
|
|
|
int kmod_loaded_get_list(struct kmod_ctx *ctx, struct kmod_list **list);
|
2011-11-22 14:42:09 +07:00
|
|
|
|
2011-11-25 00:42:16 +07:00
|
|
|
enum kmod_remove {
|
2011-11-24 01:10:58 +07:00
|
|
|
KMOD_REMOVE_FORCE = O_TRUNC,
|
|
|
|
KMOD_REMOVE_NOWAIT = O_NONBLOCK,
|
|
|
|
};
|
|
|
|
|
2011-11-25 10:22:56 +07:00
|
|
|
enum kmod_insert {
|
|
|
|
KMOD_INSERT_FORCE_VERMAGIC = 0x1,
|
|
|
|
KMOD_INSERT_FORCE_MODVERSION = 0x2,
|
|
|
|
KMOD_INSERT_HANDLE_DEPENDENCIES = 0x4,
|
|
|
|
KMOD_INSERT_IGNORE_CONFIG = 0x8,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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);
|
2011-12-01 04:03:41 +07:00
|
|
|
int kmod_module_new_from_lookup(struct kmod_ctx *ctx, const char *alias,
|
|
|
|
struct kmod_list **list);
|
2011-11-25 10:22:56 +07:00
|
|
|
|
|
|
|
struct kmod_module *kmod_module_ref(struct kmod_module *mod);
|
|
|
|
struct kmod_module *kmod_module_unref(struct kmod_module *mod);
|
2011-12-01 04:03:41 +07:00
|
|
|
int kmod_module_unref_list(struct kmod_list *list);
|
2011-12-04 22:14:11 +07:00
|
|
|
struct kmod_module *kmod_module_get_module(const struct kmod_list *entry);
|
2011-12-06 04:40:45 +07:00
|
|
|
struct kmod_list *kmod_module_get_dependencies(const struct kmod_module *mod);
|
2011-11-25 10:22:56 +07:00
|
|
|
|
|
|
|
int kmod_module_remove_module(struct kmod_module *mod, unsigned int flags);
|
|
|
|
int kmod_module_insert_module(struct kmod_module *mod, unsigned int flags);
|
|
|
|
|
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);
|
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 */
|
|
|
|
_KMOD_MODULE_PAD = (1 << 31),
|
2011-12-04 21:40:00 +07:00
|
|
|
};
|
|
|
|
const char *kmod_module_initstate_str(enum kmod_module_initstate initstate);
|
|
|
|
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-11-28 21:03:17 +07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
2011-11-21 23:35:35 +07:00
|
|
|
#endif
|