]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/modules-load.c
build-sys: prepare release 26
[thirdparty/systemd.git] / src / modules-load.c
CommitLineData
b2423f1f
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
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.
12
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.
17
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/>.
20***/
21
22#include <unistd.h>
23#include <fcntl.h>
24#include <errno.h>
25#include <string.h>
26#include <sys/stat.h>
27#include <limits.h>
28#include <dirent.h>
29
30#include "log.h"
31#include "util.h"
32#include "strv.h"
33
b2423f1f 34int main(int argc, char *argv[]) {
db1413d7 35 int r = EXIT_FAILURE;
b2423f1f
LP
36 char **arguments = NULL;
37 unsigned n_arguments = 0, n_allocated = 0;
db1413d7 38 char **files, **fn;
b2423f1f
LP
39
40 if (argc > 1) {
41 log_error("This program takes no argument.");
22f4096c 42 return EXIT_FAILURE;
b2423f1f
LP
43 }
44
45 log_set_target(LOG_TARGET_SYSLOG_OR_KMSG);
46 log_parse_environment();
47 log_open();
48
49 if (!(arguments = strv_new("/sbin/modprobe", "-sab", "--", NULL))) {
50 log_error("Failed to allocate string array");
51 goto finish;
52 }
53
54 n_arguments = n_allocated = 3;
55
44143309
KS
56 if (conf_files_list(&files, ".conf",
57 "/run/modules-load.d",
58 "/etc/modules-load.d",
59 "/usr/lib/modules-load.d",
60 NULL) < 0) {
61 log_error("Failed to enumerate modules-load.d files: %s", strerror(-r));
b2423f1f
LP
62 goto finish;
63 }
64
22f4096c 65 r = EXIT_SUCCESS;
b2423f1f 66
db1413d7 67 STRV_FOREACH(fn, files) {
b2423f1f
LP
68 FILE *f;
69
db1413d7 70 f = fopen(*fn, "re");
b2423f1f 71 if (!f) {
db1413d7 72 if (errno == ENOENT)
70ca520f
LP
73 continue;
74
db1413d7 75 log_error("Failed to open %s: %m", *fn);
da19d5c1 76 free(fn);
22f4096c 77 r = EXIT_FAILURE;
b2423f1f
LP
78 continue;
79 }
80
db1413d7 81 log_debug("apply: %s\n", *fn);
b2423f1f
LP
82 for (;;) {
83 char line[LINE_MAX], *l, *t;
84
85 if (!(fgets(line, sizeof(line), f)))
86 break;
87
88 l = strstrip(line);
89 if (*l == '#' || *l == 0)
90 continue;
91
92 if (!(t = strdup(l))) {
93 log_error("Failed to allocate module name.");
94 continue;
95 }
96
97 if (n_arguments >= n_allocated) {
98 char **a;
99 unsigned m;
100
101 m = MAX(16U, n_arguments*2);
102
103 if (!(a = realloc(arguments, sizeof(char*) * (m+1)))) {
104 log_error("Failed to increase module array size.");
105 free(t);
22f4096c 106 r = EXIT_FAILURE;
b2423f1f
LP
107 continue;
108 }
109
110 arguments = a;
111 n_allocated = m;
112 }
113
114 arguments[n_arguments++] = t;
115 }
116
117 if (ferror(f)) {
22f4096c 118 r = EXIT_FAILURE;
b2423f1f
LP
119 log_error("Failed to read from file: %m");
120 }
121
122 fclose(f);
123 }
124
db1413d7 125 strv_free(files);
b2423f1f
LP
126finish:
127
128 if (n_arguments > 3) {
129 arguments[n_arguments] = NULL;
130 execv("/sbin/modprobe", arguments);
131
132 log_error("Failed to execute /sbin/modprobe: %m");
22f4096c 133 r = EXIT_FAILURE;
b2423f1f
LP
134 }
135
136 strv_free(arguments);
137
138 return r;
139}