1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
#!/usr/bin/perl
# Author: An-Cheng Huang <ancheng@vyatta.com>
# Date: 2007
# Description: configuration loader
# **** 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) 2006, 2007, 2008 Vyatta, Inc.
# All Rights Reserved.
# **** End License ****
# Perl script for loading the startup config file.
# $0: startup config file.
use strict;
use lib "/opt/vyatta/share/perl5/";
use Vyatta::ConfigLoad;
umask 0002;
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;
}
sub restore_fds {
open(STDOUT, ">&OLDOUT");
open(STDERR, ">&OLDERR");
}
# get a list of all config statement in the startup config file
# (sorted by rank).
my @all_nodes = Vyatta::ConfigLoad::getStartupConfigStatements($ARGV[0]);
if (scalar(@all_nodes) == 0) {
# no config statements
restore_fds();
exit 1;
}
my $cur_rank = ${$all_nodes[0]}[1];
# 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;
}
#cmd below is added to debug last set of command ordering
my $commit_cmd_debug_noop = "$CWRAPPER commit -a > /tmp/bar";
my $commit_cmd_debug = "$CWRAPPER commit -d";
my $commit_cmd = "$CWRAPPER commit";
my $cleanup_cmd = "$CWRAPPER cleanup";
my $ret = 0;
# higher-ranked statements committed before lower-ranked.
foreach (@all_nodes) {
my ($path_ref, $rank) = @$_;
if ($rank != $cur_rank) {
# commit all nodes with the same rank together.
$ret = 0; #system("$commit_cmd");
if ($ret >> 8) {
print OLDOUT "Commit failed at rank $cur_rank\n";
print WARN "Commit failed at rank $cur_rank\n";
system("$cleanup_cmd");
# continue after cleanup (or should we abort?)
}
$cur_rank = $rank;
}
my $cmd = "$CWRAPPER set " . (join ' ', @$path_ref);
$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?)
}
}
system("$commit_cmd_debug_noop");
$ret = system("$commit_cmd_debug");
if ($ret >> 8) {
print OLDOUT "Commit failed at rank $cur_rank\n";
print WARN "Commit failed at rank $cur_rank\n";
system("$cleanup_cmd");
# exit normally after cleanup (or should we exit with error?)
}
# really clean up
system("$CWRAPPER end");
restore_fds();
exit 0;
|