modules-load.c revision 5430f7f2bc7330f3088b894166bf3524a067e3d8
/*-*- 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"
{
}
int r = EXIT_FAILURE;
if (argc > 1) {
log_error("This program takes no argument.");
return EXIT_FAILURE;
}
log_open();
umask(0022);
if (!ctx) {
log_error("Failed to allocate memory for kmod.");
goto finish;
}
"/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) < 0) {
goto finish;
}
r = EXIT_SUCCESS;
FILE *f;
if (!f) {
continue;
r = EXIT_FAILURE;
continue;
}
for (;;) {
int err;
break;
if (*l == '#' || *l == 0)
continue;
if (err < 0) {
log_error("Failed to lookup alias '%s'", l);
r = EXIT_FAILURE;
continue;
}
struct kmod_module *mod;
if (err == 0)
else if (err == KMOD_PROBE_APPLY_BLACKLIST)
else {
r = EXIT_FAILURE;
}
}
}
if (ferror(f)) {
log_error("Failed to read from file: %m");
r = EXIT_FAILURE;
}
fclose(f);
}
return r;
}