From: Pablo Neira Ayuso <pablo@netfilter.org>
To: "Morgon J. Kanter" <morgon.j.kanter@dartmouth.edu>
Cc: netfilter@vger.kernel.org
Subject: Re: libnetfilter_conntrack: notification on established/finished connection?
Date: Mon, 26 Apr 2010 14:27:05 +0200 [thread overview]
Message-ID: <4BD58699.9000405@netfilter.org> (raw)
In-Reply-To: <201004211915.28436.morgon.j.kanter@dartmouth.edu>
Morgon J. Kanter wrote:
> Hi,
>
> Apologies if I'm on the incorrect list, but this isn't a patch for netfilter
> so I believe this to be the appropriate one.
>
> I'm in the process of writing an application that requires notification when a
> new TCP connection to a specific destination is established, and finished /
> timed out. I've never used libnetfilter_conntrack (or anything netfilter at
> all, for that matter), so I've been investigating using libnetfilter_conntrack
> for this purpose. My question is: is this possible to do with this library?
Look at utils/conntrack_events.c, I think that example is more or less
what you need.
> My question is so basic because I'm not really sure what nfct_catch() actually
> fires on. I noticed the filter infrastructure -- to get such an application to
> work, would I create a filter for TCP, and that destination, and then do
> something like:
>
> nfct_filter_attach(nfct_fd(conntrack_handle), filter);
> nfct_callback_register(conntrack_handle, NFCT_T_NEW, new_connection_callback,
> NULL);
> nfct_callback_register(conntrack_handle, NFCT_T_DESTROY,
> dead_connection_callback, NULL);
> nfct_catch(conntrack_handle);
The filter infrastructure is there to attach filters in kernel-space.
> Is this the right track for what I want to do? My issue is I just don't really
> understand exactly what nfct_catch does -- what is a conntrack event, exactly?
> And what does it mean to steal one, as per the callback returning
> NFCT_CB_STOLEN.
nfct_catch() receives conntrack events from kernel-space, by default it
blocks waiting for events. NFCT_CB_STOLEN means that the conntrack
object is not released after the callback.
Good luck with it.
prev parent reply other threads:[~2010-04-26 12:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-21 23:15 libnetfilter_conntrack: notification on established/finished connection? Morgon J. Kanter
2010-04-22 7:35 ` Jan Engelhardt
2010-04-26 12:27 ` Pablo Neira Ayuso [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=4BD58699.9000405@netfilter.org \
--to=pablo@netfilter.org \
--cc=morgon.j.kanter@dartmouth.edu \
--cc=netfilter@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).