mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-26 01:18:58 +02:00
brcm63xx: Fixed vlan packet leakage in preinit for known devices with a switch on eth1 (currently only 96348GW - Tecom 6x00)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21629 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2bc3104865
commit
05bb6a9dac
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
failsafe_ip() {
|
||||||
|
[ -d /proc/switch/eth1 ] && [ "$ifname" = "eth1" ] && {
|
||||||
|
ifconfig eth1 0.0.0.0 down
|
||||||
|
echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth1/vlan/0/ports
|
||||||
|
}
|
||||||
|
|
||||||
|
[ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
|
||||||
|
ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
boot_hook_add failsafe failsafe_ip
|
||||||
|
|
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set_preinit_iface() {
|
||||||
|
ifname=eth1
|
||||||
|
|
||||||
|
. /lib/brcm63xx.sh
|
||||||
|
|
||||||
|
ifconfig $ifname 0.0.0.0 up
|
||||||
|
}
|
||||||
|
|
||||||
|
check_module () {
|
||||||
|
module="$1"; shift; params="$*"
|
||||||
|
|
||||||
|
insmod "$module" "$params"
|
||||||
|
sleep 1
|
||||||
|
grep "^$module" /proc/modules
|
||||||
|
return $?
|
||||||
|
}
|
||||||
|
|
||||||
|
init_iface() {
|
||||||
|
insmod switch-core
|
||||||
|
check_module switch-robo || check_module switch-adm || rmmod switch-core
|
||||||
|
}
|
||||||
|
|
||||||
|
boot_hook_add preinit_main set_preinit_iface
|
||||||
|
boot_hook_add preinit_main init_iface
|
@ -0,0 +1,44 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
port_net_echo() {
|
||||||
|
[ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
|
||||||
|
if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message" = "true" ] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then
|
||||||
|
netmsg $pi_broadcast "$1"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
preinit_ip_deconfig() {
|
||||||
|
if [ -z "$pi_ifname" ]; then
|
||||||
|
ifconfig $ifname 0.0.0.0 down
|
||||||
|
else
|
||||||
|
grep -q "$pi_ifname" /proc/net/dev && {
|
||||||
|
ifconfig $pi_ifname 0.0.0.0 down
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
[ -d /proc/switch/eth1 ] && [ "$ifname" = "eth1" ] && {
|
||||||
|
echo 1 >/proc/switch/eth1/reset
|
||||||
|
echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth1/vlan/0/ports
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
preinit_net_echo() {
|
||||||
|
preinit_ip
|
||||||
|
|
||||||
|
[ -d /proc/switch/eth1 ] && [ "$ifname" = "eth1" ] && {
|
||||||
|
echo 1 >/proc/switch/eth1/reset
|
||||||
|
|
||||||
|
# this would be easier if we blasted the message across all ports
|
||||||
|
# but we don't want packets leaking across interfaces
|
||||||
|
for port in $(seq 0 4); do {
|
||||||
|
echo "$port ${cpu_port:-5u*}" > /proc/switch/eth1/vlan/0/ports
|
||||||
|
port_net_echo $1
|
||||||
|
}; done
|
||||||
|
|
||||||
|
echo "0 ${cpu_port:-5u*}" > /proc/switch/eth1/vlan/0/ports
|
||||||
|
|
||||||
|
} || port_net_echo $1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
indicate_failsafe() {
|
||||||
|
preinit_net_echo() {
|
||||||
|
port_net_echo $1
|
||||||
|
}
|
||||||
|
echo "- failsafe -"
|
||||||
|
preinit_net_echo "Entering Failsafe!\n"
|
||||||
|
indicate_failsafe_led
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user