diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-11-19 15:25:29 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-11-19 15:25:29 -0800 |
commit | 4ab2de09d4a5985fb1dd3cb59908934a64ae7571 (patch) | |
tree | 0d26dd17354936b1aad5b76fe0aafbd43f2ff386 /scripts | |
parent | f26e1cd34e95faf065197d130e24e10d2e10717a (diff) | |
download | vyatta-cfg-4ab2de09d4a5985fb1dd3cb59908934a64ae7571.tar.gz vyatta-cfg-4ab2de09d4a5985fb1dd3cb59908934a64ae7571.zip |
Cleanup config loader
1. Get rid of all perl warnings (and perl critic warnings)
2. use Syslog package rather than running logger
3. put config log in /tmt/vyatta-config-load.log rather than /tmp/bar
4. Don't do another transaction for deactivated nodes unless necessary
5. Use exec as a tail optimization for end step.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-config-loader.pl | 158 |
1 files changed, 70 insertions, 88 deletions
diff --git a/scripts/vyatta-config-loader.pl b/scripts/vyatta-config-loader.pl index 809c5dd..6a5caab 100755 --- a/scripts/vyatta-config-loader.pl +++ b/scripts/vyatta-config-loader.pl @@ -25,119 +25,101 @@ use strict; use lib "/opt/vyatta/share/perl5/"; use Vyatta::ConfigLoad; +use Sys::Syslog qw(:standard :macros); -umask 0002; +my $CWRAPPER = '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper'; +my $CONFIG_LOG = '/tmp/vyatta-config.log'; +my $COMMIT_CMD = "$CWRAPPER commit"; +my $CLEANUP_CMD = "$CWRAPPER cleanup"; -if (!open(OLDOUT, ">&STDOUT") || !open(OLDERR, ">&STDERR") - || !open(STDOUT, "|/usr/bin/logger -t config-loader -p local0.notice") - || !open(STDERR, ">&STDOUT")) { - print STDERR "Cannot dup STDOUT/STDERR: $!\n"; - exit 1; -} - -if (!open(WARN, "|/usr/bin/logger -t config-loader -p local0.warning")) { - print OLDERR "Cannot open syslog: $!\n"; - exit 1; -} +umask 0002; -sub restore_fds { - open(STDOUT, ">&OLDOUT"); - open(STDERR, ">&OLDERR"); -} +# Set up logging +openlog("config-loader", "nofail", LOG_LOCAL0); +open (STDOUT, '>>', $CONFIG_LOG) + or die "Can not open $CONFIG_LOG : $!"; +open (STDERR, '>&STDOUT') + or die "Can not dup STDOUT"; # get a list of all config statement in the startup config file my %cfg_hier = Vyatta::ConfigLoad::getStartupConfigStatements($ARGV[0],'true'); my @all_nodes = @{ $cfg_hier{'set'} }; -my @deactivate_nodes = @{ $cfg_hier{'deactivate'} }; -if (scalar(@all_nodes) == 0) { - # no config statements - restore_fds(); - exit 1; -} + +# empty configuration? +exit 1 if (scalar(@all_nodes) == 0); # set up the config environment -my $CWRAPPER = '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper'; -system("$CWRAPPER begin"); -if ($? >> 8) { - print OLDOUT "Cannot set up configuration environment\n"; - print WARN "Cannot set up configuration environment\n"; - restore_fds(); - exit 1; +unless (system("$CWRAPPER begin") == 0) { + syslog(LOG_WARNING, "Cannot set up configuration environment"); + die "Cannot set up configuration environment"; } #cmd below is added to debug last set of command ordering -my $commit_cmd = "$CWRAPPER commit"; -my $cleanup_cmd = "$CWRAPPER cleanup"; -my $ret = 0; -my $rank; #not used foreach (@all_nodes) { - my ($path_ref, $rank) = @$_; - - my @pr = @$path_ref; - if (@pr[0] =~ /^comment$/) { - my $ct = 0; - my $rel_path; - foreach my $rp (@pr[1..$#pr]) { - $ct++; - my $tmp_path = $rel_path . "/" . $rp; - my $node_path = "/opt/vyatta/share/vyatta-cfg/templates/" . $tmp_path . "/node.def"; - if ($rp eq '"') { - last; - } - elsif ($rp eq '""') { - last; - } - elsif (!-e $node_path) { - #pop this element - delete @pr[$ct]; - last; - } - $rel_path = $tmp_path; + my ($path_ref, $rank) = @$_; + my @pr = @$path_ref; + + if ($pr[0] =~ /^comment$/) { + my $ct = 0; + my $rel_path; + foreach my $rp (@pr[1..$#pr]) { + $ct++; + my $tmp_path = $rel_path . "/" . $rp; + my $node_path = "/opt/vyatta/share/vyatta-cfg/templates/" + . $tmp_path . "/node.def"; + + last if ($rp eq '"'); + last if ($rp eq '""'); + + if ( !-e $node_path ) { + #pop this element + delete $pr[$ct]; + last; + } + $rel_path = $tmp_path; } my $comment_cmd = "$CWRAPPER " . join(" ",@pr) ; `$comment_cmd`; next; - } - - my $cmd = "$CWRAPPER set " . (join ' ', @pr); - # this debug file should be deleted before release - system("echo [$cmd] >> /tmp/foo"); - $ret = system("$cmd"); - if ($ret >> 8) { - $cmd =~ s/^.*?set /set /; - print OLDOUT "[[$cmd]] failed\n"; - print WARN "[[$cmd]] failed\n"; - # continue after set failure (or should we abort?) - } -} + } -$ret = system("$commit_cmd"); -if ($ret >> 8) { - print OLDOUT "Commit failed at boot\n"; - print WARN "Commit failed at boot\n"; - system("$cleanup_cmd"); - # exit normally after cleanup (or should we exit with error?) -} + # Show all commands in log + printf "[%s]\n", $cmd; -# Now deactivate these nodes -for (@deactivate_nodes) { - my $cmd = "$CWRAPPER deactivate " . $_; - system("$cmd"); + my $cmd = "$CWRAPPER set " . (join ' ', @pr); + unless (system($cmd) == 0) { + $cmd =~ s/^.*?set /set /; + syslog(LOG_NOTICE, "[[%s]] failed", $cmd); + warn "[[$cmd]] failed\n"; + } } -$ret = system("$commit_cmd"); -if ($ret >> 8) { - print OLDOUT "Commit failed at boot\n"; - print WARN "Commit failed at boot\n"; - system("$cleanup_cmd"); - # exit normally after cleanup (or should we exit with error?) +unless (system($COMMIT_CMD) == 0) { + syslog (LOG_NOTICE, "Commit failed at boot"); + warn "Commit failed at boot\n"; + system($CLEANUP_CMD); + exit 1; } +# Now process any deactivate nodes +my @deactivate_nodes = @{ $cfg_hier{'deactivate'} }; +if (@deactivate_nodes) { + my $cmd = "$CWRAPPER deactivate " . $_; + unless (system($cmd) == 0) { + syslog(LOG_NOTICE, "[[%s]] failed", $cmd); + warn "[[$cmd]] failed\n"; + } + + unless (system($COMMIT_CMD) == 0) { + syslog(LOG_NOTICE, "Commit deactivate failed at boot"); + warn "Commit deactivate failed at boot\n"; + system($CLEANUP_CMD); + } +} # really clean up -system("$CWRAPPER end"); -restore_fds(); +exec "$CWRAPPER end"; -exit 0; +die "exec of $CWRAPPER failed"; |