modules-load.c revision b2423f1f436f847d9fc96a63679be2b5552b6baf
/*-*- 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 General Public License as published by
the Free Software Foundation; either version 2 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
General Public License for more details.
You should have received a copy of the GNU 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 "log.h"
#include "util.h"
#include "strv.h"
* loads them into the kernel. This follows roughly Debian's way to
* handle modules, but uses a directory of fragments instead of a
static int scandir_filter(const struct dirent *d) {
assert(d);
if (ignore_file(d->d_name))
return 0;
return 0;
}
int r = 1, n, i;
unsigned n_arguments = 0, n_allocated = 0;
if (argc > 1) {
log_error("This program takes no argument.");
return 1;
}
log_open();
log_error("Failed to allocate string array");
goto finish;
}
r = 0;
else
goto finish;
}
r = 0;
for (i = 0; i < n; i++) {
int k;
char *fn;
FILE *f;
if (k < 0) {
log_error("Failed to allocate file name.");
r = 1;
continue;
}
if (!f) {
r = 1;
continue;
}
for (;;) {
break;
if (*l == '#' || *l == 0)
continue;
if (!(t = strdup(l))) {
log_error("Failed to allocate module name.");
continue;
}
if (n_arguments >= n_allocated) {
char **a;
unsigned m;
log_error("Failed to increase module array size.");
free(t);
r = 1;
continue;
}
arguments = a;
n_allocated = m;
}
arguments[n_arguments++] = t;
}
if (ferror(f)) {
r = 1;
log_error("Failed to read from file: %m");
}
fclose(f);
}
if (n_arguments > 3) {
r = 1;
}
return r;
}