blob: 7e14239dd543fded2d2d4e44373724590cdba4b4 [file] [log] [blame]
Lucas De Marchi586fc302011-11-21 14:35:35 -02001/*
2 * libkmod - interface to kernel module operations
3 *
4 * Copyright (C) 2011 ProFUSION embedded systems
Lucas De Marchi586fc302011-11-21 14:35:35 -02005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
Lucas De Marchicb451f32011-12-12 18:24:35 -02008 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
Lucas De Marchi586fc302011-11-21 14:35:35 -020010 *
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
21#include <stdio.h>
22#include <stdlib.h>
23#include <stddef.h>
24#include <stdarg.h>
Lucas De Marchi1eb2ef62011-12-05 19:58:39 -020025#include <limits.h>
Lucas De Marchi586fc302011-11-21 14:35:35 -020026#include <unistd.h>
27#include <errno.h>
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -020028#include <fnmatch.h>
Lucas De Marchi586fc302011-11-21 14:35:35 -020029#include <string.h>
30#include <ctype.h>
Lucas De Marchi221631d2011-11-24 16:41:01 -020031#include <sys/utsname.h>
Lucas De Marchi586fc302011-11-21 14:35:35 -020032
33#include "libkmod.h"
34#include "libkmod-private.h"
Lucas De Marchi9ba6f572011-11-30 20:31:45 -020035#include "libkmod-index.h"
Lucas De Marchi586fc302011-11-21 14:35:35 -020036
Lucas De Marchifd186ae2011-12-06 03:38:37 -020037#define KMOD_HASH_SIZE (256)
38#define KMOD_LRU_MAX (128)
39
Lucas De Marchi586fc302011-11-21 14:35:35 -020040/**
41 * SECTION:libkmod
42 * @short_description: libkmod context
43 *
44 * The context contains the default values for the library user,
45 * and is passed to all library operations.
46 */
47
Lucas De Marchia4a75022011-12-08 14:56:48 -020048enum kmod_index {
49 KMOD_INDEX_DEP = 0,
50 KMOD_INDEX_ALIAS,
51 KMOD_INDEX_SYMBOL,
52 _KMOD_INDEX_LAST,
53};
54
55static const char* index_files[] = {
56 [KMOD_INDEX_DEP] = "modules.dep",
57 [KMOD_INDEX_ALIAS] = "modules.alias",
58 [KMOD_INDEX_SYMBOL] = "modules.symbols",
59};
60
Gustavo Sverzut Barbiericb8d4d32011-12-11 20:37:01 -020061static const char *default_config_paths[] = {
62 "/run/modprobe.d",
63 "/etc/modprobe.d",
64 "/lib/modprobe.d",
65 NULL
66};
67
Lucas De Marchi586fc302011-11-21 14:35:35 -020068/**
69 * kmod_ctx:
70 *
71 * Opaque object representing the library context.
72 */
73struct kmod_ctx {
74 int refcount;
Gustavo Sverzut Barbieri8d3f3ef2011-12-02 21:10:24 -020075 int log_priority;
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -020076 void (*log_fn)(void *data,
Lucas De Marchie4351b02011-11-21 14:59:23 -020077 int priority, const char *file, int line,
78 const char *fn, const char *format, va_list args);
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -020079 void *log_data;
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -020080 const void *userdata;
81 char *dirname;
Gustavo Sverzut Barbierid13e6062011-12-02 21:40:22 -020082 struct kmod_config *config;
Lucas De Marchifd186ae2011-12-06 03:38:37 -020083 struct kmod_hash *modules_by_name;
Lucas De Marchi33bb69b2011-12-08 14:59:51 -020084 struct index_mm *indexes[_KMOD_INDEX_LAST];
Lucas De Marchi586fc302011-11-21 14:35:35 -020085};
86
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -020087void kmod_log(const struct kmod_ctx *ctx,
Lucas De Marchie4351b02011-11-21 14:59:23 -020088 int priority, const char *file, int line, const char *fn,
89 const char *format, ...)
Lucas De Marchi586fc302011-11-21 14:35:35 -020090{
91 va_list args;
92
Gustavo Sverzut Barbierie5c60f12011-12-08 13:58:46 -020093 if (ctx->log_fn == NULL)
94 return;
95
Lucas De Marchi586fc302011-11-21 14:35:35 -020096 va_start(args, format);
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -020097 ctx->log_fn(ctx->log_data, priority, file, line, fn, format, args);
Lucas De Marchi586fc302011-11-21 14:35:35 -020098 va_end(args);
99}
100
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -0200101static void log_filep(void *data,
Lucas De Marchie4351b02011-11-21 14:59:23 -0200102 int priority, const char *file, int line,
103 const char *fn, const char *format, va_list args)
Lucas De Marchi586fc302011-11-21 14:35:35 -0200104{
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -0200105 FILE *fp = data;
106 fprintf(fp, "libkmod: %s: ", fn);
107 vfprintf(fp, format, args);
Lucas De Marchi586fc302011-11-21 14:35:35 -0200108}
109
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -0200110const char *kmod_get_dirname(const struct kmod_ctx *ctx)
Lucas De Marchi221631d2011-11-24 16:41:01 -0200111{
112 return ctx->dirname;
113}
114
Lucas De Marchi586fc302011-11-21 14:35:35 -0200115/**
116 * kmod_get_userdata:
117 * @ctx: kmod library context
118 *
119 * Retrieve stored data pointer from library context. This might be useful
Lucas De Marchibe5a6de2011-12-14 03:44:38 -0200120 * to access from callbacks.
Lucas De Marchi586fc302011-11-21 14:35:35 -0200121 *
122 * Returns: stored userdata
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200123 */
Lucas De Marchi6d177552011-11-23 11:52:30 -0200124KMOD_EXPORT void *kmod_get_userdata(const struct kmod_ctx *ctx)
Lucas De Marchi586fc302011-11-21 14:35:35 -0200125{
126 if (ctx == NULL)
127 return NULL;
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -0200128 return (void *)ctx->userdata;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200129}
130
131/**
132 * kmod_set_userdata:
133 * @ctx: kmod library context
134 * @userdata: data pointer
135 *
136 * Store custom @userdata in the library context.
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200137 */
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -0200138KMOD_EXPORT void kmod_set_userdata(struct kmod_ctx *ctx, const void *userdata)
Lucas De Marchi586fc302011-11-21 14:35:35 -0200139{
140 if (ctx == NULL)
141 return;
142 ctx->userdata = userdata;
143}
144
145static int log_priority(const char *priority)
146{
147 char *endptr;
148 int prio;
149
150 prio = strtol(priority, &endptr, 10);
151 if (endptr[0] == '\0' || isspace(endptr[0]))
152 return prio;
153 if (strncmp(priority, "err", 3) == 0)
154 return LOG_ERR;
155 if (strncmp(priority, "info", 4) == 0)
156 return LOG_INFO;
157 if (strncmp(priority, "debug", 5) == 0)
158 return LOG_DEBUG;
159 return 0;
160}
161
Lucas De Marchi904c63a2011-11-30 20:27:50 -0200162static const char *dirname_default_prefix = "/lib/modules";
163
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -0200164static char *get_kernel_release(const char *dirname)
Lucas De Marchi221631d2011-11-24 16:41:01 -0200165{
166 struct utsname u;
Lucas De Marchi904c63a2011-11-30 20:27:50 -0200167 char *p;
168
169 if (dirname != NULL)
170 return strdup(dirname);
Lucas De Marchi221631d2011-11-24 16:41:01 -0200171
172 if (uname(&u) < 0)
173 return NULL;
174
Lucas De Marchi904c63a2011-11-30 20:27:50 -0200175 if (asprintf(&p, "%s/%s", dirname_default_prefix, u.release) < 0)
176 return NULL;
177
178 return p;
Lucas De Marchi221631d2011-11-24 16:41:01 -0200179}
180
Lucas De Marchi586fc302011-11-21 14:35:35 -0200181/**
182 * kmod_new:
183 *
184 * Create kmod library context. This reads the kmod configuration
185 * and fills in the default values.
186 *
187 * The initial refcount is 1, and needs to be decremented to
188 * release the resources of the kmod library context.
189 *
Gustavo Sverzut Barbiericb8d4d32011-12-11 20:37:01 -0200190 * @dirname: what to consider as linux module's directory, if NULL
Lucas De Marchibe5a6de2011-12-14 03:44:38 -0200191 * defaults to /lib/modules/`uname -r`.
Gustavo Sverzut Barbiericb8d4d32011-12-11 20:37:01 -0200192 * @config_paths: ordered array of paths (directories or files) where
Lucas De Marchibe5a6de2011-12-14 03:44:38 -0200193 * to load from user-defined configuration parameters such as
194 * alias, blacklists, commands (install, remove). If
195 * NULL defaults to /run/modprobe.d, /etc/modprobe.d and
196 * /lib/modprobe.d. Give an empty vector if configuration should
197 * not be read. This array must be null terminated.
Gustavo Sverzut Barbiericb8d4d32011-12-11 20:37:01 -0200198 *
Lucas De Marchi586fc302011-11-21 14:35:35 -0200199 * Returns: a new kmod library context
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200200 */
Lucas De Marchic35347f2011-12-12 10:48:02 -0200201KMOD_EXPORT struct kmod_ctx *kmod_new(const char *dirname,
202 const char * const *config_paths)
Lucas De Marchi586fc302011-11-21 14:35:35 -0200203{
204 const char *env;
Lucas De Marchi52a77042011-11-21 15:07:27 -0200205 struct kmod_ctx *ctx;
Gustavo Sverzut Barbierid13e6062011-12-02 21:40:22 -0200206 int err;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200207
Lucas De Marchi52a77042011-11-21 15:07:27 -0200208 ctx = calloc(1, sizeof(struct kmod_ctx));
209 if (!ctx)
210 return NULL;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200211
Lucas De Marchi52a77042011-11-21 15:07:27 -0200212 ctx->refcount = 1;
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -0200213 ctx->log_fn = log_filep;
214 ctx->log_data = stderr;
Lucas De Marchi52a77042011-11-21 15:07:27 -0200215 ctx->log_priority = LOG_ERR;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200216
Lucas De Marchi904c63a2011-11-30 20:27:50 -0200217 ctx->dirname = get_kernel_release(dirname);
Lucas De Marchi221631d2011-11-24 16:41:01 -0200218
Lucas De Marchi586fc302011-11-21 14:35:35 -0200219 /* environment overwrites config */
220 env = getenv("KMOD_LOG");
221 if (env != NULL)
Lucas De Marchi52a77042011-11-21 15:07:27 -0200222 kmod_set_log_priority(ctx, log_priority(env));
Lucas De Marchi586fc302011-11-21 14:35:35 -0200223
Gustavo Sverzut Barbiericb8d4d32011-12-11 20:37:01 -0200224 if (config_paths == NULL)
225 config_paths = default_config_paths;
226 err = kmod_config_new(ctx, &ctx->config, config_paths);
Gustavo Sverzut Barbierid13e6062011-12-02 21:40:22 -0200227 if (err < 0) {
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200228 ERR(ctx, "could not create config\n");
229 goto fail;
230 }
231
232 ctx->modules_by_name = kmod_hash_new(KMOD_HASH_SIZE, NULL);
233 if (ctx->modules_by_name == NULL) {
234 ERR(ctx, "could not create by-name hash\n");
235 goto fail;
Gustavo Sverzut Barbierid13e6062011-12-02 21:40:22 -0200236 }
Lucas De Marchi7c2ab352011-11-29 18:07:43 -0200237
Lucas De Marchiae6df842011-11-25 01:05:30 -0200238 INFO(ctx, "ctx %p created\n", ctx);
239 DBG(ctx, "log_priority=%d\n", ctx->log_priority);
Lucas De Marchi52a77042011-11-21 15:07:27 -0200240
241 return ctx;
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200242
243fail:
244 free(ctx->modules_by_name);
245 free(ctx->dirname);
246 free(ctx);
247 return NULL;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200248}
249
250/**
251 * kmod_ref:
252 * @ctx: kmod library context
253 *
254 * Take a reference of the kmod library context.
255 *
256 * Returns: the passed kmod library context
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200257 */
Lucas De Marchi586fc302011-11-21 14:35:35 -0200258KMOD_EXPORT struct kmod_ctx *kmod_ref(struct kmod_ctx *ctx)
259{
260 if (ctx == NULL)
261 return NULL;
262 ctx->refcount++;
263 return ctx;
264}
265
266/**
267 * kmod_unref:
268 * @ctx: kmod library context
269 *
270 * Drop a reference of the kmod library context. If the refcount
271 * reaches zero, the resources of the context will be released.
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200272 */
Lucas De Marchi586fc302011-11-21 14:35:35 -0200273KMOD_EXPORT struct kmod_ctx *kmod_unref(struct kmod_ctx *ctx)
274{
275 if (ctx == NULL)
276 return NULL;
Lucas De Marchi4d1e6892011-11-24 15:41:48 -0200277
278 if (--ctx->refcount > 0)
Lucas De Marchi586fc302011-11-21 14:35:35 -0200279 return ctx;
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200280
Lucas De Marchiae6df842011-11-25 01:05:30 -0200281 INFO(ctx, "context %p released\n", ctx);
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200282
283 kmod_unload_resources(ctx);
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200284 kmod_hash_free(ctx->modules_by_name);
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -0200285 free(ctx->dirname);
Gustavo Sverzut Barbierid13e6062011-12-02 21:40:22 -0200286 if (ctx->config)
287 kmod_config_free(ctx->config);
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200288
Lucas De Marchi586fc302011-11-21 14:35:35 -0200289 free(ctx);
290 return NULL;
291}
292
293/**
294 * kmod_set_log_fn:
295 * @ctx: kmod library context
296 * @log_fn: function to be called for logging messages
297 *
298 * The built-in logging writes to stderr. It can be
299 * overridden by a custom function, to plug log messages
300 * into the user's logging functionality.
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200301 */
Lucas De Marchi586fc302011-11-21 14:35:35 -0200302KMOD_EXPORT void kmod_set_log_fn(struct kmod_ctx *ctx,
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -0200303 void (*log_fn)(void *data,
Lucas De Marchie4351b02011-11-21 14:59:23 -0200304 int priority, const char *file,
305 int line, const char *fn,
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -0200306 const char *format, va_list args),
307 const void *data)
Lucas De Marchi586fc302011-11-21 14:35:35 -0200308{
Gustavo Sverzut Barbierie5c60f12011-12-08 13:58:46 -0200309 if (ctx == NULL)
310 return;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200311 ctx->log_fn = log_fn;
Gustavo Sverzut Barbieri1bdd9512011-12-08 13:47:55 -0200312 ctx->log_data = (void *)data;
Lucas De Marchiae6df842011-11-25 01:05:30 -0200313 INFO(ctx, "custom logging function %p registered\n", log_fn);
Lucas De Marchi586fc302011-11-21 14:35:35 -0200314}
315
316/**
317 * kmod_get_log_priority:
318 * @ctx: kmod library context
319 *
320 * Returns: the current logging priority
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200321 */
Lucas De Marchi6d177552011-11-23 11:52:30 -0200322KMOD_EXPORT int kmod_get_log_priority(const struct kmod_ctx *ctx)
Lucas De Marchi586fc302011-11-21 14:35:35 -0200323{
Gustavo Sverzut Barbierie5c60f12011-12-08 13:58:46 -0200324 if (ctx == NULL)
325 return -1;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200326 return ctx->log_priority;
327}
328
329/**
330 * kmod_set_log_priority:
331 * @ctx: kmod library context
332 * @priority: the new logging priority
333 *
334 * Set the current logging priority. The value controls which messages
335 * are logged.
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200336 */
Lucas De Marchi586fc302011-11-21 14:35:35 -0200337KMOD_EXPORT void kmod_set_log_priority(struct kmod_ctx *ctx, int priority)
338{
Gustavo Sverzut Barbierie5c60f12011-12-08 13:58:46 -0200339 if (ctx == NULL)
340 return;
Lucas De Marchi586fc302011-11-21 14:35:35 -0200341 ctx->log_priority = priority;
342}
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200343
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200344struct kmod_module *kmod_pool_get_module(struct kmod_ctx *ctx,
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200345 const char *key)
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200346{
347 struct kmod_module *mod;
348
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200349 mod = kmod_hash_find(ctx->modules_by_name, key);
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200350
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200351 DBG(ctx, "get module name='%s' found=%p\n", key, mod);
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200352
353 return mod;
354}
355
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200356void kmod_pool_add_module(struct kmod_ctx *ctx, struct kmod_module *mod,
357 const char *key)
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200358{
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200359 DBG(ctx, "add %p key='%s'\n", mod, key);
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200360
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200361 kmod_hash_add(ctx->modules_by_name, key, mod);
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200362}
363
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200364void kmod_pool_del_module(struct kmod_ctx *ctx, struct kmod_module *mod,
365 const char *key)
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200366{
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200367 DBG(ctx, "del %p key='%s'\n", mod, key);
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200368
Lucas De Marchi8bdeca12011-12-15 13:11:51 -0200369 kmod_hash_del(ctx->modules_by_name, key);
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200370}
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200371
Lucas De Marchia0094822011-12-02 09:53:31 -0200372static int kmod_lookup_alias_from_alias_bin(struct kmod_ctx *ctx,
Lucas De Marchi810803d2011-12-09 16:06:04 -0200373 enum kmod_index index_number,
Lucas De Marchi7b30f4f2011-12-01 16:25:37 -0200374 const char *name,
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200375 struct kmod_list **list)
376{
Lucas De Marchi6f1bc6e2011-12-02 10:02:05 -0200377 int err, nmatch = 0;
Lucas De Marchi0fbdfef2011-12-02 09:56:22 -0200378 struct index_file *idx;
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200379 struct index_value *realnames, *realname;
380
Lucas De Marchi65a84f52011-12-09 16:11:42 -0200381 if (ctx->indexes[index_number] != NULL) {
Gustavo Sverzut Barbieri3e245be2011-12-10 09:28:42 -0200382 DBG(ctx, "use mmaped index '%s' for name=%s\n",
383 index_files[index_number], name);
Lucas De Marchi65a84f52011-12-09 16:11:42 -0200384 realnames = index_mm_searchwild(ctx->indexes[index_number],
385 name);
386 } else{
387 char fn[PATH_MAX];
388
Gustavo Sverzut Barbieri3b209952011-12-10 09:21:03 -0200389 snprintf(fn, sizeof(fn), "%s/%s.bin", ctx->dirname,
Lucas De Marchi810803d2011-12-09 16:06:04 -0200390 index_files[index_number]);
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200391
Lucas De Marchi65a84f52011-12-09 16:11:42 -0200392 DBG(ctx, "file=%s name=%s\n", fn, name);
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200393
Lucas De Marchi65a84f52011-12-09 16:11:42 -0200394 idx = index_file_open(fn);
395 if (idx == NULL)
396 return -ENOSYS;
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200397
Lucas De Marchi65a84f52011-12-09 16:11:42 -0200398 realnames = index_searchwild(idx, name);
399 index_file_close(idx);
400 }
Lucas De Marchi4272d082011-12-09 15:33:37 -0200401
Ulisses Furquima955f712011-12-15 19:17:49 -0200402 for (realname = realnames; realname; realname = realname->next) {
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200403 struct kmod_module *mod;
404
Lucas De Marchiee3b3ff2011-12-13 14:20:48 -0200405 err = kmod_module_new_from_alias(ctx, name, realname->value, &mod);
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200406 if (err < 0) {
407 ERR(ctx, "%s\n", strerror(-err));
Lucas De Marchi23fc91c2011-12-01 15:35:31 -0200408 goto fail;
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200409 }
410
411 *list = kmod_list_append(*list, mod);
Lucas De Marchi23fc91c2011-12-01 15:35:31 -0200412 nmatch++;
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200413 }
414
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200415 index_values_free(realnames);
Lucas De Marchi23fc91c2011-12-01 15:35:31 -0200416 return nmatch;
417
418fail:
419 *list = kmod_list_remove_n_latest(*list, nmatch);
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200420 return err;
Lucas De Marchi7b30f4f2011-12-01 16:25:37 -0200421
422}
423
Lucas De Marchi7b30f4f2011-12-01 16:25:37 -0200424int kmod_lookup_alias_from_symbols_file(struct kmod_ctx *ctx, const char *name,
425 struct kmod_list **list)
426{
427 if (!startswith(name, "symbol:"))
428 return 0;
429
Lucas De Marchi810803d2011-12-09 16:06:04 -0200430 return kmod_lookup_alias_from_alias_bin(ctx, KMOD_INDEX_SYMBOL, name,
431 list);
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200432}
433
Lucas De Marchi49e61ca2011-12-01 16:27:04 -0200434int kmod_lookup_alias_from_aliases_file(struct kmod_ctx *ctx, const char *name,
435 struct kmod_list **list)
436{
Lucas De Marchi810803d2011-12-09 16:06:04 -0200437 return kmod_lookup_alias_from_alias_bin(ctx, KMOD_INDEX_ALIAS, name,
438 list);
Lucas De Marchi49e61ca2011-12-01 16:27:04 -0200439}
440
Lucas De Marchi671d4892011-12-05 20:23:05 -0200441char *kmod_search_moddep(struct kmod_ctx *ctx, const char *name)
Lucas De Marchi1eb2ef62011-12-05 19:58:39 -0200442{
443 struct index_file *idx;
444 char fn[PATH_MAX];
445 char *line;
446
Gustavo Sverzut Barbieri85132102011-12-10 09:26:27 -0200447 if (ctx->indexes[KMOD_INDEX_DEP]) {
448 DBG(ctx, "use mmaped index '%s' modname=%s\n",
449 index_files[KMOD_INDEX_DEP], name);
450 return index_mm_search(ctx->indexes[KMOD_INDEX_DEP], name);
451 }
452
Lucas De Marchia4a75022011-12-08 14:56:48 -0200453 snprintf(fn, sizeof(fn), "%s/%s.bin", ctx->dirname,
454 index_files[KMOD_INDEX_DEP]);
Lucas De Marchi1eb2ef62011-12-05 19:58:39 -0200455
456 DBG(ctx, "file=%s modname=%s\n", fn, name);
457
458 idx = index_file_open(fn);
459 if (idx == NULL) {
Gustavo Sverzut Barbierid01c67e2011-12-11 19:42:02 -0200460 ERR(ctx, "Could not open moddep file '%s'\n", fn);
Lucas De Marchi1eb2ef62011-12-05 19:58:39 -0200461 return NULL;
462 }
463
464 line = index_search(idx, name);
465 index_file_close(idx);
466
467 return line;
468}
469
Lucas De Marchi64700e42011-12-01 15:57:53 -0200470int kmod_lookup_alias_from_moddep_file(struct kmod_ctx *ctx, const char *name,
471 struct kmod_list **list)
472{
Lucas De Marchi1eb2ef62011-12-05 19:58:39 -0200473 char *line;
Lucas De Marchi64700e42011-12-01 15:57:53 -0200474 int n = 0;
475
476 /*
477 * Module names do not contain ':'. Return early if we know it will
478 * not be found.
479 */
480 if (strchr(name, ':'))
481 return 0;
482
Lucas De Marchi671d4892011-12-05 20:23:05 -0200483 line = kmod_search_moddep(ctx, name);
Lucas De Marchi64700e42011-12-01 15:57:53 -0200484 if (line != NULL) {
485 struct kmod_module *mod;
486
487 n = kmod_module_new_from_name(ctx, name, &mod);
488 if (n < 0) {
489 ERR(ctx, "%s\n", strerror(-n));
490 goto finish;
491 }
492
493 *list = kmod_list_append(*list, mod);
Lucas De Marchi671d4892011-12-05 20:23:05 -0200494 kmod_module_parse_depline(mod, line);
Lucas De Marchi64700e42011-12-01 15:57:53 -0200495 }
496
497finish:
498 free(line);
Lucas De Marchi64700e42011-12-01 15:57:53 -0200499
500 return n;
501}
502
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200503int kmod_lookup_alias_from_config(struct kmod_ctx *ctx, const char *name,
504 struct kmod_list **list)
505{
Gustavo Sverzut Barbierid13e6062011-12-02 21:40:22 -0200506 struct kmod_config *config = ctx->config;
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200507 struct kmod_list *l;
Lucas De Marchi23fc91c2011-12-01 15:35:31 -0200508 int err, nmatch = 0;
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200509
510 kmod_list_foreach(l, config->aliases) {
511 const char *aliasname = kmod_alias_get_name(l);
512 const char *modname = kmod_alias_get_modname(l);
513
514 if (fnmatch(aliasname, name, 0) == 0) {
515 struct kmod_module *mod;
516
Lucas De Marchiee3b3ff2011-12-13 14:20:48 -0200517 err = kmod_module_new_from_alias(ctx, aliasname,
518 modname, &mod);
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200519 if (err < 0) {
Gustavo Sverzut Barbierid01c67e2011-12-11 19:42:02 -0200520 ERR(ctx, "%s\n", strerror(-err));
Lucas De Marchi23fc91c2011-12-01 15:35:31 -0200521 goto fail;
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200522 }
523
524 *list = kmod_list_append(*list, mod);
Lucas De Marchi23fc91c2011-12-01 15:35:31 -0200525 nmatch++;
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200526 }
527 }
528
Lucas De Marchi23fc91c2011-12-01 15:35:31 -0200529 return nmatch;
530
531fail:
532 *list = kmod_list_remove_n_latest(*list, nmatch);
533 return err;
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200534}
Gustavo Sverzut Barbieri1487a642011-12-08 05:17:43 -0200535
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200536/**
537 * kmod_module_get_filtered_blacklist:
538 * @ctx: kmod library context
Lucas De Marchibe5a6de2011-12-14 03:44:38 -0200539 * @input: list of kmod_module to be filtered with blacklist
Lucas De Marchi54ba8b32011-12-09 16:42:14 -0200540 * @output: where to save the new list
541 *
542 * Given a list @input, this function filter it out with config's blacklist
543 * ans save it in @output.
544 *
545 * Returns: 0 on success or < 0 otherwise. @output is saved with the updated
546 * list.
547 */
Lucas De Marchic35347f2011-12-12 10:48:02 -0200548KMOD_EXPORT int kmod_module_get_filtered_blacklist(const struct kmod_ctx *ctx,
549 const struct kmod_list *input,
550 struct kmod_list **output)
Gustavo Sverzut Barbieri1487a642011-12-08 05:17:43 -0200551{
552 const struct kmod_config *config;
553 const struct kmod_list *li;
554
555 if (ctx == NULL || output == NULL)
556 return -ENOENT;
557
558 *output = NULL;
559 if (input == NULL)
560 return 0;
561
562 config = ctx->config;
563 kmod_list_foreach(li, input) {
564 struct kmod_module *mod = li->data;
565 const struct kmod_list *lb;
566 struct kmod_list *node;
567 bool filtered = false;
568 kmod_list_foreach(lb, config->blacklists) {
569 const char *name = lb->data;
570 if (streq(name, kmod_module_get_name(mod))) {
571 filtered = true;
572 break;
573 }
574 }
575 if (filtered)
576 continue;
577
578 node = kmod_list_append(*output, mod);
579 if (node == NULL)
580 goto fail;
581 *output = node;
582 kmod_module_ref(mod);
583 }
584 return 0;
585
586fail:
587 kmod_module_unref_list(*output);
588 *output = NULL;
589 return -ENOMEM;
590}
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200591
Lucas De Marchibe5a6de2011-12-14 03:44:38 -0200592/**
593 * kmod_load_resources:
594 * @ctx: kmod library context
595 *
596 * Load indexes and keep them open in @ctx. This way it's faster to lookup
597 * information within the indexes. If this function is not called before a
598 * search, the necessary index is always opened and closed.
599 *
600 * If user will do more than one or two lookups, insertions, deletions, most
601 * likely it's good to call this function first. Particularly in a daemon like
602 * udev that on bootup issues hundreds of calls to lookup the index, calling
603 * this function will speedup the searches.
604 *
605 * Returns: 0 on success or < 0 otherwise.
606 */
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200607KMOD_EXPORT int kmod_load_resources(struct kmod_ctx *ctx)
608{
609 size_t i;
610
611 if (ctx == NULL)
612 return -ENOENT;
613
614 for (i = 0; i < ARRAY_SIZE(index_files); i++) {
Lucas De Marchi6de8f6e2011-12-14 03:58:31 -0200615 char path[PATH_MAX];
Lucas De Marchi3e676762011-12-14 03:53:43 -0200616
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200617 if (ctx->indexes[i] == NULL) {
Lucas De Marchi6de8f6e2011-12-14 03:58:31 -0200618 INFO(ctx, "Index %s already loaded\n", index_files[i]);
Lucas De Marchi3e676762011-12-14 03:53:43 -0200619 continue;
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200620 }
Lucas De Marchi3e676762011-12-14 03:53:43 -0200621
Lucas De Marchi6de8f6e2011-12-14 03:58:31 -0200622 snprintf(path, sizeof(path), "%s/%s.bin", ctx->dirname,
623 index_files[i]);
624 ctx->indexes[i] = index_mm_open(ctx, path, true);
Lucas De Marchi3e676762011-12-14 03:53:43 -0200625 if (ctx->indexes[i] == NULL)
626 goto fail;
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200627 }
628
629 return 0;
630
631fail:
632 kmod_unload_resources(ctx);
633 return -ENOMEM;
634}
635
Lucas De Marchibe5a6de2011-12-14 03:44:38 -0200636/**
637 * kmod_unload_resources:
638 * @ctx: kmod library context
639 *
640 * Unload all the indexes. This will free the resources to maintain the index
641 * open and all subsequent searches will need to open and close the index.
642 *
643 * User is free to call kmod_load_resources() and kmod_unload_resources() as
644 * many times as wanted during the lifecycle of @ctx. For example, if a daemon
645 * knows that when starting up it will lookup a lot of modules, it could call
646 * kmod_load_resources() and after the first burst of searches is gone, it
647 * could free the resources by calling kmod_unload_resources().
648 *
649 * Returns: 0 on success or < 0 otherwise.
650 */
Lucas De Marchi33bb69b2011-12-08 14:59:51 -0200651KMOD_EXPORT void kmod_unload_resources(struct kmod_ctx *ctx)
652{
653 size_t i;
654
655 if (ctx == NULL)
656 return;
657
658 for (i = 0; i < ARRAY_SIZE(index_files); i++) {
659 if (ctx->indexes[i] != NULL) {
660 index_mm_close(ctx->indexes[i]);
661 ctx->indexes[i] = NULL;
662 }
663 }
664}
Gustavo Sverzut Barbieribd3f5532011-12-10 20:47:01 -0200665
Gustavo Sverzut Barbieribd3f5532011-12-10 20:47:01 -0200666const struct kmod_list *kmod_get_options(const struct kmod_ctx *ctx)
667{
668 return ctx->config->options;
669}
670
671const struct kmod_list *kmod_get_install_commands(const struct kmod_ctx *ctx)
672{
673 return ctx->config->install_commands;
674}
675
676const struct kmod_list *kmod_get_remove_commands(const struct kmod_ctx *ctx)
677{
678 return ctx->config->remove_commands;
679}