All of lore.kernel.org
 help / color / mirror / Atom feed
* Check connection state in libipq hook
@ 2007-06-18 14:15 switcher
  2007-06-18 18:15 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 6+ messages in thread
From: switcher @ 2007-06-18 14:15 UTC (permalink / raw)
  To: netfilter

Hi All,

 I'm coding a software that check if an incoming packet is part of an active
 connection.
 I'm using libipq to get the packet and I tried to submit it to
 ip_conntrack_find_get() as a tuple create with ip_conntrack_tuple but it
 doesn't work so I have some questions about that.

 I'm creating the tuple and submitting it with that piece of code :
 --------
 struct ip_conntrack_tuple *tuple;
 tuple->src.ip                 = iph->saddr;
 tuple->src.u.tcp.port         = tcp->source;
 tuple->dst.ip                 = iph->daddr;
 tuple->dst.u.tcp.port         = tcp->dest;
 tuple->dst.protonum         = iph->protocol;
 tuple->dst.dir                = 0;
 if (NULL == ip_conntrack_find_get(tuple, NULL))
 {
      fprintf(stdout, "tuple IS NOT part of an active connection");
 }
 else {
      fprintf(stdout, "tuple IS part of an active connection");
 }
 --------
 But I don't know what to put in tuple->dst.dir value... is it a static value ?

 Moreover, I included <linux/netfilter.h>,
 <linux/netfilter_ipv4/ip_conntrack_tuple.h> and
 <linux/netfilter_ipv4/ip_conntrack_core.h> (kernel 2.6.17.7) but when I try to
 compile it, I have an error message :
 --------
 /usr/include/linux/netfilter_ipv4/ip_conntrack_core.h: In function
 'ip_conntrack_confirm':
 /usr/include/linux/netfilter_ipv4/ip_conntrack_core.h:44: error: dereferencing
 pointer to incomplete type
 /usr/include/linux/netfilter_ipv4/ip_conntrack_core.h: At top level:
 /usr/include/linux/netfilter_ipv4/ip_conntrack_core.h:59: error: syntax error
 before 'ip_conntrack_lock'
 --------

 I'm not manipulating 'ip_conntrack_confirm' nor 'ip_conntrack_lock' so I guess
 I've made a mistake somewhere but I don't know where...
 Could you help me ?

 Thanks,
 julien



^ permalink raw reply	[flat|nested] 6+ messages in thread
* Check connection state in libipq hook
@ 2007-06-15  3:59 switcher
  0 siblings, 0 replies; 6+ messages in thread
From: switcher @ 2007-06-15  3:59 UTC (permalink / raw)
  To: netfilter-devel

Hi All,

I'm coding a software that check if an incoming packet is part of an active
connection.
I'm using libipq to get the packet and I tried to submit it to
ip_conntrack_find_get() as a tuple create with ip_conntrack_tuple but it
doesn't work so I have some questions about that.

I'm creating the tuple and submitting it with that piece of code :
--------
struct ip_conntrack_tuple *tuple;
tuple->src.ip 		= iph->saddr;
tuple->src.u.tcp.port 	= tcp->source;
tuple->dst.ip 		= iph->daddr;
tuple->dst.u.tcp.port 	= tcp->dest;
tuple->dst.protonum 	= iph->protocol;
tuple->dst.dir		= 0;
if (NULL == ip_conntrack_find_get(tuple, NULL))
{
     fprintf(stdout, "tuple IS NOT part of an active connection");
}
else {
     fprintf(stdout, "tuple IS part of an active connection");
}
--------
But I don't know what to put in tuple->dst.dir value... is it a static value ?

Moreover, I included <linux/netfilter.h>,
<linux/netfilter_ipv4/ip_conntrack_tuple.h> and
<linux/netfilter_ipv4/ip_conntrack_core.h> (kernel 2.6.17.7) but when I try to
compile it, I have an error message :
--------
/usr/include/linux/netfilter_ipv4/ip_conntrack_core.h: In function
'ip_conntrack_confirm':
/usr/include/linux/netfilter_ipv4/ip_conntrack_core.h:44: error: dereferencing
pointer to incomplete type
/usr/include/linux/netfilter_ipv4/ip_conntrack_core.h: At top level:
/usr/include/linux/netfilter_ipv4/ip_conntrack_core.h:59: error: syntax error
before 'ip_conntrack_lock'
--------

I'm not manipulating 'ip_conntrack_confirm' nor 'ip_conntrack_lock' so I guess
I've made a mistake somewhere but I don't know where...
Could you help me ?

Thanks,
julien

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-06-20 16:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-18 14:15 Check connection state in libipq hook switcher
2007-06-18 18:15 ` Pablo Neira Ayuso
2007-06-18 18:22   ` switcher
2007-06-18 19:20     ` Pablo Neira Ayuso
2007-06-20 16:29       ` switcher
  -- strict thread matches above, loose matches on Subject: below --
2007-06-15  3:59 switcher

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.