mirror of
https://git.yoctoproject.org/psplash
synced 2025-10-14 02:07:26 +08:00
add systemd support
This adds optional systemd support. When enabled, an utility called psplash-systemd is built. This tool will connect to systemd using the system bus to obtain progress information and communicate that to psplash. Once full boot progress is reported by systemd psplash psplash is closed using the quit command. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:

committed by
Richard Purdie

parent
e94bd11f68
commit
904f4aa590
@@ -9,6 +9,13 @@ psplash_SOURCES = psplash.c psplash.h psplash-fb.c psplash-fb.h \
|
||||
|
||||
psplash_write_SOURCES = psplash-write.c psplash.h
|
||||
|
||||
if HAVE_SYSTEMD
|
||||
bin_PROGRAMS += psplash-systemd
|
||||
psplash_systemd_CPPFLAGS = $(SYSTEMD_CFLAGS)
|
||||
psplash_systemd_LDFLAGS= $(SYSTEMD_LIBS)
|
||||
psplash_systemd_SOURCES = psplash-systemd.c psplash.h
|
||||
endif
|
||||
|
||||
EXTRA_DIST = make-image-header.sh
|
||||
|
||||
MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub configure depcomp install-sh ltmain.sh Makefile.in missing
|
||||
|
@@ -12,6 +12,15 @@ if test "x$GCC" = "xyes"; then
|
||||
GCC_FLAGS="-g -Wall -Wextra"
|
||||
fi
|
||||
|
||||
AC_ARG_WITH([systemd], AS_HELP_STRING([--with-systemd], [Build with systemd
|
||||
support]))
|
||||
|
||||
AS_IF([test "x$with_systemd" = "xyes"], [
|
||||
PKG_CHECK_MODULES(SYSTEMD, libsystemd >= 221)
|
||||
])
|
||||
|
||||
AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemd" = "xyes"])
|
||||
|
||||
AC_SUBST(GCC_FLAGS)
|
||||
|
||||
AC_OUTPUT([
|
||||
|
179
psplash-systemd.c
Normal file
179
psplash-systemd.c
Normal file
@@ -0,0 +1,179 @@
|
||||
/*
|
||||
* pslash-systemd - systemd integration for psplash
|
||||
*
|
||||
* Copyright (c) 2020 Toradex
|
||||
*
|
||||
* Author: Stefan Agner <stefan.agner@toradex.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include <systemd/sd-bus.h>
|
||||
#include <systemd/sd-event.h>
|
||||
#include "psplash.h"
|
||||
|
||||
#define PSPLASH_UPDATE_USEC 1000000
|
||||
|
||||
typedef uint64_t usec_t;
|
||||
|
||||
static int pipe_fd;
|
||||
|
||||
int get_progress(void)
|
||||
{
|
||||
sd_bus_error error = SD_BUS_ERROR_NULL;
|
||||
static double current_progress = 0;
|
||||
double progress = 0;
|
||||
sd_bus *bus = NULL;
|
||||
int r;
|
||||
char buffer[20];
|
||||
int len;
|
||||
|
||||
/* Connect to the system bus */
|
||||
r = sd_bus_new(&bus);
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
r = sd_bus_set_address(bus, "unix:path=/run/systemd/private");
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
r = sd_bus_start(bus);
|
||||
if (r < 0) {
|
||||
fprintf(stderr, "Failed to connect to systemd private bus: %s\n", strerror(-r));
|
||||
goto finish;
|
||||
}
|
||||
|
||||
/* Issue the method call and store the respons message in m */
|
||||
r = sd_bus_get_property_trivial(bus,
|
||||
"org.freedesktop.systemd1", /* service to contact */
|
||||
"/org/freedesktop/systemd1", /* object path */
|
||||
"org.freedesktop.systemd1.Manager", /* interface name */
|
||||
"Progress", /* method name */
|
||||
&error, /* object to return error in */
|
||||
'd', /* return message on success */
|
||||
&progress); /* value */
|
||||
if (r < 0) {
|
||||
fprintf(stderr, "Failed to get progress: %s\n", error.message);
|
||||
goto finish;
|
||||
}
|
||||
|
||||
/*
|
||||
* Systemd's progress seems go backwards at times. Prevent that
|
||||
* progress bar on psplash goes backward by just communicating the
|
||||
* highest observed progress so far.
|
||||
*/
|
||||
if (current_progress < progress)
|
||||
current_progress = progress;
|
||||
|
||||
len = snprintf(buffer, 20, "PROGRESS %d", (int)(current_progress * 100));
|
||||
write(pipe_fd, buffer, len + 1);
|
||||
|
||||
if (progress == 1.0) {
|
||||
printf("Systemd reported progress of 1.0, quit psplash.\n");
|
||||
write(pipe_fd, "QUIT", 5);
|
||||
r = -1;
|
||||
}
|
||||
|
||||
finish:
|
||||
sd_bus_error_free(&error);
|
||||
sd_bus_unref(bus);
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
int psplash_handler(sd_event_source *s,
|
||||
uint64_t usec,
|
||||
void *userdata)
|
||||
{
|
||||
sd_event *event = userdata;
|
||||
int r;
|
||||
|
||||
r = get_progress();
|
||||
if (r < 0)
|
||||
goto err;
|
||||
|
||||
r = sd_event_source_set_time(s, usec + PSPLASH_UPDATE_USEC);
|
||||
if (r < 0)
|
||||
goto err;
|
||||
|
||||
return 0;
|
||||
err:
|
||||
sd_event_exit(event, EXIT_FAILURE);
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
sd_event *event;
|
||||
sd_event_source *event_source = NULL;
|
||||
int r;
|
||||
sigset_t ss;
|
||||
usec_t time_now;
|
||||
char *rundir;
|
||||
|
||||
/* Open pipe for psplash */
|
||||
rundir = getenv("PSPLASH_FIFO_DIR");
|
||||
|
||||
if (!rundir)
|
||||
rundir = "/run";
|
||||
|
||||
chdir(rundir);
|
||||
|
||||
if ((pipe_fd = open (PSPLASH_FIFO,O_WRONLY|O_NONBLOCK)) == -1) {
|
||||
fprintf(stderr, "Error unable to open fifo");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
r = sd_event_default(&event);
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
if (sigemptyset(&ss) < 0 ||
|
||||
sigaddset(&ss, SIGTERM) < 0 ||
|
||||
sigaddset(&ss, SIGINT) < 0) {
|
||||
r = -errno;
|
||||
goto finish;
|
||||
}
|
||||
|
||||
/* Block SIGTERM first, so that the event loop can handle it */
|
||||
if (sigprocmask(SIG_BLOCK, &ss, NULL) < 0) {
|
||||
r = -errno;
|
||||
goto finish;
|
||||
}
|
||||
|
||||
/* Let's make use of the default handler and "floating" reference
|
||||
* features of sd_event_add_signal() */
|
||||
r = sd_event_add_signal(event, NULL, SIGTERM, NULL, NULL);
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
r = sd_event_add_signal(event, NULL, SIGINT, NULL, NULL);
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
r = sd_event_now(event, CLOCK_MONOTONIC, &time_now);
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
r = sd_event_add_time(event, &event_source, CLOCK_MONOTONIC,
|
||||
time_now, 0, psplash_handler, event);
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
r = sd_event_source_set_enabled(event_source, SD_EVENT_ON);
|
||||
if (r < 0)
|
||||
goto finish;
|
||||
|
||||
r = sd_event_loop(event);
|
||||
finish:
|
||||
event = sd_event_unref(event);
|
||||
close(pipe_fd);
|
||||
|
||||
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user