modules-load.c revision c007bb1b4d1366130f69dfbde53124211307a31a
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
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.
systemd 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 systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <limits.h>
#include <dirent.h>
#include <libkmod.h>
#include "log.h"
#include "util.h"
#include "strv.h"
#include "conf-files.h"
#include "virt.h"
static char **arg_proc_cmdline_modules = NULL;
{
}
static int add_modules(const char *p) {
char **t, **k;
k = strv_split(p, ",");
if (!k)
return log_oom();
t = strv_merge(arg_proc_cmdline_modules, k);
strv_free(k);
if (!t)
return log_oom();
return 0;
}
static int parse_proc_cmdline(void) {
char *w, *state;
int r;
size_t l;
if (detect_container(NULL) > 0)
return 0;
if (r < 0) {
return 0;
}
char _cleanup_free_ *word;
if (!word)
return log_oom();
if (r < 0)
return r;
if (in_initrd()) {
if (r < 0)
return r;
}
}
}
return 0;
}
const int probe_flags = KMOD_PROBE_APPLY_BLACKLIST;
int r = 0;
log_debug("load: %s\n", m);
if (r < 0) {
return r;
}
if (!modlist) {
log_error("Failed to find module '%s'", m);
return -ENOENT;
}
struct kmod_module *mod;
switch (state) {
case KMOD_MODULE_BUILTIN:
break;
case KMOD_MODULE_LIVE:
break;
default:
if (err == 0)
else if (err == KMOD_PROBE_APPLY_BLACKLIST)
else {
r = err;
}
}
}
return r;
}
int r = EXIT_FAILURE, k;
if (argc > 1) {
log_error("This program takes no argument.");
return EXIT_FAILURE;
}
log_open();
umask(0022);
if (parse_proc_cmdline() < 0)
return EXIT_FAILURE;
if (!ctx) {
log_error("Failed to allocate memory for kmod.");
goto finish;
}
r = EXIT_SUCCESS;
k = load_module(ctx, *i);
if (k < 0)
r = EXIT_FAILURE;
}
"/etc/modules-load.d",
"/run/modules-load.d",
"/usr/local/lib/modules-load.d",
"/usr/lib/modules-load.d",
#ifdef HAVE_SPLIT_USR
"/lib/modules-load.d",
#endif
NULL);
if (k < 0) {
r = EXIT_FAILURE;
goto finish;
}
FILE *f;
if (!f) {
continue;
r = EXIT_FAILURE;
continue;
}
for (;;) {
break;
if (*l == '#' || *l == 0)
continue;
k = load_module(ctx, l);
if (k < 0)
r = EXIT_FAILURE;
}
if (ferror(f)) {
log_error("Failed to read from file: %m");
r = EXIT_FAILURE;
}
fclose(f);
}
return r;
}