From: Eric Leblond <eric@regit.org>
To: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH] nfct: use timestamp of conntrack object.
Date: Tue, 05 Mar 2013 15:43:53 +0100 [thread overview]
Message-ID: <1362494633.4930.80.camel@tiger2> (raw)
In-Reply-To: <1362348658-19291-2-git-send-email-eric@regit.org>
Hi,
On Sun, 2013-03-03 at 23:10 +0100, Eric Leblond wrote:
> If conntrack object sent by connection tracking system is containing
> a timestamp we use it instead of a gettimeofday() based counter.
Pushed to git tree with a minor update.
BR,
> ---
> input/flow/ulogd_inpflow_NFCT.c | 42 +++++++++++++++++++++++++++++----------
> 1 file changed, 32 insertions(+), 10 deletions(-)
>
> diff --git a/input/flow/ulogd_inpflow_NFCT.c b/input/flow/ulogd_inpflow_NFCT.c
> index 3889b10..d9dae66 100644
> --- a/input/flow/ulogd_inpflow_NFCT.c
> +++ b/input/flow/ulogd_inpflow_NFCT.c
> @@ -48,6 +48,10 @@
>
> #include <libnetfilter_conntrack/libnetfilter_conntrack.h>
>
> +#ifndef NSEC_PER_SEC
> +#define NSEC_PER_SEC 1000000000L
> +#endif
> +
> typedef enum TIMES_ { START, STOP, __TIME_MAX } TIMES;
>
> struct ct_timestamp {
> @@ -617,6 +621,25 @@ do_propagate_ct(struct ulogd_pluginstance *upi,
> propagate_ct(upi, upi, ct, type, ts);
> }
>
> +static void _set_timestamp_from_ct(struct ct_timestamp *ts,
> + struct nf_conntrack *ct, int name)
> +{
> + int attr_name;
> +
> + if (name == START)
> + attr_name = ATTR_TIMESTAMP_START;
> + else
> + attr_name = ATTR_TIMESTAMP_STOP;
> +
> + if (nfct_attr_is_set(ct, attr_name)) {
> + ts->time[name].tv_sec =
> + nfct_get_attr_u64(ct, attr_name) / NSEC_PER_SEC;
> + ts->time[name].tv_usec =
> + (nfct_get_attr_u64(ct, attr_name) % NSEC_PER_SEC) / 1000;
> + } else
> + gettimeofday(&ts->time[name], NULL);
> +}
> +
> static int
> event_handler_hashtable(enum nf_conntrack_msg_type type,
> struct nf_conntrack *ct, void *data)
> @@ -634,8 +657,8 @@ event_handler_hashtable(enum nf_conntrack_msg_type type,
> return NFCT_CB_CONTINUE;
>
> ts->ct = ct;
> - gettimeofday(&ts->time[START], NULL);
>
> + _set_timestamp_from_ct(ts, ct, START);
> id = hashtable_hash(cpi->ct_active, ct);
> ret = hashtable_add(cpi->ct_active, &ts->hashnode, id);
> if (ret < 0) {
> @@ -655,8 +678,7 @@ event_handler_hashtable(enum nf_conntrack_msg_type type,
> return NFCT_CB_CONTINUE;
>
> ts->ct = ct;
> - gettimeofday(&ts->time[START], NULL);
> -
> + _set_timestamp_from_ct(ts, ct, START);
> ret = hashtable_add(cpi->ct_active, &ts->hashnode, id);
> if (ret < 0) {
> free(ts);
> @@ -670,7 +692,7 @@ event_handler_hashtable(enum nf_conntrack_msg_type type,
> ts = (struct ct_timestamp *)
> hashtable_find(cpi->ct_active, ct, id);
> if (ts) {
> - gettimeofday(&ts->time[STOP], NULL);
> + _set_timestamp_from_ct(ts, ct, STOP);
> do_propagate_ct(upi, ct, type, ts);
> hashtable_del(cpi->ct_active, &ts->hashnode);
> nfct_destroy(ts->ct);
> @@ -679,7 +701,7 @@ event_handler_hashtable(enum nf_conntrack_msg_type type,
> struct ct_timestamp tmp = {
> .ct = ct,
> };
> - gettimeofday(&tmp.time[STOP], NULL);
> + _set_timestamp_from_ct(&tmp, ct, STOP);
> tmp.time[START].tv_sec = 0;
> tmp.time[START].tv_usec = 0;
> do_propagate_ct(upi, ct, type, &tmp);
> @@ -704,12 +726,12 @@ event_handler_no_hashtable(enum nf_conntrack_msg_type type,
>
> switch(type) {
> case NFCT_T_NEW:
> - gettimeofday(&tmp.time[START], NULL);
> + _set_timestamp_from_ct(&tmp, ct, START);
> tmp.time[STOP].tv_sec = 0;
> tmp.time[STOP].tv_usec = 0;
> break;
> case NFCT_T_DESTROY:
> - gettimeofday(&tmp.time[STOP], NULL);
> + _set_timestamp_from_ct(&tmp, ct, STOP);
> tmp.time[START].tv_sec = 0;
> tmp.time[START].tv_usec = 0;
> break;
> @@ -744,7 +766,7 @@ polling_handler(enum nf_conntrack_msg_type type,
> return NFCT_CB_CONTINUE;
>
> ts->ct = ct;
> - gettimeofday(&ts->time[START], NULL);
> + _set_timestamp_from_ct(ts, ct, START);
>
> ret = hashtable_add(cpi->ct_active, &ts->hashnode, id);
> if (ret < 0) {
> @@ -881,7 +903,7 @@ static int overrun_handler(enum nf_conntrack_msg_type type,
> return NFCT_CB_CONTINUE;
>
> ts->ct = ct;
> - gettimeofday(&ts->time[START], NULL); /* do our best here */
> + _set_timestamp_from_ct(ts, ct, START);
>
> ret = hashtable_add(cpi->ct_active, &ts->hashnode, id);
> if (ret < 0) {
> @@ -944,7 +966,7 @@ dump_reset_handler(enum nf_conntrack_msg_type type,
> return NFCT_CB_CONTINUE;
>
> ts->ct = ct;
> - gettimeofday(&ts->time[START], NULL);
> + _set_timestamp_from_ct(ts, ct, START);
>
> rc = hashtable_add(cpi->ct_active, &ts->hashnode, id);
> if (rc < 0) {
--
Eric Leblond <eric@regit.org>
Blog: https://home.regit.org/
prev parent reply other threads:[~2013-03-05 14:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-03 22:10 [ulogd patch 0/1] use conntrack based timestamp Eric Leblond
2013-03-03 22:10 ` [PATCH] nfct: use timestamp of conntrack object Eric Leblond
2013-03-05 14:43 ` Eric Leblond [this message]
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=1362494633.4930.80.camel@tiger2 \
--to=eric@regit.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).