]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/udev/udev-builtin-kmod.c
util-lib: split out IO related calls to io-util.[ch]
[thirdparty/systemd.git] / src / udev / udev-builtin-kmod.c
1 /*
2 * load kernel modules
3 *
4 * Copyright (C) 2011-2012 Kay Sievers <kay@vrfy.org>
5 * Copyright (C) 2011 ProFUSION embedded systems
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include <errno.h>
22 #include <libkmod.h>
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #include "string-util.h"
28 #include "udev.h"
29
30 static struct kmod_ctx *ctx = NULL;
31
32 static int load_module(struct udev *udev, const char *alias) {
33 struct kmod_list *list = NULL;
34 struct kmod_list *l;
35 int err;
36
37 err = kmod_module_new_from_lookup(ctx, alias, &list);
38 if (err < 0)
39 return err;
40
41 if (list == NULL)
42 log_debug("No module matches '%s'", alias);
43
44 kmod_list_foreach(l, list) {
45 struct kmod_module *mod = kmod_module_get_module(l);
46
47 err = kmod_module_probe_insert_module(mod, KMOD_PROBE_APPLY_BLACKLIST, NULL, NULL, NULL, NULL);
48 if (err == KMOD_PROBE_APPLY_BLACKLIST)
49 log_debug("Module '%s' is blacklisted", kmod_module_get_name(mod));
50 else if (err == 0)
51 log_debug("Inserted '%s'", kmod_module_get_name(mod));
52 else
53 log_debug("Failed to insert '%s'", kmod_module_get_name(mod));
54
55 kmod_module_unref(mod);
56 }
57
58 kmod_module_unref_list(list);
59 return err;
60 }
61
62 _printf_(6,0) static void udev_kmod_log(void *data, int priority, const char *file, int line, const char *fn, const char *format, va_list args) {
63 log_internalv(priority, 0, file, line, fn, format, args);
64 }
65
66 static int builtin_kmod(struct udev_device *dev, int argc, char *argv[], bool test) {
67 struct udev *udev = udev_device_get_udev(dev);
68 int i;
69
70 if (!ctx)
71 return 0;
72
73 if (argc < 3 || !streq(argv[1], "load")) {
74 log_error("expect: %s load <module>", argv[0]);
75 return EXIT_FAILURE;
76 }
77
78 for (i = 2; argv[i]; i++) {
79 log_debug("Execute '%s' '%s'", argv[1], argv[i]);
80 load_module(udev, argv[i]);
81 }
82
83 return EXIT_SUCCESS;
84 }
85
86 /* called at udev startup and reload */
87 static int builtin_kmod_init(struct udev *udev) {
88 if (ctx)
89 return 0;
90
91 ctx = kmod_new(NULL, NULL);
92 if (!ctx)
93 return -ENOMEM;
94
95 log_debug("Load module index");
96 kmod_set_log_fn(ctx, udev_kmod_log, udev);
97 kmod_load_resources(ctx);
98 return 0;
99 }
100
101 /* called on udev shutdown and reload request */
102 static void builtin_kmod_exit(struct udev *udev) {
103 log_debug("Unload module index");
104 ctx = kmod_unref(ctx);
105 }
106
107 /* called every couple of seconds during event activity; 'true' if config has changed */
108 static bool builtin_kmod_validate(struct udev *udev) {
109 log_debug("Validate module index");
110 if (!ctx)
111 return false;
112 return (kmod_validate_resources(ctx) != KMOD_RESOURCES_OK);
113 }
114
115 const struct udev_builtin udev_builtin_kmod = {
116 .name = "kmod",
117 .cmd = builtin_kmod,
118 .init = builtin_kmod_init,
119 .exit = builtin_kmod_exit,
120 .validate = builtin_kmod_validate,
121 .help = "Kernel module loader",
122 .run_once = false,
123 };