1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
34 int main(int argc, char *argv[]) {
36 char **arguments = NULL;
37 unsigned n_arguments = 0, n_allocated = 0;
41 log_error("This program takes no argument.");
45 log_set_target(LOG_TARGET_SYSLOG_OR_KMSG);
46 log_parse_environment();
51 if (!(arguments = strv_new("/sbin/modprobe", "-sab", "--", NULL))) {
52 log_error("Failed to allocate string array");
56 n_arguments = n_allocated = 3;
58 if (conf_files_list(&files, ".conf",
59 "/run/modules-load.d",
60 "/etc/modules-load.d",
61 "/usr/local/lib/modules-load.d",
62 "/usr/lib/modules-load.d",
63 "/lib/modules-load.d",
65 log_error("Failed to enumerate modules-load.d files: %s", strerror(-r));
71 STRV_FOREACH(fn, files) {
79 log_error("Failed to open %s: %m", *fn);
84 log_debug("apply: %s\n", *fn);
86 char line[LINE_MAX], *l, *t;
88 if (!(fgets(line, sizeof(line), f)))
92 if (*l == '#' || *l == 0)
95 if (!(t = strdup(l))) {
96 log_error("Failed to allocate module name.");
100 if (n_arguments >= n_allocated) {
104 m = MAX(16U, n_arguments*2);
106 if (!(a = realloc(arguments, sizeof(char*) * (m+1)))) {
107 log_error("Failed to increase module array size.");
117 arguments[n_arguments++] = t;
122 log_error("Failed to read from file: %m");
131 if (n_arguments > 3) {
132 arguments[n_arguments] = NULL;
133 strv_uniq(arguments);
134 execv("/sbin/modprobe", arguments);
136 log_error("Failed to execute /sbin/modprobe: %m");
140 strv_free(arguments);