2 * QEMU Module Infrastructure
4 * Copyright IBM, Corp. 2009
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "qemu/osdep.h"
20 #include "qemu/queue.h"
21 #include "qemu/module.h"
23 typedef struct ModuleEntry
26 QTAILQ_ENTRY(ModuleEntry) node;
27 module_init_type type;
30 typedef QTAILQ_HEAD(, ModuleEntry) ModuleTypeList;
32 static ModuleTypeList init_type_list[MODULE_INIT_MAX];
33 static bool modules_init_done[MODULE_INIT_MAX];
35 static ModuleTypeList dso_init_list;
37 static void init_lists(void)
46 for (i = 0; i < MODULE_INIT_MAX; i++) {
47 QTAILQ_INIT(&init_type_list[i]);
50 QTAILQ_INIT(&dso_init_list);
56 static ModuleTypeList *find_type(module_init_type type)
60 return &init_type_list[type];
63 void register_module_init(void (*fn)(void), module_init_type type)
68 e = g_malloc0(sizeof(*e));
74 QTAILQ_INSERT_TAIL(l, e, node);
77 void register_dso_module_init(void (*fn)(void), module_init_type type)
83 e = g_malloc0(sizeof(*e));
87 QTAILQ_INSERT_TAIL(&dso_init_list, e, node);
90 void module_call_init(module_init_type type)
95 if (modules_init_done[type]) {
101 QTAILQ_FOREACH(e, l, node) {
105 modules_init_done[type] = true;
108 #ifdef CONFIG_MODULES
109 static int module_load_file(const char *fname)
113 const char *dsosuf = HOST_DSOSUF;
114 int len = strlen(fname);
115 int suf_len = strlen(dsosuf);
116 ModuleEntry *e, *next;
119 if (len <= suf_len || strcmp(&fname[len - suf_len], dsosuf)) {
124 if (access(fname, F_OK)) {
129 assert(QTAILQ_EMPTY(&dso_init_list));
131 g_module = g_module_open(fname, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
133 fprintf(stderr, "Failed to open module: %s\n",
138 if (!g_module_symbol(g_module, DSO_STAMP_FUN_STR, (gpointer *)&sym)) {
139 fprintf(stderr, "Failed to initialize module: %s\n",
141 /* Print some info if this is a QEMU module (but from different build),
142 * this will make debugging user problems easier. */
143 if (g_module_symbol(g_module, "qemu_module_dummy", (gpointer *)&sym)) {
145 "Note: only modules from the same build can be loaded.\n");
147 g_module_close(g_module);
150 QTAILQ_FOREACH(e, &dso_init_list, node) {
152 register_module_init(e->init, e->type);
157 QTAILQ_FOREACH_SAFE(e, &dso_init_list, node, next) {
158 QTAILQ_REMOVE(&dso_init_list, e, node);
166 bool module_load_one(const char *prefix, const char *lib_name)
168 bool success = false;
170 #ifdef CONFIG_MODULES
173 const char *search_dir;
176 int i = 0, n_dirs = 0;
178 static GHashTable *loaded_modules;
180 if (!g_module_supported()) {
181 fprintf(stderr, "Module is not supported by system.\n");
185 if (!loaded_modules) {
186 loaded_modules = g_hash_table_new(g_str_hash, g_str_equal);
189 module_name = g_strdup_printf("%s%s", prefix, lib_name);
191 if (!g_hash_table_add(loaded_modules, module_name)) {
196 exec_dir = qemu_get_exec_dir();
197 search_dir = getenv("QEMU_MODULE_DIR");
198 if (search_dir != NULL) {
199 dirs[n_dirs++] = g_strdup_printf("%s", search_dir);
201 dirs[n_dirs++] = g_strdup_printf("%s", CONFIG_QEMU_MODDIR);
202 dirs[n_dirs++] = g_strdup_printf("%s/..", exec_dir ? : "");
203 dirs[n_dirs++] = g_strdup_printf("%s", exec_dir ? : "");
204 assert(n_dirs <= ARRAY_SIZE(dirs));
209 for (i = 0; i < n_dirs; i++) {
210 fname = g_strdup_printf("%s/%s%s",
211 dirs[i], module_name, HOST_DSOSUF);
212 ret = module_load_file(fname);
215 /* Try loading until loaded a module file */
223 g_hash_table_remove(loaded_modules, module_name);
227 for (i = 0; i < n_dirs; i++) {