blob: ff01cd89fb419202ec5d8fef034ea2993f28541e [file] [log] [blame]
Lucas De Marchi8f788d52011-11-25 01:22:56 -02001/*
2 * libkmod - interface to kernel module operations
3 *
Lucas De Marchia66a6a92012-01-09 00:40:50 -02004 * Copyright (C) 2011-2012 ProFUSION embedded systems
Lucas De Marchi8f788d52011-11-25 01:22:56 -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 Marchi8f788d52011-11-25 01:22:56 -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
Lucas De Marchi7636e722011-12-01 17:56:03 -020021#include <assert.h>
Lucas De Marchi8f788d52011-11-25 01:22:56 -020022#include <stdio.h>
23#include <stdlib.h>
24#include <stddef.h>
25#include <stdarg.h>
26#include <unistd.h>
27#include <errno.h>
28#include <string.h>
29#include <ctype.h>
30#include <inttypes.h>
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -020031#include <limits.h>
32#include <dirent.h>
Lucas De Marchi8f788d52011-11-25 01:22:56 -020033#include <sys/stat.h>
34#include <sys/types.h>
35#include <sys/mman.h>
Thierry Vignaudeff917c2012-01-17 17:32:48 -020036#include <sys/wait.h>
Lucas De Marchi8f788d52011-11-25 01:22:56 -020037#include <string.h>
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -020038#include <fnmatch.h>
Lucas De Marchi8f788d52011-11-25 01:22:56 -020039
40#include "libkmod.h"
41#include "libkmod-private.h"
42
43/**
Lucas De Marchi66819512012-01-09 04:47:40 -020044 * SECTION:libkmod-module
45 * @short_description: operate on kernel modules
46 */
47
48/**
Lucas De Marchi8f788d52011-11-25 01:22:56 -020049 * kmod_module:
50 *
51 * Opaque object representing a module.
52 */
53struct kmod_module {
54 struct kmod_ctx *ctx;
Lucas De Marchi8bdeca12011-12-15 13:11:51 -020055 char *hashkey;
Lucas De Marchi219f9c32011-12-13 13:07:40 -020056 char *name;
Gustavo Sverzut Barbierif1fb6f82011-12-08 04:44:03 -020057 char *path;
Lucas De Marchi7636e722011-12-01 17:56:03 -020058 struct kmod_list *dep;
Gustavo Sverzut Barbieribd3f5532011-12-10 20:47:01 -020059 char *options;
Lucas De Marchi60f67602011-12-16 03:33:26 -020060 const char *install_commands; /* owned by kmod_config */
61 const char *remove_commands; /* owned by kmod_config */
Lucas De Marchi6ad5f262011-12-13 14:12:50 -020062 char *alias; /* only set if this module was created from an alias */
Gustavo Sverzut Barbierib6a534f2011-12-10 20:36:22 -020063 int n_dep;
Gustavo Sverzut Barbieribd3f5532011-12-10 20:47:01 -020064 int refcount;
Lucas De Marchi7636e722011-12-01 17:56:03 -020065 struct {
66 bool dep : 1;
Gustavo Sverzut Barbieribd3f5532011-12-10 20:47:01 -020067 bool options : 1;
68 bool install_commands : 1;
69 bool remove_commands : 1;
Lucas De Marchi7636e722011-12-01 17:56:03 -020070 } init;
Lucas De Marchib1a51252012-01-29 01:49:09 -020071
72 /*
73 * private field used by kmod_module_get_probe_list() to detect
74 * dependency loops
75 */
Lucas De Marchiece09aa2012-01-18 01:26:44 -020076 bool visited : 1;
Lucas De Marchi89e92482012-01-29 02:35:46 -020077
78 /*
79 * set by kmod_module_get_probe_list: indicates for probe_insert()
80 * whether the module's command and softdep should be ignored
81 */
82 bool ignorecmd : 1;
Lucas De Marchi8f788d52011-11-25 01:22:56 -020083};
84
Lucas De Marchic35347f2011-12-12 10:48:02 -020085static inline const char *path_join(const char *path, size_t prefixlen,
86 char buf[PATH_MAX])
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -020087{
88 size_t pathlen;
89
90 if (path[0] == '/')
91 return path;
92
93 pathlen = strlen(path);
94 if (prefixlen + pathlen + 1 >= PATH_MAX)
95 return NULL;
96
97 memcpy(buf + prefixlen, path, pathlen + 1);
98 return buf;
99}
100
Lucas De Marchi671d4892011-12-05 20:23:05 -0200101int kmod_module_parse_depline(struct kmod_module *mod, char *line)
Lucas De Marchi7636e722011-12-01 17:56:03 -0200102{
103 struct kmod_ctx *ctx = mod->ctx;
104 struct kmod_list *list = NULL;
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -0200105 const char *dirname;
106 char buf[PATH_MAX];
Lucas De Marchi7636e722011-12-01 17:56:03 -0200107 char *p, *saveptr;
Lucas De Marchi45f27782011-12-12 17:23:04 -0200108 int err = 0, n = 0;
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -0200109 size_t dirnamelen;
Lucas De Marchi7636e722011-12-01 17:56:03 -0200110
Gustavo Sverzut Barbierib6a534f2011-12-10 20:36:22 -0200111 if (mod->init.dep)
112 return mod->n_dep;
113 assert(mod->dep == NULL);
Lucas De Marchi7636e722011-12-01 17:56:03 -0200114 mod->init.dep = true;
115
116 p = strchr(line, ':');
117 if (p == NULL)
118 return 0;
119
Lucas De Marchi671d4892011-12-05 20:23:05 -0200120 *p = '\0';
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -0200121 dirname = kmod_get_dirname(mod->ctx);
122 dirnamelen = strlen(dirname);
123 if (dirnamelen + 2 >= PATH_MAX)
124 return 0;
Lucas De Marchi28c175e2011-12-12 11:52:59 -0200125
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -0200126 memcpy(buf, dirname, dirnamelen);
127 buf[dirnamelen] = '/';
128 dirnamelen++;
129 buf[dirnamelen] = '\0';
130
131 if (mod->path == NULL) {
132 const char *str = path_join(line, dirnamelen, buf);
133 if (str == NULL)
134 return 0;
135 mod->path = strdup(str);
136 if (mod->path == NULL)
137 return 0;
138 }
Lucas De Marchi671d4892011-12-05 20:23:05 -0200139
Lucas De Marchi7636e722011-12-01 17:56:03 -0200140 p++;
Lucas De Marchi7636e722011-12-01 17:56:03 -0200141 for (p = strtok_r(p, " \t", &saveptr); p != NULL;
142 p = strtok_r(NULL, " \t", &saveptr)) {
Lucas De Marchi1fc1c9a2011-12-02 10:00:03 -0200143 struct kmod_module *depmod;
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -0200144 const char *path;
Lucas De Marchi7636e722011-12-01 17:56:03 -0200145
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -0200146 path = path_join(p, dirnamelen, buf);
147 if (path == NULL) {
148 ERR(ctx, "could not join path '%s' and '%s'.\n",
149 dirname, p);
Lucas De Marchi7636e722011-12-01 17:56:03 -0200150 goto fail;
151 }
152
Gustavo Sverzut Barbierie18ad352011-12-08 04:44:03 -0200153 err = kmod_module_new_from_path(ctx, path, &depmod);
154 if (err < 0) {
155 ERR(ctx, "ctx=%p path=%s error=%s\n",
156 ctx, path, strerror(-err));
157 goto fail;
158 }
159
160 DBG(ctx, "add dep: %s\n", path);
Lucas De Marchi7636e722011-12-01 17:56:03 -0200161
Lucas De Marchib94a7372011-12-26 20:10:49 -0200162 list = kmod_list_prepend(list, depmod);
Lucas De Marchi7636e722011-12-01 17:56:03 -0200163 n++;
164 }
165
166 DBG(ctx, "%d dependencies for %s\n", n, mod->name);
167
168 mod->dep = list;
Gustavo Sverzut Barbierib6a534f2011-12-10 20:36:22 -0200169 mod->n_dep = n;
Lucas De Marchi7636e722011-12-01 17:56:03 -0200170 return n;
171
172fail:
173 kmod_module_unref_list(list);
174 mod->init.dep = false;
175 return err;
176}
177
Lucas De Marchiece09aa2012-01-18 01:26:44 -0200178void kmod_module_set_visited(struct kmod_module *mod, bool visited)
179{
180 mod->visited = visited;
181}
182
Lucas De Marchi9c7f3ad2012-01-29 15:40:58 -0200183/*
184 * Memory layout with alias:
185 *
186 * struct kmod_module {
187 * hashkey -----.
188 * alias -----. |
189 * name ----. | |
190 * } | | |
191 * name <----------' | |
192 * alias <-----------' |
193 * name\alias <--------'
194 *
195 * Memory layout without alias:
196 *
197 * struct kmod_module {
198 * hashkey ---.
199 * alias -----|----> NULL
200 * name ----. |
201 * } | |
202 * name <----------'-'
203 *
204 * @key is "name\alias" or "name" (in which case alias == NULL)
205 */
206static int kmod_module_new(struct kmod_ctx *ctx, const char *key,
207 const char *name, size_t namelen,
208 const char *alias, size_t aliaslen,
209 struct kmod_module **mod)
210{
211 struct kmod_module *m;
212 size_t keylen;
213
214 m = kmod_pool_get_module(ctx, key);
215 if (m != NULL) {
216 *mod = kmod_module_ref(m);
217 return 0;
218 }
219
220 if (alias == NULL)
221 keylen = namelen;
222 else
223 keylen = namelen + aliaslen + 1;
224
225 m = malloc(sizeof(*m) + (alias == NULL ? 1 : 2) * (keylen + 1));
226 if (m == NULL) {
227 free(m);
228 return -ENOMEM;
229 }
230
231 memset(m, 0, sizeof(*m));
232
233 m->ctx = kmod_ref(ctx);
234 m->name = (char *)m + sizeof(*m);
235 memcpy(m->name, key, keylen + 1);
236 if (alias == NULL) {
237 m->hashkey = m->name;
238 m->alias = NULL;
239 } else {
240 m->name[namelen] = '\0';
241 m->alias = m->name + namelen + 1;
242 m->hashkey = m->name + keylen + 1;
243 memcpy(m->hashkey, key, keylen + 1);
244 }
245
246 m->refcount = 1;
247 kmod_pool_add_module(ctx, m, m->hashkey);
248 *mod = m;
249
250 return 0;
251}
252
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200253/**
254 * kmod_module_new_from_name:
255 * @ctx: kmod library context
256 * @name: name of the module
257 * @mod: where to save the created struct kmod_module
258 *
259 * Create a new struct kmod_module using the module name. @name can not be an
260 * alias, file name or anything else; it must be a module name. There's no
261 * check if the module does exists in the system.
262 *
263 * This function is also used internally by many others that return a new
264 * struct kmod_module or a new list of modules.
265 *
266 * The initial refcount is 1, and needs to be decremented to release the
267 * resources of the kmod_module. Since libkmod keeps track of all
268 * kmod_modules created, they are all released upon @ctx destruction too. Do
269 * not unref @ctx before all the desired operations with the returned
270 * kmod_module are done.
271 *
272 * Returns: 0 on success or < 0 otherwise. It fails if name is not a valid
273 * module name or if memory allocation failed.
274 */
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200275KMOD_EXPORT int kmod_module_new_from_name(struct kmod_ctx *ctx,
276 const char *name,
277 struct kmod_module **mod)
278{
Lucas De Marchid753b8c2011-12-05 18:14:51 -0200279 size_t namelen;
Lucas De Marchi6daceb22012-01-08 01:02:29 -0200280 char name_norm[PATH_MAX];
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200281
Lucas De Marchi818f8e82011-12-15 13:35:40 -0200282 if (ctx == NULL || name == NULL || mod == NULL)
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200283 return -ENOENT;
284
Lucas De Marchi9c7f3ad2012-01-29 15:40:58 -0200285 modname_normalize(name, name_norm, &namelen);
Lucas De Marchid753b8c2011-12-05 18:14:51 -0200286
Lucas De Marchi9c7f3ad2012-01-29 15:40:58 -0200287 return kmod_module_new(ctx, name_norm, name_norm, namelen, NULL, 0, mod);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200288}
289
Lucas De Marchi6ad5f262011-12-13 14:12:50 -0200290int kmod_module_new_from_alias(struct kmod_ctx *ctx, const char *alias,
291 const char *name, struct kmod_module **mod)
292{
293 int err;
Lucas De Marchi6daceb22012-01-08 01:02:29 -0200294 char key[PATH_MAX];
Lucas De Marchi113c66a2011-12-14 15:21:10 -0200295 size_t namelen = strlen(name);
296 size_t aliaslen = strlen(alias);
Lucas De Marchi6ad5f262011-12-13 14:12:50 -0200297
Lucas De Marchi6daceb22012-01-08 01:02:29 -0200298 if (namelen + aliaslen + 2 > PATH_MAX)
Lucas De Marchi113c66a2011-12-14 15:21:10 -0200299 return -ENAMETOOLONG;
300
301 memcpy(key, name, namelen);
302 memcpy(key + namelen + 1, alias, aliaslen + 1);
Lucas De Marchi9c7f3ad2012-01-29 15:40:58 -0200303 key[namelen] = '\\';
Lucas De Marchi113c66a2011-12-14 15:21:10 -0200304
Lucas De Marchi9c7f3ad2012-01-29 15:40:58 -0200305 err = kmod_module_new(ctx, key, name, namelen, alias, aliaslen, mod);
Lucas De Marchi6ad5f262011-12-13 14:12:50 -0200306 if (err < 0)
307 return err;
308
Lucas De Marchi6ad5f262011-12-13 14:12:50 -0200309 return 0;
Lucas De Marchi6ad5f262011-12-13 14:12:50 -0200310}
311
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200312/**
313 * kmod_module_new_from_path:
314 * @ctx: kmod library context
315 * @path: path where to find the given module
316 * @mod: where to save the created struct kmod_module
317 *
318 * Create a new struct kmod_module using the module path. @path must be an
319 * existent file with in the filesystem and must be accessible to libkmod.
320 *
321 * The initial refcount is 1, and needs to be decremented to release the
322 * resources of the kmod_module. Since libkmod keeps track of all
323 * kmod_modules created, they are all released upon @ctx destruction too. Do
324 * not unref @ctx before all the desired operations with the returned
325 * kmod_module are done.
326 *
327 * If @path is relative, it's treated as relative to the current working
328 * directory. Otherwise, give an absolute path.
329 *
330 * Returns: 0 on success or < 0 otherwise. It fails if file does not exist, if
331 * it's not a valid file for a kmod_module or if memory allocation failed.
332 */
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200333KMOD_EXPORT int kmod_module_new_from_path(struct kmod_ctx *ctx,
334 const char *path,
335 struct kmod_module **mod)
336{
337 struct kmod_module *m;
338 int err;
339 struct stat st;
Lucas De Marchi6daceb22012-01-08 01:02:29 -0200340 char name[PATH_MAX];
Lucas De Marchi71e975c2011-12-07 13:53:53 -0200341 char *abspath;
Lucas De Marchid753b8c2011-12-05 18:14:51 -0200342 size_t namelen;
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200343
Lucas De Marchi818f8e82011-12-15 13:35:40 -0200344 if (ctx == NULL || path == NULL || mod == NULL)
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200345 return -ENOENT;
346
Lucas De Marchi71e975c2011-12-07 13:53:53 -0200347 abspath = path_make_absolute_cwd(path);
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200348 if (abspath == NULL) {
349 DBG(ctx, "no absolute path for %s\n", path);
Lucas De Marchi71e975c2011-12-07 13:53:53 -0200350 return -ENOMEM;
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200351 }
Lucas De Marchi71e975c2011-12-07 13:53:53 -0200352
353 err = stat(abspath, &st);
354 if (err < 0) {
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200355 err = -errno;
356 DBG(ctx, "stat %s: %s\n", path, strerror(errno));
Lucas De Marchi71e975c2011-12-07 13:53:53 -0200357 free(abspath);
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200358 return err;
Lucas De Marchi71e975c2011-12-07 13:53:53 -0200359 }
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200360
Gustavo Sverzut Barbieri973c80b2011-12-12 18:28:52 -0200361 if (path_to_modname(path, name, &namelen) == NULL) {
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200362 DBG(ctx, "could not get modname from path %s\n", path);
Gustavo Sverzut Barbieri973c80b2011-12-12 18:28:52 -0200363 free(abspath);
364 return -ENOENT;
365 }
Lucas De Marchid753b8c2011-12-05 18:14:51 -0200366
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200367 m = kmod_pool_get_module(ctx, name);
368 if (m != NULL) {
Lucas De Marchi6bd0b8d2011-12-07 14:08:01 -0200369 if (m->path == NULL)
370 m->path = abspath;
371 else if (streq(m->path, abspath))
372 free(abspath);
373 else {
Lucas De Marchiebaa7be2011-12-27 18:10:19 -0200374 ERR(ctx, "kmod_module '%s' already exists with different path: new-path='%s' old-path='%s'\n",
Lucas De Marchi9c7f3ad2012-01-29 15:40:58 -0200375 name, abspath, m->path);
Lucas De Marchi6bd0b8d2011-12-07 14:08:01 -0200376 free(abspath);
377 return -EEXIST;
378 }
379
Lucas De Marchifd186ae2011-12-06 03:38:37 -0200380 *mod = kmod_module_ref(m);
381 return 0;
382 }
383
Lucas De Marchi9c7f3ad2012-01-29 15:40:58 -0200384 err = kmod_module_new(ctx, name, name, namelen, NULL, 0, &m);
385 if (err < 0)
386 return err;
Lucas De Marchid753b8c2011-12-05 18:14:51 -0200387
Lucas De Marchi71e975c2011-12-07 13:53:53 -0200388 m->path = abspath;
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200389 *mod = m;
390
391 return 0;
392}
393
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200394/**
395 * kmod_module_unref:
396 * @mod: kmod module
397 *
398 * Drop a reference of the kmod module. If the refcount reaches zero, its
399 * resources are released.
400 *
401 * Returns: NULL if @mod is NULL or if the module was released. Otherwise it
402 * returns the passed @mod with its refcount decremented.
403 */
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200404KMOD_EXPORT struct kmod_module *kmod_module_unref(struct kmod_module *mod)
405{
406 if (mod == NULL)
407 return NULL;
408
409 if (--mod->refcount > 0)
410 return mod;
411
412 DBG(mod->ctx, "kmod_module %p released\n", mod);
413
Lucas De Marchi4084c172011-12-15 13:43:22 -0200414 kmod_pool_del_module(mod->ctx, mod, mod->hashkey);
Lucas De Marchi7636e722011-12-01 17:56:03 -0200415 kmod_module_unref_list(mod->dep);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200416 kmod_unref(mod->ctx);
Gustavo Sverzut Barbieribd3f5532011-12-10 20:47:01 -0200417 free(mod->options);
Gustavo Sverzut Barbierif1fb6f82011-12-08 04:44:03 -0200418 free(mod->path);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200419 free(mod);
420 return NULL;
421}
422
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200423/**
424 * kmod_module_ref:
425 * @mod: kmod module
426 *
427 * Take a reference of the kmod module, incrementing its refcount.
428 *
429 * Returns: the passed @module with its refcount incremented.
430 */
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200431KMOD_EXPORT struct kmod_module *kmod_module_ref(struct kmod_module *mod)
432{
433 if (mod == NULL)
434 return NULL;
435
436 mod->refcount++;
437
438 return mod;
439}
440
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200441#define CHECK_ERR_AND_FINISH(_err, _label_err, _list, label_finish) \
442 do { \
443 if ((_err) < 0) \
444 goto _label_err; \
445 if (*(_list) != NULL) \
446 goto finish; \
447 } while (0)
448
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200449/**
450 * kmod_module_new_from_lookup:
451 * @ctx: kmod library context
452 * @given_alias: alias to look for
453 * @list: an empty list where to save the list of modules matching
454 * @given_alias
455 *
456 * Create a new list of kmod modules using an alias or module name and lookup
457 * libkmod's configuration files and indexes in order to find the module.
458 * Once it's found in one of the places, it stops searching and create the
459 * list of modules that is saved in @list.
460 *
461 * The search order is: 1. aliases in configuration file; 2. module names in
462 * modules.dep index; 3. symbol aliases in modules.symbols index; 4. aliases
463 * in modules.alias index.
464 *
465 * The initial refcount is 1, and needs to be decremented to release the
466 * resources of the kmod_module. The returned @list must be released by
467 * calling kmod_module_unref_list(). Since libkmod keeps track of all
468 * kmod_modules created, they are all released upon @ctx destruction too. Do
469 * not unref @ctx before all the desired operations with the returned list are
470 * completed.
471 *
472 * Returns: 0 on success or < 0 otherwise. It fails if any of the lookup
473 * methods failed, which is basically due to memory allocation fail. If module
474 * is not found, it still returns 0, but @list is an empty list.
475 */
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200476KMOD_EXPORT int kmod_module_new_from_lookup(struct kmod_ctx *ctx,
Gustavo Sverzut Barbierid917f272011-12-10 21:00:19 -0200477 const char *given_alias,
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200478 struct kmod_list **list)
479{
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200480 int err;
Lucas De Marchi6daceb22012-01-08 01:02:29 -0200481 char alias[PATH_MAX];
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200482
Lucas De Marchi4308b172011-12-13 10:26:04 -0200483 if (ctx == NULL || given_alias == NULL)
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200484 return -ENOENT;
485
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200486 if (list == NULL || *list != NULL) {
487 ERR(ctx, "An empty list is needed to create lookup\n");
488 return -ENOSYS;
489 }
490
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200491 if (alias_normalize(given_alias, alias, NULL) < 0) {
492 DBG(ctx, "invalid alias: %s\n", given_alias);
Lucas De Marchid470db12011-12-13 10:28:00 -0200493 return -EINVAL;
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200494 }
495
496 DBG(ctx, "input alias=%s, normalized=%s\n", given_alias, alias);
Gustavo Sverzut Barbierid917f272011-12-10 21:00:19 -0200497
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200498 /* Aliases from config file override all the others */
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200499 err = kmod_lookup_alias_from_config(ctx, alias, list);
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200500 CHECK_ERR_AND_FINISH(err, fail, list, finish);
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200501
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200502 DBG(ctx, "lookup modules.dep %s\n", alias);
Lucas De Marchi64700e42011-12-01 15:57:53 -0200503 err = kmod_lookup_alias_from_moddep_file(ctx, alias, list);
504 CHECK_ERR_AND_FINISH(err, fail, list, finish);
505
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200506 DBG(ctx, "lookup modules.symbols %s\n", alias);
Lucas De Marchi9ba6f572011-11-30 20:31:45 -0200507 err = kmod_lookup_alias_from_symbols_file(ctx, alias, list);
508 CHECK_ERR_AND_FINISH(err, fail, list, finish);
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200509
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200510 DBG(ctx, "lookup install and remove commands %s\n", alias);
Lucas De Marchif4fc5522011-12-16 03:57:12 -0200511 err = kmod_lookup_alias_from_commands(ctx, alias, list);
512 CHECK_ERR_AND_FINISH(err, fail, list, finish);
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200513
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200514 DBG(ctx, "lookup modules.aliases %s\n", alias);
Lucas De Marchi49e61ca2011-12-01 16:27:04 -0200515 err = kmod_lookup_alias_from_aliases_file(ctx, alias, list);
516 CHECK_ERR_AND_FINISH(err, fail, list, finish);
517
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200518finish:
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200519 DBG(ctx, "lookup %s=%d, list=%p\n", alias, err, *list);
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200520 return err;
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200521fail:
Gustavo Sverzut Barbierib55df2e2011-12-20 13:04:10 -0200522 DBG(ctx, "Failed to lookup %s\n", alias);
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200523 kmod_module_unref_list(*list);
524 *list = NULL;
Lucas De Marchi84f42202011-12-02 10:03:34 -0200525 return err;
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200526}
Lucas De Marchib14dcfd2011-11-30 20:29:51 -0200527#undef CHECK_ERR_AND_FINISH
528
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200529/**
Lucas De Marchi91428ae2011-12-15 13:09:46 -0200530 * kmod_module_unref_list:
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200531 * @list: list of kmod modules
532 *
533 * Drop a reference of each kmod module in @list and releases the resources
534 * taken by the list itself.
535 *
536 * Returns: NULL if @mod is NULL or if the module was released. Otherwise it
537 * returns the passed @mod with its refcount decremented.
538 */
Lucas De Marchi7f3eb0c2011-11-30 19:03:41 -0200539KMOD_EXPORT int kmod_module_unref_list(struct kmod_list *list)
540{
541 for (; list != NULL; list = kmod_list_remove(list))
542 kmod_module_unref(list->data);
543
544 return 0;
545}
546
Lucas De Marchi0d467432011-12-31 11:15:52 -0200547/**
548 * kmod_module_get_filtered_blacklist:
549 * @ctx: kmod library context
550 * @input: list of kmod_module to be filtered with blacklist
551 * @output: where to save the new list
552 *
553 * Given a list @input, this function filter it out with config's blacklist
554 * ans save it in @output.
555 *
556 * Returns: 0 on success or < 0 otherwise. @output is saved with the updated
557 * list.
558 */
559KMOD_EXPORT int kmod_module_get_filtered_blacklist(const struct kmod_ctx *ctx,
560 const struct kmod_list *input,
561 struct kmod_list **output)
562{
563 const struct kmod_list *li;
564 const struct kmod_list *blacklist;
565
566 if (ctx == NULL || output == NULL)
567 return -ENOENT;
568
569 *output = NULL;
570 if (input == NULL)
571 return 0;
572
573 blacklist = kmod_get_blacklists(ctx);
574 kmod_list_foreach(li, input) {
575 struct kmod_module *mod = li->data;
576 const struct kmod_list *lb;
577 struct kmod_list *node;
578 bool filtered = false;
579
580 kmod_list_foreach(lb, blacklist) {
581 const char *name = lb->data;
582
Lucas De Marchi4926cb52011-12-31 11:21:52 -0200583 if (streq(name, mod->name)) {
Lucas De Marchi0d467432011-12-31 11:15:52 -0200584 filtered = true;
585 break;
586 }
587 }
588
589 if (filtered)
590 continue;
591
592 node = kmod_list_append(*output, mod);
593 if (node == NULL)
594 goto fail;
595
596 *output = node;
597 kmod_module_ref(mod);
598 }
599
600 return 0;
601
602fail:
603 kmod_module_unref_list(*output);
604 *output = NULL;
605 return -ENOMEM;
606}
607
Lucas De Marchib72f74b2011-12-27 04:51:05 -0200608static const struct kmod_list *module_get_dependencies_noref(const struct kmod_module *mod)
609{
610 if (!mod->init.dep) {
611 /* lazy init */
612 char *line = kmod_search_moddep(mod->ctx, mod->name);
613
614 if (line == NULL)
615 return NULL;
616
617 kmod_module_parse_depline((struct kmod_module *)mod, line);
618 free(line);
619
620 if (!mod->init.dep)
621 return NULL;
622 }
623
624 return mod->dep;
625}
626
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200627/**
Lucas De Marchi91428ae2011-12-15 13:09:46 -0200628 * kmod_module_get_dependencies:
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200629 * @mod: kmod module
630 *
631 * Search the modules.dep index to find the dependencies of the given @mod.
632 * The result is cached in @mod, so subsequent calls to this function will
633 * return the already searched list of modules.
634 *
635 * Returns: NULL on failure or if there are any dependencies. Otherwise it
636 * returns a list of kmod modules that can be released by calling
637 * kmod_module_unref_list().
638 */
Lucas De Marchif1cd7992011-12-05 19:40:45 -0200639KMOD_EXPORT struct kmod_list *kmod_module_get_dependencies(const struct kmod_module *mod)
Lucas De Marchi0835fc32011-12-01 20:06:08 -0200640{
Lucas De Marchif1cd7992011-12-05 19:40:45 -0200641 struct kmod_list *l, *l_new, *list_new = NULL;
642
643 if (mod == NULL)
644 return NULL;
645
Lucas De Marchib72f74b2011-12-27 04:51:05 -0200646 module_get_dependencies_noref(mod);
Lucas De Marchif1cd7992011-12-05 19:40:45 -0200647
648 kmod_list_foreach(l, mod->dep) {
649 l_new = kmod_list_append(list_new, kmod_module_ref(l->data));
650 if (l_new == NULL) {
651 kmod_module_unref(l->data);
652 goto fail;
653 }
654
655 list_new = l_new;
656 }
657
658 return list_new;
659
660fail:
661 ERR(mod->ctx, "out of memory\n");
662 kmod_module_unref_list(list_new);
663 return NULL;
Lucas De Marchi0835fc32011-12-01 20:06:08 -0200664}
665
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200666/**
667 * kmod_module_get_module:
668 * @entry: an entry in a list of kmod modules.
669 *
670 * Get the kmod module of this @entry in the list, increasing its refcount.
671 * After it's used, unref it. Since the refcount is incremented upon return,
672 * you still have to call kmod_module_unref_list() to release the list of kmod
673 * modules.
674 *
675 * Returns: NULL on failure or the kmod_module contained in this list entry
676 * with its refcount incremented.
677 */
Gustavo Sverzut Barbieriad4d1ae2011-12-04 13:14:11 -0200678KMOD_EXPORT struct kmod_module *kmod_module_get_module(const struct kmod_list *entry)
Lucas De Marchi6e869df2011-11-30 19:01:01 -0200679{
Gustavo Sverzut Barbieriad4d1ae2011-12-04 13:14:11 -0200680 if (entry == NULL)
681 return NULL;
Lucas De Marchi28c175e2011-12-12 11:52:59 -0200682
Gustavo Sverzut Barbieriad4d1ae2011-12-04 13:14:11 -0200683 return kmod_module_ref(entry->data);
Lucas De Marchi6e869df2011-11-30 19:01:01 -0200684}
685
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200686/**
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200687 * kmod_module_get_name:
688 * @mod: kmod module
689 *
690 * Get the name of this kmod module. Name is always available, independently
691 * if it was created by kmod_module_new_from_name() or another function and
692 * it's always normalized (dashes are replaced with underscores).
693 *
694 * Returns: the name of this kmod module.
695 */
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -0200696KMOD_EXPORT const char *kmod_module_get_name(const struct kmod_module *mod)
Lucas De Marchi6e869df2011-11-30 19:01:01 -0200697{
Lucas De Marchi818f8e82011-12-15 13:35:40 -0200698 if (mod == NULL)
699 return NULL;
700
Lucas De Marchi6e869df2011-11-30 19:01:01 -0200701 return mod->name;
702}
703
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200704/**
705 * kmod_module_get_path:
706 * @mod: kmod module
707 *
708 * Get the path of this kmod module. If this kmod module was not created by
709 * path, it can search the modules.dep index in order to find out the module
Lucas De Marchidb74cee2012-01-09 03:45:19 -0200710 * under context's dirname.
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200711 *
712 * Returns: the path of this kmod module or NULL if such information is not
713 * available.
714 */
Gustavo Sverzut Barbieri1ce08a52011-12-02 20:24:07 -0200715KMOD_EXPORT const char *kmod_module_get_path(const struct kmod_module *mod)
Lucas De Marchi6e869df2011-11-30 19:01:01 -0200716{
Lucas De Marchie005fac2011-12-08 10:42:34 -0200717 char *line;
Lucas De Marchic5e7b1f2011-12-05 20:28:13 -0200718
Lucas De Marchi818f8e82011-12-15 13:35:40 -0200719 if (mod == NULL)
720 return NULL;
721
Gustavo Sverzut Barbierid01c67e2011-12-11 19:42:02 -0200722 DBG(mod->ctx, "name='%s' path='%s'\n", mod->name, mod->path);
Lucas De Marchic5e7b1f2011-12-05 20:28:13 -0200723
Lucas De Marchie005fac2011-12-08 10:42:34 -0200724 if (mod->path != NULL)
725 return mod->path;
726 if (mod->init.dep)
727 return NULL;
Lucas De Marchic5e7b1f2011-12-05 20:28:13 -0200728
Lucas De Marchie005fac2011-12-08 10:42:34 -0200729 /* lazy init */
730 line = kmod_search_moddep(mod->ctx, mod->name);
731 if (line == NULL)
732 return NULL;
733
734 kmod_module_parse_depline((struct kmod_module *) mod, line);
735 free(line);
Lucas De Marchic5e7b1f2011-12-05 20:28:13 -0200736
Lucas De Marchi6e869df2011-11-30 19:01:01 -0200737 return mod->path;
738}
739
740
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200741extern long delete_module(const char *name, unsigned int flags);
742
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200743/**
744 * kmod_module_remove_module:
745 * @mod: kmod module
746 * @flags: flags to pass to Linux kernel when removing the module
747 *
748 * Remove a module from Linux kernel.
749 *
750 * Returns: 0 on success or < 0 on failure.
751 */
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200752KMOD_EXPORT int kmod_module_remove_module(struct kmod_module *mod,
753 unsigned int flags)
754{
755 int err;
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200756
757 if (mod == NULL)
758 return -ENOENT;
759
760 /* Filter out other flags */
761 flags &= (KMOD_REMOVE_FORCE | KMOD_REMOVE_NOWAIT);
762
Lucas De Marchid753b8c2011-12-05 18:14:51 -0200763 err = delete_module(mod->name, flags);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200764 if (err != 0) {
Lucas De Marchiba998b92012-01-11 00:08:14 -0200765 err = -errno;
766 ERR(mod->ctx, "could not remove '%s': %m\n", mod->name);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200767 }
768
Lucas De Marchiba998b92012-01-11 00:08:14 -0200769 return err;
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200770}
771
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -0200772extern long init_module(const void *mem, unsigned long len, const char *args);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200773
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200774/**
775 * kmod_module_insert_module:
776 * @mod: kmod module
Lucas De Marchi142db572011-12-20 23:39:30 -0200777 * @flags: flags are not passed to Linux Kernel, but instead they dictate the
778 * behavior of this function.
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200779 * @options: module's options to pass to Linux Kernel.
780 *
781 * Insert a module in Linux kernel. It opens the file pointed by @mod,
782 * mmap'ing it and passing to kernel.
783 *
Lucas De Marchibbf59322011-12-30 14:13:33 -0200784 * Returns: 0 on success or < 0 on failure. If module is already loaded it
785 * returns -EEXIST.
Lucas De Marchi7afc98a2011-12-14 12:06:18 -0200786 */
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200787KMOD_EXPORT int kmod_module_insert_module(struct kmod_module *mod,
Gustavo Sverzut Barbieri3a721bb2011-12-10 21:02:39 -0200788 unsigned int flags,
789 const char *options)
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200790{
791 int err;
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -0200792 const void *mem;
Gustavo Sverzut Barbieri3d8226e2011-12-16 16:08:53 -0200793 off_t size;
794 struct kmod_file *file;
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -0200795 struct kmod_elf *elf = NULL;
796 const char *path;
Gustavo Sverzut Barbieri3a721bb2011-12-10 21:02:39 -0200797 const char *args = options ? options : "";
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200798
799 if (mod == NULL)
800 return -ENOENT;
801
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -0200802 path = kmod_module_get_path(mod);
803 if (path == NULL) {
Dave Reisnerb787b562012-01-04 10:59:49 -0500804 ERR(mod->ctx, "could not find module by name='%s'\n", mod->name);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200805 return -ENOSYS;
806 }
807
Lucas De Marchic68e92f2012-01-04 08:19:34 -0200808 file = kmod_file_open(mod->ctx, path);
Gustavo Sverzut Barbieri3d8226e2011-12-16 16:08:53 -0200809 if (file == NULL) {
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200810 err = -errno;
811 return err;
812 }
813
Gustavo Sverzut Barbieri3d8226e2011-12-16 16:08:53 -0200814 size = kmod_file_get_size(file);
815 mem = kmod_file_get_contents(file);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200816
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -0200817 if (flags & (KMOD_INSERT_FORCE_VERMAGIC | KMOD_INSERT_FORCE_MODVERSION)) {
818 elf = kmod_elf_new(mem, size);
819 if (elf == NULL) {
820 err = -errno;
821 goto elf_failed;
822 }
823
824 if (flags & KMOD_INSERT_FORCE_MODVERSION) {
825 err = kmod_elf_strip_section(elf, "__versions");
826 if (err < 0)
827 INFO(mod->ctx, "Failed to strip modversion: %s\n", strerror(-err));
828 }
829
830 if (flags & KMOD_INSERT_FORCE_VERMAGIC) {
831 err = kmod_elf_strip_vermagic(elf);
832 if (err < 0)
833 INFO(mod->ctx, "Failed to strip vermagic: %s\n", strerror(-err));
834 }
835
836 mem = kmod_elf_get_memory(elf);
837 }
838
Gustavo Sverzut Barbieri3d8226e2011-12-16 16:08:53 -0200839 err = init_module(mem, size, args);
Lucas De Marchibbf59322011-12-30 14:13:33 -0200840 if (err < 0) {
841 err = -errno;
842 INFO(mod->ctx, "Failed to insert module '%s': %m\n", path);
843 }
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200844
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -0200845 if (elf != NULL)
846 kmod_elf_unref(elf);
847elf_failed:
Gustavo Sverzut Barbieri3d8226e2011-12-16 16:08:53 -0200848 kmod_file_unref(file);
Lucas De Marchi8f788d52011-11-25 01:22:56 -0200849
850 return err;
851}
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -0200852
Lucas De Marchiddbda022011-12-27 11:40:10 -0200853static bool module_is_blacklisted(struct kmod_module *mod)
854{
855 struct kmod_ctx *ctx = mod->ctx;
856 const struct kmod_list *bl = kmod_get_blacklists(ctx);
857 const struct kmod_list *l;
858
859 kmod_list_foreach(l, bl) {
860 const char *modname = kmod_blacklist_get_modname(l);
861
862 if (streq(modname, mod->name))
863 return true;
864 }
865
866 return false;
867}
868
Lucas De Marchiddbda022011-12-27 11:40:10 -0200869static int command_do(struct kmod_module *mod, const char *type,
870 const char *cmd)
871{
872 const char *modname = kmod_module_get_name(mod);
873 int err;
874
875 DBG(mod->ctx, "%s %s\n", type, cmd);
876
877 setenv("MODPROBE_MODULE", modname, 1);
878 err = system(cmd);
879 unsetenv("MODPROBE_MODULE");
880
881 if (err == -1 || WEXITSTATUS(err)) {
882 ERR(mod->ctx, "Error running %s command for %s\n",
883 type, modname);
884 if (err != -1)
885 err = -WEXITSTATUS(err);
886 }
887
888 return err;
889}
890
Lucas De Marchib1a51252012-01-29 01:49:09 -0200891struct probe_insert_cb {
892 int (*run_install)(struct kmod_module *m, const char *cmd, void *data);
893 void *data;
894};
895
Lucas De Marchiddbda022011-12-27 11:40:10 -0200896static int module_do_install_commands(struct kmod_module *mod,
897 const char *options,
898 struct probe_insert_cb *cb)
899{
900 const char *command = kmod_module_get_install_commands(mod);
901 char *p, *cmd;
902 int err;
903 size_t cmdlen, options_len, varlen;
904
905 assert(command);
906
907 if (options == NULL)
908 options = "";
909
910 options_len = strlen(options);
911 cmdlen = strlen(command);
912 varlen = sizeof("$CMDLINE_OPTS") - 1;
913
914 cmd = memdup(command, cmdlen + 1);
915 if (cmd == NULL)
916 return -ENOMEM;
917
918 while ((p = strstr(cmd, "$CMDLINE_OPTS")) != NULL) {
919 size_t prefixlen = p - cmd;
920 size_t suffixlen = cmdlen - prefixlen - varlen;
921 size_t slen = cmdlen - varlen + options_len;
922 char *suffix = p + varlen;
923 char *s = malloc(slen + 1);
924 if (s == NULL) {
925 free(cmd);
926 return -ENOMEM;
927 }
928 memcpy(s, cmd, p - cmd);
929 memcpy(s + prefixlen, options, options_len);
930 memcpy(s + prefixlen + options_len, suffix, suffixlen);
931 s[slen] = '\0';
932
933 free(cmd);
934 cmd = s;
935 cmdlen = slen;
936 }
937
938 if (cb->run_install != NULL)
939 err = cb->run_install(mod, cmd, cb->data);
940 else
941 err = command_do(mod, "install", cmd);
942
943 free(cmd);
944
945 return err;
946}
947
Lucas De Marchiddbda022011-12-27 11:40:10 -0200948static char *module_options_concat(const char *opt, const char *xopt)
949{
950 // TODO: we might need to check if xopt overrides options on opt
951 size_t optlen = opt == NULL ? 0 : strlen(opt);
952 size_t xoptlen = xopt == NULL ? 0 : strlen(xopt);
953 char *r;
954
955 if (optlen == 0 && xoptlen == 0)
956 return NULL;
957
958 r = malloc(optlen + xoptlen + 2);
959
960 if (opt != NULL) {
961 memcpy(r, opt, optlen);
962 r[optlen] = ' ';
963 optlen++;
964 }
965
966 if (xopt != NULL)
967 memcpy(r + optlen, xopt, xoptlen);
968
969 r[optlen + xoptlen] = '\0';
970
971 return r;
972}
973
Lucas De Marchib1a51252012-01-29 01:49:09 -0200974static int __kmod_module_get_probe_list(struct kmod_module *mod,
Lucas De Marchi89e92482012-01-29 02:35:46 -0200975 bool ignorecmd,
Lucas De Marchib1a51252012-01-29 01:49:09 -0200976 struct kmod_list **list);
977
978/* re-entrant */
979static int __kmod_module_fill_softdep(struct kmod_module *mod,
980 struct kmod_list **list)
Lucas De Marchiddbda022011-12-27 11:40:10 -0200981{
Lucas De Marchib1a51252012-01-29 01:49:09 -0200982 struct kmod_list *pre = NULL, *post = NULL, *l;
Lucas De Marchiddbda022011-12-27 11:40:10 -0200983 int err;
Lucas De Marchiddbda022011-12-27 11:40:10 -0200984
985 err = kmod_module_get_softdeps(mod, &pre, &post);
Lucas De Marchib1a51252012-01-29 01:49:09 -0200986 if (err < 0) {
987 ERR(mod->ctx, "could not get softdep: %s", strerror(-err));
988 goto fail;
989 }
Lucas De Marchiddbda022011-12-27 11:40:10 -0200990
Lucas De Marchib1a51252012-01-29 01:49:09 -0200991 kmod_list_foreach(l, pre) {
992 struct kmod_module *m = l->data;
Lucas De Marchi89e92482012-01-29 02:35:46 -0200993 err = __kmod_module_get_probe_list(m, false, list);
Lucas De Marchib1a51252012-01-29 01:49:09 -0200994 if (err < 0)
995 goto fail;
996 }
Lucas De Marchiddbda022011-12-27 11:40:10 -0200997
Lucas De Marchib1a51252012-01-29 01:49:09 -0200998 l = kmod_list_append(*list, kmod_module_ref(mod));
999 if (l == NULL) {
1000 kmod_module_unref(mod);
1001 err = -ENOMEM;
1002 goto fail;
1003 }
1004 *list = l;
1005 mod->visited = true;
Lucas De Marchi89e92482012-01-29 02:35:46 -02001006 mod->ignorecmd = (pre != NULL || post != NULL);
Lucas De Marchiddbda022011-12-27 11:40:10 -02001007
Lucas De Marchib1a51252012-01-29 01:49:09 -02001008 kmod_list_foreach(l, post) {
1009 struct kmod_module *m = l->data;
Lucas De Marchi89e92482012-01-29 02:35:46 -02001010 err = __kmod_module_get_probe_list(m, false, list);
Lucas De Marchib1a51252012-01-29 01:49:09 -02001011 if (err < 0)
1012 goto fail;
1013 }
Lucas De Marchiddbda022011-12-27 11:40:10 -02001014
Lucas De Marchib1a51252012-01-29 01:49:09 -02001015fail:
Lucas De Marchiddbda022011-12-27 11:40:10 -02001016 kmod_module_unref_list(pre);
1017 kmod_module_unref_list(post);
1018
1019 return err;
1020}
1021
Lucas De Marchib1a51252012-01-29 01:49:09 -02001022/* re-entrant */
1023static int __kmod_module_get_probe_list(struct kmod_module *mod,
Lucas De Marchi89e92482012-01-29 02:35:46 -02001024 bool ignorecmd,
Lucas De Marchib1a51252012-01-29 01:49:09 -02001025 struct kmod_list **list)
1026{
1027 struct kmod_list *dep, *l;
1028 int err = 0;
1029
1030 if (mod->visited) {
1031 DBG(mod->ctx, "Ignore module '%s': already visited\n",
1032 mod->name);
1033 return 0;
1034 }
1035
1036 dep = kmod_module_get_dependencies(mod);
Lucas De Marchib1a51252012-01-29 01:49:09 -02001037 kmod_list_foreach(l, dep) {
1038 struct kmod_module *m = l->data;
1039 err = __kmod_module_fill_softdep(m, list);
1040 if (err < 0)
Lucas De Marchi89e92482012-01-29 02:35:46 -02001041 goto finish;
Lucas De Marchib1a51252012-01-29 01:49:09 -02001042 }
1043
Lucas De Marchi89e92482012-01-29 02:35:46 -02001044 if (ignorecmd) {
1045 l = kmod_list_append(*list, kmod_module_ref(mod));
1046 if (l == NULL) {
1047 kmod_module_unref(mod);
1048 err = -ENOMEM;
1049 goto finish;
1050 }
1051 *list = l;
1052 mod->ignorecmd = true;
1053 } else
1054 err = __kmod_module_fill_softdep(mod, list);
1055
Lucas De Marchib1a51252012-01-29 01:49:09 -02001056finish:
1057 kmod_module_unref_list(dep);
1058 return err;
1059}
1060
1061static int kmod_module_get_probe_list(struct kmod_module *mod,
Lucas De Marchi89e92482012-01-29 02:35:46 -02001062 bool ignorecmd,
Lucas De Marchib1a51252012-01-29 01:49:09 -02001063 struct kmod_list **list)
1064{
1065 int err;
1066
1067 assert(mod != NULL);
1068 assert(list != NULL && *list == NULL);
1069
1070 /*
1071 * Make sure we don't get screwed by previous calls to this function
1072 */
1073 kmod_set_modules_visited(mod->ctx, false);
1074
Lucas De Marchi89e92482012-01-29 02:35:46 -02001075 err = __kmod_module_get_probe_list(mod, ignorecmd, list);
Lucas De Marchib1a51252012-01-29 01:49:09 -02001076 if (err < 0) {
1077 kmod_module_unref_list(*list);
1078 *list = NULL;
1079 }
1080
1081 return err;
1082}
1083
Lucas De Marchiddbda022011-12-27 11:40:10 -02001084/**
1085 * kmod_module_probe_insert_module:
1086 * @mod: kmod module
1087 * @flags: flags are not passed to Linux Kernel, but instead they dictate the
1088 * behavior of this function.
Lucas De Marchib1a51252012-01-29 01:49:09 -02001089 * @extra_options: module's options to pass to Linux Kernel. It applies only
1090 * to @mod, not to its dependencies.
1091 * @run_install: function to run when @mod is backed by an install command.
Lucas De Marchiddbda022011-12-27 11:40:10 -02001092 * @data: data to give back to @run_install callback
1093 *
Lucas De Marchib1a51252012-01-29 01:49:09 -02001094 * Insert a module in Linux kernel resolving dependencies, soft dependencies,
Lucas De Marchiddbda022011-12-27 11:40:10 -02001095 * install commands and applying blacklist.
1096 *
1097 * If @run_install is NULL, and the flag KMOD_PROBE_STOP_ON_COMMANDS is not
Lucas De Marchib1a51252012-01-29 01:49:09 -02001098 * given, this function will fork and exec by calling system(3). Don't pass a
1099 * NULL argument in @run_install if your binary is setuid/setgid (see warning
1100 * in system(3)). If you need control over the execution of an install
1101 * command, give a callback function instead.
Lucas De Marchiddbda022011-12-27 11:40:10 -02001102 *
Lucas De Marchib1a51252012-01-29 01:49:09 -02001103 * Returns: 0 on success, > 0 if stopped by a reason given in @flags or < 0 on
1104 * failure.
Lucas De Marchiddbda022011-12-27 11:40:10 -02001105 */
1106KMOD_EXPORT int kmod_module_probe_insert_module(struct kmod_module *mod,
1107 unsigned int flags, const char *extra_options,
1108 int (*run_install)(struct kmod_module *m,
1109 const char *cmd, void *data),
1110 const void *data)
1111{
Lucas De Marchib1a51252012-01-29 01:49:09 -02001112 struct kmod_list *list = NULL, *l;
Lucas De Marchiddbda022011-12-27 11:40:10 -02001113 struct probe_insert_cb cb;
Lucas De Marchib1a51252012-01-29 01:49:09 -02001114 int err;
1115
1116 if (mod == NULL)
1117 return -ENOENT;
1118
1119 err = flags & (KMOD_PROBE_APPLY_BLACKLIST |
1120 KMOD_PROBE_APPLY_BLACKLIST_ALL);
1121 if (err != 0) {
1122 if (module_is_blacklisted(mod))
1123 return err;
1124 }
1125
Lucas De Marchi89e92482012-01-29 02:35:46 -02001126 err = kmod_module_get_probe_list(mod,
1127 !!(flags & KMOD_PROBE_IGNORE_COMMAND), &list);
Lucas De Marchib1a51252012-01-29 01:49:09 -02001128 if (err < 0)
1129 return err;
1130
1131 if (flags & KMOD_PROBE_APPLY_BLACKLIST_ALL) {
1132 struct kmod_list *filtered = NULL;
1133
1134 err = kmod_module_get_filtered_blacklist(mod->ctx,
1135 list, &filtered);
1136 if (err < 0)
1137 return err;
1138
1139 kmod_module_unref_list(list);
1140 if (filtered == NULL)
1141 return KMOD_PROBE_APPLY_BLACKLIST_ALL;
1142
1143 list = filtered;
1144 }
Lucas De Marchiddbda022011-12-27 11:40:10 -02001145
1146 cb.run_install = run_install;
1147 cb.data = (void *) data;
1148
Lucas De Marchib1a51252012-01-29 01:49:09 -02001149 kmod_list_foreach(l, list) {
1150 struct kmod_module *m = l->data;
1151 const char *moptions = kmod_module_get_options(m);
1152 const char *cmd = kmod_module_get_install_commands(m);
1153 char *options = module_options_concat(moptions,
1154 m == mod ? extra_options : NULL);
1155
Lucas De Marchi89e92482012-01-29 02:35:46 -02001156 if (cmd != NULL && !m->ignorecmd) {
Lucas De Marchib1a51252012-01-29 01:49:09 -02001157 if (flags & KMOD_PROBE_STOP_ON_COMMAND) {
1158 DBG(mod->ctx, "Stopping on '%s': "
1159 "install command\n", m->name);
1160 err = KMOD_PROBE_STOP_ON_COMMAND;
1161 free(options);
1162 break;
1163 }
1164 err = module_do_install_commands(m, options, &cb);
1165 } else {
1166 int state = kmod_module_get_initstate(m);
1167
1168 if (state == KMOD_MODULE_LIVE ||
1169 state == KMOD_MODULE_COMING ||
1170 state == KMOD_MODULE_BUILTIN) {
Lucas De Marchi5f351472012-01-30 16:26:52 -02001171 if (m == mod && (flags & KMOD_PROBE_STOP_ON_ALREADY_LOADED)) {
1172 err = KMOD_PROBE_STOP_ON_ALREADY_LOADED;
1173 break;
1174 }
1175
Lucas De Marchib1a51252012-01-29 01:49:09 -02001176 DBG(mod->ctx, "Ignoring '%s': "
1177 "module already loaded\n", m->name);
1178 free(options);
1179 continue;
1180 }
1181 err = kmod_module_insert_module(m, flags, options);
1182 }
1183
1184 free(options);
1185
1186 /*
Lucas De Marchi5f351472012-01-30 16:26:52 -02001187 * Treat "already loaded" error. If we were told to stop on
1188 * already loaded and the module being loaded is not a
1189 * softdep, bail out. Otherwise, just ignore and continue.
1190 *
1191 * We need to check here because of race conditions. We
1192 * checked first if module was already loaded but it may have
1193 * been loaded between the check and the moment we try to
1194 * insert it.
Lucas De Marchib1a51252012-01-29 01:49:09 -02001195 */
Lucas De Marchi5f351472012-01-30 16:26:52 -02001196 if (err == -EEXIST && m == mod &&
1197 (flags & KMOD_PROBE_STOP_ON_ALREADY_LOADED)) {
1198 err = KMOD_PROBE_STOP_ON_ALREADY_LOADED;
1199 break;
1200 }
1201
Lucas De Marchib1a51252012-01-29 01:49:09 -02001202 if (err < 0 && err != -EEXIST &&
1203 (flags & KMOD_PROBE_STOP_ON_DEP_FAILURE))
1204 break;
1205 }
1206
1207 kmod_module_unref_list(list);
1208 return err;
Lucas De Marchiddbda022011-12-27 11:40:10 -02001209}
1210
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001211/**
1212 * kmod_module_get_options:
1213 * @mod: kmod module
1214 *
1215 * Get options of this kmod module. Options come from the configuration file
1216 * and are cached in @mod. The first call to this function will search for
1217 * this module in configuration and subsequent calls return the cached string.
1218 *
1219 * Returns: a string with all the options separated by spaces. This string is
1220 * owned by @mod, do not free it.
1221 */
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001222KMOD_EXPORT const char *kmod_module_get_options(const struct kmod_module *mod)
1223{
1224 if (mod == NULL)
1225 return NULL;
1226
1227 if (!mod->init.options) {
1228 /* lazy init */
1229 struct kmod_module *m = (struct kmod_module *)mod;
1230 const struct kmod_list *l, *ctx_options;
1231 char *opts = NULL;
1232 size_t optslen = 0;
1233
1234 ctx_options = kmod_get_options(mod->ctx);
1235
1236 kmod_list_foreach(l, ctx_options) {
1237 const char *modname = kmod_option_get_modname(l);
1238 const char *str;
1239 size_t len;
1240 void *tmp;
1241
Lucas De Marchi07b8c822011-12-13 14:21:24 -02001242 DBG(mod->ctx, "modname=%s mod->name=%s mod->alias=%s\n", modname, mod->name, mod->alias);
1243 if (!(streq(modname, mod->name) || (mod->alias != NULL &&
1244 streq(modname, mod->alias))))
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001245 continue;
1246
Lucas De Marchi07b8c822011-12-13 14:21:24 -02001247 DBG(mod->ctx, "passed = modname=%s mod->name=%s mod->alias=%s\n", modname, mod->name, mod->alias);
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001248 str = kmod_option_get_options(l);
1249 len = strlen(str);
1250 if (len < 1)
1251 continue;
1252
1253 tmp = realloc(opts, optslen + len + 2);
1254 if (tmp == NULL) {
1255 free(opts);
1256 goto failed;
1257 }
1258
1259 opts = tmp;
1260
1261 if (optslen > 0) {
1262 opts[optslen] = ' ';
1263 optslen++;
1264 }
1265
1266 memcpy(opts + optslen, str, len);
1267 optslen += len;
1268 opts[optslen] = '\0';
1269 }
1270
1271 m->init.options = true;
1272 m->options = opts;
1273 }
1274
1275 return mod->options;
1276
1277failed:
1278 ERR(mod->ctx, "out of memory\n");
1279 return NULL;
1280}
1281
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001282/**
1283 * kmod_module_get_install_commands:
1284 * @mod: kmod module
1285 *
1286 * Get install commands for this kmod module. Install commands come from the
1287 * configuration file and are cached in @mod. The first call to this function
1288 * will search for this module in configuration and subsequent calls return
1289 * the cached string. The install commands are returned as they were in the
1290 * configuration, concatenated by ';'. No other processing is made in this
1291 * string.
1292 *
1293 * Returns: a string with all install commands separated by semicolons. This
1294 * string is owned by @mod, do not free it.
1295 */
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001296KMOD_EXPORT const char *kmod_module_get_install_commands(const struct kmod_module *mod)
1297{
1298 if (mod == NULL)
1299 return NULL;
1300
1301 if (!mod->init.install_commands) {
1302 /* lazy init */
1303 struct kmod_module *m = (struct kmod_module *)mod;
1304 const struct kmod_list *l, *ctx_install_commands;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001305
1306 ctx_install_commands = kmod_get_install_commands(mod->ctx);
1307
1308 kmod_list_foreach(l, ctx_install_commands) {
1309 const char *modname = kmod_command_get_modname(l);
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001310
Gustavo Sverzut Barbieria6bf2492011-12-16 22:43:04 -02001311 if (fnmatch(modname, mod->name, 0) != 0)
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001312 continue;
1313
Lucas De Marchi60f67602011-12-16 03:33:26 -02001314 m->install_commands = kmod_command_get_command(l);
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001315
Lucas De Marchi60f67602011-12-16 03:33:26 -02001316 /*
1317 * find only the first command, as modprobe from
1318 * module-init-tools does
1319 */
1320 break;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001321 }
1322
1323 m->init.install_commands = true;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001324 }
1325
1326 return mod->install_commands;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001327}
1328
Lucas De Marchif4fc5522011-12-16 03:57:12 -02001329void kmod_module_set_install_commands(struct kmod_module *mod, const char *cmd)
1330{
1331 mod->init.install_commands = true;
1332 mod->install_commands = cmd;
1333}
1334
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001335static struct kmod_list *lookup_softdep(struct kmod_ctx *ctx, const char * const * array, unsigned int count)
1336{
1337 struct kmod_list *ret = NULL;
1338 unsigned i;
1339
1340 for (i = 0; i < count; i++) {
1341 const char *depname = array[i];
1342 struct kmod_list *lst = NULL;
1343 int err;
1344
1345 err = kmod_module_new_from_lookup(ctx, depname, &lst);
1346 if (err < 0) {
1347 ERR(ctx, "failed to lookup soft dependency '%s', continuing anyway.\n", depname);
1348 continue;
1349 } else if (lst != NULL)
1350 ret = kmod_list_append_list(ret, lst);
1351 }
1352 return ret;
1353}
1354
1355/**
1356 * kmod_module_get_softdeps:
1357 * @mod: kmod module
1358 * @pre: where to save the list of preceding soft dependencies.
1359 * @post: where to save the list of post soft dependencies.
1360 *
1361 * Get soft dependencies for this kmod module. Soft dependencies come
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001362 * from configuration file and are not cached in @mod because it may include
1363 * dependency cycles that would make we leak kmod_module. Any call
1364 * to this function will search for this module in configuration, allocate a
1365 * list and return the result.
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001366 *
1367 * Both @pre and @post are newly created list of kmod_module and
1368 * should be unreferenced with kmod_module_unref_list().
1369 *
1370 * Returns: 0 on success or < 0 otherwise.
1371 */
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001372KMOD_EXPORT int kmod_module_get_softdeps(const struct kmod_module *mod,
1373 struct kmod_list **pre,
1374 struct kmod_list **post)
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001375{
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001376 const struct kmod_list *l, *ctx_softdeps;
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001377
1378 if (mod == NULL || pre == NULL || post == NULL)
1379 return -ENOENT;
1380
1381 assert(*pre == NULL);
1382 assert(*post == NULL);
1383
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001384 ctx_softdeps = kmod_get_softdeps(mod->ctx);
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001385
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001386 kmod_list_foreach(l, ctx_softdeps) {
1387 const char *modname = kmod_softdep_get_name(l);
1388 const char * const *array;
1389 unsigned count;
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001390
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001391 if (fnmatch(modname, mod->name, 0) != 0)
1392 continue;
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001393
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001394 array = kmod_softdep_get_pre(l, &count);
1395 *pre = lookup_softdep(mod->ctx, array, count);
1396 array = kmod_softdep_get_post(l, &count);
1397 *post = lookup_softdep(mod->ctx, array, count);
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001398
Lucas De Marchi2bd7cbf2011-12-27 10:15:40 -02001399 /*
1400 * find only the first command, as modprobe from
1401 * module-init-tools does
1402 */
1403 break;
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001404 }
1405
1406 return 0;
Gustavo Sverzut Barbieri1c522602011-12-16 21:18:10 -02001407}
1408
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001409/**
1410 * kmod_module_get_remove_commands:
1411 * @mod: kmod module
1412 *
1413 * Get remove commands for this kmod module. Remove commands come from the
1414 * configuration file and are cached in @mod. The first call to this function
1415 * will search for this module in configuration and subsequent calls return
1416 * the cached string. The remove commands are returned as they were in the
1417 * configuration, concatenated by ';'. No other processing is made in this
1418 * string.
1419 *
1420 * Returns: a string with all remove commands separated by semicolons. This
1421 * string is owned by @mod, do not free it.
1422 */
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001423KMOD_EXPORT const char *kmod_module_get_remove_commands(const struct kmod_module *mod)
1424{
1425 if (mod == NULL)
1426 return NULL;
1427
1428 if (!mod->init.remove_commands) {
1429 /* lazy init */
1430 struct kmod_module *m = (struct kmod_module *)mod;
1431 const struct kmod_list *l, *ctx_remove_commands;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001432
1433 ctx_remove_commands = kmod_get_remove_commands(mod->ctx);
1434
1435 kmod_list_foreach(l, ctx_remove_commands) {
1436 const char *modname = kmod_command_get_modname(l);
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001437
Gustavo Sverzut Barbieria6bf2492011-12-16 22:43:04 -02001438 if (fnmatch(modname, mod->name, 0) != 0)
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001439 continue;
1440
Lucas De Marchi60f67602011-12-16 03:33:26 -02001441 m->remove_commands = kmod_command_get_command(l);
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001442
Lucas De Marchi60f67602011-12-16 03:33:26 -02001443 /*
1444 * find only the first command, as modprobe from
1445 * module-init-tools does
1446 */
1447 break;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001448 }
1449
1450 m->init.remove_commands = true;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001451 }
1452
1453 return mod->remove_commands;
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001454}
1455
Lucas De Marchif4fc5522011-12-16 03:57:12 -02001456void kmod_module_set_remove_commands(struct kmod_module *mod, const char *cmd)
1457{
1458 mod->init.remove_commands = true;
1459 mod->remove_commands = cmd;
1460}
1461
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001462/**
1463 * SECTION:libkmod-loaded
1464 * @short_description: currently loaded modules
1465 *
1466 * Information about currently loaded modules, as reported by Linux kernel.
1467 * These information are not cached by libkmod and are always read from /sys
1468 * and /proc/modules.
1469 */
1470
1471/**
1472 * kmod_module_new_from_loaded:
1473 * @ctx: kmod library context
1474 * @list: where to save the list of loaded modules
1475 *
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001476 * Create a new list of kmod modules with all modules currently loaded in
1477 * kernel. It uses /proc/modules to get the names of loaded modules and to
1478 * create kmod modules by calling kmod_module_new_from_name() in each of them.
1479 * They are put are put in @list in no particular order.
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001480 *
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001481 * The initial refcount is 1, and needs to be decremented to release the
1482 * resources of the kmod_module. The returned @list must be released by
1483 * calling kmod_module_unref_list(). Since libkmod keeps track of all
1484 * kmod_modules created, they are all released upon @ctx destruction too. Do
1485 * not unref @ctx before all the desired operations with the returned list are
1486 * completed.
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001487 *
1488 * Returns: 0 on success or < 0 on error.
1489 */
1490KMOD_EXPORT int kmod_module_new_from_loaded(struct kmod_ctx *ctx,
1491 struct kmod_list **list)
1492{
1493 struct kmod_list *l = NULL;
1494 FILE *fp;
1495 char line[4096];
1496
1497 if (ctx == NULL || list == NULL)
1498 return -ENOENT;
1499
Cristian Rodríguez79e5ea92011-12-16 02:49:54 -03001500 fp = fopen("/proc/modules", "re");
Lucas De Marchi49ce6d02011-12-12 13:56:47 -02001501 if (fp == NULL) {
1502 int err = -errno;
1503 ERR(ctx, "could not open /proc/modules: %s\n", strerror(errno));
1504 return err;
1505 }
1506
1507 while (fgets(line, sizeof(line), fp)) {
1508 struct kmod_module *m;
1509 struct kmod_list *node;
1510 int err;
1511 char *saveptr, *name = strtok_r(line, " \t", &saveptr);
1512
1513 err = kmod_module_new_from_name(ctx, name, &m);
1514 if (err < 0) {
1515 ERR(ctx, "could not get module from name '%s': %s\n",
1516 name, strerror(-err));
1517 continue;
1518 }
1519
1520 node = kmod_list_append(l, m);
1521 if (node)
1522 l = node;
1523 else {
1524 ERR(ctx, "out of memory\n");
1525 kmod_module_unref(m);
1526 }
1527 }
1528
1529 fclose(fp);
1530 *list = l;
1531
1532 return 0;
1533}
1534
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001535/**
1536 * kmod_module_initstate_str:
1537 * @state: the state as returned by kmod_module_get_initstate()
1538 *
1539 * Translate a initstate to a string.
1540 *
1541 * Returns: the string associated to the @state. This string is statically
1542 * allocated, do not free it.
1543 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001544KMOD_EXPORT const char *kmod_module_initstate_str(enum kmod_module_initstate state)
1545{
1546 switch (state) {
1547 case KMOD_MODULE_BUILTIN:
1548 return "builtin";
1549 case KMOD_MODULE_LIVE:
1550 return "live";
1551 case KMOD_MODULE_COMING:
1552 return "coming";
1553 case KMOD_MODULE_GOING:
1554 return "going";
1555 default:
1556 return NULL;
1557 }
1558}
1559
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001560/**
1561 * kmod_module_get_initstate:
1562 * @mod: kmod module
1563 *
1564 * Get the initstate of this @mod, as returned by Linux Kernel, by reading
1565 * /sys filesystem.
1566 *
1567 * Returns: < 0 on error or enum kmod_initstate if module is found in kernel.
1568 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001569KMOD_EXPORT int kmod_module_get_initstate(const struct kmod_module *mod)
1570{
1571 char path[PATH_MAX], buf[32];
1572 int fd, err, pathlen;
1573
Lucas De Marchi818f8e82011-12-15 13:35:40 -02001574 if (mod == NULL)
1575 return -ENOENT;
1576
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001577 pathlen = snprintf(path, sizeof(path),
1578 "/sys/module/%s/initstate", mod->name);
Cristian Rodríguez79e5ea92011-12-16 02:49:54 -03001579 fd = open(path, O_RDONLY|O_CLOEXEC);
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001580 if (fd < 0) {
1581 err = -errno;
1582
Lucas De Marchiddbda022011-12-27 11:40:10 -02001583 DBG(mod->ctx, "could not open '%s': %s\n",
1584 path, strerror(-err));
1585
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001586 if (pathlen > (int)sizeof("/initstate") - 1) {
1587 struct stat st;
1588 path[pathlen - (sizeof("/initstate") - 1)] = '\0';
1589 if (stat(path, &st) == 0 && S_ISDIR(st.st_mode))
1590 return KMOD_MODULE_BUILTIN;
1591 }
1592
Gustavo Sverzut Barbieri926f67a2011-12-11 19:33:03 -02001593 DBG(mod->ctx, "could not open '%s': %s\n",
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001594 path, strerror(-err));
1595 return err;
1596 }
1597
1598 err = read_str_safe(fd, buf, sizeof(buf));
1599 close(fd);
1600 if (err < 0) {
1601 ERR(mod->ctx, "could not read from '%s': %s\n",
1602 path, strerror(-err));
1603 return err;
1604 }
1605
Lucas De Marchi877e80c2011-12-07 02:26:31 -02001606 if (streq(buf, "live\n"))
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001607 return KMOD_MODULE_LIVE;
Lucas De Marchi877e80c2011-12-07 02:26:31 -02001608 else if (streq(buf, "coming\n"))
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001609 return KMOD_MODULE_COMING;
Lucas De Marchi877e80c2011-12-07 02:26:31 -02001610 else if (streq(buf, "going\n"))
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001611 return KMOD_MODULE_GOING;
1612
1613 ERR(mod->ctx, "unknown %s: '%s'\n", path, buf);
1614 return -EINVAL;
1615}
1616
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001617/**
Lucas De Marchi2d7bab52011-12-14 12:10:02 -02001618 * kmod_module_get_size:
1619 * @mod: kmod module
1620 *
1621 * Get the size of this kmod module as returned by Linux kernel. It reads the
1622 * file /proc/modules to search for this module and get its size.
1623 *
1624 * Returns: the size of this kmod module.
1625 */
1626KMOD_EXPORT long kmod_module_get_size(const struct kmod_module *mod)
1627{
1628 // FIXME TODO: this should be available from /sys/module/foo
1629 FILE *fp;
1630 char line[4096];
1631 int lineno = 0;
1632 long size = -ENOENT;
1633
1634 if (mod == NULL)
1635 return -ENOENT;
1636
Cristian Rodríguez79e5ea92011-12-16 02:49:54 -03001637 fp = fopen("/proc/modules", "re");
Lucas De Marchi2d7bab52011-12-14 12:10:02 -02001638 if (fp == NULL) {
1639 int err = -errno;
1640 ERR(mod->ctx,
1641 "could not open /proc/modules: %s\n", strerror(errno));
1642 return err;
1643 }
1644
1645 while (fgets(line, sizeof(line), fp)) {
1646 char *saveptr, *endptr, *tok = strtok_r(line, " \t", &saveptr);
1647 long value;
1648
1649 lineno++;
1650 if (tok == NULL || !streq(tok, mod->name))
1651 continue;
1652
1653 tok = strtok_r(NULL, " \t", &saveptr);
1654 if (tok == NULL) {
1655 ERR(mod->ctx,
1656 "invalid line format at /proc/modules:%d\n", lineno);
1657 break;
1658 }
1659
1660 value = strtol(tok, &endptr, 10);
1661 if (endptr == tok || *endptr != '\0') {
1662 ERR(mod->ctx,
1663 "invalid line format at /proc/modules:%d\n", lineno);
1664 break;
1665 }
1666
1667 size = value;
1668 break;
1669 }
1670 fclose(fp);
1671 return size;
1672}
1673
1674/**
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001675 * kmod_module_get_refcnt:
1676 * @mod: kmod module
1677 *
1678 * Get the ref count of this @mod, as returned by Linux Kernel, by reading
1679 * /sys filesystem.
1680 *
1681 * Returns: 0 on success or < 0 on failure.
1682 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001683KMOD_EXPORT int kmod_module_get_refcnt(const struct kmod_module *mod)
1684{
1685 char path[PATH_MAX];
1686 long refcnt;
1687 int fd, err;
1688
Lucas De Marchi818f8e82011-12-15 13:35:40 -02001689 if (mod == NULL)
1690 return -ENOENT;
1691
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001692 snprintf(path, sizeof(path), "/sys/module/%s/refcnt", mod->name);
Cristian Rodríguez79e5ea92011-12-16 02:49:54 -03001693 fd = open(path, O_RDONLY|O_CLOEXEC);
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001694 if (fd < 0) {
1695 err = -errno;
1696 ERR(mod->ctx, "could not open '%s': %s\n",
1697 path, strerror(errno));
1698 return err;
1699 }
1700
1701 err = read_str_long(fd, &refcnt, 10);
1702 close(fd);
1703 if (err < 0) {
1704 ERR(mod->ctx, "could not read integer from '%s': '%s'\n",
1705 path, strerror(-err));
1706 return err;
1707 }
1708
1709 return (int)refcnt;
1710}
1711
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001712/**
1713 * kmod_module_get_holders:
1714 * @mod: kmod module
1715 *
1716 * Get a list of kmod modules that are holding this @mod, as returned by Linux
1717 * Kernel. After use, free the @list by calling kmod_module_unref_list().
1718 *
1719 * Returns: a new list of kmod modules on success or NULL on failure.
1720 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001721KMOD_EXPORT struct kmod_list *kmod_module_get_holders(const struct kmod_module *mod)
1722{
1723 char dname[PATH_MAX];
1724 struct kmod_list *list = NULL;
1725 DIR *d;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001726
1727 if (mod == NULL)
1728 return NULL;
Lucas De Marchi818f8e82011-12-15 13:35:40 -02001729
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001730 snprintf(dname, sizeof(dname), "/sys/module/%s/holders", mod->name);
1731
1732 d = opendir(dname);
1733 if (d == NULL) {
1734 ERR(mod->ctx, "could not open '%s': %s\n",
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001735 dname, strerror(errno));
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001736 return NULL;
1737 }
1738
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001739 for (;;) {
1740 struct dirent de, *entp;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001741 struct kmod_module *holder;
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001742 struct kmod_list *l;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001743 int err;
1744
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001745 err = readdir_r(d, &de, &entp);
1746 if (err != 0) {
1747 ERR(mod->ctx, "could not iterate for module '%s': %s\n",
1748 mod->name, strerror(-err));
1749 goto fail;
1750 }
1751
1752 if (entp == NULL)
1753 break;
1754
1755 if (de.d_name[0] == '.') {
1756 if (de.d_name[1] == '\0' ||
1757 (de.d_name[1] == '.' && de.d_name[2] == '\0'))
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001758 continue;
1759 }
1760
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001761 err = kmod_module_new_from_name(mod->ctx, de.d_name, &holder);
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001762 if (err < 0) {
1763 ERR(mod->ctx, "could not create module for '%s': %s\n",
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001764 de.d_name, strerror(-err));
1765 goto fail;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001766 }
1767
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001768 l = kmod_list_append(list, holder);
1769 if (l != NULL) {
1770 list = l;
1771 } else {
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001772 ERR(mod->ctx, "out of memory\n");
1773 kmod_module_unref(holder);
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001774 goto fail;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001775 }
1776 }
1777
1778 closedir(d);
1779 return list;
Lucas De Marchi53886dd2011-12-05 13:24:23 -02001780
1781fail:
1782 closedir(d);
1783 kmod_module_unref_list(list);
1784 return NULL;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001785}
1786
1787struct kmod_module_section {
1788 unsigned long address;
1789 char name[];
1790};
1791
1792static void kmod_module_section_free(struct kmod_module_section *section)
1793{
1794 free(section);
1795}
1796
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001797/**
1798 * kmod_module_get_sections:
1799 * @mod: kmod module
1800 *
1801 * Get a list of kmod sections of this @mod, as returned by Linux Kernel. The
1802 * structure contained in this list is internal to libkmod and their fields
1803 * can be obtained by calling kmod_module_section_get_name() and
1804 * kmod_module_section_get_address().
1805 *
1806 * After use, free the @list by calling kmod_module_section_free_list().
1807 *
1808 * Returns: a new list of kmod module sections on success or NULL on failure.
1809 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001810KMOD_EXPORT struct kmod_list *kmod_module_get_sections(const struct kmod_module *mod)
1811{
1812 char dname[PATH_MAX];
1813 struct kmod_list *list = NULL;
1814 DIR *d;
1815 int dfd;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001816
1817 if (mod == NULL)
1818 return NULL;
Lucas De Marchi28c175e2011-12-12 11:52:59 -02001819
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001820 snprintf(dname, sizeof(dname), "/sys/module/%s/sections", mod->name);
1821
1822 d = opendir(dname);
1823 if (d == NULL) {
1824 ERR(mod->ctx, "could not open '%s': %s\n",
1825 dname, strerror(errno));
1826 return NULL;
1827 }
1828
1829 dfd = dirfd(d);
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001830
1831 for (;;) {
1832 struct dirent de, *entp;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001833 struct kmod_module_section *section;
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001834 struct kmod_list *l;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001835 unsigned long address;
1836 size_t namesz;
1837 int fd, err;
1838
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001839 err = readdir_r(d, &de, &entp);
1840 if (err != 0) {
1841 ERR(mod->ctx, "could not iterate for module '%s': %s\n",
1842 mod->name, strerror(-err));
1843 goto fail;
1844 }
1845
1846 if (de.d_name[0] == '.') {
1847 if (de.d_name[1] == '\0' ||
1848 (de.d_name[1] == '.' && de.d_name[2] == '\0'))
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001849 continue;
1850 }
1851
Cristian Rodríguez8e3e5832011-12-16 14:46:52 -03001852 fd = openat(dfd, de.d_name, O_RDONLY|O_CLOEXEC);
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001853 if (fd < 0) {
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001854 ERR(mod->ctx, "could not open '%s/%s': %m\n",
1855 dname, de.d_name);
1856 goto fail;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001857 }
1858
1859 err = read_str_ulong(fd, &address, 16);
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001860 close(fd);
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001861 if (err < 0) {
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001862 ERR(mod->ctx, "could not read long from '%s/%s': %m\n",
1863 dname, de.d_name);
1864 goto fail;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001865 }
1866
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001867 namesz = strlen(de.d_name) + 1;
1868 section = malloc(sizeof(*section) + namesz);
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001869
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001870 if (section == NULL) {
1871 ERR(mod->ctx, "out of memory\n");
1872 goto fail;
1873 }
1874
1875 section->address = address;
1876 memcpy(section->name, de.d_name, namesz);
1877
1878 l = kmod_list_append(list, section);
1879 if (l != NULL) {
1880 list = l;
1881 } else {
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001882 ERR(mod->ctx, "out of memory\n");
1883 free(section);
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001884 goto fail;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001885 }
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001886 }
1887
1888 closedir(d);
1889 return list;
Lucas De Marchi40923bd2011-12-05 13:40:16 -02001890
1891fail:
1892 closedir(d);
1893 kmod_module_unref_list(list);
1894 return NULL;
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001895}
1896
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001897/**
1898 * kmod_module_section_get_module_name:
1899 * @entry: a list entry representing a kmod module section
1900 *
1901 * Get the name of a kmod module section.
1902 *
1903 * After use, free the @list by calling kmod_module_section_free_list().
1904 *
1905 * Returns: the name of this kmod module section on success or NULL on
1906 * failure. The string is owned by the section, do not free it.
1907 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001908KMOD_EXPORT const char *kmod_module_section_get_name(const struct kmod_list *entry)
1909{
1910 struct kmod_module_section *section;
Lucas De Marchi28c175e2011-12-12 11:52:59 -02001911
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001912 if (entry == NULL)
1913 return NULL;
Lucas De Marchi28c175e2011-12-12 11:52:59 -02001914
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001915 section = entry->data;
1916 return section->name;
1917}
1918
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001919/**
1920 * kmod_module_section_get_address:
1921 * @entry: a list entry representing a kmod module section
1922 *
1923 * Get the address of a kmod module section.
1924 *
1925 * After use, free the @list by calling kmod_module_section_free_list().
1926 *
1927 * Returns: the address of this kmod module section on success or ULONG_MAX
1928 * on failure.
1929 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001930KMOD_EXPORT unsigned long kmod_module_section_get_address(const struct kmod_list *entry)
1931{
1932 struct kmod_module_section *section;
Lucas De Marchi28c175e2011-12-12 11:52:59 -02001933
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001934 if (entry == NULL)
1935 return (unsigned long)-1;
Lucas De Marchi28c175e2011-12-12 11:52:59 -02001936
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001937 section = entry->data;
1938 return section->address;
1939}
1940
Lucas De Marchi7afc98a2011-12-14 12:06:18 -02001941/**
1942 * kmod_module_section_free_list:
1943 * @list: kmod module section list
1944 *
1945 * Release the resources taken by @list
1946 */
Gustavo Sverzut Barbierif12ae3c2011-12-04 12:40:00 -02001947KMOD_EXPORT void kmod_module_section_free_list(struct kmod_list *list)
1948{
1949 while (list) {
1950 kmod_module_section_free(list->data);
1951 list = kmod_list_remove(list);
1952 }
1953}
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -02001954
1955struct kmod_module_info {
1956 char *key;
1957 char value[];
1958};
1959
1960static struct kmod_module_info *kmod_module_info_new(const char *key, size_t keylen, const char *value, size_t valuelen)
1961{
1962 struct kmod_module_info *info;
1963
1964 info = malloc(sizeof(struct kmod_module_info) + keylen + valuelen + 2);
1965 if (info == NULL)
1966 return NULL;
1967
1968 info->key = (char *)info + sizeof(struct kmod_module_info)
1969 + valuelen + 1;
1970 memcpy(info->key, key, keylen);
1971 info->key[keylen] = '\0';
1972 memcpy(info->value, value, valuelen);
1973 info->value[valuelen] = '\0';
1974 return info;
1975}
1976
1977static void kmod_module_info_free(struct kmod_module_info *info)
1978{
1979 free(info);
1980}
1981
1982/**
1983 * kmod_module_get_info:
1984 * @mod: kmod module
1985 * @list: where to return list of module information. Use
1986 * kmod_module_info_get_key() and
1987 * kmod_module_info_get_value(). Release this list with
Lucas De Marchidb74cee2012-01-09 03:45:19 -02001988 * kmod_module_info_free_list()
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -02001989 *
1990 * Get a list of entries in ELF section ".modinfo", these contain
1991 * alias, license, depends, vermagic and other keys with respective
1992 * values.
1993 *
1994 * After use, free the @list by calling kmod_module_info_free_list().
1995 *
1996 * Returns: 0 on success or < 0 otherwise.
1997 */
1998KMOD_EXPORT int kmod_module_get_info(const struct kmod_module *mod, struct kmod_list **list)
1999{
2000 struct kmod_file *file;
2001 struct kmod_elf *elf;
2002 const char *path;
2003 const void *mem;
2004 char **strings;
2005 size_t size;
2006 int i, count, ret = 0;
2007
2008 if (mod == NULL || list == NULL)
2009 return -ENOENT;
2010
2011 assert(*list == NULL);
2012
2013 path = kmod_module_get_path(mod);
2014 if (path == NULL)
2015 return -ENOENT;
2016
Lucas De Marchic68e92f2012-01-04 08:19:34 -02002017 file = kmod_file_open(mod->ctx, path);
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -02002018 if (file == NULL)
2019 return -errno;
2020
2021 size = kmod_file_get_size(file);
2022 mem = kmod_file_get_contents(file);
2023
2024 elf = kmod_elf_new(mem, size);
2025 if (elf == NULL) {
2026 ret = -errno;
2027 goto elf_open_error;
2028 }
2029
2030 count = kmod_elf_get_strings(elf, ".modinfo", &strings);
2031 if (count < 0) {
2032 ret = count;
2033 goto get_strings_error;
2034 }
2035
2036 for (i = 0; i < count; i++) {
2037 struct kmod_module_info *info;
2038 struct kmod_list *n;
2039 const char *key, *value;
2040 size_t keylen, valuelen;
2041
2042 key = strings[i];
2043 value = strchr(key, '=');
2044 if (value == NULL) {
2045 keylen = strlen(key);
2046 valuelen = 0;
2047 } else {
2048 keylen = value - key;
2049 value++;
2050 valuelen = strlen(value);
2051 }
2052
2053 info = kmod_module_info_new(key, keylen, value, valuelen);
2054 if (info == NULL) {
2055 ret = -errno;
2056 kmod_module_info_free_list(*list);
2057 *list = NULL;
2058 goto list_error;
2059 }
2060
2061 n = kmod_list_append(*list, info);
2062 if (n != NULL)
2063 *list = n;
2064 else {
2065 kmod_module_info_free(info);
2066 kmod_module_info_free_list(*list);
2067 *list = NULL;
2068 ret = -ENOMEM;
2069 goto list_error;
2070 }
2071 }
2072 ret = count;
2073
2074list_error:
2075 free(strings);
2076get_strings_error:
2077 kmod_elf_unref(elf);
2078elf_open_error:
2079 kmod_file_unref(file);
2080
2081 return ret;
2082}
2083
2084/**
2085 * kmod_module_info_get_key:
2086 * @entry: a list entry representing a kmod module info
2087 *
2088 * Get the key of a kmod module info.
2089 *
2090 * Returns: the key of this kmod module info on success or NULL on
2091 * failure. The string is owned by the info, do not free it.
2092 */
2093KMOD_EXPORT const char *kmod_module_info_get_key(const struct kmod_list *entry)
2094{
2095 struct kmod_module_info *info;
2096
2097 if (entry == NULL)
2098 return NULL;
2099
2100 info = entry->data;
2101 return info->key;
2102}
2103
2104/**
2105 * kmod_module_info_get_value:
2106 * @entry: a list entry representing a kmod module info
2107 *
2108 * Get the value of a kmod module info.
2109 *
2110 * Returns: the value of this kmod module info on success or NULL on
2111 * failure. The string is owned by the info, do not free it.
2112 */
2113KMOD_EXPORT const char *kmod_module_info_get_value(const struct kmod_list *entry)
2114{
2115 struct kmod_module_info *info;
2116
2117 if (entry == NULL)
2118 return NULL;
2119
2120 info = entry->data;
2121 return info->value;
2122}
2123
2124/**
2125 * kmod_module_info_free_list:
2126 * @list: kmod module info list
2127 *
2128 * Release the resources taken by @list
2129 */
2130KMOD_EXPORT void kmod_module_info_free_list(struct kmod_list *list)
2131{
2132 while (list) {
2133 kmod_module_info_free(list->data);
2134 list = kmod_list_remove(list);
2135 }
2136}
2137
2138struct kmod_module_version {
2139 uint64_t crc;
2140 char symbol[];
2141};
2142
2143static struct kmod_module_version *kmod_module_versions_new(uint64_t crc, const char *symbol)
2144{
2145 struct kmod_module_version *mv;
2146 size_t symbollen = strlen(symbol) + 1;
2147
2148 mv = malloc(sizeof(struct kmod_module_version) + symbollen);
2149 if (mv == NULL)
2150 return NULL;
2151
2152 mv->crc = crc;
2153 memcpy(mv->symbol, symbol, symbollen);
2154 return mv;
2155}
2156
2157static void kmod_module_version_free(struct kmod_module_version *version)
2158{
2159 free(version);
2160}
2161
2162/**
2163 * kmod_module_get_versions:
2164 * @mod: kmod module
2165 * @list: where to return list of module versions. Use
Lucas De Marchidb74cee2012-01-09 03:45:19 -02002166 * kmod_module_version_get_symbol() and
2167 * kmod_module_version_get_crc(). Release this list with
2168 * kmod_module_versions_free_list()
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -02002169 *
2170 * Get a list of entries in ELF section "__versions".
2171 *
2172 * After use, free the @list by calling kmod_module_versions_free_list().
2173 *
2174 * Returns: 0 on success or < 0 otherwise.
2175 */
2176KMOD_EXPORT int kmod_module_get_versions(const struct kmod_module *mod, struct kmod_list **list)
2177{
2178 struct kmod_file *file;
2179 struct kmod_elf *elf;
2180 const char *path;
2181 const void *mem;
2182 struct kmod_modversion *versions;
2183 size_t size;
2184 int i, count, ret = 0;
2185
2186 if (mod == NULL || list == NULL)
2187 return -ENOENT;
2188
2189 assert(*list == NULL);
2190
2191 path = kmod_module_get_path(mod);
2192 if (path == NULL)
2193 return -ENOENT;
2194
Lucas De Marchic68e92f2012-01-04 08:19:34 -02002195 file = kmod_file_open(mod->ctx, path);
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -02002196 if (file == NULL)
2197 return -errno;
2198
2199 size = kmod_file_get_size(file);
2200 mem = kmod_file_get_contents(file);
2201
2202 elf = kmod_elf_new(mem, size);
2203 if (elf == NULL) {
2204 ret = -errno;
2205 goto elf_open_error;
2206 }
2207
2208 count = kmod_elf_get_modversions(elf, &versions);
2209 if (count < 0) {
2210 ret = count;
2211 goto get_strings_error;
2212 }
2213
2214 for (i = 0; i < count; i++) {
2215 struct kmod_module_version *mv;
2216 struct kmod_list *n;
2217
2218 mv = kmod_module_versions_new(versions[i].crc, versions[i].symbol);
2219 if (mv == NULL) {
2220 ret = -errno;
2221 kmod_module_versions_free_list(*list);
2222 *list = NULL;
2223 goto list_error;
2224 }
2225
2226 n = kmod_list_append(*list, mv);
2227 if (n != NULL)
2228 *list = n;
2229 else {
2230 kmod_module_version_free(mv);
2231 kmod_module_versions_free_list(*list);
2232 *list = NULL;
2233 ret = -ENOMEM;
2234 goto list_error;
2235 }
2236 }
2237 ret = count;
2238
2239list_error:
2240 free(versions);
2241get_strings_error:
2242 kmod_elf_unref(elf);
2243elf_open_error:
2244 kmod_file_unref(file);
2245
2246 return ret;
2247}
2248
2249/**
2250 * kmod_module_versions_get_symbol:
2251 * @entry: a list entry representing a kmod module versions
2252 *
2253 * Get the symbol of a kmod module versions.
2254 *
2255 * Returns: the symbol of this kmod module versions on success or NULL
2256 * on failure. The string is owned by the versions, do not free it.
2257 */
2258KMOD_EXPORT const char *kmod_module_version_get_symbol(const struct kmod_list *entry)
2259{
2260 struct kmod_module_version *version;
2261
2262 if (entry == NULL)
2263 return NULL;
2264
2265 version = entry->data;
2266 return version->symbol;
2267}
2268
2269/**
2270 * kmod_module_version_get_crc:
2271 * @entry: a list entry representing a kmod module version
2272 *
2273 * Get the crc of a kmod module version.
2274 *
2275 * Returns: the crc of this kmod module version on success or NULL on
2276 * failure. The string is owned by the version, do not free it.
2277 */
2278KMOD_EXPORT uint64_t kmod_module_version_get_crc(const struct kmod_list *entry)
2279{
2280 struct kmod_module_version *version;
2281
2282 if (entry == NULL)
2283 return 0;
2284
2285 version = entry->data;
2286 return version->crc;
2287}
2288
2289/**
2290 * kmod_module_versions_free_list:
2291 * @list: kmod module versions list
2292 *
2293 * Release the resources taken by @list
2294 */
2295KMOD_EXPORT void kmod_module_versions_free_list(struct kmod_list *list)
2296{
2297 while (list) {
2298 kmod_module_version_free(list->data);
2299 list = kmod_list_remove(list);
2300 }
2301}
Gustavo Sverzut Barbieri45e6db92011-12-19 21:23:13 -02002302
2303struct kmod_module_symbol {
2304 uint64_t crc;
2305 char symbol[];
2306};
2307
2308static struct kmod_module_symbol *kmod_module_symbols_new(uint64_t crc, const char *symbol)
2309{
2310 struct kmod_module_symbol *mv;
2311 size_t symbollen = strlen(symbol) + 1;
2312
2313 mv = malloc(sizeof(struct kmod_module_symbol) + symbollen);
2314 if (mv == NULL)
2315 return NULL;
2316
2317 mv->crc = crc;
2318 memcpy(mv->symbol, symbol, symbollen);
2319 return mv;
2320}
2321
2322static void kmod_module_symbol_free(struct kmod_module_symbol *symbol)
2323{
2324 free(symbol);
2325}
2326
2327/**
2328 * kmod_module_get_symbols:
2329 * @mod: kmod module
2330 * @list: where to return list of module symbols. Use
Lucas De Marchidb74cee2012-01-09 03:45:19 -02002331 * kmod_module_symbol_get_symbol() and
2332 * kmod_module_symbol_get_crc(). Release this list with
2333 * kmod_module_symbols_free_list()
Gustavo Sverzut Barbieri45e6db92011-12-19 21:23:13 -02002334 *
2335 * Get a list of entries in ELF section ".symtab" or "__ksymtab_strings".
2336 *
2337 * After use, free the @list by calling kmod_module_symbols_free_list().
2338 *
2339 * Returns: 0 on success or < 0 otherwise.
2340 */
2341KMOD_EXPORT int kmod_module_get_symbols(const struct kmod_module *mod, struct kmod_list **list)
2342{
2343 struct kmod_file *file;
2344 struct kmod_elf *elf;
2345 const char *path;
2346 const void *mem;
2347 struct kmod_modversion *symbols;
2348 size_t size;
2349 int i, count, ret = 0;
2350
2351 if (mod == NULL || list == NULL)
2352 return -ENOENT;
2353
2354 assert(*list == NULL);
2355
2356 path = kmod_module_get_path(mod);
2357 if (path == NULL)
2358 return -ENOENT;
2359
Lucas De Marchic68e92f2012-01-04 08:19:34 -02002360 file = kmod_file_open(mod->ctx, path);
Gustavo Sverzut Barbieri45e6db92011-12-19 21:23:13 -02002361 if (file == NULL)
2362 return -errno;
2363
2364 size = kmod_file_get_size(file);
2365 mem = kmod_file_get_contents(file);
2366
2367 elf = kmod_elf_new(mem, size);
2368 if (elf == NULL) {
2369 ret = -errno;
2370 goto elf_open_error;
2371 }
2372
2373 count = kmod_elf_get_symbols(elf, &symbols);
2374 if (count < 0) {
2375 ret = count;
2376 goto get_strings_error;
2377 }
2378
2379 for (i = 0; i < count; i++) {
2380 struct kmod_module_symbol *mv;
2381 struct kmod_list *n;
2382
2383 mv = kmod_module_symbols_new(symbols[i].crc, symbols[i].symbol);
2384 if (mv == NULL) {
2385 ret = -errno;
2386 kmod_module_symbols_free_list(*list);
2387 *list = NULL;
2388 goto list_error;
2389 }
2390
2391 n = kmod_list_append(*list, mv);
2392 if (n != NULL)
2393 *list = n;
2394 else {
2395 kmod_module_symbol_free(mv);
2396 kmod_module_symbols_free_list(*list);
2397 *list = NULL;
2398 ret = -ENOMEM;
2399 goto list_error;
2400 }
2401 }
2402 ret = count;
2403
2404list_error:
2405 free(symbols);
2406get_strings_error:
2407 kmod_elf_unref(elf);
2408elf_open_error:
2409 kmod_file_unref(file);
2410
2411 return ret;
2412}
2413
2414/**
Lucas De Marchidb74cee2012-01-09 03:45:19 -02002415 * kmod_module_symbol_get_symbol:
Gustavo Sverzut Barbieri45e6db92011-12-19 21:23:13 -02002416 * @entry: a list entry representing a kmod module symbols
2417 *
2418 * Get the symbol of a kmod module symbols.
2419 *
2420 * Returns: the symbol of this kmod module symbols on success or NULL
2421 * on failure. The string is owned by the symbols, do not free it.
2422 */
2423KMOD_EXPORT const char *kmod_module_symbol_get_symbol(const struct kmod_list *entry)
2424{
2425 struct kmod_module_symbol *symbol;
2426
2427 if (entry == NULL)
2428 return NULL;
2429
2430 symbol = entry->data;
2431 return symbol->symbol;
2432}
2433
2434/**
2435 * kmod_module_symbol_get_crc:
2436 * @entry: a list entry representing a kmod module symbol
2437 *
2438 * Get the crc of a kmod module symbol.
2439 *
2440 * Returns: the crc of this kmod module symbol on success or NULL on
2441 * failure. The string is owned by the symbol, do not free it.
2442 */
2443KMOD_EXPORT uint64_t kmod_module_symbol_get_crc(const struct kmod_list *entry)
2444{
2445 struct kmod_module_symbol *symbol;
2446
2447 if (entry == NULL)
2448 return 0;
2449
2450 symbol = entry->data;
2451 return symbol->crc;
2452}
2453
2454/**
2455 * kmod_module_symbols_free_list:
2456 * @list: kmod module symbols list
2457 *
2458 * Release the resources taken by @list
2459 */
2460KMOD_EXPORT void kmod_module_symbols_free_list(struct kmod_list *list)
2461{
2462 while (list) {
2463 kmod_module_symbol_free(list->data);
2464 list = kmod_list_remove(list);
2465 }
2466}
Gustavo Sverzut Barbieri674f8592011-12-20 11:54:53 -02002467
2468struct kmod_module_dependency_symbol {
2469 uint64_t crc;
2470 uint8_t bind;
2471 char symbol[];
2472};
2473
2474static struct kmod_module_dependency_symbol *kmod_module_dependency_symbols_new(uint64_t crc, uint8_t bind, const char *symbol)
2475{
2476 struct kmod_module_dependency_symbol *mv;
2477 size_t symbollen = strlen(symbol) + 1;
2478
2479 mv = malloc(sizeof(struct kmod_module_dependency_symbol) + symbollen);
2480 if (mv == NULL)
2481 return NULL;
2482
2483 mv->crc = crc;
2484 mv->bind = bind;
2485 memcpy(mv->symbol, symbol, symbollen);
2486 return mv;
2487}
2488
2489static void kmod_module_dependency_symbol_free(struct kmod_module_dependency_symbol *dependency_symbol)
2490{
2491 free(dependency_symbol);
2492}
2493
2494/**
2495 * kmod_module_get_dependency_symbols:
2496 * @mod: kmod module
2497 * @list: where to return list of module dependency_symbols. Use
2498 * kmod_module_dependency_symbol_get_symbol() and
2499 * kmod_module_dependency_symbol_get_crc(). Release this list with
2500 * kmod_module_dependency_symbols_free_list()
2501 *
2502 * Get a list of entries in ELF section ".symtab" or "__ksymtab_strings".
2503 *
2504 * After use, free the @list by calling
2505 * kmod_module_dependency_symbols_free_list().
2506 *
2507 * Returns: 0 on success or < 0 otherwise.
2508 */
2509KMOD_EXPORT int kmod_module_get_dependency_symbols(const struct kmod_module *mod, struct kmod_list **list)
2510{
2511 struct kmod_file *file;
2512 struct kmod_elf *elf;
2513 const char *path;
2514 const void *mem;
2515 struct kmod_modversion *symbols;
2516 size_t size;
2517 int i, count, ret = 0;
2518
2519 if (mod == NULL || list == NULL)
2520 return -ENOENT;
2521
2522 assert(*list == NULL);
2523
2524 path = kmod_module_get_path(mod);
2525 if (path == NULL)
2526 return -ENOENT;
2527
Lucas De Marchic68e92f2012-01-04 08:19:34 -02002528 file = kmod_file_open(mod->ctx, path);
Gustavo Sverzut Barbieri674f8592011-12-20 11:54:53 -02002529 if (file == NULL)
2530 return -errno;
2531
2532 size = kmod_file_get_size(file);
2533 mem = kmod_file_get_contents(file);
2534
2535 elf = kmod_elf_new(mem, size);
2536 if (elf == NULL) {
2537 ret = -errno;
2538 goto elf_open_error;
2539 }
2540
2541 count = kmod_elf_get_dependency_symbols(elf, &symbols);
2542 if (count < 0) {
2543 ret = count;
2544 goto get_strings_error;
2545 }
2546
2547 for (i = 0; i < count; i++) {
2548 struct kmod_module_dependency_symbol *mv;
2549 struct kmod_list *n;
2550
2551 mv = kmod_module_dependency_symbols_new(symbols[i].crc,
2552 symbols[i].bind,
2553 symbols[i].symbol);
2554 if (mv == NULL) {
2555 ret = -errno;
2556 kmod_module_dependency_symbols_free_list(*list);
2557 *list = NULL;
2558 goto list_error;
2559 }
2560
2561 n = kmod_list_append(*list, mv);
2562 if (n != NULL)
2563 *list = n;
2564 else {
2565 kmod_module_dependency_symbol_free(mv);
2566 kmod_module_dependency_symbols_free_list(*list);
2567 *list = NULL;
2568 ret = -ENOMEM;
2569 goto list_error;
2570 }
2571 }
2572 ret = count;
2573
2574list_error:
2575 free(symbols);
2576get_strings_error:
2577 kmod_elf_unref(elf);
2578elf_open_error:
2579 kmod_file_unref(file);
2580
2581 return ret;
2582}
2583
2584/**
2585 * kmod_module_dependency_symbol_get_symbol:
2586 * @entry: a list entry representing a kmod module dependency_symbols
2587 *
2588 * Get the dependency symbol of a kmod module
2589 *
2590 * Returns: the symbol of this kmod module dependency_symbols on success or NULL
2591 * on failure. The string is owned by the dependency_symbols, do not free it.
2592 */
2593KMOD_EXPORT const char *kmod_module_dependency_symbol_get_symbol(const struct kmod_list *entry)
2594{
2595 struct kmod_module_dependency_symbol *dependency_symbol;
2596
2597 if (entry == NULL)
2598 return NULL;
2599
2600 dependency_symbol = entry->data;
2601 return dependency_symbol->symbol;
2602}
2603
2604/**
2605 * kmod_module_dependency_symbol_get_crc:
2606 * @entry: a list entry representing a kmod module dependency_symbol
2607 *
2608 * Get the crc of a kmod module dependency_symbol.
2609 *
2610 * Returns: the crc of this kmod module dependency_symbol on success or NULL on
2611 * failure. The string is owned by the dependency_symbol, do not free it.
2612 */
2613KMOD_EXPORT uint64_t kmod_module_dependency_symbol_get_crc(const struct kmod_list *entry)
2614{
2615 struct kmod_module_dependency_symbol *dependency_symbol;
2616
2617 if (entry == NULL)
2618 return 0;
2619
2620 dependency_symbol = entry->data;
2621 return dependency_symbol->crc;
2622}
2623
2624/**
2625 * kmod_module_dependency_symbol_get_bind:
2626 * @entry: a list entry representing a kmod module dependency_symbol
2627 *
2628 * Get the bind type of a kmod module dependency_symbol.
2629 *
2630 * Returns: the bind of this kmod module dependency_symbol on success
2631 * or < 0 on failure.
2632 */
2633KMOD_EXPORT int kmod_module_dependency_symbol_get_bind(const struct kmod_list *entry)
2634{
2635 struct kmod_module_dependency_symbol *dependency_symbol;
2636
2637 if (entry == NULL)
2638 return 0;
2639
2640 dependency_symbol = entry->data;
2641 return dependency_symbol->bind;
2642}
2643
2644/**
2645 * kmod_module_dependency_symbols_free_list:
2646 * @list: kmod module dependency_symbols list
2647 *
2648 * Release the resources taken by @list
2649 */
2650KMOD_EXPORT void kmod_module_dependency_symbols_free_list(struct kmod_list *list)
2651{
2652 while (list) {
2653 kmod_module_dependency_symbol_free(list->data);
2654 list = kmod_list_remove(list);
2655 }
2656}