All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND]: conntrack: kill destroy() in nf_conntrack for diet
@ 2007-03-20  0:57 Yasuyuki KOZAKAI
  2007-03-20  1:08 ` Patrick McHardy
  0 siblings, 1 reply; 4+ messages in thread
From: Yasuyuki KOZAKAI @ 2007-03-20  0:57 UTC (permalink / raw)
  To: kaber, netfilter-devel


The destructor per conntrack is unnecessary, then this replaces it with
system wide destructor.

Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
---
 include/linux/skbuff.h                 |    7 +------
 net/ipv4/netfilter/ip_conntrack_core.c |    4 +++-
 net/netfilter/core.c                   |   19 ++++++++++++++++++-
 net/netfilter/nf_conntrack_core.c      |    4 +++-
 4 files changed, 25 insertions(+), 9 deletions(-)
---
 include/linux/netfilter.h              |    1 +
 include/linux/skbuff.h                 |    7 +------
 net/ipv4/netfilter/ip_conntrack_core.c |    4 +++-
 net/netfilter/core.c                   |   19 ++++++++++++++++++-
 net/netfilter/nf_conntrack_core.c      |    4 +++-
 5 files changed, 26 insertions(+), 9 deletions(-)

diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h
index 5efab09..0af0b36 100644
--- a/include/linux/netfilter.h
+++ b/include/linux/netfilter.h
@@ -394,6 +394,7 @@ nf_nat_decode_session(struct sk_buff *sk
     defined(CONFIG_NF_CONNTRACK_ENABLED_MODULE)
 extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *);
 extern void nf_ct_attach(struct sk_buff *, struct sk_buff *);
+extern void (*nf_ct_destroy)(struct nf_conntrack*);
 #else
 static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
 #endif
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index aa08872..1114903 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -88,7 +88,6 @@ struct net_device;
     defined(CONFIG_NF_CONNTRACK_ENABLED_MODULE)
 struct nf_conntrack {
 	atomic_t use;
-	void (*destroy)(struct nf_conntrack *);
 };
 #endif
 
@@ -1408,11 +1407,7 @@ static inline unsigned int skb_checksum_
 
 #if defined(CONFIG_NF_CONNTRACK_ENABLED) ||	\
     defined(CONFIG_NF_CONNTRACK_ENABLED_MODULE)
-static inline void nf_conntrack_put(struct nf_conntrack *nfct)
-{
-	if (nfct && atomic_dec_and_test(&nfct->use))
-		nfct->destroy(nfct);
-}
+extern void nf_conntrack_put(struct nf_conntrack *nfct);
 static inline void nf_conntrack_get(struct nf_conntrack *nfct)
 {
 	if (nfct)
diff --git a/net/ipv4/netfilter/ip_conntrack_core.c b/net/ipv4/netfilter/ip_conntrack_core.c
index 07ba1dd..349fca5 100644
--- a/net/ipv4/netfilter/ip_conntrack_core.c
+++ b/net/ipv4/netfilter/ip_conntrack_core.c
@@ -651,7 +651,6 @@ struct ip_conntrack *ip_conntrack_alloc(
 	}
 
 	atomic_set(&conntrack->ct_general.use, 1);
-	conntrack->ct_general.destroy = destroy_conntrack;
 	conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
 	conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
 	/* Don't set timer yet: wait for confirmation */
@@ -1385,6 +1384,8 @@ void ip_conntrack_cleanup(void)
 	while (atomic_read(&ip_conntrack_untracked.ct_general.use) > 1)
 		schedule();
 
+	rcu_assign_pointer(nf_ct_destroy, NULL);
+
 	kmem_cache_destroy(ip_conntrack_cachep);
 	kmem_cache_destroy(ip_conntrack_expect_cachep);
 	free_conntrack_hash(ip_conntrack_hash, ip_conntrack_vmalloc,
@@ -1529,6 +1530,7 @@ int __init ip_conntrack_init(void)
 
 	/* For use by ipt_REJECT */
 	rcu_assign_pointer(ip_ct_attach, ip_conntrack_attach);
+	rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
 
 	/* Set up fake conntrack:
 	    - to never be deleted, not in any hashes */
diff --git a/net/netfilter/core.c b/net/netfilter/core.c
index 7e295a5..a8e2796 100644
--- a/net/netfilter/core.c
+++ b/net/netfilter/core.c
@@ -265,7 +265,24 @@ void nf_ct_attach(struct sk_buff *new, s
 	}
 }
 EXPORT_SYMBOL(nf_ct_attach);
-#endif
+
+void (*nf_ct_destroy)(struct nf_conntrack*);
+EXPORT_SYMBOL(nf_ct_destroy);
+
+void nf_conntrack_put(struct nf_conntrack *nfct)
+{
+	void (*destroy)(struct nf_conntrack*);
+
+	if (nfct && atomic_dec_and_test(&nfct->use)) {
+		rcu_read_lock();
+		destroy = rcu_dereference(nf_ct_destroy);
+		BUG_ON(destroy == NULL);
+		destroy(nfct);
+		rcu_read_unlock();
+	}
+}
+EXPORT_SYMBOL(nf_conntrack_put);
+#endif /* CONFIG_NF_CONNTRACK_ENABLED */
 
 #ifdef CONFIG_PROC_FS
 struct proc_dir_entry *proc_net_netfilter;
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c
index 32891eb..a979912 100644
--- a/net/netfilter/nf_conntrack_core.c
+++ b/net/netfilter/nf_conntrack_core.c
@@ -633,7 +633,6 @@ __nf_conntrack_alloc(const struct nf_con
 	memset(conntrack, 0, nf_ct_cache[features].size);
 	conntrack->features = features;
 	atomic_set(&conntrack->ct_general.use, 1);
-	conntrack->ct_general.destroy = destroy_conntrack;
 	conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
 	conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
 	/* Don't set timer yet: wait for confirmation */
@@ -1141,6 +1140,8 @@ void nf_conntrack_cleanup(void)
 	while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
 		schedule();
 
+	rcu_assign_pointer(nf_ct_destroy, NULL);
+
 	for (i = 0; i < NF_CT_F_NUM; i++) {
 		if (nf_ct_cache[i].use == 0)
 			continue;
@@ -1292,6 +1293,7 @@ int __init nf_conntrack_init(void)
 
 	/* For use by REJECT target */
 	rcu_assign_pointer(ip_ct_attach, __nf_conntrack_attach);
+	rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
 
 	/* Set up fake conntrack:
 	    - to never be deleted, not in any hashes */
-- 
1.4.4

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

* Re: [PATCH RESEND]: conntrack: kill destroy() in nf_conntrack for diet
       [not found] <200703200057.l2K0vXrV009665@toshiba.co.jp>
@ 2007-03-20  1:06 ` Patrick McHardy
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick McHardy @ 2007-03-20  1:06 UTC (permalink / raw)
  To: Yasuyuki KOZAKAI; +Cc: netfilter-devel

