]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
netfilter: Pass net to nf_dup_ipv4 and nf_dup_ipv6
authorEric W. Biederman <ebiederm@xmission.com>
Fri, 18 Sep 2015 19:33:02 +0000 (14:33 -0500)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 18 Sep 2015 19:59:11 +0000 (21:59 +0200)
This allows them to stop guessing the network namespace with pick_net.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/net/netfilter/ipv4/nf_dup_ipv4.h
include/net/netfilter/ipv6/nf_dup_ipv6.h
net/ipv4/netfilter/nf_dup_ipv4.c
net/ipv4/netfilter/nft_dup_ipv4.c
net/ipv6/netfilter/nf_dup_ipv6.c
net/ipv6/netfilter/nft_dup_ipv6.c
net/netfilter/xt_TEE.c

index 42008f10dfc40218af2850716d86a54be1261e7c..0a14733e8b82ce622f0f9ba375bc5aa95aed4986 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef _NF_DUP_IPV4_H_
 #define _NF_DUP_IPV4_H_
 
-void nf_dup_ipv4(struct sk_buff *skb, unsigned int hooknum,
+void nf_dup_ipv4(struct net *net, struct sk_buff *skb, unsigned int hooknum,
                 const struct in_addr *gw, int oif);
 
 #endif /* _NF_DUP_IPV4_H_ */
index ed6bd66fa5a0e713714beda7a56ecc3c6a595350..fa6237b382a3efced6dcc6b315ebfbe72206fb0c 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef _NF_DUP_IPV6_H_
 #define _NF_DUP_IPV6_H_
 
-void nf_dup_ipv6(struct sk_buff *skb, unsigned int hooknum,
+void nf_dup_ipv6(struct net *net, struct sk_buff *skb, unsigned int hooknum,
                 const struct in6_addr *gw, int oif);
 
 #endif /* _NF_DUP_IPV6_H_ */
index 2d79e6e8d934dbd41080b2c6a658569e2ce00c53..ce2a59e5c6659ab8dda663e89d63c703702efccb 100644 (file)
 #include <net/netfilter/nf_conntrack.h>
 #endif
 
-static struct net *pick_net(struct sk_buff *skb)
-{
-#ifdef CONFIG_NET_NS
-       const struct dst_entry *dst;
-
-       if (skb->dev != NULL)
-               return dev_net(skb->dev);
-       dst = skb_dst(skb);
-       if (dst != NULL && dst->dev != NULL)
-               return dev_net(dst->dev);
-#endif
-       return &init_net;
-}
-
-static bool nf_dup_ipv4_route(struct sk_buff *skb, const struct in_addr *gw,
-                             int oif)
+static bool nf_dup_ipv4_route(struct net *net, struct sk_buff *skb,
+                             const struct in_addr *gw, int oif)
 {
        const struct iphdr *iph = ip_hdr(skb);
-       struct net *net = pick_net(skb);
        struct rtable *rt;
        struct flowi4 fl4;
 
@@ -65,7 +50,7 @@ static bool nf_dup_ipv4_route(struct sk_buff *skb, const struct in_addr *gw,
        return true;
 }
 
-void nf_dup_ipv4(struct sk_buff *skb, unsigned int hooknum,
+void nf_dup_ipv4(struct net *net, struct sk_buff *skb, unsigned int hooknum,
                 const struct in_addr *gw, int oif)
 {
        struct iphdr *iph;
@@ -105,7 +90,7 @@ void nf_dup_ipv4(struct sk_buff *skb, unsigned int hooknum,
                --iph->ttl;
        ip_send_check(iph);
 
-       if (nf_dup_ipv4_route(skb, gw, oif)) {
+       if (nf_dup_ipv4_route(net, skb, gw, oif)) {
                __this_cpu_write(nf_skb_duplicated, true);
                ip_local_out(skb);
                __this_cpu_write(nf_skb_duplicated, false);
index 30bcf820e8bd131efed82ea0c78d4cdce27d0e01..bf855e64fc45c86fbf286bc34b2bd96fbac17cff 100644 (file)
@@ -30,7 +30,7 @@ static void nft_dup_ipv4_eval(const struct nft_expr *expr,
        };
        int oif = regs->data[priv->sreg_dev];
 
-       nf_dup_ipv4(pkt->skb, pkt->hook, &gw, oif);
+       nf_dup_ipv4(pkt->net, pkt->skb, pkt->hook, &gw, oif);
 }
 
 static int nft_dup_ipv4_init(const struct nft_ctx *ctx,
index c8ab626556a02837506a30a26fdc1fbdf075480d..ee0d9a5b16c352d17a89e46d2de6fb1bea76c54e 100644 (file)
 #include <net/netfilter/nf_conntrack.h>
 #endif
 
-static struct net *pick_net(struct sk_buff *skb)
-{
-#ifdef CONFIG_NET_NS
-       const struct dst_entry *dst;
-
-       if (skb->dev != NULL)
-               return dev_net(skb->dev);
-       dst = skb_dst(skb);
-       if (dst != NULL && dst->dev != NULL)
-               return dev_net(dst->dev);
-#endif
-       return &init_net;
-}
-
-static bool nf_dup_ipv6_route(struct sk_buff *skb, const struct in6_addr *gw,
-                             int oif)
+static bool nf_dup_ipv6_route(struct net *net, struct sk_buff *skb,
+                             const struct in6_addr *gw, int oif)
 {
        const struct ipv6hdr *iph = ipv6_hdr(skb);
-       struct net *net = pick_net(skb);
        struct dst_entry *dst;
        struct flowi6 fl6;
 
@@ -61,7 +46,7 @@ static bool nf_dup_ipv6_route(struct sk_buff *skb, const struct in6_addr *gw,
        return true;
 }
 
-void nf_dup_ipv6(struct sk_buff *skb, unsigned int hooknum,
+void nf_dup_ipv6(struct net *net, struct sk_buff *skb, unsigned int hooknum,
                 const struct in6_addr *gw, int oif)
 {
        if (this_cpu_read(nf_skb_duplicated))
@@ -81,7 +66,7 @@ void nf_dup_ipv6(struct sk_buff *skb, unsigned int hooknum,
                struct ipv6hdr *iph = ipv6_hdr(skb);
                --iph->hop_limit;
        }
-       if (nf_dup_ipv6_route(skb, gw, oif)) {
+       if (nf_dup_ipv6_route(net, skb, gw, oif)) {
                __this_cpu_write(nf_skb_duplicated, true);
                ip6_local_out(skb);
                __this_cpu_write(nf_skb_duplicated, false);
index c81204faf15d9fbb9b5577b86e63e4cf0b5c54c8..8bfd470cbe726678c5da89dff4f24b9fa089b356 100644 (file)
@@ -28,7 +28,7 @@ static void nft_dup_ipv6_eval(const struct nft_expr *expr,
        struct in6_addr *gw = (struct in6_addr *)&regs->data[priv->sreg_addr];
        int oif = regs->data[priv->sreg_dev];
 
-       nf_dup_ipv6(pkt->skb, pkt->hook, gw, oif);
+       nf_dup_ipv6(pkt->net, pkt->skb, pkt->hook, gw, oif);
 }
 
 static int nft_dup_ipv6_init(const struct nft_ctx *ctx,
index fd980aa7715dc76d66b75bf53b158c07b3a147ed..899b06115fc53c87ea34eb1bf975666e1992ca98 100644 (file)
@@ -32,7 +32,7 @@ tee_tg4(struct sk_buff *skb, const struct xt_action_param *par)
 {
        const struct xt_tee_tginfo *info = par->targinfo;
 
-       nf_dup_ipv4(skb, par->hooknum, &info->gw.in, info->priv->oif);
+       nf_dup_ipv4(par->net, skb, par->hooknum, &info->gw.in, info->priv->oif);
 
        return XT_CONTINUE;
 }
@@ -43,7 +43,7 @@ tee_tg6(struct sk_buff *skb, const struct xt_action_param *par)
 {
        const struct xt_tee_tginfo *info = par->targinfo;
 
-       nf_dup_ipv6(skb, par->hooknum, &info->gw.in6, info->priv->oif);
+       nf_dup_ipv6(par->net, skb, par->hooknum, &info->gw.in6, info->priv->oif);
 
        return XT_CONTINUE;
 }