From: Eric Leblond <eric@inl.fr>
To: netfilter-devel@vger.kernel.org
Cc: Eric Leblond <eric@inl.fr>
Subject: [ULOGD PATCH 5/8] Add a list of used plugininstance.
Date: Sun, 9 Mar 2008 23:36:26 +0100 [thread overview]
Message-ID: <12051021893531-git-send-email-eric@inl.fr> (raw)
In-Reply-To: <12051021893015-git-send-email-eric@inl.fr>
This patch adds plist a linked list to the pluginstance
structure. It can be used by input modules to duplicate an
entry. This solves the issue of not being able to use the same
plugin instance twice.
Signed-off-by: Eric Leblond <eric@inl.fr>
---
include/ulogd/ulogd.h | 2 ++
src/ulogd.c | 2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/ulogd/ulogd.h b/include/ulogd/ulogd.h
index 39ac464..73a1711 100644
--- a/include/ulogd/ulogd.h
+++ b/include/ulogd/ulogd.h
@@ -168,6 +168,8 @@ struct ulogd_plugin {
struct ulogd_pluginstance {
/* local list of plugins in this stack */
struct llist_head list;
+ /* local list of plugininstance in other stacks */
+ struct llist_head plist;
/* plugin */
struct ulogd_plugin *plugin;
/* stack that we're part of */
diff --git a/src/ulogd.c b/src/ulogd.c
index b69d25d..a6356f2 100644
--- a/src/ulogd.c
+++ b/src/ulogd.c
@@ -529,6 +529,7 @@ pluginstance_alloc_init(struct ulogd_plugin *pl, char *pi_id,
/* initialize */
memset(pi, 0, size);
INIT_LLIST_HEAD(&pi->list);
+ INIT_LLIST_HEAD(&pi->plist);
pi->plugin = pl;
pi->stack = stack;
memcpy(pi->id, pi_id, sizeof(pi->id));
@@ -722,6 +723,7 @@ static int pluginstance_started(struct ulogd_pluginstance *npi)
/* OK, pluginstance already exists in stack list */
if (! strcmp(pi->id, npi->id)) {
ulogd_log(ULOGD_INFO, "%s instance already loaded\n", pi->id);
+ llist_add(&pi->plist, &npi->plist);
return 1;
}
}
--
1.5.4.3
next prev parent reply other threads:[~2008-03-09 22:36 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-09 22:36 [ULOGD PATCH 0/8] Allow reuse of plugin instance (and misc fixes) Eric Leblond
2008-03-09 22:36 ` [ULOGD PATCH 1/8] Add hook to list of fields in database for packet logging Eric Leblond
2008-03-25 8:41 ` Pablo Neira Ayuso
2008-03-09 22:36 ` [ULOGD PATCH 2/8] Introduce RAWSTR type to avoid confusion in future developement Eric Leblond
2008-03-25 8:42 ` Pablo Neira Ayuso
2008-03-09 22:36 ` [ULOGD PATCH 3/8] Fix indentation in ulogd_inppkt_NFLOG.c Eric Leblond
2008-03-25 8:43 ` Pablo Neira Ayuso
2008-03-09 22:36 ` [ULOGD PATCH 4/8] Don't call start function multiple time for a single plugin instance Eric Leblond
2008-03-25 8:48 ` Pablo Neira Ayuso
2008-03-09 22:36 ` Eric Leblond [this message]
2008-03-25 9:50 ` [ULOGD PATCH 5/8] Add a list of used plugininstance Pablo Neira Ayuso
2008-03-09 22:36 ` [ULOGD PATCH 6/8] Duplicate message to all existing instance of NFLOG Eric Leblond
2008-03-25 9:54 ` Pablo Neira Ayuso
2008-03-09 22:36 ` [ULOGD PATCH 7/8] Add code for duplication of message in ULOG Eric Leblond
2008-03-25 9:59 ` Pablo Neira Ayuso
2008-03-09 22:36 ` [ULOGD PATCH 8/8] Duplication of message in NFCT input plugin Eric Leblond
2008-03-25 10:02 ` Pablo Neira Ayuso
2008-03-25 10:03 ` [ULOGD PATCH 0/8] Allow reuse of plugin instance (and misc fixes) Pablo Neira Ayuso
2008-03-25 15:36 ` Eric Leblond
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=12051021893531-git-send-email-eric@inl.fr \
--to=eric@inl.fr \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.