Dear all,
Does somebody have some knowledge about /net/ipv6/sit.c? I try to modify sit.c to cater for my requirements: I want to use IPv4+UDP+IPv6+IPv6 Data to encapsulate IPv6 packets, thus every IPv6 packet will be able to pass through some IPv4 NATs. As you know, sit.c is to encapsulate IPv6 packets in IPv4 payload, so it seems that I only need to add UDP layer between IPv4 header and IPv6 header in the encapsulated packet. But I got problem when I receive an IPv4 UDP packet. I wanna de-encapsulate the packet and send UDP data (which is an IPv6 packet) to IPv6 upper layer protocol use netif_rx( ). But it seems that I can not set the correspondent field in sk_buff struct correctly. In sit.c, line 396, when 6to4 interface receive a IPv4 packet: ***************** if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) goto out; ... skb->mac.raw= skb->nh.raw; skb->nh.raw= skb-> data; ... netif_rx(skb); So in my modified sit.c, I modify the source code to : ***************** if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) goto out; ... skb->mac.raw= skb->nh.raw; skb->nh.raw= skb->data+sizeof(struct udphdr); skb->protocol = __constant_htons(0x86DD); ... netif_rx(skb); ... But it seems that I can not send the IPv6 packet to IPv6 upper layer, while the ICMPv4 UDP port unreachable message is sent to the sender. I am confused :( Any kind of help is appreciated. Zhanghaofeng Sep 3rd, 2003 |