2008-07-08 03:23:36 -07:00
# include <linux/skbuff.h>
# include <linux/netdevice.h>
# include <linux/if_vlan.h>
2009-03-01 00:11:52 -08:00
# include <linux/netpoll.h>
2008-07-08 03:23:36 -07:00
# include "vlan.h"
/* VLAN rx hw acceleration helper. This acts like netif_{rx,receive_skb}(). */
int __vlan_hwaccel_rx ( struct sk_buff * skb , struct vlan_group * grp ,
2008-07-08 03:24:44 -07:00
u16 vlan_tci , int polling )
2008-07-08 03:23:36 -07:00
{
2009-03-01 00:11:52 -08:00
if ( netpoll_rx ( skb ) )
return NET_RX_DROP ;
2010-03-18 21:16:45 -07:00
if ( skb_bond_should_drop ( skb , ACCESS_ONCE ( skb - > dev - > master ) ) )
2009-01-06 10:50:09 -08:00
goto drop ;
2008-07-08 03:23:36 -07:00
bonding: allow arp_ip_targets on separate vlans to use arp validation
This allows a bond device to specify an arp_ip_target as a host that is
not on the same vlan as the base bond device and still use arp
validation. A configuration like this, now works:
BONDING_OPTS="mode=active-backup arp_interval=1000 arp_ip_target=10.0.100.1 arp_validate=3"
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master bond0 qlen 1000
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master bond0 qlen 1000
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
inet6 fe80::213:21ff:febe:33e9/64 scope link
valid_lft forever preferred_lft forever
9: bond0.100@bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
inet 10.0.100.2/24 brd 10.0.100.255 scope global bond0.100
inet6 fe80::213:21ff:febe:33e9/64 scope link
valid_lft forever preferred_lft forever
Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: eth1
MII Status: up
MII Polling Interval (ms): 0
Up Delay (ms): 0
Down Delay (ms): 0
ARP Polling Interval (ms): 1000
ARP IP target/s (n.n.n.n form): 10.0.100.1
Slave Interface: eth1
MII Status: up
Link Failure Count: 1
Permanent HW addr: 00:40:05:30:ff:30
Slave Interface: eth0
MII Status: up
Link Failure Count: 0
Permanent HW addr: 00:13:21:be:33:e9
Signed-off-by: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-12-14 10:48:58 +00:00
skb - > skb_iif = skb - > dev - > ifindex ;
2009-11-13 06:33:11 +00:00
__vlan_hwaccel_put_tag ( skb , vlan_tci ) ;
2009-01-06 10:50:09 -08:00
skb - > dev = vlan_group_get_device ( grp , vlan_tci & VLAN_VID_MASK ) ;
if ( ! skb - > dev )
goto drop ;
2008-11-04 14:49:57 -08:00
return ( polling ? netif_receive_skb ( skb ) : netif_rx ( skb ) ) ;
2009-01-06 10:50:09 -08:00
drop :
dev_kfree_skb_any ( skb ) ;
return NET_RX_DROP ;
2008-11-04 14:49:57 -08:00
}
EXPORT_SYMBOL ( __vlan_hwaccel_rx ) ;
int vlan_hwaccel_do_receive ( struct sk_buff * skb )
{
2009-01-06 10:50:09 -08:00
struct net_device * dev = skb - > dev ;
2009-11-17 04:53:09 +00:00
struct vlan_rx_stats * rx_stats ;
2008-11-04 14:49:57 -08:00
2009-01-06 10:50:09 -08:00
skb - > dev = vlan_dev_info ( dev ) - > real_dev ;
2008-07-14 22:49:30 -07:00
netif_nit_deliver ( skb ) ;
2008-11-04 14:49:57 -08:00
skb - > dev = dev ;
skb - > priority = vlan_get_ingress_priority ( dev , skb - > vlan_tci ) ;
2008-07-14 22:49:30 -07:00
skb - > vlan_tci = 0 ;
2008-07-08 03:23:36 -07:00
2009-11-17 04:53:09 +00:00
rx_stats = per_cpu_ptr ( vlan_dev_info ( dev ) - > vlan_rx_stats ,
smp_processor_id ( ) ) ;
rx_stats - > rx_packets + + ;
rx_stats - > rx_bytes + = skb - > len ;
2008-07-08 03:23:36 -07:00
switch ( skb - > pkt_type ) {
case PACKET_BROADCAST :
break ;
case PACKET_MULTICAST :
2009-11-17 04:53:09 +00:00
rx_stats - > multicast + + ;
2008-07-08 03:23:36 -07:00
break ;
case PACKET_OTHERHOST :
/* Our lower layer thinks this is not local, let's make sure.
* This allows the VLAN to have a different MAC than the
* underlying device , and still route correctly . */
if ( ! compare_ether_addr ( eth_hdr ( skb ) - > h_dest ,
2008-11-04 14:49:57 -08:00
dev - > dev_addr ) )
2008-07-08 03:23:36 -07:00
skb - > pkt_type = PACKET_HOST ;
break ;
2010-05-14 10:58:26 +00:00
}
2008-11-04 14:49:57 -08:00
return 0 ;
2008-07-08 03:23:36 -07:00
}
2008-07-08 03:23:57 -07:00
struct net_device * vlan_dev_real_dev ( const struct net_device * dev )
{
return vlan_dev_info ( dev ) - > real_dev ;
}
2009-01-26 12:37:53 -08:00
EXPORT_SYMBOL ( vlan_dev_real_dev ) ;
2008-07-08 03:23:57 -07:00
u16 vlan_dev_vlan_id ( const struct net_device * dev )
{
return vlan_dev_info ( dev ) - > vlan_id ;
}
2009-01-26 12:37:53 -08:00
EXPORT_SYMBOL ( vlan_dev_vlan_id ) ;
2009-01-06 10:50:09 -08:00
2009-10-29 07:17:09 +00:00
static gro_result_t
vlan_gro_common ( struct napi_struct * napi , struct vlan_group * grp ,
unsigned int vlan_tci , struct sk_buff * skb )
2009-01-06 10:50:09 -08:00
{
struct sk_buff * p ;
2010-03-18 21:16:45 -07:00
if ( skb_bond_should_drop ( skb , ACCESS_ONCE ( skb - > dev - > master ) ) )
2009-01-06 10:50:09 -08:00
goto drop ;
bonding: allow arp_ip_targets on separate vlans to use arp validation
This allows a bond device to specify an arp_ip_target as a host that is
not on the same vlan as the base bond device and still use arp
validation. A configuration like this, now works:
BONDING_OPTS="mode=active-backup arp_interval=1000 arp_ip_target=10.0.100.1 arp_validate=3"
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master bond0 qlen 1000
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master bond0 qlen 1000
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
inet6 fe80::213:21ff:febe:33e9/64 scope link
valid_lft forever preferred_lft forever
9: bond0.100@bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue
link/ether 00:13:21:be:33:e9 brd ff:ff:ff:ff:ff:ff
inet 10.0.100.2/24 brd 10.0.100.255 scope global bond0.100
inet6 fe80::213:21ff:febe:33e9/64 scope link
valid_lft forever preferred_lft forever
Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: eth1
MII Status: up
MII Polling Interval (ms): 0
Up Delay (ms): 0
Down Delay (ms): 0
ARP Polling Interval (ms): 1000
ARP IP target/s (n.n.n.n form): 10.0.100.1
Slave Interface: eth1
MII Status: up
Link Failure Count: 1
Permanent HW addr: 00:40:05:30:ff:30
Slave Interface: eth0
MII Status: up
Link Failure Count: 0
Permanent HW addr: 00:13:21:be:33:e9
Signed-off-by: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-12-14 10:48:58 +00:00
skb - > skb_iif = skb - > dev - > ifindex ;
2009-11-13 06:33:11 +00:00
__vlan_hwaccel_put_tag ( skb , vlan_tci ) ;
2009-01-06 10:50:09 -08:00
skb - > dev = vlan_group_get_device ( grp , vlan_tci & VLAN_VID_MASK ) ;
if ( ! skb - > dev )
goto drop ;
for ( p = napi - > gro_list ; p ; p = p - > next ) {
2009-02-08 18:00:37 +00:00
NAPI_GRO_CB ( p ) - > same_flow =
p - > dev = = skb - > dev & & ! compare_ether_header (
skb_mac_header ( p ) , skb_gro_mac_header ( skb ) ) ;
2009-01-06 10:50:09 -08:00
NAPI_GRO_CB ( p ) - > flush = 0 ;
}
return dev_gro_receive ( napi , skb ) ;
drop :
2009-03-16 10:50:02 -07:00
return GRO_DROP ;
2009-01-06 10:50:09 -08:00
}
2009-10-29 21:36:53 -07:00
gro_result_t vlan_gro_receive ( struct napi_struct * napi , struct vlan_group * grp ,
unsigned int vlan_tci , struct sk_buff * skb )
2009-01-06 10:50:09 -08:00
{
2009-03-17 13:10:52 -07:00
if ( netpoll_rx_on ( skb ) )
2009-10-29 21:36:53 -07:00
return vlan_hwaccel_receive_skb ( skb , grp , vlan_tci )
? GRO_DROP : GRO_NORMAL ;
2009-03-17 13:10:52 -07:00
2009-01-29 14:19:50 +00:00
skb_gro_reset_offset ( skb ) ;
2009-01-29 14:19:48 +00:00
return napi_skb_finish ( vlan_gro_common ( napi , grp , vlan_tci , skb ) , skb ) ;
2009-01-06 10:50:09 -08:00
}
EXPORT_SYMBOL ( vlan_gro_receive ) ;
2009-10-29 21:36:53 -07:00
gro_result_t vlan_gro_frags ( struct napi_struct * napi , struct vlan_group * grp ,
unsigned int vlan_tci )
2009-01-06 10:50:09 -08:00
{
2009-04-16 02:02:07 -07:00
struct sk_buff * skb = napi_frags_skb ( napi ) ;
2009-01-06 10:50:09 -08:00
if ( ! skb )
2009-10-29 21:36:53 -07:00
return GRO_DROP ;
2009-01-06 10:50:09 -08:00
2009-04-13 04:41:01 +00:00
if ( netpoll_rx_on ( skb ) ) {
skb - > protocol = eth_type_trans ( skb , skb - > dev ) ;
2009-10-29 21:36:53 -07:00
return vlan_hwaccel_receive_skb ( skb , grp , vlan_tci )
? GRO_DROP : GRO_NORMAL ;
2009-04-13 04:41:01 +00:00
}
2009-03-17 13:10:52 -07:00
2009-01-29 14:19:48 +00:00
return napi_frags_finish ( napi , skb ,
vlan_gro_common ( napi , grp , vlan_tci , skb ) ) ;
2009-01-06 10:50:09 -08:00
}
EXPORT_SYMBOL ( vlan_gro_frags ) ;