Systemd/src/udev/udev-builtin-kmod.c

77 lines
2 KiB
C
Raw Normal View History

2020-11-09 05:25:50 +01:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
2011-12-21 22:30:48 +01:00
/*
2011-12-21 23:10:56 +01:00
* load kernel modules
2011-12-21 22:30:48 +01:00
*
* Copyright © 2011 ProFUSION embedded systems
2011-12-21 22:30:48 +01:00
*/
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
2011-12-21 22:30:48 +01:00
#include "module-util.h"
#include "string-util.h"
#include "udev-builtin.h"
2011-12-21 22:30:48 +01:00
static struct kmod_ctx *ctx = NULL;
2011-12-23 18:19:18 +01:00
_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) {
log_internalv(priority, 0, file, line, fn, format, args);
}
static int builtin_kmod(sd_device *dev, int argc, char *argv[], bool test) {
int i;
2012-10-26 00:28:23 +02:00
if (!ctx)
return 0;
if (argc < 3 || !streq(argv[1], "load"))
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
"%s: expected: load <module>", argv[0]);
for (i = 2; argv[i]; i++)
(void) module_load_and_warn(ctx, argv[i], false);
2018-10-23 11:26:06 +02:00
return 0;
2011-12-21 22:30:48 +01:00
}
/* called at udev startup and reload */
2018-08-22 12:57:32 +02:00
static int builtin_kmod_init(void) {
if (ctx)
return 0;
ctx = kmod_new(NULL, NULL);
if (!ctx)
return -ENOMEM;
2011-12-23 18:19:18 +01:00
log_debug("Load module index");
2018-08-22 12:57:32 +02:00
kmod_set_log_fn(ctx, udev_kmod_log, NULL);
kmod_load_resources(ctx);
return 0;
2011-12-21 23:10:56 +01:00
}
/* called on udev shutdown and reload request */
2018-08-22 12:57:32 +02:00
static void builtin_kmod_exit(void) {
log_debug("Unload module index");
ctx = kmod_unref(ctx);
}
/* called every couple of seconds during event activity; 'true' if config has changed */
2018-08-22 12:57:32 +02:00
static bool builtin_kmod_validate(void) {
log_debug("Validate module index");
if (!ctx)
return false;
return (kmod_validate_resources(ctx) != KMOD_RESOURCES_OK);
2011-12-21 23:10:56 +01:00
}
const UdevBuiltin udev_builtin_kmod = {
.name = "kmod",
.cmd = builtin_kmod,
.init = builtin_kmod_init,
.exit = builtin_kmod_exit,
.validate = builtin_kmod_validate,
.help = "Kernel module loader",
.run_once = false,
2011-12-21 22:30:48 +01:00
};