diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-19 21:55:56 -0400 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-19 21:55:56 -0400 | 
| commit | d0b952a9837f81cd89e756b1b34293fa6e1cb59d (patch) | |
| tree | fbe488bc5f407afa0e91cefb262d9e9ee69062ac /net/ipv4/ah4.c | |
| parent | d90125bfe958ed0451c6b98f831c86aba08b43d5 (diff) | |
| parent | 47552c4e555eefe381f3d45140b59a2ea4b16486 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6: (109 commits)
  [ETHTOOL]: Fix UFO typo
  [SCTP]: Fix persistent slowdown in sctp when a gap ack consumes rx buffer.
  [SCTP]: Send only 1 window update SACK per message.
  [SCTP]: Don't do CRC32C checksum over loopback.
  [SCTP] Reset rtt_in_progress for the chunk when processing its sack.
  [SCTP]: Reject sctp packets with broadcast addresses.
  [SCTP]: Limit association max_retrans setting in setsockopt.
  [PFKEYV2]: Fix inconsistent typing in struct sadb_x_kmprivate.
  [IPV6]: Sum real space for RTAs.
  [IRDA]: Use put_unaligned() in irlmp_do_discovery().
  [BRIDGE]: Add support for NETIF_F_HW_CSUM devices
  [NET]: Add NETIF_F_GEN_CSUM and NETIF_F_ALL_CSUM
  [TG3]: Convert to non-LLTX
  [TG3]: Remove unnecessary tx_lock
  [TCP]: Add tcp_slow_start_after_idle sysctl.
  [BNX2]: Update version and reldate
  [BNX2]: Use CPU native page size
  [BNX2]: Use compressed firmware
  [BNX2]: Add firmware decompression
  [BNX2]: Allow WoL settings on new 5708 chips
  ...
Manual fixup for conflict in drivers/net/tulip/winbond-840.c
Diffstat (limited to 'net/ipv4/ah4.c')
| -rw-r--r-- | net/ipv4/ah4.c | 15 | 
1 files changed, 7 insertions, 8 deletions
| diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c index e2e4771fa4c6..c7782230080d 100644 --- a/net/ipv4/ah4.c +++ b/net/ipv4/ah4.c | |||
| @@ -119,6 +119,7 @@ error: | |||
| 119 | static int ah_input(struct xfrm_state *x, struct sk_buff *skb) | 119 | static int ah_input(struct xfrm_state *x, struct sk_buff *skb) | 
| 120 | { | 120 | { | 
| 121 | int ah_hlen; | 121 | int ah_hlen; | 
| 122 | int ihl; | ||
| 122 | struct iphdr *iph; | 123 | struct iphdr *iph; | 
| 123 | struct ip_auth_hdr *ah; | 124 | struct ip_auth_hdr *ah; | 
| 124 | struct ah_data *ahp; | 125 | struct ah_data *ahp; | 
| @@ -149,13 +150,14 @@ static int ah_input(struct xfrm_state *x, struct sk_buff *skb) | |||
| 149 | ah = (struct ip_auth_hdr*)skb->data; | 150 | ah = (struct ip_auth_hdr*)skb->data; | 
| 150 | iph = skb->nh.iph; | 151 | iph = skb->nh.iph; | 
| 151 | 152 | ||
| 152 | memcpy(work_buf, iph, iph->ihl*4); | 153 | ihl = skb->data - skb->nh.raw; | 
| 154 | memcpy(work_buf, iph, ihl); | ||
| 153 | 155 | ||
| 154 | iph->ttl = 0; | 156 | iph->ttl = 0; | 
| 155 | iph->tos = 0; | 157 | iph->tos = 0; | 
| 156 | iph->frag_off = 0; | 158 | iph->frag_off = 0; | 
| 157 | iph->check = 0; | 159 | iph->check = 0; | 
| 158 | if (iph->ihl != 5) { | 160 | if (ihl > sizeof(*iph)) { | 
| 159 | u32 dummy; | 161 | u32 dummy; | 
| 160 | if (ip_clear_mutable_options(iph, &dummy)) | 162 | if (ip_clear_mutable_options(iph, &dummy)) | 
| 161 | goto out; | 163 | goto out; | 
| @@ -164,7 +166,7 @@ static int ah_input(struct xfrm_state *x, struct sk_buff *skb) | |||
| 164 | u8 auth_data[MAX_AH_AUTH_LEN]; | 166 | u8 auth_data[MAX_AH_AUTH_LEN]; | 
| 165 | 167 | ||
| 166 | memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len); | 168 | memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len); | 
| 167 | skb_push(skb, skb->data - skb->nh.raw); | 169 | skb_push(skb, ihl); | 
| 168 | ahp->icv(ahp, skb, ah->auth_data); | 170 | ahp->icv(ahp, skb, ah->auth_data); | 
| 169 | if (memcmp(ah->auth_data, auth_data, ahp->icv_trunc_len)) { | 171 | if (memcmp(ah->auth_data, auth_data, ahp->icv_trunc_len)) { | 
| 170 | x->stats.integrity_failed++; | 172 | x->stats.integrity_failed++; | 
| @@ -172,11 +174,8 @@ static int ah_input(struct xfrm_state *x, struct sk_buff *skb) | |||
| 172 | } | 174 | } | 
| 173 | } | 175 | } | 
| 174 | ((struct iphdr*)work_buf)->protocol = ah->nexthdr; | 176 | ((struct iphdr*)work_buf)->protocol = ah->nexthdr; | 
| 175 | skb->nh.raw = skb_pull(skb, ah_hlen); | 177 | skb->h.raw = memcpy(skb->nh.raw += ah_hlen, work_buf, ihl); | 
| 176 | memcpy(skb->nh.raw, work_buf, iph->ihl*4); | 178 | __skb_pull(skb, ah_hlen + ihl); | 
| 177 | skb->nh.iph->tot_len = htons(skb->len); | ||
| 178 | skb_pull(skb, skb->nh.iph->ihl*4); | ||
| 179 | skb->h.raw = skb->data; | ||
| 180 | 179 | ||
| 181 | return 0; | 180 | return 0; | 
| 182 | 181 | ||
