All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] TPROXY cleanups
@ 2008-10-06 12:19 Alexey Dobriyan
  2008-10-06 12:26 ` KOVACS Krisztian
  0 siblings, 1 reply; 6+ messages in thread
From: Alexey Dobriyan @ 2008-10-06 12:19 UTC (permalink / raw)
  To: kaber; +Cc: hidden, netfilter-devel

* drop version.h -- unneeded and file will be needlessly rebuilt.
* make tproxy_core unloadable
* use "in" device outright, -- target and match are only in PRE_ROUTING,
  so should avoid dereference.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---

 net/netfilter/nf_tproxy_core.c |    5 ++++-
 net/netfilter/xt_TPROXY.c      |    2 +-
 net/netfilter/xt_socket.c      |    2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)

--- a/net/netfilter/nf_tproxy_core.c
+++ b/net/netfilter/nf_tproxy_core.c
@@ -10,7 +10,6 @@
  *
  */
 
-#include <linux/version.h>
 #include <linux/module.h>
 
 #include <linux/net.h>
@@ -89,7 +88,11 @@ static int __init nf_tproxy_init(void)
 	return 0;
 }
 
+static void __exit nf_tproxy_exit(void)
+{
+}
 module_init(nf_tproxy_init);
+module_exit(nf_tproxy_exit);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Krisztian Kovacs");
--- a/net/netfilter/xt_TPROXY.c
+++ b/net/netfilter/xt_TPROXY.c
@@ -41,7 +41,7 @@ tproxy_tg(struct sk_buff *skb,
 	if (hp == NULL)
 		return NF_DROP;
 
-	sk = nf_tproxy_get_sock_v4(dev_net(skb->dev), iph->protocol,
+	sk = nf_tproxy_get_sock_v4(dev_net(in), iph->protocol,
 				   iph->saddr, tgi->laddr ? tgi->laddr : iph->daddr,
 				   hp->source, tgi->lport ? tgi->lport : hp->dest,
 				   in, true);
--- a/net/netfilter/xt_socket.c
+++ b/net/netfilter/xt_socket.c
@@ -145,7 +145,7 @@ socket_mt(const struct sk_buff *skb,
 	}
 #endif
 
-	sk = nf_tproxy_get_sock_v4(dev_net(skb->dev), protocol,
+	sk = nf_tproxy_get_sock_v4(dev_net(in), protocol,
 				   saddr, daddr, sport, dport, in, false);
 	if (sk != NULL) {
 		bool wildcard = (inet_sk(sk)->rcv_saddr == 0);

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

end of thread, other threads:[~2008-10-07  6:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-06 12:19 [PATCH] TPROXY cleanups Alexey Dobriyan
2008-10-06 12:26 ` KOVACS Krisztian
2008-10-06 12:39   ` Alexey Dobriyan
2008-10-06 14:15     ` KOVACS Krisztian
2008-10-06 15:41       ` Patrick McHardy
2008-10-07  6:32         ` KOVACS Krisztian

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.