X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/rsbs2/blobdiff_plain/26d316a4420ace66c761458a99f1dc193ac191db..762f3898849f6975286d7d0511f9e340cc2eb073:/rsbs2.pl diff --git a/rsbs2.pl b/rsbs2.pl index 0d2a682..4d09c1b 100755 --- a/rsbs2.pl +++ b/rsbs2.pl @@ -148,7 +148,7 @@ sub _req { $request = HTTP::Request->new(POST => "http://${host}/cgi/bin"); $request->header(Cookie => "sid=$sid"); $request->content_type('application/x-www-form-urlencoded'); - $request->content($xml); + $request->content(''.$xml.''); $response = $ua->request($request); die("Error in request: " . $response->status_line . "\n") unless ($response->is_success); XMLin($response->content, SuppressEmpty => ''); @@ -157,7 +157,7 @@ sub _req { sub _cmd { my $cmd = shift; - my $reqstr=''; + my $reqstr=''; my $res = _req($reqstr); if ($res->{RESP}->{RC} ne '0x0') { print "${cmd} failed: ".$res->{RESP}->{RC}."\n"; @@ -170,7 +170,7 @@ sub _cmd { sub _getprop { my $property = shift; - my $reqstr=''; + my $reqstr=''; my $resp = _req($reqstr); print "get: ${property}\n" if ($verbose); @@ -204,7 +204,7 @@ sub setprop { return; } - my $reqstr=''.$value.''; + my $reqstr=''.$value.''; my $res = _req($reqstr); if ($res->{RESP}->{RC} ne '0x0') { @@ -228,7 +228,7 @@ sub serveraction { setprop("SERVER_POWER_OFF_MODE", sprintf("0x%x", $pmode)); print "${action}...\n" if ($verbose); - my $reqstr=''.$action.''; + my $reqstr=''.$action.''; my $res = _req($reqstr); if ($res->{RESP}->{RC} ne '0x0') { @@ -266,7 +266,7 @@ sub showprop { } sub board_properties { - my $reqstr=''; + my $reqstr=''; my $resp = _req($reqstr); print " * Board Properties:\n"; @@ -276,7 +276,7 @@ sub board_properties { } sub show_boarddesc { - my $reqstr=''; + my $reqstr=''; my $boarddesc64 = _req($reqstr)->{RESP}->{BPROPLIST}->{BPROP}->{VAL}; my $boarddesc = decode_base64($boarddesc64); my @board = split(//, $boarddesc); @@ -293,20 +293,19 @@ sub show_all_vars { } sub usrlist { - my $reqstr = ''; - my $res = _req($reqstr); + my $res = _cmd("usrlist"); my @users = (); - if ($res->{RESP}->{RC} ne '0x0') { - print "FAILED:".$res->{RESP}->{RC}."\n"; + if ($res->{RC} ne '0x0') { + print "FAILED:".$res->{RC}."\n"; (); } else { - if (ref($res->{RESP}->{USRLIST}->{USER}) eq 'ARRAY') { - foreach my $usr (@{$res->{RESP}->{USRLIST}->{USER}}) { + if (ref($res->{USRLIST}->{USER}) eq 'ARRAY') { + foreach my $usr (@{$res->{USRLIST}->{USER}}) { push @users, $usr->{NAME}; } } else { - push @users, $res->{RESP}->{USRLIST}->{USER}->{NAME}; + push @users, $res->{USRLIST}->{USER}->{NAME}; } } @users; @@ -315,7 +314,7 @@ sub usrlist { sub getusrprops { my $usr = shift; - my $reqstr = ''; + my $reqstr = ''; my $res = _req($reqstr)->{RESP}->{USER}->{PROP}; $res; @@ -324,7 +323,7 @@ sub getusrprops { sub usradd { my $usr = shift; - my $reqstr=''; + my $reqstr=''; my $res = _req($reqstr); if ($res->{RESP}->{RC} ne '0x0') { print "FAILED:".$res->{RESP}->{RC}."\n"; @@ -336,7 +335,7 @@ sub setusrprop { my $property = shift; my $value = shift; - my $reqstr=''; + my $reqstr=''; my $res = _req($reqstr); my $oldval = ${res}->{RESP}->{USER}->{PROP}->{VAL}; @@ -346,7 +345,7 @@ sub setusrprop { return; } - $reqstr=''.$value.''; + $reqstr=''.$value.''; $res = _req($reqstr); if ($res->{RESP}->{RC} ne '0x0') { @@ -362,14 +361,14 @@ sub syslog_debug { my $destination_ip = shift; my $bcast = shift; - my $reqstr=''.${destination_ip}.''.${bcast}.'FALSE'; + my $reqstr=''.${destination_ip}.''.${bcast}.'FALSE'; my $res = _req($reqstr); if ($res->{RESP}->{RC} ne '0x0') { print "FAILED:".$res->{RESP}->{RC}."\n"; return; } - $reqstr='TRUE0x10x1FALSE'; + $reqstr='TRUE0x10x1FALSE'; $res = _req($reqstr); if ($res->{RESP}->{RC} ne '0x0') { print "FAILED:".$res->{RESP}->{RC}."\n"; @@ -379,6 +378,19 @@ sub syslog_debug { print "Debug messages will be sent to ${destination_ip} (broadcast: ${bcast})\n"; } +sub sensors { + my $slist= _cmd("sensorlist"); + my %sens = (); + + if ($slist->{RC} ne '0x0') { + print "Error getting sensorlist: ".$slist->{RC}."\n"; + return; + } + + foreach my $s (@{$slist->{SENSORLIST}->{SENSOR}}) { + } +} + sub status { my $boardstatus = _cmd("boardstatus")->{STATUS}; my $fw = _cmd("boardfwstatus"); @@ -411,19 +423,23 @@ sub status { print "COM redirection:\t" . (($bs & 0x100000) ? "ON" : "OFF") . "\n"; print "UART redirect:\t\t" . (($bs & 0x200000) ? "ON" : "OFF") . "\n"; print "UART redirect pending:\t" . (($bs & 0x400000) ? "TRUE" : "FALSE") . "\n"; + print "Hex BoardStatus:\t${boardstatus}\n"; my $fws = hex ($boardfwstatus); print "FW status:\t\t"; if ($fws == 3 || $fws == 32771) { - print "WAITING\n"; + print "WAITING"; } else { - print "DONE\n"; + print "DONE"; } + print " (${boardfwstatus})\n"; if (($fws & 0x8080) || ($fws & 0x80)) { printf("FW error:\t\t0x%02x\n", ($fws & 0xff)); } - print "boardstatus:\t\t${boardstatus}\n"; - print "boardfwstatus:\t\t${boardfwstatus}\n"; - print "fw upgrade progress:\t${boardfwprogress}\n"; + if ($fws != 0) { + print "FW upgrade progress:\t${boardfwprogress}\n"; + } + print "\nSensors:\n"; + sensors(); } sub login { @@ -492,8 +508,10 @@ my $powup = 0; my $powdown = 0; my $powcyc = 0; my $reset = 0; +my $resetrsbs2 = 0; my @sprop = (); my @gprop = (); +my @xmlsend = (); my $show = 0; my $enable_debug = ""; my $save = ""; @@ -538,6 +556,11 @@ while (defined($ARGV[0])) { shift @ARGV; last SWITCH; }; + /^-R$/ && do { + $resetrsbs2 = 1; + shift @ARGV; + last SWITCH; + }; /^-l$/ && do { shift @ARGV; $enable_debug = shift @ARGV; @@ -548,6 +571,11 @@ while (defined($ARGV[0])) { shift @ARGV; last SWITCH; }; + /^-X$/ && do { + shift @ARGV; + push @xmlsend, shift @ARGV; + last SWITCH; + }; /^-b$/ && do { $showstat = 1; shift @ARGV; @@ -587,9 +615,11 @@ if (!$valid_arg) { print STDERR "\t-d\t\tpowerdown\n"; print STDERR "\t-c\t\tpowercycle\n"; print STDERR "\t-r\t\treset\n"; + print STDERR "\t-R\t\treset RSB S2 borad\n"; print STDERR "\t-x\t\tshow all properties, variables and settings\n"; print STDERR "\t-l IP\t\tsend SYSLOG debug messages to IP\n"; print STDERR "\t-b\t\tshow board/server status\n"; + print STDERR "\t-X\t\tsend raw XML string (start with REQ tag)\n"; print STDERR "\t-v\t\tverbose\n"; print STDERR "\t-save file\tsave configuration to 'file'\n"; print STDERR "\t-load file\tload configuration from 'file'\n"; @@ -630,6 +660,12 @@ if (@sprop) { } } +if (@xmlsend) { + foreach my $x (@xmlsend) { + print Dumper(_req($x)); + } +} + if ($save ne '') { my @dontsave = qw(ENABLE_LAN_AUTONEG ENABLE_LAN_100 ENABLE_LAN_FDUPLEX GATEWAY IP_ADDRESS NETMASK TFTP_FIRMWARE_FILE TFTP_ADDR_FIRMWARE @@ -713,4 +749,10 @@ if ($showstat) { status(); } +if ($resetrsbs2) { + print "Resetting board...\n"; + _cmd("boardreset"); + exit(0); +} + logout();