kmod/libkmod/libkmod-config.c

518 lines
12 KiB
C
Raw Normal View History

/*
* libkmod - interface to kernel module operations
*
* Copyright (C) 2011 ProFUSION embedded systems
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <stdarg.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <ctype.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
#include "libkmod.h"
#include "libkmod-private.h"
struct kmod_alias {
char *name;
char modname[];
};
2011-12-07 05:18:57 +00:00
struct kmod_options {
char *options;
char modname[];
};
struct kmod_command {
char *command;
char modname[];
};
2011-11-30 20:18:13 +00:00
const char *kmod_alias_get_name(const struct kmod_list *l) {
const struct kmod_alias *alias = l->data;
2011-11-30 20:18:13 +00:00
return alias->name;
}
const char *kmod_alias_get_modname(const struct kmod_list *l) {
const struct kmod_alias *alias = l->data;
2011-11-30 20:18:13 +00:00
return alias->modname;
}
const char *kmod_option_get_options(const struct kmod_list *l) {
const struct kmod_options *alias = l->data;
return alias->options;
}
const char *kmod_option_get_modname(const struct kmod_list *l) {
const struct kmod_options *alias = l->data;
return alias->modname;
}
const char *kmod_command_get_command(const struct kmod_list *l) {
const struct kmod_command *alias = l->data;
return alias->command;
}
const char *kmod_command_get_modname(const struct kmod_list *l) {
const struct kmod_command *alias = l->data;
return alias->modname;
}
static int kmod_config_add_command(struct kmod_config *config,
const char *modname,
const char *command,
const char *command_name,
struct kmod_list **list)
{
struct kmod_command *cmd;
struct kmod_list *l;
size_t modnamelen = strlen(modname) + 1;
size_t commandlen = strlen(command) + 1;
DBG(config->ctx, "modname'%s' cmd='%s %s'\n", modname, command_name,
command);
cmd = malloc(sizeof(*cmd) + modnamelen + commandlen);
if (cmd == NULL)
goto oom_error_init;
cmd->command = sizeof(*cmd) + modnamelen + (char *)cmd;
memcpy(cmd->modname, modname, modnamelen);
memcpy(cmd->command, command, commandlen);
l = kmod_list_append(*list, cmd);
if (l == NULL)
goto oom_error;
*list = l;
return 0;
oom_error:
free(cmd);
oom_error_init:
ERR(config->ctx, "out-of-memory\n");
return -ENOMEM;
}
static void kmod_config_free_command(struct kmod_config *config,
struct kmod_list *l,
struct kmod_list **list)
{
struct kmod_command *cmd = l->data;
free(cmd);
*list = kmod_list_remove(l);
}
2011-12-07 05:18:57 +00:00
static int kmod_config_add_options(struct kmod_config *config,
const char *modname, const char *options)
{
struct kmod_options *opt;
struct kmod_list *list;
size_t modnamelen = strlen(modname) + 1;
size_t optionslen = strlen(options) + 1;
DBG(config->ctx, "modname'%s' options='%s'\n", modname, options);
opt = malloc(sizeof(*opt) + modnamelen + optionslen);
if (opt == NULL)
goto oom_error_init;
opt->options = sizeof(*opt) + modnamelen + (char *)opt;
memcpy(opt->modname, modname, modnamelen);
memcpy(opt->options, options, optionslen);
strchr_replace(opt->options, '\t', ' ');
list = kmod_list_append(config->options, opt);
if (list == NULL)
goto oom_error;
config->options = list;
return 0;
oom_error:
free(opt);
oom_error_init:
ERR(config->ctx, "out-of-memory\n");
return -ENOMEM;
}
static void kmod_config_free_options(struct kmod_config *config,
struct kmod_list *l)
2011-12-07 05:18:57 +00:00
{
struct kmod_options *opt = l->data;
free(opt);
config->options = kmod_list_remove(l);
}
static int kmod_config_add_alias(struct kmod_config *config,
const char *name, const char *modname)
{
struct kmod_alias *alias;
struct kmod_list *list;
size_t namelen = strlen(name) + 1, modnamelen = strlen(modname) + 1;
DBG(config->ctx, "name=%s modname=%s\n", name, modname);
alias = malloc(sizeof(*alias) + namelen + modnamelen);
if (!alias)
goto oom_error_init;
alias->name = sizeof(*alias) + modnamelen + (char *)alias;
memcpy(alias->modname, modname, modnamelen);
memcpy(alias->name, name, namelen);
list = kmod_list_append(config->aliases, alias);
if (!list)
goto oom_error;
config->aliases = list;
return 0;
oom_error:
free(alias);
oom_error_init:
ERR(config->ctx, "out-of-memory name=%s modname=%s\n", name, modname);
return -ENOMEM;
}
static void kmod_config_free_alias(struct kmod_config *config,
struct kmod_list *l)
{
struct kmod_alias *alias = l->data;
free(alias);
config->aliases = kmod_list_remove(l);
}
static int kmod_config_add_blacklist(struct kmod_config *config,
const char *modname)
2011-11-29 20:48:02 +00:00
{
char *p;
struct kmod_list *list;
2011-11-29 20:48:02 +00:00
DBG(config->ctx, "modname=%s\n", modname);
2011-11-29 20:48:02 +00:00
p = strdup(modname);
if (!p)
goto oom_error_init;
list = kmod_list_append(config->blacklists, p);
if (!list)
goto oom_error;
config->blacklists = list;
return 0;
2011-11-29 20:48:02 +00:00
oom_error:
free(p);
oom_error_init:
ERR(config->ctx, "out-of-memory modname=%s\n", modname);
return -ENOMEM;
2011-11-29 20:48:02 +00:00
}
static void kmod_config_free_blacklist(struct kmod_config *config,
2011-11-29 20:48:02 +00:00
struct kmod_list *l)
{
free(l->data);
config->blacklists = kmod_list_remove(l);
2011-11-29 20:48:02 +00:00
}
/*
* Take an fd and own it. It will be closed on return. filename is used only
* for debug messages
*/
static int kmod_config_parse(struct kmod_config *config, int fd,
const char *filename)
{
struct kmod_ctx *ctx = config->ctx;
char *line;
FILE *fp;
unsigned int linenum;
int err;
fp = fdopen(fd, "r");
if (fp == NULL) {
err = -errno;
ERR(config->ctx, "fd %d: %m", fd);
close(fd);
return err;
}
while ((line = getline_wrapped(fp, &linenum)) != NULL) {
char *cmd, *saveptr;
if (line[0] == '\0' || line[0] == '#')
goto done_next;
cmd = strtok_r(line, "\t ", &saveptr);
if (cmd == NULL)
goto done_next;
2011-12-07 04:26:31 +00:00
if (streq(cmd, "alias")) {
char *alias = strtok_r(NULL, "\t ", &saveptr);
char *modname = strtok_r(NULL, "\t ", &saveptr);
if (alias == NULL || modname == NULL)
goto syntax_error;
kmod_config_add_alias(config,
underscores(ctx, alias),
underscores(ctx, modname));
2011-12-07 04:26:31 +00:00
} else if (streq(cmd, "blacklist")) {
char *modname = strtok_r(NULL, "\t ", &saveptr);
2011-11-29 20:48:02 +00:00
if (modname == NULL)
goto syntax_error;
kmod_config_add_blacklist(config,
2011-12-03 06:05:22 +00:00
underscores(ctx, modname));
2011-12-07 05:18:57 +00:00
} else if (streq(cmd, "options")) {
char *modname = strtok_r(NULL, "\t ", &saveptr);
if (modname == NULL)
goto syntax_error;
kmod_config_add_options(config,
underscores(ctx, modname),
strtok_r(NULL, "\0", &saveptr));
} else if streq(cmd, "install") {
char *modname = strtok_r(NULL, "\t ", &saveptr);
if (modname == NULL)
goto syntax_error;
kmod_config_add_command(config,
underscores(ctx, modname),
strtok_r(NULL, "\0", &saveptr),
cmd, &config->install_commands);
} else if streq(cmd, "remove") {
char *modname = strtok_r(NULL, "\t ", &saveptr);
if (modname == NULL)
goto syntax_error;
kmod_config_add_command(config,
underscores(ctx, modname),
strtok_r(NULL, "\0", &saveptr),
cmd, &config->remove_commands);
2011-12-07 05:18:57 +00:00
} else if (streq(cmd, "include")
2011-12-07 04:26:31 +00:00
|| streq(cmd, "softdep")
|| streq(cmd, "config")) {
2011-11-29 20:48:02 +00:00
INFO(ctx, "%s: command %s not implemented yet\n",
filename, cmd);
} else {
syntax_error:
ERR(ctx, "%s line %u: ignoring bad line starting with '%s'\n",
filename, linenum, cmd);
}
done_next:
free(line);
}
fclose(fp);
return 0;
}
void kmod_config_free(struct kmod_config *config)
{
while (config->aliases)
kmod_config_free_alias(config, config->aliases);
2011-11-29 20:48:02 +00:00
while (config->blacklists)
kmod_config_free_blacklist(config, config->blacklists);
2011-12-07 05:18:57 +00:00
while (config->options)
kmod_config_free_options(config, config->options);
while (config->install_commands) {
kmod_config_free_command(config, config->install_commands,
&config->install_commands);
}
while (config->remove_commands) {
kmod_config_free_command(config, config->remove_commands,
&config->remove_commands);
}
free(config);
}
static bool conf_files_filter_out(struct kmod_ctx *ctx, DIR *d,
const char *path, const char *fn)
{
size_t len = strlen(fn);
struct stat st;
if (fn[0] == '.')
2011-12-12 17:27:57 +00:00
return true;
2011-12-07 04:26:31 +00:00
if (len < 6 || (!streq(&fn[len - 5], ".conf")
&& !streq(&fn[len - 6], ".alias"))) {
INFO(ctx, "All config files need .conf: %s/%s, "
"it will be ignored in a future release\n",
path, fn);
2011-12-12 17:27:57 +00:00
return true;
}
fstatat(dirfd(d), fn, &st, 0);
if (S_ISDIR(st.st_mode)) {
ERR(ctx, "Directories inside directories are not supported: "
"%s/%s\n", path, fn);
2011-12-12 17:27:57 +00:00
return true;
}
2011-12-12 17:27:57 +00:00
return false;
}
2011-12-12 17:00:51 +00:00
/*
* Iterate over a directory (given by @path) and save the list of
* configuration files in @list.
*/
static DIR *conf_files_list(struct kmod_ctx *ctx, struct kmod_list **list,
const char *path)
{
DIR *d;
int err;
*list = NULL;
d = opendir(path);
if (d == NULL) {
ERR(ctx, "%m\n");
return NULL;
}
for (;;) {
struct dirent ent, *entp;
struct kmod_list *l, *tmp;
const char *dname;
err = readdir_r(d, &ent, &entp);
if (err != 0) {
ERR(ctx, "reading entry %s\n", strerror(-err));
goto fail_read;
}
if (entp == NULL)
break;
2011-12-12 17:27:57 +00:00
if (conf_files_filter_out(ctx, d, path, entp->d_name))
continue;
/* insert sorted */
kmod_list_foreach(l, *list) {
if (strcmp(entp->d_name, l->data) < 0)
break;
}
dname = strdup(entp->d_name);
if (dname == NULL)
goto fail_oom;
if (l == NULL)
tmp = kmod_list_append(*list, dname);
else if (l == *list)
tmp = kmod_list_prepend(*list, dname);
else
tmp = kmod_list_insert_before(l, dname);
if (tmp == NULL)
goto fail_oom;
if (l == NULL || l == *list)
*list = tmp;
}
return d;
fail_oom:
ERR(ctx, "out of memory while scanning '%s'\n", path);
fail_read:
for (; *list != NULL; *list = kmod_list_remove(*list))
free((*list)->data);
closedir(d);
return NULL;
}
int kmod_config_new(struct kmod_ctx *ctx, struct kmod_config **p_config,
const char * const *config_paths)
{
struct kmod_config *config;
size_t i;
*p_config = config = calloc(1, sizeof(struct kmod_config));
2011-12-03 06:05:22 +00:00
if (config == NULL)
return -ENOMEM;
2011-12-03 06:05:22 +00:00
config->ctx = ctx;
for (i = 0; config_paths[i] != NULL; i++) {
const char *path = config_paths[i];
2011-12-12 17:00:51 +00:00
struct kmod_list *list;
struct stat st;
DIR *d;
if (stat(path, &st) != 0) {
DBG(ctx, "could not load '%s': %s\n",
path, strerror(errno));
continue;
}
if (S_ISREG(st.st_mode)) {
int fd = open(path, O_RDONLY);
DBG(ctx, "parsing file '%s': %d\n", path, fd);
if (fd >= 0)
kmod_config_parse(config, fd, path);
continue;
} else if (!S_ISDIR(st.st_mode)) {
ERR(ctx, "unsupported file mode %s: %#x\n",
path, st.st_mode);
continue;
}
d = conf_files_list(ctx, &list, path);
for (; list != NULL; list = kmod_list_remove(list)) {
int fd = openat(dirfd(d), list->data, O_RDONLY);
DBG(ctx, "parsing file '%s/%s': %d\n", path,
(const char *) list->data, fd);
if (fd >= 0)
kmod_config_parse(config, fd, list->data);
free(list->data);
}
closedir(d);
}
return 0;
}