diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-02-18 17:11:35 -0800 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-02-18 17:11:35 -0800 |
commit | fab23c4e4b7e5566e43ccbaa9f4dbc7d1b60fc69 (patch) | |
tree | 6f575f9aaf66f266315c00155d5c930fa1af995e /scripts | |
parent | 8989b47af4fbf6c980003dfe6b721130044b0d6a (diff) | |
download | vyatta-cfg-quagga-fab23c4e4b7e5566e43ccbaa9f4dbc7d1b60fc69.tar.gz vyatta-cfg-quagga-fab23c4e4b7e5566e43ccbaa9f4dbc7d1b60fc69.zip |
Fix Bug 5064 can't delete bridge group and membership in one commit
* fix this for eth, eth.vif, bond, bond.vif interfaces
* also, bridge-group code for bonding interfaces wasn't changed
with commit ec080f99 that re-strucutred bridging code in eth and
eth.vifs to fix bug 4708. bridge-group code for bond and bond.vif
interfaces is now similar to the fix for 4708
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/vyatta-bridgegroup-depedency.pl | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/scripts/vyatta-bridgegroup-depedency.pl b/scripts/vyatta-bridgegroup-depedency.pl new file mode 100644 index 00000000..03d92ed0 --- /dev/null +++ b/scripts/vyatta-bridgegroup-depedency.pl @@ -0,0 +1,91 @@ +#!/usr/bin/perl +# +# Module: vyatta-bridgegroup-dependency.pl +# +# **** License **** +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# This code was originally developed by Vyatta, Inc. +# Portions created by Vyatta are Copyright (C) 2010 Vyatta, Inc. +# All Rights Reserved. +# +# Author: Mohit Mehta +# Date: February 2010 +# Description: To check dependency between bridge and interfaces assigned to it +# +# **** End License **** +# + +use lib "/opt/vyatta/share/perl5/"; +use Vyatta::Config; +use Vyatta::Misc; +use Getopt::Long; +use POSIX; + +use strict; +use warnings; + +sub check_bridge_interfaces { + my $bridge_intf = shift; + foreach my $name ( Vyatta::Misc::getInterfaces() ) { + my $intf = new Vyatta::Interface($name); + next unless $intf; + my $intf_bridge = undef; + $intf_bridge = $intf->bridge_grp(); + if (defined $intf_bridge && $intf_bridge eq $bridge_intf) { + return "Interfaces are still assigned to bridge $bridge_intf"; + } + } + return; +} + +sub is_bridge_deleted { + my $bridge_name = shift; + my $config = new Vyatta::Config; + my @bridge_intfs = $config->listNodes("interfaces bridge"); + my @orig_bridge_intfs = $config->listOrigNodes("interfaces bridge"); + if (scalar(grep(/^$bridge_name$/, @bridge_intfs)) == 0) { + if (scalar(grep(/^$bridge_name$/, @orig_bridge_intfs)) > 0) { + # bridge deleted in proposed config + return; + } + } + exit 1; +} + +# +# main +# + +my ($error, $warning); +my ($no_interfaces_assigned, $bridge_interface, $bridge_notin_proposedcfg); + +GetOptions( "no-interfaces-assigned!" => \$no_interfaces_assigned, + "bridge-interface=s" => \$bridge_interface, + "bridge-notin-proposedcfg!" => \$bridge_notin_proposedcfg); + +die "undefined bridge interface" if ! defined $bridge_interface; + +($error, $warning) = check_bridge_interfaces($bridge_interface) + if ($no_interfaces_assigned); + +($error, $warning) = is_bridge_deleted($bridge_interface) + if ($bridge_notin_proposedcfg); + +if (defined $warning) { + print "$warning\n"; +} + +if (defined $error) { + print "$error\n"; + exit 1; +} + +exit 0; |