From 2dad62205f3412198769f227ac4a1130f7887eec Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 13 Apr 2012 19:45:53 +0200 Subject: [PATCH] dbus: expose whether we have a hardware watchdog on the bus --- src/core/dbus-manager.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index 46b47849d..88945b5c6 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@ -242,7 +242,8 @@ " \n" \ " \n" \ " \n" \ - " \n" + " \n" \ + " \n" #ifdef HAVE_SYSV_COMPAT #define BUS_MANAGER_INTERFACE_PROPERTIES_SYSV \ @@ -493,6 +494,20 @@ static int bus_manager_send_unit_files_changed(Manager *m) { return r; } +static int bus_manager_append_have_watchdog(DBusMessageIter *i, const char *property, void *data) { + dbus_bool_t b; + + assert(i); + assert(property); + + b = access("/dev/watchdog", F_OK) >= 0; + + if (!dbus_message_iter_append_basic(i, DBUS_TYPE_BOOLEAN, &b)) + return -ENOMEM; + + return 0; +} + static const char systemd_property_string[] = PACKAGE_STRING "\0" DISTRIBUTION "\0" @@ -534,6 +549,7 @@ static const BusProperty bus_manager_properties[] = { { "DefaultStandardError", bus_manager_append_exec_output, "s", offsetof(Manager, default_std_error) }, { "RuntimeWatchdogUSec", bus_property_append_usec, "t", offsetof(Manager, runtime_watchdog), }, { "ShutdownWatchdogUSec", bus_property_append_usec, "t", offsetof(Manager, shutdown_watchdog), }, + { "HaveWatchdog", bus_manager_append_have_watchdog, "b", 0 }, #ifdef HAVE_SYSV_COMPAT { "SysVConsole", bus_property_append_bool, "b", offsetof(Manager, sysv_console) }, { "SysVInitPath", bus_property_append_strv, "as", offsetof(Manager, lookup_paths.sysvinit_path), true }, -- 2.30.2