summaryrefslogtreecommitdiff
path: root/drivers/ipoe/ipoe.c
diff options
context:
space:
mode:
authorKozlov Dmitry <xeb@mail.ru>2012-08-11 14:40:27 +0400
committerKozlov Dmitry <xeb@mail.ru>2012-08-11 14:40:27 +0400
commite326838cd260599c6ab048e7b3e538d936e54218 (patch)
tree85a55dac735bf51dbc7ee7ea8d1403e5d664a92e /drivers/ipoe/ipoe.c
parent892f7b726b5b7fadc9d565b2e3d22566be346d60 (diff)
downloadaccel-ppp-xebd-e326838cd260599c6ab048e7b3e538d936e54218.tar.gz
accel-ppp-xebd-e326838cd260599c6ab048e7b3e538d936e54218.zip
ipoe: fixed packet output path
Diffstat (limited to 'drivers/ipoe/ipoe.c')
-rw-r--r--drivers/ipoe/ipoe.c34
1 files changed, 30 insertions, 4 deletions
diff --git a/drivers/ipoe/ipoe.c b/drivers/ipoe/ipoe.c
index b396866..5bef0c8 100644
--- a/drivers/ipoe/ipoe.c
+++ b/drivers/ipoe/ipoe.c
@@ -345,6 +345,7 @@ static netdev_tx_t ipoe_xmit(struct sk_buff *skb, struct net_device *dev)
unsigned char *arp_ptr;
__be32 tip;*/
int noff;
+ unsigned char *cb_ptr;
if (!ses->peer_addr)
goto drop;
@@ -402,6 +403,14 @@ static netdev_tx_t ipoe_xmit(struct sk_buff *skb, struct net_device *dev)
pskb_pull(skb, ETH_HLEN);
skb_reset_network_header(skb);
+ cb_ptr = skb->cb + sizeof(skb->cb) - 2;
+ *(__u16 *)cb_ptr = IPOE_MAGIC;
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,32)
+ skb->skb_iif = dev->ifindex;
+#else
+ skb->iif = dev->ifindex;
+#endif
+
ip_local_out(skb);
return NETDEV_TX_OK;
@@ -435,8 +444,14 @@ static netdev_tx_t ipoe_xmit(struct sk_buff *skb, struct net_device *dev)
}*/
if (ses->link_dev) {
+ cb_ptr = skb->cb + sizeof(skb->cb) - 2;
+ *(__u16 *)cb_ptr = IPOE_MAGIC;
skb->dev = ses->link_dev;
- //skb->skb_iif = dev->ifindex;
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,32)
+ skb->skb_iif = dev->ifindex;
+#else
+ skb->iif = dev->ifindex;
+#endif
dev_queue_xmit(skb);
return NETDEV_TX_OK;
@@ -721,7 +736,7 @@ static unsigned int ipt_in_hook(unsigned int hook, struct sk_buff *skb, const st
cb_ptr = skb1->cb + sizeof(skb1->cb) - 2;
*(__u16 *)cb_ptr = IPOE_MAGIC;
- skb1->tc_verd = SET_TC_NCLS(0);
+ //skb1->tc_verd = SET_TC_NCLS(0);
netif_rx(skb1);
@@ -739,7 +754,7 @@ out:
static unsigned int ipt_out_hook(unsigned int hook, struct sk_buff *skb, const struct net_device *in, const struct net_device *out, int (*okfn)(struct sk_buff *skb))
{
- int noff;
+ int noff, iif;
struct iphdr *iph;
struct ipoe_session *ses;
unsigned char *cb_ptr;
@@ -767,8 +782,19 @@ static unsigned int ipt_out_hook(unsigned int hook, struct sk_buff *skb, const s
ses = ipoe_lookup(iph->daddr);
if (!ses)
return NF_ACCEPT;
+
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,32)
+ iif = skb->skb_iif;
+#else
+ iif = skb->iif;
+#endif
+
+ if (iif == ses->dev->ifindex) {
+ atomic_dec(&ses->refs);
+ return NF_ACCEPT;
+ }
- skb->dev = ses->dev;
+ skb->dev = ses->dev;
atomic_dec(&ses->refs);
return NF_ACCEPT;