Yasuyuki KOZAKAI wrote:
> The destructor per conntrack is unnecessary, then this replaces it with
> system wide destructor.
> 
> Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
> ---
>  include/linux/skbuff.h                 |    7 +------
>  net/ipv4/netfilter/ip_conntrack_core.c |    4 +++-
>  net/netfilter/core.c                   |   19 ++++++++++++++++++-
>  net/netfilter/nf_conntrack_core.c      |    4 +++-
>  4 files changed, 25 insertions(+), 9 deletions(-)


Thanks Yasuyuki, but this still doesn't apply to net-2.6.22
since ip_conntrack got removed and there are also rejects in
net/netfilter/core.c. Please rediff against Dave's net-2.6.22
tree, thanks.

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

* Re: [PATCH RESEND]: conntrack: kill destroy() in nf_conntrack for diet
  2007-03-20  0:57 [PATCH RESEND]: conntrack: kill destroy() in nf_conntrack for diet Yasuyuki KOZAKAI
@ 2007-03-20  1:08 ` Patrick McHardy
  2007-03-20  6:06   ` Yasuyuki KOZAKAI
  0 siblings, 1 reply; 4+ messages in thread
From: Patrick McHardy @ 2007-03-20  1:08 UTC (permalink / raw)
  To: Yasuyuki KOZAKAI; +Cc: netfilter-devel

Yasuyuki KOZAKAI wrote:
> The destructor per conntrack is unnecessary, then this replaces it with
> system wide destructor.
> 
> +extern void (*nf_ct_destroy)(struct nf_conntrack*);

BTW, please add whitespace between nf_conntrack and * (also in some
other spots).

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

* Re: [PATCH RESEND]: conntrack: kill destroy() in nf_conntrack for diet
  2007-03-20  1:08 ` Patrick McHardy
@ 2007-03-20  6:06   ` Yasuyuki KOZAKAI
  0 siblings, 0 replies; 4+ messages in thread
From: Yasuyuki KOZAKAI @ 2007-03-20  6:06 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel, yasuyuki.kozakai


Hi, Patrick,

From: Patrick McHardy <kaber@trash.net>
Date: Tue, 20 Mar 2007 02:06:35 +0100

> Yasuyuki KOZAKAI wrote:
> > The destructor per conntrack is unnecessary, then this replaces it with
> > system wide destructor.
> > 
> > Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
> > ---
> >  include/linux/skbuff.h                 |    7 +------
> >  net/ipv4/netfilter/ip_conntrack_core.c |    4 +++-
> >  net/netfilter/core.c                   |   19 ++++++++++++++++++-
> >  net/netfilter/nf_conntrack_core.c      |    4 +++-
> >  4 files changed, 25 insertions(+), 9 deletions(-)
> 
> 
> Thanks Yasuyuki, but this still doesn't apply to net-2.6.22
> since ip_conntrack got removed and there are also rejects in
> net/netfilter/core.c. Please rediff against Dave's net-2.6.22
> tree, thanks.

Sorry, I didn't take care that. I've deleted ip_conntrack part and replaced
NF_CONNTRACK_ENABLED with NF_CONNTRACK.

> > The destructor per conntrack is unnecessary, then this replaces it with
> > system wide destructor.
> > 
> > +extern void (*nf_ct_destroy)(struct nf_conntrack*);
> 
> BTW, please add whitespace between nf_conntrack and * (also in some
> other spots).

Thanks for pointing out this. I've also fixed them.

-- Yasuyuki Kozakai

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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-20  0:57 [PATCH RESEND]: conntrack: kill destroy() in nf_conntrack for diet Yasuyuki KOZAKAI
2007-03-20  1:08 ` Patrick McHardy
2007-03-20  6:06   ` Yasuyuki KOZAKAI
     [not found] <200703200057.l2K0vXrV009665@toshiba.co.jp>
2007-03-20  1:06 ` Patrick McHardy

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.