summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/ulogd/ulogd.h2
-rw-r--r--src/ulogd.c14
2 files changed, 14 insertions, 2 deletions
diff --git a/include/ulogd/ulogd.h b/include/ulogd/ulogd.h
index 2d1b348..e48caf8 100644
--- a/include/ulogd/ulogd.h
+++ b/include/ulogd/ulogd.h
@@ -208,6 +208,8 @@ struct ulogd_plugin {
char name[ULOGD_MAX_KEYLEN+1];
/* ID for this plugin (dynamically assigned) */
unsigned int id;
+ /* how many stacks are using this plugin? initially set to zero. */
+ unsigned int usage;
struct ulogd_keyset input;
struct ulogd_keyset output;
diff --git a/src/ulogd.c b/src/ulogd.c
index f378c6f..a4b0ed1 100644
--- a/src/ulogd.c
+++ b/src/ulogd.c
@@ -762,6 +762,15 @@ static int pluginstance_started(struct ulogd_pluginstance *npi)
return 0;
}
+static int pluginstance_stop(struct ulogd_pluginstance *npi)
+{
+ if (--npi->plugin->usage > 0 &&
+ npi->plugin->input.type == ULOGD_DTYPE_SOURCE) {
+ return 0;
+ }
+ return 1;
+}
+
static int create_stack_start_instances(struct ulogd_pluginstance_stack *stack)
{
int ret;
@@ -839,6 +848,7 @@ static int create_stack(const char *option)
ret = -ENODEV;
goto out;
}
+ pl->usage++;
/* allocate */
pi = pluginstance_alloc_init(pl, pi_id, stack);
@@ -989,8 +999,8 @@ static void stop_pluginstances()
llist_for_each_entry(stack, &ulogd_pi_stacks, stack_list) {
llist_for_each_entry_safe(pi, npi, &stack->list, list) {
- if (((pi->plugin->priv_size == 0) || pi->private[0])
- && *pi->plugin->stop) {
+ if ((pi->plugin->priv_size > 0 || *pi->plugin->stop) &&
+ pluginstance_stop(pi)) {
ulogd_log(ULOGD_DEBUG, "calling stop for %s\n",
pi->plugin->name);
(*pi->plugin->stop)(pi);