From a62a56ec87ab81d2264900716972ec22bfb7b9d9 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 12 Jan 2009 15:02:43 -0500 Subject: Add placeholders for new configuration reload methods. The monitor will be able to call the reloadConfig DBUS method on any or all of its children to force them to reread their configuration from the confdb. --- server/nss/nsssrv.c | 12 ++++++++++++ server/providers/data_provider.c | 12 ++++++++++++ server/sbus_interfaces.h | 1 + 3 files changed, 25 insertions(+) diff --git a/server/nss/nsssrv.c b/server/nss/nsssrv.c index 4180a460..0c7bf060 100644 --- a/server/nss/nsssrv.c +++ b/server/nss/nsssrv.c @@ -45,12 +45,14 @@ static int service_identity(DBusMessage *message, void *data, DBusMessage **r); static int service_pong(DBusMessage *message, void *data, DBusMessage **r); +static int service_reload(DBusMessage *message, void *data, DBusMessage **r); static int nss_init_domains(struct nss_ctx *nctx); static int _domain_comparator(void *key1, void *key2); struct sbus_method nss_sbus_methods[] = { {SERVICE_METHOD_IDENTITY, service_identity}, {SERVICE_METHOD_PING, service_pong}, + {SERVICE_METHOD_RELOAD, service_reload}, {NULL, NULL} }; @@ -262,6 +264,16 @@ static int service_pong(DBusMessage *message, void *data, DBusMessage **r) return EOK; } +static int service_reload(DBusMessage *message, void *data, DBusMessage **r) { + /* Monitor calls this function when we need to reload + * our configuration information. Perform whatever steps + * are needed to update the configuration objects. + */ + + /* Send an empty reply to acknowledge receipt */ + return service_pong(message, data, r); +} + static int nss_sbus_init(struct nss_ctx *nctx) { struct service_sbus_ctx *ss_ctx; diff --git a/server/providers/data_provider.c b/server/providers/data_provider.c index e0de4dbb..393e03e7 100644 --- a/server/providers/data_provider.c +++ b/server/providers/data_provider.c @@ -77,10 +77,12 @@ static int dp_frontend_destructor(void *ctx); static int service_identity(DBusMessage *message, void *data, DBusMessage **r); static int service_pong(DBusMessage *message, void *data, DBusMessage **r); +static int service_reload(DBusMessage *message, void *data, DBusMessage **r); struct sbus_method mon_sbus_methods[] = { { SERVICE_METHOD_IDENTITY, service_identity }, { SERVICE_METHOD_PING, service_pong }, + { SERVICE_METHOD_RELOAD, service_reload }, { NULL, NULL } }; @@ -142,6 +144,16 @@ static int service_pong(DBusMessage *message, void *data, DBusMessage **r) return EOK; } +static int service_reload(DBusMessage *message, void *data, DBusMessage **r) { + /* Monitor calls this function when we need to reload + * our configuration information. Perform whatever steps + * are needed to update the configuration objects. + */ + + /* Send an empty reply to acknowledge receipt */ + return service_pong(message, data, r); +} + static int dp_monitor_init(struct dp_ctx *dpctx) { struct service_sbus_ctx *ss_ctx; diff --git a/server/sbus_interfaces.h b/server/sbus_interfaces.h index 58a85749..0a3fe7a8 100644 --- a/server/sbus_interfaces.h +++ b/server/sbus_interfaces.h @@ -37,6 +37,7 @@ /* Service Methods */ #define SERVICE_METHOD_IDENTITY "getIdentity" #define SERVICE_METHOD_PING "ping" +#define SERVICE_METHOD_RELOAD "reloadConfig" #define SSSD_SERVICE_PIPE "private/sbus-monitor" -- cgit