modules-load.c revision 03658d4fd66d5d0ccce643cef92185ec38b0e575
/*-*- 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) {
log_error("Out of memory");
return -ENOMEM;
}
t = strv_merge(arg_proc_cmdline_modules, k);
strv_free(k);
if (!t) {
log_error("Out of memory");
return -ENOMEM;
}
return 0;
}
static int parse_proc_cmdline(void) {
int r;
size_t l;
if (detect_container(NULL) > 0)
return 0;
if (r < 0) {
return 0;
}
char *word;
if (!word) {
r = -ENOMEM;
goto finish;
}
if (r < 0)
goto finish;
if (in_initrd()) {
if (r < 0)
goto finish;
}
}
}
r = 0;
return r;
}
int r = 0;
log_debug("load: %s\n", m);
if (r < 0) {
return r;
}
struct kmod_module *mod;
int err;
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;
}