You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[SK_BUFF]: Introduce ipv6_hdr(), remove skb->nh.ipv6h
Now the skb->nh union has just one member, .raw, i.e. it is just like the
skb->mac union, strange, no? I'm just leaving it like that till the transport
layer is done with, when we'll rename skb->mac.raw to skb->mac_header (or
->mac_header_offset?), ditto for ->{h,nh}.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d0a92be05e
commit
0660e03f6b
@@ -372,7 +372,7 @@ static struct net_device *setup_pre_routing(struct sk_buff *skb)
|
||||
/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
|
||||
static int check_hbh_len(struct sk_buff *skb)
|
||||
{
|
||||
unsigned char *raw = (u8 *) (skb->nh.ipv6h + 1);
|
||||
unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
|
||||
u32 pkt_len;
|
||||
const unsigned char *nh = skb_network_header(skb);
|
||||
int off = raw - nh;
|
||||
@@ -400,7 +400,7 @@ static int check_hbh_len(struct sk_buff *skb)
|
||||
goto bad;
|
||||
pkt_len = ntohl(*(__be32 *) (nh + off + 2));
|
||||
if (pkt_len <= IPV6_MAXPLEN ||
|
||||
skb->nh.ipv6h->payload_len)
|
||||
ipv6_hdr(skb)->payload_len)
|
||||
goto bad;
|
||||
if (pkt_len > skb->len - sizeof(struct ipv6hdr))
|
||||
goto bad;
|
||||
@@ -441,7 +441,7 @@ static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
|
||||
if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
|
||||
goto inhdr_error;
|
||||
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
|
||||
if (hdr->version != 6)
|
||||
goto inhdr_error;
|
||||
|
||||
+1
-1
@@ -2736,7 +2736,7 @@ static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
|
||||
skb->protocol = protocol;
|
||||
skb->dev = odev;
|
||||
skb->pkt_type = PACKET_HOST;
|
||||
skb->nh.ipv6h = iph;
|
||||
skb->nh.raw = (unsigned char *)iph;
|
||||
skb->h.uh = udph;
|
||||
|
||||
if (pkt_dev->nfrags <= 0)
|
||||
|
||||
+17
-15
@@ -84,8 +84,8 @@ static inline __u32 secure_dccpv6_sequence_number(__be32 *saddr, __be32 *daddr,
|
||||
|
||||
static inline __u32 dccp_v6_init_sequence(struct sk_buff *skb)
|
||||
{
|
||||
return secure_dccpv6_sequence_number(skb->nh.ipv6h->daddr.s6_addr32,
|
||||
skb->nh.ipv6h->saddr.s6_addr32,
|
||||
return secure_dccpv6_sequence_number(ipv6_hdr(skb)->daddr.s6_addr32,
|
||||
ipv6_hdr(skb)->saddr.s6_addr32,
|
||||
dccp_hdr(skb)->dccph_dport,
|
||||
dccp_hdr(skb)->dccph_sport );
|
||||
|
||||
@@ -313,6 +313,7 @@ static void dccp_v6_reqsk_destructor(struct request_sock *req)
|
||||
static void dccp_v6_ctl_send_reset(struct sock *sk, struct sk_buff *rxskb)
|
||||
{
|
||||
struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
|
||||
struct ipv6hdr *rxip6h;
|
||||
const u32 dccp_hdr_reset_len = sizeof(struct dccp_hdr) +
|
||||
sizeof(struct dccp_hdr_ext) +
|
||||
sizeof(struct dccp_hdr_reset);
|
||||
@@ -352,12 +353,13 @@ static void dccp_v6_ctl_send_reset(struct sock *sk, struct sk_buff *rxskb)
|
||||
dccp_hdr_set_ack(dccp_hdr_ack_bits(skb), DCCP_SKB_CB(rxskb)->dccpd_seq);
|
||||
|
||||
dccp_csum_outgoing(skb);
|
||||
dh->dccph_checksum = dccp_v6_csum_finish(skb, &rxskb->nh.ipv6h->saddr,
|
||||
&rxskb->nh.ipv6h->daddr);
|
||||
rxip6h = ipv6_hdr(rxskb);
|
||||
dh->dccph_checksum = dccp_v6_csum_finish(skb, &rxip6h->saddr,
|
||||
&rxip6h->daddr);
|
||||
|
||||
memset(&fl, 0, sizeof(fl));
|
||||
ipv6_addr_copy(&fl.fl6_dst, &rxskb->nh.ipv6h->saddr);
|
||||
ipv6_addr_copy(&fl.fl6_src, &rxskb->nh.ipv6h->daddr);
|
||||
ipv6_addr_copy(&fl.fl6_dst, &rxip6h->saddr);
|
||||
ipv6_addr_copy(&fl.fl6_src, &rxip6h->daddr);
|
||||
|
||||
fl.proto = IPPROTO_DCCP;
|
||||
fl.oif = inet6_iif(rxskb);
|
||||
@@ -390,7 +392,7 @@ static struct request_sock_ops dccp6_request_sock_ops = {
|
||||
static struct sock *dccp_v6_hnd_req(struct sock *sk,struct sk_buff *skb)
|
||||
{
|
||||
const struct dccp_hdr *dh = dccp_hdr(skb);
|
||||
const struct ipv6hdr *iph = skb->nh.ipv6h;
|
||||
const struct ipv6hdr *iph = ipv6_hdr(skb);
|
||||
struct sock *nsk;
|
||||
struct request_sock **prev;
|
||||
/* Find possible connection requests. */
|
||||
@@ -460,8 +462,8 @@ static int dccp_v6_conn_request(struct sock *sk, struct sk_buff *skb)
|
||||
goto drop_and_free;
|
||||
|
||||
ireq6 = inet6_rsk(req);
|
||||
ipv6_addr_copy(&ireq6->rmt_addr, &skb->nh.ipv6h->saddr);
|
||||
ipv6_addr_copy(&ireq6->loc_addr, &skb->nh.ipv6h->daddr);
|
||||
ipv6_addr_copy(&ireq6->rmt_addr, &ipv6_hdr(skb)->saddr);
|
||||
ipv6_addr_copy(&ireq6->loc_addr, &ipv6_hdr(skb)->daddr);
|
||||
ireq6->pktopts = NULL;
|
||||
|
||||
if (ipv6_opt_accepted(sk, skb) ||
|
||||
@@ -546,7 +548,7 @@ static struct sock *dccp_v6_request_recv_sock(struct sock *sk,
|
||||
newnp->pktoptions = NULL;
|
||||
newnp->opt = NULL;
|
||||
newnp->mcast_oif = inet6_iif(skb);
|
||||
newnp->mcast_hops = skb->nh.ipv6h->hop_limit;
|
||||
newnp->mcast_hops = ipv6_hdr(skb)->hop_limit;
|
||||
|
||||
/*
|
||||
* No need to charge this sock to the relevant IPv6 refcnt debug socks count
|
||||
@@ -653,7 +655,7 @@ static struct sock *dccp_v6_request_recv_sock(struct sock *sk,
|
||||
}
|
||||
newnp->opt = NULL;
|
||||
newnp->mcast_oif = inet6_iif(skb);
|
||||
newnp->mcast_hops = skb->nh.ipv6h->hop_limit;
|
||||
newnp->mcast_hops = ipv6_hdr(skb)->hop_limit;
|
||||
|
||||
/*
|
||||
* Clone native IPv6 options from listening socket (if any)
|
||||
@@ -826,8 +828,8 @@ static int dccp_v6_rcv(struct sk_buff **pskb)
|
||||
goto discard_it;
|
||||
|
||||
/* Step 1: If header checksum is incorrect, drop packet and return. */
|
||||
if (dccp_v6_csum_finish(skb, &skb->nh.ipv6h->saddr,
|
||||
&skb->nh.ipv6h->daddr)) {
|
||||
if (dccp_v6_csum_finish(skb, &ipv6_hdr(skb)->saddr,
|
||||
&ipv6_hdr(skb)->daddr)) {
|
||||
DCCP_WARN("dropped packet with invalid checksum\n");
|
||||
goto discard_it;
|
||||
}
|
||||
@@ -844,9 +846,9 @@ static int dccp_v6_rcv(struct sk_buff **pskb)
|
||||
|
||||
/* Step 2:
|
||||
* Look up flow ID in table and get corresponding socket */
|
||||
sk = __inet6_lookup(&dccp_hashinfo, &skb->nh.ipv6h->saddr,
|
||||
sk = __inet6_lookup(&dccp_hashinfo, &ipv6_hdr(skb)->saddr,
|
||||
dh->dccph_sport,
|
||||
&skb->nh.ipv6h->daddr, ntohs(dh->dccph_dport),
|
||||
&ipv6_hdr(skb)->daddr, ntohs(dh->dccph_dport),
|
||||
inet6_iif(skb));
|
||||
/*
|
||||
* Step 2:
|
||||
|
||||
+2
-2
@@ -535,7 +535,7 @@ static inline void ipgre_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
|
||||
if (skb->protocol == htons(ETH_P_IP)) {
|
||||
IP_ECN_set_ce(ip_hdr(skb));
|
||||
} else if (skb->protocol == htons(ETH_P_IPV6)) {
|
||||
IP6_ECN_set_ce(skb->nh.ipv6h);
|
||||
IP6_ECN_set_ce(ipv6_hdr(skb));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -721,7 +721,7 @@ static int ipgre_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
addr_type = ipv6_addr_type(addr6);
|
||||
|
||||
if (addr_type == IPV6_ADDR_ANY) {
|
||||
addr6 = &skb->nh.ipv6h->daddr;
|
||||
addr6 = &ipv6_hdr(skb)->daddr;
|
||||
addr_type = ipv6_addr_type(addr6);
|
||||
}
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ static inline void ipip_ecn_decapsulate(struct sk_buff *skb)
|
||||
static inline void ipip6_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
|
||||
{
|
||||
if (INET_ECN_is_ce(iph->tos))
|
||||
IP6_ECN_set_ce(skb->nh.ipv6h);
|
||||
IP6_ECN_set_ce(ipv6_hdr(skb));
|
||||
}
|
||||
|
||||
/* Add encapsulation header.
|
||||
|
||||
+8
-6
@@ -325,6 +325,7 @@ static int ah6_input(struct xfrm_state *x, struct sk_buff *skb)
|
||||
*/
|
||||
|
||||
struct ipv6_auth_hdr *ah;
|
||||
struct ipv6hdr *ip6h;
|
||||
struct ah_data *ahp;
|
||||
unsigned char *tmp_hdr = NULL;
|
||||
u16 hdr_len;
|
||||
@@ -357,13 +358,14 @@ static int ah6_input(struct xfrm_state *x, struct sk_buff *skb)
|
||||
tmp_hdr = kmemdup(skb_network_header(skb), hdr_len, GFP_ATOMIC);
|
||||
if (!tmp_hdr)
|
||||
goto out;
|
||||
if (ipv6_clear_mutable_options(skb->nh.ipv6h, hdr_len, XFRM_POLICY_IN))
|
||||
ip6h = ipv6_hdr(skb);
|
||||
if (ipv6_clear_mutable_options(ip6h, hdr_len, XFRM_POLICY_IN))
|
||||
goto free_out;
|
||||
skb->nh.ipv6h->priority = 0;
|
||||
skb->nh.ipv6h->flow_lbl[0] = 0;
|
||||
skb->nh.ipv6h->flow_lbl[1] = 0;
|
||||
skb->nh.ipv6h->flow_lbl[2] = 0;
|
||||
skb->nh.ipv6h->hop_limit = 0;
|
||||
ip6h->priority = 0;
|
||||
ip6h->flow_lbl[0] = 0;
|
||||
ip6h->flow_lbl[1] = 0;
|
||||
ip6h->flow_lbl[2] = 0;
|
||||
ip6h->hop_limit = 0;
|
||||
|
||||
{
|
||||
u8 auth_data[MAX_AH_AUTH_LEN];
|
||||
|
||||
+8
-8
@@ -254,7 +254,7 @@ void ipv6_local_error(struct sock *sk, int err, struct flowi *fl, u32 info)
|
||||
|
||||
skb_put(skb, sizeof(struct ipv6hdr));
|
||||
skb_reset_network_header(skb);
|
||||
iph = skb->nh.ipv6h;
|
||||
iph = ipv6_hdr(skb);
|
||||
ipv6_addr_copy(&iph->daddr, &fl->fl6_dst);
|
||||
|
||||
serr = SKB_EXT_ERR(skb);
|
||||
@@ -340,7 +340,7 @@ int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len)
|
||||
sin->sin6_flowinfo = 0;
|
||||
sin->sin6_scope_id = 0;
|
||||
if (serr->ee.ee_origin == SO_EE_ORIGIN_ICMP6) {
|
||||
ipv6_addr_copy(&sin->sin6_addr, &skb->nh.ipv6h->saddr);
|
||||
ipv6_addr_copy(&sin->sin6_addr, &ipv6_hdr(skb)->saddr);
|
||||
if (np->rxopt.all)
|
||||
datagram_recv_ctl(sk, msg, skb);
|
||||
if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
|
||||
@@ -391,17 +391,17 @@ int datagram_recv_ctl(struct sock *sk, struct msghdr *msg, struct sk_buff *skb)
|
||||
struct in6_pktinfo src_info;
|
||||
|
||||
src_info.ipi6_ifindex = opt->iif;
|
||||
ipv6_addr_copy(&src_info.ipi6_addr, &skb->nh.ipv6h->daddr);
|
||||
ipv6_addr_copy(&src_info.ipi6_addr, &ipv6_hdr(skb)->daddr);
|
||||
put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
|
||||
}
|
||||
|
||||
if (np->rxopt.bits.rxhlim) {
|
||||
int hlim = skb->nh.ipv6h->hop_limit;
|
||||
int hlim = ipv6_hdr(skb)->hop_limit;
|
||||
put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
|
||||
}
|
||||
|
||||
if (np->rxopt.bits.rxtclass) {
|
||||
int tclass = (ntohl(*(__be32 *)skb->nh.ipv6h) >> 20) & 0xff;
|
||||
int tclass = (ntohl(*(__be32 *)ipv6_hdr(skb)) >> 20) & 0xff;
|
||||
put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
|
||||
}
|
||||
|
||||
@@ -428,7 +428,7 @@ int datagram_recv_ctl(struct sock *sk, struct msghdr *msg, struct sk_buff *skb)
|
||||
* IPV6_RECVDSTOPTS is more generic. --yoshfuji
|
||||
*/
|
||||
unsigned int off = sizeof(struct ipv6hdr);
|
||||
u8 nexthdr = skb->nh.ipv6h->nexthdr;
|
||||
u8 nexthdr = ipv6_hdr(skb)->nexthdr;
|
||||
|
||||
while (off <= opt->lastopt) {
|
||||
unsigned len;
|
||||
@@ -466,11 +466,11 @@ int datagram_recv_ctl(struct sock *sk, struct msghdr *msg, struct sk_buff *skb)
|
||||
struct in6_pktinfo src_info;
|
||||
|
||||
src_info.ipi6_ifindex = opt->iif;
|
||||
ipv6_addr_copy(&src_info.ipi6_addr, &skb->nh.ipv6h->daddr);
|
||||
ipv6_addr_copy(&src_info.ipi6_addr, &ipv6_hdr(skb)->daddr);
|
||||
put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
|
||||
}
|
||||
if (np->rxopt.bits.rxohlim) {
|
||||
int hlim = skb->nh.ipv6h->hop_limit;
|
||||
int hlim = ipv6_hdr(skb)->hop_limit;
|
||||
put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
|
||||
}
|
||||
if (np->rxopt.bits.ohopopts && opt->hop) {
|
||||
|
||||
+1
-1
@@ -191,7 +191,7 @@ static int esp6_input(struct xfrm_state *x, struct sk_buff *skb)
|
||||
skb->ip_summed = CHECKSUM_NONE;
|
||||
|
||||
esph = (struct ipv6_esp_hdr*)skb->data;
|
||||
iph = skb->nh.ipv6h;
|
||||
iph = ipv6_hdr(skb);
|
||||
|
||||
/* Get ivec. This can be wrong, check against another impls. */
|
||||
if (esp->conf.ivlen)
|
||||
|
||||
+10
-10
@@ -125,7 +125,7 @@ static int ip6_tlvopt_unknown(struct sk_buff **skbp, int optoff)
|
||||
/* Actually, it is redundant check. icmp_send
|
||||
will recheck in any case.
|
||||
*/
|
||||
if (ipv6_addr_is_multicast(&skb->nh.ipv6h->daddr))
|
||||
if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr))
|
||||
break;
|
||||
case 2: /* send ICMP PARM PROB regardless and drop packet */
|
||||
icmpv6_param_prob(skb, ICMPV6_UNK_OPTION, optoff);
|
||||
@@ -202,7 +202,7 @@ static int ipv6_dest_hao(struct sk_buff **skbp, int optoff)
|
||||
struct sk_buff *skb = *skbp;
|
||||
struct ipv6_destopt_hao *hao;
|
||||
struct inet6_skb_parm *opt = IP6CB(skb);
|
||||
struct ipv6hdr *ipv6h = skb->nh.ipv6h;
|
||||
struct ipv6hdr *ipv6h = ipv6_hdr(skb);
|
||||
struct in6_addr tmp_addr;
|
||||
int ret;
|
||||
|
||||
@@ -248,7 +248,7 @@ static int ipv6_dest_hao(struct sk_buff **skbp, int optoff)
|
||||
*skbp = skb = skb2;
|
||||
hao = (struct ipv6_destopt_hao *)(skb_network_header(skb2) +
|
||||
optoff);
|
||||
ipv6h = skb2->nh.ipv6h;
|
||||
ipv6h = ipv6_hdr(skb2);
|
||||
}
|
||||
|
||||
if (skb->ip_summed == CHECKSUM_COMPLETE)
|
||||
@@ -414,7 +414,7 @@ static int ipv6_rthdr_rcv(struct sk_buff **skbp)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (ipv6_addr_is_multicast(&skb->nh.ipv6h->daddr) ||
|
||||
if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr) ||
|
||||
skb->pkt_type != PACKET_HOST) {
|
||||
IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
|
||||
IPSTATS_MIB_INADDRERRORS);
|
||||
@@ -522,7 +522,7 @@ looped_back:
|
||||
#ifdef CONFIG_IPV6_MIP6
|
||||
case IPV6_SRCRT_TYPE_2:
|
||||
if (xfrm6_input_addr(skb, (xfrm_address_t *)addr,
|
||||
(xfrm_address_t *)&skb->nh.ipv6h->saddr,
|
||||
(xfrm_address_t *)&ipv6_hdr(skb)->saddr,
|
||||
IPPROTO_ROUTING) < 0) {
|
||||
IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
|
||||
IPSTATS_MIB_INADDRERRORS);
|
||||
@@ -549,8 +549,8 @@ looped_back:
|
||||
}
|
||||
|
||||
ipv6_addr_copy(&daddr, addr);
|
||||
ipv6_addr_copy(addr, &skb->nh.ipv6h->daddr);
|
||||
ipv6_addr_copy(&skb->nh.ipv6h->daddr, &daddr);
|
||||
ipv6_addr_copy(addr, &ipv6_hdr(skb)->daddr);
|
||||
ipv6_addr_copy(&ipv6_hdr(skb)->daddr, &daddr);
|
||||
|
||||
dst_release(xchg(&skb->dst, NULL));
|
||||
ip6_route_input(skb);
|
||||
@@ -561,7 +561,7 @@ looped_back:
|
||||
}
|
||||
|
||||
if (skb->dst->dev->flags&IFF_LOOPBACK) {
|
||||
if (skb->nh.ipv6h->hop_limit <= 1) {
|
||||
if (ipv6_hdr(skb)->hop_limit <= 1) {
|
||||
IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
|
||||
IPSTATS_MIB_INHDRERRORS);
|
||||
icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT,
|
||||
@@ -569,7 +569,7 @@ looped_back:
|
||||
kfree_skb(skb);
|
||||
return -1;
|
||||
}
|
||||
skb->nh.ipv6h->hop_limit--;
|
||||
ipv6_hdr(skb)->hop_limit--;
|
||||
goto looped_back;
|
||||
}
|
||||
|
||||
@@ -698,7 +698,7 @@ static int ipv6_hop_jumbo(struct sk_buff **skbp, int optoff)
|
||||
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff+2);
|
||||
return 0;
|
||||
}
|
||||
if (skb->nh.ipv6h->payload_len) {
|
||||
if (ipv6_hdr(skb)->payload_len) {
|
||||
IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
|
||||
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff);
|
||||
return 0;
|
||||
|
||||
+10
-10
@@ -129,9 +129,9 @@ void icmpv6_param_prob(struct sk_buff *skb, int code, int pos)
|
||||
|
||||
static int is_ineligible(struct sk_buff *skb)
|
||||
{
|
||||
int ptr = (u8*)(skb->nh.ipv6h+1) - skb->data;
|
||||
int ptr = (u8 *)(ipv6_hdr(skb) + 1) - skb->data;
|
||||
int len = skb->len - ptr;
|
||||
__u8 nexthdr = skb->nh.ipv6h->nexthdr;
|
||||
__u8 nexthdr = ipv6_hdr(skb)->nexthdr;
|
||||
|
||||
if (len < 0)
|
||||
return 1;
|
||||
@@ -275,7 +275,7 @@ static int icmpv6_getfrag(void *from, char *to, int offset, int len, int odd, st
|
||||
#ifdef CONFIG_IPV6_MIP6
|
||||
static void mip6_addr_swap(struct sk_buff *skb)
|
||||
{
|
||||
struct ipv6hdr *iph = skb->nh.ipv6h;
|
||||
struct ipv6hdr *iph = ipv6_hdr(skb);
|
||||
struct inet6_skb_parm *opt = IP6CB(skb);
|
||||
struct ipv6_destopt_hao *hao;
|
||||
struct in6_addr tmp;
|
||||
@@ -303,7 +303,7 @@ void icmpv6_send(struct sk_buff *skb, int type, int code, __u32 info,
|
||||
struct net_device *dev)
|
||||
{
|
||||
struct inet6_dev *idev = NULL;
|
||||
struct ipv6hdr *hdr = skb->nh.ipv6h;
|
||||
struct ipv6hdr *hdr = ipv6_hdr(skb);
|
||||
struct sock *sk;
|
||||
struct ipv6_pinfo *np;
|
||||
struct in6_addr *saddr = NULL;
|
||||
@@ -485,7 +485,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb)
|
||||
int hlimit;
|
||||
int tclass;
|
||||
|
||||
saddr = &skb->nh.ipv6h->daddr;
|
||||
saddr = &ipv6_hdr(skb)->daddr;
|
||||
|
||||
if (!ipv6_unicast_destination(skb))
|
||||
saddr = NULL;
|
||||
@@ -495,7 +495,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb)
|
||||
|
||||
memset(&fl, 0, sizeof(fl));
|
||||
fl.proto = IPPROTO_ICMPV6;
|
||||
ipv6_addr_copy(&fl.fl6_dst, &skb->nh.ipv6h->saddr);
|
||||
ipv6_addr_copy(&fl.fl6_dst, &ipv6_hdr(skb)->saddr);
|
||||
if (saddr)
|
||||
ipv6_addr_copy(&fl.fl6_src, saddr);
|
||||
fl.oif = skb->dev->ifindex;
|
||||
@@ -583,8 +583,8 @@ static void icmpv6_notify(struct sk_buff *skb, int type, int code, __be32 info)
|
||||
if (!pskb_may_pull(skb, inner_offset+8))
|
||||
return;
|
||||
|
||||
saddr = &skb->nh.ipv6h->saddr;
|
||||
daddr = &skb->nh.ipv6h->daddr;
|
||||
saddr = &ipv6_hdr(skb)->saddr;
|
||||
daddr = &ipv6_hdr(skb)->daddr;
|
||||
|
||||
/* BUGGG_FUTURE: we should try to parse exthdrs in this packet.
|
||||
Without this we will not able f.e. to make source routed
|
||||
@@ -628,8 +628,8 @@ static int icmpv6_rcv(struct sk_buff **pskb)
|
||||
|
||||
ICMP6_INC_STATS_BH(idev, ICMP6_MIB_INMSGS);
|
||||
|
||||
saddr = &skb->nh.ipv6h->saddr;
|
||||
daddr = &skb->nh.ipv6h->daddr;
|
||||
saddr = &ipv6_hdr(skb)->saddr;
|
||||
daddr = &ipv6_hdr(skb)->daddr;
|
||||
|
||||
/* Perform checksum. */
|
||||
switch (skb->ip_summed) {
|
||||
|
||||
@@ -96,7 +96,7 @@ int ipv6_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt
|
||||
if (unlikely(!pskb_may_pull(skb, sizeof(*hdr))))
|
||||
goto err;
|
||||
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
|
||||
if (hdr->version != 6)
|
||||
goto err;
|
||||
@@ -116,7 +116,7 @@ int ipv6_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt
|
||||
IP6_INC_STATS_BH(idev, IPSTATS_MIB_INHDRERRORS);
|
||||
goto drop;
|
||||
}
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
}
|
||||
|
||||
if (hdr->nexthdr == NEXTHDR_HOP) {
|
||||
@@ -183,7 +183,7 @@ resubmit:
|
||||
|
||||
skb_postpull_rcsum(skb, skb_network_header(skb),
|
||||
skb->h.raw - skb->nh.raw);
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
if (ipv6_addr_is_multicast(&hdr->daddr) &&
|
||||
!ipv6_chk_mcast_addr(skb->dev, &hdr->daddr,
|
||||
&hdr->saddr) &&
|
||||
@@ -234,7 +234,7 @@ int ip6_mc_input(struct sk_buff *skb)
|
||||
|
||||
IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_INMCASTPKTS);
|
||||
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
deliver = likely(!(skb->dev->flags & (IFF_PROMISC|IFF_ALLMULTI))) ||
|
||||
ipv6_chk_mcast_addr(skb->dev, &hdr->daddr, NULL);
|
||||
|
||||
|
||||
+21
-16
@@ -107,13 +107,13 @@ static int ip6_output2(struct sk_buff *skb)
|
||||
skb->protocol = htons(ETH_P_IPV6);
|
||||
skb->dev = dev;
|
||||
|
||||
if (ipv6_addr_is_multicast(&skb->nh.ipv6h->daddr)) {
|
||||
if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
|
||||
struct ipv6_pinfo* np = skb->sk ? inet6_sk(skb->sk) : NULL;
|
||||
struct inet6_dev *idev = ip6_dst_idev(skb->dst);
|
||||
|
||||
if (!(dev->flags & IFF_LOOPBACK) && (!np || np->mc_loop) &&
|
||||
ipv6_chk_mcast_addr(dev, &skb->nh.ipv6h->daddr,
|
||||
&skb->nh.ipv6h->saddr)) {
|
||||
ipv6_chk_mcast_addr(dev, &ipv6_hdr(skb)->daddr,
|
||||
&ipv6_hdr(skb)->saddr)) {
|
||||
struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
|
||||
|
||||
/* Do not check for IFF_ALLMULTI; multicast routing
|
||||
@@ -124,7 +124,7 @@ static int ip6_output2(struct sk_buff *skb)
|
||||
newskb->dev,
|
||||
ip6_dev_loopback_xmit);
|
||||
|
||||
if (skb->nh.ipv6h->hop_limit == 0) {
|
||||
if (ipv6_hdr(skb)->hop_limit == 0) {
|
||||
IP6_INC_STATS(idev, IPSTATS_MIB_OUTDISCARDS);
|
||||
kfree_skb(skb);
|
||||
return 0;
|
||||
@@ -193,7 +193,7 @@ int ip6_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl,
|
||||
|
||||
skb_push(skb, sizeof(struct ipv6hdr));
|
||||
skb_reset_network_header(skb);
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
|
||||
/*
|
||||
* Fill in the IPv6 header
|
||||
@@ -263,8 +263,8 @@ int ip6_nd_hdr(struct sock *sk, struct sk_buff *skb, struct net_device *dev,
|
||||
|
||||
totlen = len + sizeof(struct ipv6hdr);
|
||||
|
||||
hdr = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
|
||||
skb->nh.ipv6h = hdr;
|
||||
skb->nh.raw = skb_put(skb, sizeof(struct ipv6hdr));
|
||||
hdr = ipv6_hdr(skb);
|
||||
|
||||
*(__be32*)hdr = htonl(0x60000000);
|
||||
|
||||
@@ -309,7 +309,7 @@ static int ip6_call_ra_chain(struct sk_buff *skb, int sel)
|
||||
|
||||
static int ip6_forward_proxy_check(struct sk_buff *skb)
|
||||
{
|
||||
struct ipv6hdr *hdr = skb->nh.ipv6h;
|
||||
struct ipv6hdr *hdr = ipv6_hdr(skb);
|
||||
u8 nexthdr = hdr->nexthdr;
|
||||
int offset;
|
||||
|
||||
@@ -366,7 +366,7 @@ static inline int ip6_forward_finish(struct sk_buff *skb)
|
||||
int ip6_forward(struct sk_buff *skb)
|
||||
{
|
||||
struct dst_entry *dst = skb->dst;
|
||||
struct ipv6hdr *hdr = skb->nh.ipv6h;
|
||||
struct ipv6hdr *hdr = ipv6_hdr(skb);
|
||||
struct inet6_skb_parm *opt = IP6CB(skb);
|
||||
|
||||
if (ipv6_devconf.forwarding == 0)
|
||||
@@ -475,7 +475,7 @@ int ip6_forward(struct sk_buff *skb)
|
||||
goto drop;
|
||||
}
|
||||
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
|
||||
/* Mangling hops number delayed to point after skb COW */
|
||||
|
||||
@@ -527,10 +527,11 @@ static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
|
||||
int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr)
|
||||
{
|
||||
u16 offset = sizeof(struct ipv6hdr);
|
||||
struct ipv6_opt_hdr *exthdr = (struct ipv6_opt_hdr*)(skb->nh.ipv6h + 1);
|
||||
struct ipv6_opt_hdr *exthdr =
|
||||
(struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
|
||||
unsigned int packet_len = skb->tail - skb_network_header(skb);
|
||||
int found_rhdr = 0;
|
||||
*nexthdr = &skb->nh.ipv6h->nexthdr;
|
||||
*nexthdr = &ipv6_hdr(skb)->nexthdr;
|
||||
|
||||
while (offset + 1 <= packet_len) {
|
||||
|
||||
@@ -643,7 +644,8 @@ static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *))
|
||||
first_len = skb_pagelen(skb);
|
||||
skb->data_len = first_len - skb_headlen(skb);
|
||||
skb->len = first_len;
|
||||
skb->nh.ipv6h->payload_len = htons(first_len - sizeof(struct ipv6hdr));
|
||||
ipv6_hdr(skb)->payload_len = htons(first_len -
|
||||
sizeof(struct ipv6hdr));
|
||||
|
||||
dst_hold(&rt->u.dst);
|
||||
|
||||
@@ -665,7 +667,9 @@ static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *))
|
||||
if (frag->next != NULL)
|
||||
fh->frag_off |= htons(IP6_MF);
|
||||
fh->identification = frag_id;
|
||||
frag->nh.ipv6h->payload_len = htons(frag->len - sizeof(struct ipv6hdr));
|
||||
ipv6_hdr(frag)->payload_len =
|
||||
htons(frag->len -
|
||||
sizeof(struct ipv6hdr));
|
||||
ip6_copy_metadata(frag, skb);
|
||||
}
|
||||
|
||||
@@ -779,7 +783,8 @@ slow_path:
|
||||
fh->frag_off = htons(offset);
|
||||
if (left > 0)
|
||||
fh->frag_off |= htons(IP6_MF);
|
||||
frag->nh.ipv6h->payload_len = htons(frag->len - sizeof(struct ipv6hdr));
|
||||
ipv6_hdr(frag)->payload_len = htons(frag->len -
|
||||
sizeof(struct ipv6hdr));
|
||||
|
||||
ptr += len;
|
||||
offset += len;
|
||||
@@ -1355,7 +1360,7 @@ int ip6_push_pending_frames(struct sock *sk)
|
||||
|
||||
skb_push(skb, sizeof(struct ipv6hdr));
|
||||
skb_reset_network_header(skb);
|
||||
hdr = skb->nh.ipv6h;
|
||||
hdr = ipv6_hdr(skb);
|
||||
|
||||
*(__be32*)hdr = fl->fl6_flowlabel |
|
||||
htonl(0x60000000 | ((int)np->cork.tclass << 20));
|
||||
|
||||
@@ -602,7 +602,7 @@ ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
|
||||
skb_reset_network_header(skb2);
|
||||
|
||||
/* Try to guess incoming interface */
|
||||
rt = rt6_lookup(&skb2->nh.ipv6h->saddr, NULL, 0, 0);
|
||||
rt = rt6_lookup(&ipv6_hdr(skb2)->saddr, NULL, 0, 0);
|
||||
|
||||
if (rt && rt->rt6i_dev)
|
||||
skb2->dev = rt->rt6i_dev;
|
||||
@@ -636,10 +636,10 @@ static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
|
||||
ipv6_copy_dscp(ipv6h, skb->nh.ipv6h);
|
||||
ipv6_copy_dscp(ipv6h, ipv6_hdr(skb));
|
||||
|
||||
if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
|
||||
IP6_ECN_set_ce(skb->nh.ipv6h);
|
||||
IP6_ECN_set_ce(ipv6_hdr(skb));
|
||||
}
|
||||
|
||||
static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
|
||||
@@ -679,10 +679,8 @@ static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
|
||||
struct ipv6hdr *ipv6h,
|
||||
struct sk_buff *skb))
|
||||
{
|
||||
struct ipv6hdr *ipv6h;
|
||||
struct ip6_tnl *t;
|
||||
|
||||
ipv6h = skb->nh.ipv6h;
|
||||
struct ipv6hdr *ipv6h = ipv6_hdr(skb);
|
||||
|
||||
read_lock(&ip6_tnl_lock);
|
||||
|
||||
@@ -836,7 +834,7 @@ static int ip6_tnl_xmit2(struct sk_buff *skb,
|
||||
{
|
||||
struct ip6_tnl *t = netdev_priv(dev);
|
||||
struct net_device_stats *stats = &t->stat;
|
||||
struct ipv6hdr *ipv6h = skb->nh.ipv6h;
|
||||
struct ipv6hdr *ipv6h = ipv6_hdr(skb);
|
||||
struct ipv6_tel_txoption opt;
|
||||
struct dst_entry *dst;
|
||||
struct net_device *tdev;
|
||||
@@ -909,7 +907,7 @@ static int ip6_tnl_xmit2(struct sk_buff *skb,
|
||||
}
|
||||
skb_push(skb, sizeof(struct ipv6hdr));
|
||||
skb_reset_network_header(skb);
|
||||
ipv6h = skb->nh.ipv6h;
|
||||
ipv6h = ipv6_hdr(skb);
|
||||
*(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
|
||||
dsfield = INET_ECN_encapsulate(0, dsfield);
|
||||
ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
|
||||
@@ -983,7 +981,7 @@ static inline int
|
||||
ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct ip6_tnl *t = netdev_priv(dev);
|
||||
struct ipv6hdr *ipv6h = skb->nh.ipv6h;
|
||||
struct ipv6hdr *ipv6h = ipv6_hdr(skb);
|
||||
int encap_limit = -1;
|
||||
__u16 offset;
|
||||
struct flowi fl;
|
||||
|
||||
+1
-1
@@ -79,7 +79,7 @@ static int ipcomp6_input(struct xfrm_state *x, struct sk_buff *skb)
|
||||
skb->ip_summed = CHECKSUM_NONE;
|
||||
|
||||
/* Remove ipcomp header and decompress original payload */
|
||||
iph = skb->nh.ipv6h;
|
||||
iph = ipv6_hdr(skb);
|
||||
ipch = (void *)skb->data;
|
||||
skb->h.raw = skb->nh.raw + sizeof(*ipch);
|
||||
__skb_pull(skb, sizeof(*ipch));
|
||||
|
||||
@@ -101,7 +101,7 @@ static int ipv6_gso_send_check(struct sk_buff *skb)
|
||||
if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
|
||||
goto out;
|
||||
|
||||
ipv6h = skb->nh.ipv6h;
|
||||
ipv6h = ipv6_hdr(skb);
|
||||
__skb_pull(skb, sizeof(*ipv6h));
|
||||
err = -EPROTONOSUPPORT;
|
||||
|
||||
@@ -137,7 +137,7 @@ static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features)
|
||||
if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
|
||||
goto out;
|
||||
|
||||
ipv6h = skb->nh.ipv6h;
|
||||
ipv6h = ipv6_hdr(skb);
|
||||
__skb_pull(skb, sizeof(*ipv6h));
|
||||
segs = ERR_PTR(-EPROTONOSUPPORT);
|
||||
|
||||
@@ -153,7 +153,7 @@ static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features)
|
||||
goto out;
|
||||
|
||||
for (skb = segs; skb; skb = skb->next) {
|
||||
ipv6h = skb->nh.ipv6h;
|
||||
ipv6h = ipv6_hdr(skb);
|
||||
ipv6h->payload_len = htons(skb->len - skb->mac_len -
|
||||
sizeof(*ipv6h));
|
||||
}
|
||||
|
||||
+7
-8
@@ -1167,11 +1167,11 @@ int igmp6_event_query(struct sk_buff *skb)
|
||||
return -EINVAL;
|
||||
|
||||
/* compute payload length excluding extension headers */
|
||||
len = ntohs(skb->nh.ipv6h->payload_len) + sizeof(struct ipv6hdr);
|
||||
len -= (char *)skb->h.raw - (char *)skb->nh.ipv6h;
|
||||
len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
|
||||
len -= skb->h.raw - skb->nh.raw;
|
||||
|
||||
/* Drop queries with not link local source */
|
||||
if (!(ipv6_addr_type(&skb->nh.ipv6h->saddr)&IPV6_ADDR_LINKLOCAL))
|
||||
if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
|
||||
return -EINVAL;
|
||||
|
||||
idev = in6_dev_get(skb->dev);
|
||||
@@ -1303,7 +1303,7 @@ int igmp6_event_report(struct sk_buff *skb)
|
||||
hdr = (struct icmp6hdr*) skb->h.raw;
|
||||
|
||||
/* Drop reports with not link local source */
|
||||
addr_type = ipv6_addr_type(&skb->nh.ipv6h->saddr);
|
||||
addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
|
||||
if (addr_type != IPV6_ADDR_ANY &&
|
||||
!(addr_type&IPV6_ADDR_LINKLOCAL))
|
||||
return -EINVAL;
|
||||
@@ -1441,7 +1441,7 @@ static inline int mld_dev_queue_xmit2(struct sk_buff *skb)
|
||||
unsigned char ha[MAX_ADDR_LEN];
|
||||
int err;
|
||||
|
||||
ndisc_mc_map(&skb->nh.ipv6h->daddr, ha, dev, 1);
|
||||
ndisc_mc_map(&ipv6_hdr(skb)->daddr, ha, dev, 1);
|
||||
err = dev->hard_header(skb, dev, ETH_P_IPV6, ha, NULL, skb->len);
|
||||
if (err < 0) {
|
||||
kfree_skb(skb);
|
||||
@@ -1459,15 +1459,14 @@ static inline int mld_dev_queue_xmit(struct sk_buff *skb)
|
||||
|
||||
static void mld_sendpack(struct sk_buff *skb)
|
||||
{
|
||||
struct ipv6hdr *pip6 = skb->nh.ipv6h;
|
||||
struct ipv6hdr *pip6 = ipv6_hdr(skb);
|
||||
struct mld2_report *pmr = (struct mld2_report *)skb->h.raw;
|
||||
int payload_len, mldlen;
|
||||
struct inet6_dev *idev = in6_dev_get(skb->dev);
|
||||
int err;
|
||||
|
||||
IP6_INC_STATS(idev, IPSTATS_MIB_OUTREQUESTS);
|
||||
payload_len = skb->tail - (unsigned char *)skb->nh.ipv6h -
|
||||
sizeof(struct ipv6hdr);
|
||||
payload_len = skb->tail - skb_network_header(skb) - sizeof(*pip6);
|
||||
mldlen = skb->tail - skb->h.raw;
|
||||
pip6->payload_len = htons(payload_len);
|
||||
|
||||
|
||||
+11
-9
@@ -129,7 +129,7 @@ static struct mip6_report_rate_limiter mip6_report_rl = {
|
||||
|
||||
static int mip6_destopt_input(struct xfrm_state *x, struct sk_buff *skb)
|
||||
{
|
||||
struct ipv6hdr *iph = skb->nh.ipv6h;
|
||||
struct ipv6hdr *iph = ipv6_hdr(skb);
|
||||
struct ipv6_destopt_hdr *destopt = (struct ipv6_destopt_hdr *)skb->data;
|
||||
|
||||
if (!ipv6_addr_equal(&iph->saddr, (struct in6_addr *)x->coaddr) &&
|
||||
@@ -223,16 +223,16 @@ static int mip6_destopt_reject(struct xfrm_state *x, struct sk_buff *skb, struct
|
||||
|
||||
skb_get_timestamp(skb, &stamp);
|
||||
|
||||
if (!mip6_report_rl_allow(&stamp, &skb->nh.ipv6h->daddr,
|
||||
hao ? &hao->addr : &skb->nh.ipv6h->saddr,
|
||||
if (!mip6_report_rl_allow(&stamp, &ipv6_hdr(skb)->daddr,
|
||||
hao ? &hao->addr : &ipv6_hdr(skb)->saddr,
|
||||
opt->iif))
|
||||
goto out;
|
||||
|
||||
memset(&sel, 0, sizeof(sel));
|
||||
memcpy(&sel.daddr, (xfrm_address_t *)&skb->nh.ipv6h->daddr,
|
||||
memcpy(&sel.daddr, (xfrm_address_t *)&ipv6_hdr(skb)->daddr,
|
||||
sizeof(sel.daddr));
|
||||
sel.prefixlen_d = 128;
|
||||
memcpy(&sel.saddr, (xfrm_address_t *)&skb->nh.ipv6h->saddr,
|
||||
memcpy(&sel.saddr, (xfrm_address_t *)&ipv6_hdr(skb)->saddr,
|
||||
sizeof(sel.saddr));
|
||||
sel.prefixlen_s = 128;
|
||||
sel.family = AF_INET6;
|
||||
@@ -256,12 +256,13 @@ static int mip6_destopt_offset(struct xfrm_state *x, struct sk_buff *skb,
|
||||
u8 **nexthdr)
|
||||
{
|
||||
u16 offset = sizeof(struct ipv6hdr);
|
||||
struct ipv6_opt_hdr *exthdr = (struct ipv6_opt_hdr*)(skb->nh.ipv6h + 1);
|
||||
struct ipv6_opt_hdr *exthdr =
|
||||
(struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
|
||||
const unsigned char *nh = skb_network_header(skb);
|
||||
unsigned int packet_len = skb->tail - nh;
|
||||
int found_rhdr = 0;
|
||||
|
||||
*nexthdr = &skb->nh.ipv6h->nexthdr;
|
||||
*nexthdr = &ipv6_hdr(skb)->nexthdr;
|
||||
|
||||
while (offset + 1 <= packet_len) {
|
||||
|
||||
@@ -387,12 +388,13 @@ static int mip6_rthdr_offset(struct xfrm_state *x, struct sk_buff *skb,
|
||||
u8 **nexthdr)
|
||||
{
|
||||
u16 offset = sizeof(struct ipv6hdr);
|
||||
struct ipv6_opt_hdr *exthdr = (struct ipv6_opt_hdr*)(skb->nh.ipv6h + 1);
|
||||
struct ipv6_opt_hdr *exthdr =
|
||||
(struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
|
||||
const unsigned char *nh = skb_network_header(skb);
|
||||
unsigned int packet_len = skb->tail - nh;
|
||||
int found_rhdr = 0;
|
||||
|
||||
*nexthdr = &skb->nh.ipv6h->nexthdr;
|
||||
*nexthdr = &ipv6_hdr(skb)->nexthdr;
|
||||
|
||||
while (offset + 1 <= packet_len) {
|
||||
|
||||
|
||||
+25
-25
@@ -598,7 +598,7 @@ void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
|
||||
dev->addr_len, dev->type);
|
||||
|
||||
/* checksum */
|
||||
msg->icmph.icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr,
|
||||
msg->icmph.icmp6_cksum = csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
|
||||
daddr, len,
|
||||
IPPROTO_ICMPV6,
|
||||
csum_partial((__u8 *) msg,
|
||||
@@ -697,7 +697,7 @@ void ndisc_send_rs(struct net_device *dev, struct in6_addr *saddr,
|
||||
dev->addr_len, dev->type);
|
||||
|
||||
/* checksum */
|
||||
hdr->icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr, daddr, len,
|
||||
hdr->icmp6_cksum = csum_ipv6_magic(&ipv6_hdr(skb)->saddr, daddr, len,
|
||||
IPPROTO_ICMPV6,
|
||||
csum_partial((__u8 *) hdr, len, 0));
|
||||
|
||||
@@ -736,8 +736,8 @@ static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
|
||||
struct in6_addr *target = (struct in6_addr *)&neigh->primary_key;
|
||||
int probes = atomic_read(&neigh->probes);
|
||||
|
||||
if (skb && ipv6_chk_addr(&skb->nh.ipv6h->saddr, dev, 1))
|
||||
saddr = &skb->nh.ipv6h->saddr;
|
||||
if (skb && ipv6_chk_addr(&ipv6_hdr(skb)->saddr, dev, 1))
|
||||
saddr = &ipv6_hdr(skb)->saddr;
|
||||
|
||||
if ((probes -= neigh->parms->ucast_probes) < 0) {
|
||||
if (!(neigh->nud_state & NUD_VALID)) {
|
||||
@@ -761,8 +761,8 @@ static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
|
||||
static void ndisc_recv_ns(struct sk_buff *skb)
|
||||
{
|
||||
struct nd_msg *msg = (struct nd_msg *)skb->h.raw;
|
||||
struct in6_addr *saddr = &skb->nh.ipv6h->saddr;
|
||||
struct in6_addr *daddr = &skb->nh.ipv6h->daddr;
|
||||
struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
|
||||
struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
|
||||
u8 *lladdr = NULL;
|
||||
u32 ndoptlen = skb->tail - msg->opt;
|
||||
struct ndisc_options ndopts;
|
||||
@@ -939,8 +939,8 @@ out:
|
||||
static void ndisc_recv_na(struct sk_buff *skb)
|
||||
{
|
||||
struct nd_msg *msg = (struct nd_msg *)skb->h.raw;
|
||||
struct in6_addr *saddr = &skb->nh.ipv6h->saddr;
|
||||
struct in6_addr *daddr = &skb->nh.ipv6h->daddr;
|
||||
struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
|
||||
struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
|
||||
u8 *lladdr = NULL;
|
||||
u32 ndoptlen = skb->tail - msg->opt;
|
||||
struct ndisc_options ndopts;
|
||||
@@ -1044,7 +1044,7 @@ static void ndisc_recv_rs(struct sk_buff *skb)
|
||||
unsigned long ndoptlen = skb->len - sizeof(*rs_msg);
|
||||
struct neighbour *neigh;
|
||||
struct inet6_dev *idev;
|
||||
struct in6_addr *saddr = &skb->nh.ipv6h->saddr;
|
||||
struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
|
||||
struct ndisc_options ndopts;
|
||||
u8 *lladdr = NULL;
|
||||
|
||||
@@ -1110,7 +1110,7 @@ static void ndisc_router_discovery(struct sk_buff *skb)
|
||||
|
||||
optlen = (skb->tail - skb->h.raw) - sizeof(struct ra_msg);
|
||||
|
||||
if (!(ipv6_addr_type(&skb->nh.ipv6h->saddr) & IPV6_ADDR_LINKLOCAL)) {
|
||||
if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
|
||||
ND_PRINTK2(KERN_WARNING
|
||||
"ICMPv6 RA: source address is not link-local.\n");
|
||||
return;
|
||||
@@ -1176,7 +1176,7 @@ static void ndisc_router_discovery(struct sk_buff *skb)
|
||||
pref = ICMPV6_ROUTER_PREF_MEDIUM;
|
||||
#endif
|
||||
|
||||
rt = rt6_get_dflt_router(&skb->nh.ipv6h->saddr, skb->dev);
|
||||
rt = rt6_get_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev);
|
||||
|
||||
if (rt)
|
||||
neigh = rt->rt6i_nexthop;
|
||||
@@ -1191,7 +1191,7 @@ static void ndisc_router_discovery(struct sk_buff *skb)
|
||||
ND_PRINTK3(KERN_DEBUG
|
||||
"ICMPv6 RA: adding default router.\n");
|
||||
|
||||
rt = rt6_add_dflt_router(&skb->nh.ipv6h->saddr, skb->dev, pref);
|
||||
rt = rt6_add_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev, pref);
|
||||
if (rt == NULL) {
|
||||
ND_PRINTK0(KERN_ERR
|
||||
"ICMPv6 RA: %s() failed to add default route.\n",
|
||||
@@ -1263,7 +1263,7 @@ skip_defrtr:
|
||||
*/
|
||||
|
||||
if (!neigh)
|
||||
neigh = __neigh_lookup(&nd_tbl, &skb->nh.ipv6h->saddr,
|
||||
neigh = __neigh_lookup(&nd_tbl, &ipv6_hdr(skb)->saddr,
|
||||
skb->dev, 1);
|
||||
if (neigh) {
|
||||
u8 *lladdr = NULL;
|
||||
@@ -1292,7 +1292,7 @@ skip_defrtr:
|
||||
if (((struct route_info *)p)->prefix_len > in6_dev->cnf.accept_ra_rt_info_max_plen)
|
||||
continue;
|
||||
rt6_route_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3,
|
||||
&skb->nh.ipv6h->saddr);
|
||||
&ipv6_hdr(skb)->saddr);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -1351,7 +1351,7 @@ static void ndisc_redirect_rcv(struct sk_buff *skb)
|
||||
int optlen;
|
||||
u8 *lladdr = NULL;
|
||||
|
||||
if (!(ipv6_addr_type(&skb->nh.ipv6h->saddr) & IPV6_ADDR_LINKLOCAL)) {
|
||||
if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
|
||||
ND_PRINTK2(KERN_WARNING
|
||||
"ICMPv6 Redirect: source address is not link-local.\n");
|
||||
return;
|
||||
@@ -1416,8 +1416,8 @@ static void ndisc_redirect_rcv(struct sk_buff *skb)
|
||||
|
||||
neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1);
|
||||
if (neigh) {
|
||||
rt6_redirect(dest, &skb->nh.ipv6h->daddr,
|
||||
&skb->nh.ipv6h->saddr, neigh, lladdr,
|
||||
rt6_redirect(dest, &ipv6_hdr(skb)->daddr,
|
||||
&ipv6_hdr(skb)->saddr, neigh, lladdr,
|
||||
on_link);
|
||||
neigh_release(neigh);
|
||||
}
|
||||
@@ -1453,14 +1453,14 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
|
||||
return;
|
||||
}
|
||||
|
||||
if (!ipv6_addr_equal(&skb->nh.ipv6h->daddr, target) &&
|
||||
if (!ipv6_addr_equal(&ipv6_hdr(skb)->daddr, target) &&
|
||||
!(ipv6_addr_type(target) & IPV6_ADDR_LINKLOCAL)) {
|
||||
ND_PRINTK2(KERN_WARNING
|
||||
"ICMPv6 Redirect: target address is not link-local.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
ndisc_flow_init(&fl, NDISC_REDIRECT, &saddr_buf, &skb->nh.ipv6h->saddr,
|
||||
ndisc_flow_init(&fl, NDISC_REDIRECT, &saddr_buf, &ipv6_hdr(skb)->saddr,
|
||||
dev->ifindex);
|
||||
|
||||
dst = ip6_route_output(NULL, &fl);
|
||||
@@ -1515,7 +1515,7 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
|
||||
hlen = 0;
|
||||
|
||||
skb_reserve(buff, LL_RESERVED_SPACE(dev));
|
||||
ip6_nd_hdr(sk, buff, dev, &saddr_buf, &skb->nh.ipv6h->saddr,
|
||||
ip6_nd_hdr(sk, buff, dev, &saddr_buf, &ipv6_hdr(skb)->saddr,
|
||||
IPPROTO_ICMPV6, len);
|
||||
|
||||
icmph = (struct icmp6hdr *)skb_put(buff, len);
|
||||
@@ -1531,7 +1531,7 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
|
||||
addrp = (struct in6_addr *)(icmph + 1);
|
||||
ipv6_addr_copy(addrp, target);
|
||||
addrp++;
|
||||
ipv6_addr_copy(addrp, &skb->nh.ipv6h->daddr);
|
||||
ipv6_addr_copy(addrp, &ipv6_hdr(skb)->daddr);
|
||||
|
||||
opt = (u8*) (addrp + 1);
|
||||
|
||||
@@ -1552,9 +1552,9 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
|
||||
*(opt++) = (rd_len >> 3);
|
||||
opt += 6;
|
||||
|
||||
memcpy(opt, skb->nh.ipv6h, rd_len - 8);
|
||||
memcpy(opt, ipv6_hdr(skb), rd_len - 8);
|
||||
|
||||
icmph->icmp6_cksum = csum_ipv6_magic(&saddr_buf, &skb->nh.ipv6h->saddr,
|
||||
icmph->icmp6_cksum = csum_ipv6_magic(&saddr_buf, &ipv6_hdr(skb)->saddr,
|
||||
len, IPPROTO_ICMPV6,
|
||||
csum_partial((u8 *) icmph, len, 0));
|
||||
|
||||
@@ -1588,10 +1588,10 @@ int ndisc_rcv(struct sk_buff *skb)
|
||||
|
||||
__skb_push(skb, skb->data-skb->h.raw);
|
||||
|
||||
if (skb->nh.ipv6h->hop_limit != 255) {
|
||||
if (ipv6_hdr(skb)->hop_limit != 255) {
|
||||
ND_PRINTK2(KERN_WARNING
|
||||
"ICMPv6 NDISC: invalid hop-limit: %d\n",
|
||||
skb->nh.ipv6h->hop_limit);
|
||||
ipv6_hdr(skb)->hop_limit);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
int ip6_route_me_harder(struct sk_buff *skb)
|
||||
{
|
||||
struct ipv6hdr *iph = skb->nh.ipv6h;
|
||||
struct ipv6hdr *iph = ipv6_hdr(skb);
|
||||
struct dst_entry *dst;
|
||||
struct flowi fl = {
|
||||
.oif = skb->sk ? skb->sk->sk_bound_dev_if : 0,
|
||||
@@ -61,7 +61,7 @@ static void nf_ip6_saveroute(const struct sk_buff *skb, struct nf_info *info)
|
||||
struct ip6_rt_info *rt_info = nf_info_reroute(info);
|
||||
|
||||
if (info->hook == NF_IP6_LOCAL_OUT) {
|
||||
struct ipv6hdr *iph = skb->nh.ipv6h;
|
||||
struct ipv6hdr *iph = ipv6_hdr(skb);
|
||||
|
||||
rt_info->daddr = iph->daddr;
|
||||
rt_info->saddr = iph->saddr;
|
||||
@@ -73,7 +73,7 @@ static int nf_ip6_reroute(struct sk_buff **pskb, const struct nf_info *info)
|
||||
struct ip6_rt_info *rt_info = nf_info_reroute(info);
|
||||
|
||||
if (info->hook == NF_IP6_LOCAL_OUT) {
|
||||
struct ipv6hdr *iph = (*pskb)->nh.ipv6h;
|
||||
struct ipv6hdr *iph = ipv6_hdr(*pskb);
|
||||
if (!ipv6_addr_equal(&iph->daddr, &rt_info->daddr) ||
|
||||
!ipv6_addr_equal(&iph->saddr, &rt_info->saddr))
|
||||
return ip6_route_me_harder(*pskb);
|
||||
@@ -84,7 +84,7 @@ static int nf_ip6_reroute(struct sk_buff **pskb, const struct nf_info *info)
|
||||
__sum16 nf_ip6_checksum(struct sk_buff *skb, unsigned int hook,
|
||||
unsigned int dataoff, u_int8_t protocol)
|
||||
{
|
||||
struct ipv6hdr *ip6h = skb->nh.ipv6h;
|
||||
struct ipv6hdr *ip6h = ipv6_hdr(skb);
|
||||
__sum16 csum = 0;
|
||||
|
||||
switch (skb->ip_summed) {
|
||||
|
||||
@@ -115,7 +115,7 @@ ip6_packet_match(const struct sk_buff *skb,
|
||||
{
|
||||
size_t i;
|
||||
unsigned long ret;
|
||||
const struct ipv6hdr *ipv6 = skb->nh.ipv6h;
|
||||
const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
|
||||
|
||||
#define FWINV(bool,invflg) ((bool) ^ !!(ip6info->invflags & invflg))
|
||||
|
||||
@@ -301,7 +301,7 @@ ip6t_do_table(struct sk_buff **pskb,
|
||||
goto no_match;
|
||||
|
||||
ADD_COUNTER(e->counters,
|
||||
ntohs((*pskb)->nh.ipv6h->payload_len)
|
||||
ntohs(ipv6_hdr(*pskb)->payload_len)
|
||||
+ IPV6_HDR_LEN,
|
||||
1);
|
||||
|
||||
@@ -1448,8 +1448,8 @@ static void __exit ip6_tables_fini(void)
|
||||
int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
|
||||
int target, unsigned short *fragoff)
|
||||
{
|
||||
unsigned int start = (u8*)(skb->nh.ipv6h + 1) - skb->data;
|
||||
u8 nexthdr = skb->nh.ipv6h->nexthdr;
|
||||
unsigned int start = (u8 *)(ipv6_hdr(skb) + 1) - skb->data;
|
||||
u8 nexthdr = ipv6_hdr(skb)->nexthdr;
|
||||
unsigned int len = skb->len - start;
|
||||
|
||||
if (fragoff)
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user