提交 ea2ae17d 编写于 作者: A Arnaldo Carvalho de Melo 提交者: David S. Miller

[SK_BUFF]: Introduce skb_transport_offset()

For the quite common 'skb->h.raw - skb->data' sequence.
Signed-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 badff6d0
...@@ -1326,8 +1326,8 @@ static int atl1_tx_csum(struct atl1_adapter *adapter, struct sk_buff *skb, ...@@ -1326,8 +1326,8 @@ static int atl1_tx_csum(struct atl1_adapter *adapter, struct sk_buff *skb,
u8 css, cso; u8 css, cso;
if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) { if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
cso = skb->h.raw - skb->data; cso = skb_transport_offset(skb);
css = (skb->h.raw + skb->csum_offset) - skb->data; css = cso + skb->csum;
if (unlikely(cso & 0x1)) { if (unlikely(cso & 0x1)) {
printk(KERN_DEBUG "%s: payload offset != even number\n", printk(KERN_DEBUG "%s: payload offset != even number\n",
atl1_driver_name); atl1_driver_name);
...@@ -1369,8 +1369,8 @@ static void atl1_tx_map(struct atl1_adapter *adapter, ...@@ -1369,8 +1369,8 @@ static void atl1_tx_map(struct atl1_adapter *adapter,
if (tcp_seg) { if (tcp_seg) {
/* TSO/GSO */ /* TSO/GSO */
proto_hdr_len = proto_hdr_len = (skb_transport_offset(skb) +
((skb->h.raw - skb->data) + (skb->h.th->doff << 2)); (skb->h.th->doff << 2));
buffer_info->length = proto_hdr_len; buffer_info->length = proto_hdr_len;
page = virt_to_page(skb->data); page = virt_to_page(skb->data);
offset = (unsigned long)skb->data & ~PAGE_MASK; offset = (unsigned long)skb->data & ~PAGE_MASK;
...@@ -1562,7 +1562,7 @@ static int atl1_xmit_frame(struct sk_buff *skb, struct net_device *netdev) ...@@ -1562,7 +1562,7 @@ static int atl1_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
mss = skb_shinfo(skb)->gso_size; mss = skb_shinfo(skb)->gso_size;
if (mss) { if (mss) {
if (skb->protocol == htons(ETH_P_IP)) { if (skb->protocol == htons(ETH_P_IP)) {
proto_hdr_len = ((skb->h.raw - skb->data) + proto_hdr_len = (skb_transport_offset(skb) +
(skb->h.th->doff << 2)); (skb->h.th->doff << 2));
if (unlikely(proto_hdr_len > len)) { if (unlikely(proto_hdr_len > len)) {
dev_kfree_skb_any(skb); dev_kfree_skb_any(skb);
......
...@@ -2821,10 +2821,8 @@ static inline int cas_xmit_tx_ringN(struct cas *cp, int ring, ...@@ -2821,10 +2821,8 @@ static inline int cas_xmit_tx_ringN(struct cas *cp, int ring,
ctrl = 0; ctrl = 0;
if (skb->ip_summed == CHECKSUM_PARTIAL) { if (skb->ip_summed == CHECKSUM_PARTIAL) {
u64 csum_start_off, csum_stuff_off; const u64 csum_start_off = skb_transport_offset(skb);
const u64 csum_stuff_off = csum_start_off + skb->csum_offset;
csum_start_off = (u64) (skb->h.raw - skb->data);
csum_stuff_off = csum_start_off + skb->csum_offset;
ctrl = TX_DESC_CSUM_EN | ctrl = TX_DESC_CSUM_EN |
CAS_BASE(TX_DESC_CSUM_START, csum_start_off) | CAS_BASE(TX_DESC_CSUM_START, csum_start_off) |
......
...@@ -1319,9 +1319,10 @@ static void write_ofld_wr(struct adapter *adap, struct sk_buff *skb, ...@@ -1319,9 +1319,10 @@ static void write_ofld_wr(struct adapter *adap, struct sk_buff *skb,
/* Only TX_DATA builds SGLs */ /* Only TX_DATA builds SGLs */
from = (struct work_request_hdr *)skb->data; from = (struct work_request_hdr *)skb->data;
memcpy(&d->flit[1], &from[1], skb->h.raw - skb->data - sizeof(*from)); memcpy(&d->flit[1], &from[1],
skb_transport_offset(skb) - sizeof(*from));
flits = (skb->h.raw - skb->data) / 8; flits = skb_transport_offset(skb) / 8;
sgp = ndesc == 1 ? (struct sg_ent *)&d->flit[flits] : sgl; sgp = ndesc == 1 ? (struct sg_ent *)&d->flit[flits] : sgl;
sgl_flits = make_sgl(skb, sgp, skb->h.raw, skb->tail - skb->h.raw, sgl_flits = make_sgl(skb, sgp, skb->h.raw, skb->tail - skb->h.raw,
adap->pdev); adap->pdev);
...@@ -1349,7 +1350,7 @@ static inline unsigned int calc_tx_descs_ofld(const struct sk_buff *skb) ...@@ -1349,7 +1350,7 @@ static inline unsigned int calc_tx_descs_ofld(const struct sk_buff *skb)
if (skb->len <= WR_LEN && cnt == 0) if (skb->len <= WR_LEN && cnt == 0)
return 1; /* packet fits as immediate data */ return 1; /* packet fits as immediate data */
flits = (skb->h.raw - skb->data) / 8; /* headers */ flits = skb_transport_offset(skb) / 8; /* headers */
if (skb->tail != skb->h.raw) if (skb->tail != skb->h.raw)
cnt++; cnt++;
return flits_to_desc(flits + sgl_len(cnt)); return flits_to_desc(flits + sgl_len(cnt));
......
...@@ -2887,7 +2887,7 @@ e1000_tso(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring, ...@@ -2887,7 +2887,7 @@ e1000_tso(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
return err; return err;
} }
hdr_len = ((skb->h.raw - skb->data) + (skb->h.th->doff << 2)); hdr_len = (skb_transport_offset(skb) + (skb->h.th->doff << 2));
mss = skb_shinfo(skb)->gso_size; mss = skb_shinfo(skb)->gso_size;
if (skb->protocol == htons(ETH_P_IP)) { if (skb->protocol == htons(ETH_P_IP)) {
struct iphdr *iph = ip_hdr(skb); struct iphdr *iph = ip_hdr(skb);
...@@ -2897,7 +2897,7 @@ e1000_tso(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring, ...@@ -2897,7 +2897,7 @@ e1000_tso(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
iph->daddr, 0, iph->daddr, 0,
IPPROTO_TCP, 0); IPPROTO_TCP, 0);
cmd_length = E1000_TXD_CMD_IP; cmd_length = E1000_TXD_CMD_IP;
ipcse = skb->h.raw - skb->data - 1; ipcse = skb_transport_offset(skb) - 1;
} else if (skb->protocol == htons(ETH_P_IPV6)) { } else if (skb->protocol == htons(ETH_P_IPV6)) {
ipv6_hdr(skb)->payload_len = 0; ipv6_hdr(skb)->payload_len = 0;
skb->h.th->check = skb->h.th->check =
...@@ -2908,7 +2908,7 @@ e1000_tso(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring, ...@@ -2908,7 +2908,7 @@ e1000_tso(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
} }
ipcss = skb_network_offset(skb); ipcss = skb_network_offset(skb);
ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data; ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
tucss = skb->h.raw - skb->data; tucss = skb_transport_offset(skb);
tucso = (void *)&(skb->h.th->check) - (void *)skb->data; tucso = (void *)&(skb->h.th->check) - (void *)skb->data;
tucse = 0; tucse = 0;
...@@ -2950,7 +2950,7 @@ e1000_tx_csum(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring, ...@@ -2950,7 +2950,7 @@ e1000_tx_csum(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
uint8_t css; uint8_t css;
if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) { if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
css = skb->h.raw - skb->data; css = skb_transport_offset(skb);
i = tx_ring->next_to_use; i = tx_ring->next_to_use;
buffer_info = &tx_ring->buffer_info[i]; buffer_info = &tx_ring->buffer_info[i];
...@@ -3292,7 +3292,7 @@ e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev) ...@@ -3292,7 +3292,7 @@ e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
/* TSO Workaround for 82571/2/3 Controllers -- if skb->data /* TSO Workaround for 82571/2/3 Controllers -- if skb->data
* points to just header, pull a few bytes of payload from * points to just header, pull a few bytes of payload from
* frags into skb->data */ * frags into skb->data */
hdr_len = ((skb->h.raw - skb->data) + (skb->h.th->doff << 2)); hdr_len = (skb_transport_offset(skb) + (skb->h.th->doff << 2));
if (skb->data_len && (hdr_len == (skb->len - skb->data_len))) { if (skb->data_len && (hdr_len == (skb->len - skb->data_len))) {
switch (adapter->hw.mac_type) { switch (adapter->hw.mac_type) {
unsigned int pull_size; unsigned int pull_size;
......
...@@ -1190,7 +1190,7 @@ ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb) ...@@ -1190,7 +1190,7 @@ ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb)
return err; return err;
} }
hdr_len = ((skb->h.raw - skb->data) + (skb->h.th->doff << 2)); hdr_len = (skb_transport_offset(skb) + (skb->h.th->doff << 2));
mss = skb_shinfo(skb)->gso_size; mss = skb_shinfo(skb)->gso_size;
iph = ip_hdr(skb); iph = ip_hdr(skb);
iph->tot_len = 0; iph->tot_len = 0;
...@@ -1199,8 +1199,8 @@ ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb) ...@@ -1199,8 +1199,8 @@ ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb)
0, IPPROTO_TCP, 0); 0, IPPROTO_TCP, 0);
ipcss = skb_network_offset(skb); ipcss = skb_network_offset(skb);
ipcso = (void *)&(iph->check) - (void *)skb->data; ipcso = (void *)&(iph->check) - (void *)skb->data;
ipcse = skb->h.raw - skb->data - 1; ipcse = skb_transport_offset(skb) - 1;
tucss = skb->h.raw - skb->data; tucss = skb_transport_offset(skb);
tucso = (void *)&(skb->h.th->check) - (void *)skb->data; tucso = (void *)&(skb->h.th->check) - (void *)skb->data;
tucse = 0; tucse = 0;
...@@ -1245,7 +1245,7 @@ ixgb_tx_csum(struct ixgb_adapter *adapter, struct sk_buff *skb) ...@@ -1245,7 +1245,7 @@ ixgb_tx_csum(struct ixgb_adapter *adapter, struct sk_buff *skb)
if(likely(skb->ip_summed == CHECKSUM_PARTIAL)) { if(likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
struct ixgb_buffer *buffer_info; struct ixgb_buffer *buffer_info;
css = skb->h.raw - skb->data; css = skb_transport_offset(skb);
cso = css + skb->csum_offset; cso = css + skb->csum_offset;
i = adapter->tx_ring.next_to_use; i = adapter->tx_ring.next_to_use;
......
...@@ -2029,7 +2029,7 @@ static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -2029,7 +2029,7 @@ static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev)
odd_flag = 0; odd_flag = 0;
flags = (MXGEFW_FLAGS_NO_TSO | MXGEFW_FLAGS_FIRST); flags = (MXGEFW_FLAGS_NO_TSO | MXGEFW_FLAGS_FIRST);
if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) { if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
cksum_offset = (skb->h.raw - skb->data); cksum_offset = skb_transport_offset(skb);
pseudo_hdr_offset = cksum_offset + skb->csum_offset; pseudo_hdr_offset = cksum_offset + skb->csum_offset;
/* If the headers are excessively large, then we must /* If the headers are excessively large, then we must
* fall back to a software checksum */ * fall back to a software checksum */
...@@ -2054,7 +2054,8 @@ static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -2054,7 +2054,8 @@ static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev)
* send loop that we are still in the * send loop that we are still in the
* header portion of the TSO packet. * header portion of the TSO packet.
* TSO header must be at most 134 bytes long */ * TSO header must be at most 134 bytes long */
cum_len = -((skb->h.raw - skb->data) + (skb->h.th->doff << 2)); cum_len = -(skb_transport_offset(skb) +
(skb->h.th->doff << 2));
/* for TSO, pseudo_hdr_offset holds mss. /* for TSO, pseudo_hdr_offset holds mss.
* The firmware figures out where to put * The firmware figures out where to put
......
...@@ -387,7 +387,7 @@ void netxen_tso_check(struct netxen_adapter *adapter, ...@@ -387,7 +387,7 @@ void netxen_tso_check(struct netxen_adapter *adapter,
} }
} }
adapter->stats.xmitcsummed++; adapter->stats.xmitcsummed++;
desc->tcp_hdr_offset = skb->h.raw - skb->data; desc->tcp_hdr_offset = skb_transport_offset(skb);
desc->ip_hdr_offset = skb_network_offset(skb); desc->ip_hdr_offset = skb_network_offset(skb);
} }
......
...@@ -1562,7 +1562,7 @@ struct sk_buff *pMessage) /* pointer to send-message */ ...@@ -1562,7 +1562,7 @@ struct sk_buff *pMessage) /* pointer to send-message */
pTxd->pMBuf = pMessage; pTxd->pMBuf = pMessage;
if (pMessage->ip_summed == CHECKSUM_PARTIAL) { if (pMessage->ip_summed == CHECKSUM_PARTIAL) {
u16 hdrlen = pMessage->h.raw - pMessage->data; u16 hdrlen = skb_transport_offset(pMessage);
u16 offset = hdrlen + pMessage->csum_offset; u16 offset = hdrlen + pMessage->csum_offset;
if ((pMessage->h.ipiph->protocol == IPPROTO_UDP ) && if ((pMessage->h.ipiph->protocol == IPPROTO_UDP ) &&
...@@ -1681,7 +1681,7 @@ struct sk_buff *pMessage) /* pointer to send-message */ ...@@ -1681,7 +1681,7 @@ struct sk_buff *pMessage) /* pointer to send-message */
** Does the HW need to evaluate checksum for TCP or UDP packets? ** Does the HW need to evaluate checksum for TCP or UDP packets?
*/ */
if (pMessage->ip_summed == CHECKSUM_PARTIAL) { if (pMessage->ip_summed == CHECKSUM_PARTIAL) {
u16 hdrlen = pMessage->h.raw - pMessage->data; u16 hdrlen = skb_transport_offset(pMessage);
u16 offset = hdrlen + pMessage->csum_offset; u16 offset = hdrlen + pMessage->csum_offset;
Control = BMU_STFWD; Control = BMU_STFWD;
......
...@@ -2654,7 +2654,7 @@ static int skge_xmit_frame(struct sk_buff *skb, struct net_device *dev) ...@@ -2654,7 +2654,7 @@ static int skge_xmit_frame(struct sk_buff *skb, struct net_device *dev)
td->dma_hi = map >> 32; td->dma_hi = map >> 32;
if (skb->ip_summed == CHECKSUM_PARTIAL) { if (skb->ip_summed == CHECKSUM_PARTIAL) {
int offset = skb->h.raw - skb->data; const int offset = skb_transport_offset(skb);
/* This seems backwards, but it is what the sk98lin /* This seems backwards, but it is what the sk98lin
* does. Looks like hardware is wrong? * does. Looks like hardware is wrong?
......
...@@ -1421,7 +1421,7 @@ static int sky2_xmit_frame(struct sk_buff *skb, struct net_device *dev) ...@@ -1421,7 +1421,7 @@ static int sky2_xmit_frame(struct sk_buff *skb, struct net_device *dev)
/* Handle TCP checksum offload */ /* Handle TCP checksum offload */
if (skb->ip_summed == CHECKSUM_PARTIAL) { if (skb->ip_summed == CHECKSUM_PARTIAL) {
unsigned offset = skb->h.raw - skb->data; const unsigned offset = skb_transport_offset(skb);
u32 tcpsum; u32 tcpsum;
tcpsum = offset << 16; /* sum start */ tcpsum = offset << 16; /* sum start */
......
...@@ -1028,10 +1028,8 @@ static int gem_start_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -1028,10 +1028,8 @@ static int gem_start_xmit(struct sk_buff *skb, struct net_device *dev)
ctrl = 0; ctrl = 0;
if (skb->ip_summed == CHECKSUM_PARTIAL) { if (skb->ip_summed == CHECKSUM_PARTIAL) {
u64 csum_start_off, csum_stuff_off; const u64 csum_start_off = skb_transport_offset(skb);
const u64 csum_stuff_off = csum_start_off + skb->csum_offset;
csum_start_off = (u64) (skb->h.raw - skb->data);
csum_stuff_off = csum_start_off + skb->csum_offset;
ctrl = (TXDCTRL_CENAB | ctrl = (TXDCTRL_CENAB |
(csum_start_off << 15) | (csum_start_off << 15) |
......
...@@ -2269,10 +2269,8 @@ static int happy_meal_start_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -2269,10 +2269,8 @@ static int happy_meal_start_xmit(struct sk_buff *skb, struct net_device *dev)
tx_flags = TXFLAG_OWN; tx_flags = TXFLAG_OWN;
if (skb->ip_summed == CHECKSUM_PARTIAL) { if (skb->ip_summed == CHECKSUM_PARTIAL) {
u32 csum_start_off, csum_stuff_off; const u32 csum_start_off = skb_transport_offset(skb);
const u32 csum_stuff_off = csum_start_off + skb->csum_offset;
csum_start_off = (u32) (skb->h.raw - skb->data);
csum_stuff_off = csum_start_off + skb->csum_offset;
tx_flags = (TXFLAG_OWN | TXFLAG_CSENABLE | tx_flags = (TXFLAG_OWN | TXFLAG_CSENABLE |
((csum_start_off << 14) & TXFLAG_CSBUFBEGIN) | ((csum_start_off << 14) & TXFLAG_CSBUFBEGIN) |
......
...@@ -962,6 +962,11 @@ static inline void skb_reset_transport_header(struct sk_buff *skb) ...@@ -962,6 +962,11 @@ static inline void skb_reset_transport_header(struct sk_buff *skb)
skb->h.raw = skb->data; skb->h.raw = skb->data;
} }
static inline int skb_transport_offset(const struct sk_buff *skb)
{
return skb->h.raw - skb->data;
}
static inline unsigned char *skb_network_header(const struct sk_buff *skb) static inline unsigned char *skb_network_header(const struct sk_buff *skb)
{ {
return skb->nh.raw; return skb->nh.raw;
......
...@@ -101,14 +101,14 @@ static inline int udplite_sender_cscov(struct udp_sock *up, struct udphdr *uh) ...@@ -101,14 +101,14 @@ static inline int udplite_sender_cscov(struct udp_sock *up, struct udphdr *uh)
static inline __wsum udplite_csum_outgoing(struct sock *sk, struct sk_buff *skb) static inline __wsum udplite_csum_outgoing(struct sock *sk, struct sk_buff *skb)
{ {
int off, len, cscov = udplite_sender_cscov(udp_sk(sk), skb->h.uh); int cscov = udplite_sender_cscov(udp_sk(sk), skb->h.uh);
__wsum csum = 0; __wsum csum = 0;
skb->ip_summed = CHECKSUM_NONE; /* no HW support for checksumming */ skb->ip_summed = CHECKSUM_NONE; /* no HW support for checksumming */
skb_queue_walk(&sk->sk_write_queue, skb) { skb_queue_walk(&sk->sk_write_queue, skb) {
off = skb->h.raw - skb->data; const int off = skb_transport_offset(skb);
len = skb->len - off; const int len = skb->len - off;
csum = skb_checksum(skb, off, (cscov > len)? len : cscov, csum); csum = skb_checksum(skb, off, (cscov > len)? len : cscov, csum);
......
...@@ -1156,7 +1156,7 @@ EXPORT_SYMBOL(netif_device_attach); ...@@ -1156,7 +1156,7 @@ EXPORT_SYMBOL(netif_device_attach);
int skb_checksum_help(struct sk_buff *skb) int skb_checksum_help(struct sk_buff *skb)
{ {
__wsum csum; __wsum csum;
int ret = 0, offset = skb->h.raw - skb->data; int ret = 0, offset = skb_transport_offset(skb);
if (skb->ip_summed == CHECKSUM_COMPLETE) if (skb->ip_summed == CHECKSUM_COMPLETE)
goto out_set_summed; goto out_set_summed;
......
...@@ -1348,7 +1348,7 @@ void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to) ...@@ -1348,7 +1348,7 @@ void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
long csstart; long csstart;
if (skb->ip_summed == CHECKSUM_PARTIAL) if (skb->ip_summed == CHECKSUM_PARTIAL)
csstart = skb->h.raw - skb->data; csstart = skb_transport_offset(skb);
else else
csstart = skb_headlen(skb); csstart = skb_headlen(skb);
......
...@@ -27,7 +27,7 @@ static int esp_output(struct xfrm_state *x, struct sk_buff *skb) ...@@ -27,7 +27,7 @@ static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
int nfrags; int nfrags;
/* Strip IP+ESP header. */ /* Strip IP+ESP header. */
__skb_pull(skb, skb->h.raw - skb->data); __skb_pull(skb, skb_transport_offset(skb));
/* Now skb is pure payload to encrypt */ /* Now skb is pure payload to encrypt */
err = -ENOMEM; err = -ENOMEM;
......
...@@ -435,7 +435,7 @@ static void udp4_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb, ...@@ -435,7 +435,7 @@ static void udp4_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
* fragments on the socket so that all csums of sk_buffs * fragments on the socket so that all csums of sk_buffs
* should be together * should be together
*/ */
offset = skb->h.raw - skb->data; offset = skb_transport_offset(skb);
skb->csum = skb_checksum(skb, offset, skb->len - offset, 0); skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
skb->ip_summed = CHECKSUM_NONE; skb->ip_summed = CHECKSUM_NONE;
......
...@@ -42,21 +42,18 @@ ...@@ -42,21 +42,18 @@
static int esp6_output(struct xfrm_state *x, struct sk_buff *skb) static int esp6_output(struct xfrm_state *x, struct sk_buff *skb)
{ {
int err; int err;
int hdr_len;
struct ipv6hdr *top_iph; struct ipv6hdr *top_iph;
struct ipv6_esp_hdr *esph; struct ipv6_esp_hdr *esph;
struct crypto_blkcipher *tfm; struct crypto_blkcipher *tfm;
struct blkcipher_desc desc; struct blkcipher_desc desc;
struct esp_data *esp;
struct sk_buff *trailer; struct sk_buff *trailer;
int blksize; int blksize;
int clen; int clen;
int alen; int alen;
int nfrags; int nfrags;
struct esp_data *esp = x->data;
esp = x->data; int hdr_len = (skb_transport_offset(skb) +
hdr_len = skb->h.raw - skb->data + sizeof(*esph) + esp->conf.ivlen);
sizeof(*esph) + esp->conf.ivlen;
/* Strip IP+ESP header. */ /* Strip IP+ESP header. */
__skb_pull(skb, hdr_len); __skb_pull(skb, hdr_len);
......
...@@ -146,7 +146,7 @@ static int ip6_parse_tlv(struct tlvtype_proc *procs, struct sk_buff **skbp) ...@@ -146,7 +146,7 @@ static int ip6_parse_tlv(struct tlvtype_proc *procs, struct sk_buff **skbp)
int off = skb->h.raw - skb->nh.raw; int off = skb->h.raw - skb->nh.raw;
int len = ((skb->h.raw[1]+1)<<3); int len = ((skb->h.raw[1]+1)<<3);
if ((skb->h.raw + len) - skb->data > skb_headlen(skb)) if (skb_transport_offset(skb) + len > skb_headlen(skb))
goto bad; goto bad;
off += 2; off += 2;
...@@ -288,8 +288,9 @@ static int ipv6_destopt_rcv(struct sk_buff **skbp) ...@@ -288,8 +288,9 @@ static int ipv6_destopt_rcv(struct sk_buff **skbp)
#endif #endif
struct dst_entry *dst; struct dst_entry *dst;
if (!pskb_may_pull(skb, (skb->h.raw-skb->data)+8) || if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
!pskb_may_pull(skb, (skb->h.raw-skb->data)+((skb->h.raw[1]+1)<<3))) { !pskb_may_pull(skb, (skb_transport_offset(skb) +
((skb->h.raw[1] + 1) << 3)))) {
IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
IPSTATS_MIB_INHDRERRORS); IPSTATS_MIB_INHDRERRORS);
kfree_skb(skb); kfree_skb(skb);
...@@ -387,8 +388,9 @@ static int ipv6_rthdr_rcv(struct sk_buff **skbp) ...@@ -387,8 +388,9 @@ static int ipv6_rthdr_rcv(struct sk_buff **skbp)
in6_dev_put(idev); in6_dev_put(idev);
if (!pskb_may_pull(skb, (skb->h.raw-skb->data)+8) || if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
!pskb_may_pull(skb, (skb->h.raw-skb->data)+((skb->h.raw[1]+1)<<3))) { !pskb_may_pull(skb, (skb_transport_offset(skb) +
((skb->h.raw[1] + 1) << 3)))) {
IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
IPSTATS_MIB_INHDRERRORS); IPSTATS_MIB_INHDRERRORS);
kfree_skb(skb); kfree_skb(skb);
......
...@@ -160,7 +160,7 @@ static inline int ip6_input_finish(struct sk_buff *skb) ...@@ -160,7 +160,7 @@ static inline int ip6_input_finish(struct sk_buff *skb)
rcu_read_lock(); rcu_read_lock();
resubmit: resubmit:
idev = ip6_dst_idev(skb->dst); idev = ip6_dst_idev(skb->dst);
if (!pskb_pull(skb, skb->h.raw - skb->data)) if (!pskb_pull(skb, skb_transport_offset(skb)))
goto discard; goto discard;
nhoff = IP6CB(skb)->nhoff; nhoff = IP6CB(skb)->nhoff;
nexthdr = skb_network_header(skb)[nhoff]; nexthdr = skb_network_header(skb)[nhoff];
......
...@@ -124,15 +124,13 @@ static int ipcomp6_output(struct xfrm_state *x, struct sk_buff *skb) ...@@ -124,15 +124,13 @@ static int ipcomp6_output(struct xfrm_state *x, struct sk_buff *skb)
{ {
int err; int err;
struct ipv6hdr *top_iph; struct ipv6hdr *top_iph;
int hdr_len;
struct ipv6_comp_hdr *ipch; struct ipv6_comp_hdr *ipch;
struct ipcomp_data *ipcd = x->data; struct ipcomp_data *ipcd = x->data;
int plen, dlen; int plen, dlen;
u8 *start, *scratch; u8 *start, *scratch;
struct crypto_comp *tfm; struct crypto_comp *tfm;
int cpu; int cpu;
int hdr_len = skb_transport_offset(skb);
hdr_len = skb->h.raw - skb->data;
/* check whether datagram len is larger than threshold */ /* check whether datagram len is larger than threshold */
if ((skb->len - hdr_len) < ipcd->threshold) { if ((skb->len - hdr_len) < ipcd->threshold) {
......
...@@ -90,8 +90,9 @@ int mip6_mh_filter(struct sock *sk, struct sk_buff *skb) ...@@ -90,8 +90,9 @@ int mip6_mh_filter(struct sock *sk, struct sk_buff *skb)
{ {
struct ip6_mh *mh; struct ip6_mh *mh;
if (!pskb_may_pull(skb, (skb->h.raw - skb->data) + 8) || if (!pskb_may_pull(skb, (skb_transport_offset(skb)) + 8) ||
!pskb_may_pull(skb, (skb->h.raw - skb->data) + ((skb->h.raw[1] + 1) << 3))) !pskb_may_pull(skb, (skb_transport_offset(skb) +
((skb->h.raw[1] + 1) << 3))))
return -1; return -1;
mh = (struct ip6_mh *)skb->h.raw; mh = (struct ip6_mh *)skb->h.raw;
......
...@@ -513,7 +513,7 @@ static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl, ...@@ -513,7 +513,7 @@ static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl,
if (csum_skb) if (csum_skb)
continue; continue;
len = skb->len - (skb->h.raw - skb->data); len = skb->len - skb_transport_offset(skb);
if (offset >= len) { if (offset >= len) {
offset -= len; offset -= len;
continue; continue;
...@@ -525,7 +525,7 @@ static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl, ...@@ -525,7 +525,7 @@ static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl,
skb = csum_skb; skb = csum_skb;
} }
offset += skb->h.raw - skb->data; offset += skb_transport_offset(skb);
if (skb_copy_bits(skb, offset, &csum, 2)) if (skb_copy_bits(skb, offset, &csum, 2))
BUG(); BUG();
......
...@@ -718,7 +718,8 @@ static int ipv6_frag_rcv(struct sk_buff **skbp) ...@@ -718,7 +718,8 @@ static int ipv6_frag_rcv(struct sk_buff **skbp)
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb->h.raw-skb->nh.raw); icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb->h.raw-skb->nh.raw);
return -1; return -1;
} }
if (!pskb_may_pull(skb, (skb->h.raw-skb->data)+sizeof(struct frag_hdr))) { if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
sizeof(struct frag_hdr)))) {
IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS); IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb->h.raw-skb->nh.raw); icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb->h.raw-skb->nh.raw);
return -1; return -1;
......
...@@ -141,7 +141,7 @@ int sctp_rcv(struct sk_buff *skb) ...@@ -141,7 +141,7 @@ int sctp_rcv(struct sk_buff *skb)
sh = (struct sctphdr *) skb->h.raw; sh = (struct sctphdr *) skb->h.raw;
/* Pull up the IP and SCTP headers. */ /* Pull up the IP and SCTP headers. */
__skb_pull(skb, skb->h.raw - skb->data); __skb_pull(skb, skb_transport_offset(skb));
if (skb->len < sizeof(struct sctphdr)) if (skb->len < sizeof(struct sctphdr))
goto discard_it; goto discard_it;
if ((skb->ip_summed != CHECKSUM_UNNECESSARY) && if ((skb->ip_summed != CHECKSUM_UNNECESSARY) &&
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册