[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <52142209.6030406@cn.fujitsu.com>
Date: Wed, 21 Aug 2013 10:12:25 +0800
From: Duan Jiong <duanj.fnst@...fujitsu.com>
To: hannes@...essinduktion.org
CC: davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: [PATCH V2] ipv6: handle Redirect ICMP Message with no Redirected
Header option
于 2013年08月20日 19:50, Hannes Frederic Sowa 写道:
> On Tue, Aug 20, 2013 at 03:13:41PM +0800, Duan Jiong wrote:
>> --- a/net/ipv6/route.c
>> +++ b/net/ipv6/route.c
>> @@ -1178,6 +1178,28 @@ void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
>> }
>> EXPORT_SYMBOL_GPL(ip6_redirect);
>>
>> +void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
>> + u32 mark)
>> +{
>> + const struct ipv6hdr *iph = (struct ipv6hdr *)skb_network_header(skb);
>
> Was there a problem with ipv6_hdr?
>
Actually ipv6_hdr is better, and i will modify it.
>> + const struct rd_msg *msg = (struct rd_msg *)skb_transport_header(skb);
>> + struct dst_entry *dst;
>> + struct flowi6 fl6;
>> +
>> + memset(&fl6, 0, sizeof(fl6));
>> + fl6.flowi6_oif = oif;
>> + fl6.flowi6_mark = mark;
>> + fl6.flowi6_flags = 0;
>> + fl6.daddr = msg->dest;
>> + fl6.saddr = iph->daddr;
>> +
>> + dst = ip6_route_output(net, NULL, &fl6);
>> + if (!dst->error)
>> + rt6_do_redirect(dst, NULL, skb);
>> + dst_release(dst);
>> +}
>> +EXPORT_SYMBOL_GPL(ip6_redirect_no_header);
>> +
>> void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
>> {
>> ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark);
>
> Introducing a new function here is the right thing. Maybe you could have
> a look how these redirects could be fed to raw sockets, too?
>
Because of no Redirected Header option, so we don't have enough
information to find out the related raw socket. So, there is no need
to deal with that condition.
Thanks,
Duan
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists