/usr/sbin/fence_zvm is in fence-agents 3.1.5-2ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | #!/usr/bin/perl
use Getopt::Std;
use IPC::Open2;
my $ME = $0;
END {
defined fileno STDOUT or return;
close STDOUT and return;
warn "$ME: failed to close standard output: $!\n";
$? ||= 1;
}
# Get the program name from $0 and strip directory names
$_=$0;
s/.*\///;
my $pname = $_;
# WARNING!! Do not add code bewteen "#BEGIN_VERSION_GENERATION" and
# "#END_VERSION_GENERATION" It is generated by the Makefile
#BEGIN_VERSION_GENERATION
$RELEASE_VERSION="3.1.5";
$BUILD_DATE="(built Mon Feb 6 23:36:23 UTC 2012)";
$REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved.";
#END_VERSION_GENERATION
$comm_program = s3270;
$debug = 0;
$max_loops = 10;
sub usage
{
print "Usage:\n";
print "\n";
print "$pname [options]\n";
print "\n";
print "Options:\n";
print " -a <ip> IP address or hostname of the physical s390\n";
print " -h usage\n";
print " -u <string> userid of the virtual machine to fence\n";
print " -p <string> Password\n";
print " -S <path> Script to run to retrieve login password\n";
print " -q quiet mode\n";
print " -r <devnum> ipl device <devnum>\n";
print " -V Version\n";
exit 0;
}
sub fail
{
($msg)=@_;
print "failed: " . $msg . "\n" unless defined $opt_q;
exit 1;
}
sub fail_usage
{
($msg)=@_;
print stderr $msg."\n" if $msg;
print stderr "Please use '-h' for usage.\n";
exit 1;
}
sub version
{
print "$pname $RELEASE_VERSION $BUILD_DATE\n";
print "$REDHAT_COPYRIGHT\n" if ( $REDHAT_COPYRIGHT );
exit 0;
}
sub do_read
{
my($line);
$line = <READ_H>;
if ($debug)
{
my($l) = ($line);
$l =~ s/\n//;
print "read: $l\n";
}
return $line;
}
sub do_write
{
my($line) = @_;
if ($debug)
{
my($l) = ($line);
$l =~ s/\n//;
print "write: $l\n";
}
print WRITE_H $line;
}
sub look_for
{
my ($text, $found);
$found = 0;
($text) = @_;
&do_write("ascii\n");
while(1){
$_ = &do_read;
last unless (/^data:/);
$found = 1 if (/$text/);
}
$_ = &do_read;
fail "error while looking for string '$text'." unless (/ok/);
return $found;
}
sub in_cp_read_state
{
my ($prev);
$_ = "";
&do_write("ascii\n");
while (1){
$prev = $_;
$_ = &do_read;
last unless (/^data:/);
}
$_ = &do_read;
fail "error while looking for machine state." unless (/ok/);
return 1 if ($prev =~ /CP READ/i);
return 0;
}
sub send_wait
{
&do_write("wait\n");
$_ = &do_read;
$_ = &do_read;
if (/ok/){
return 1;
}
return 0;
}
sub send_string
{
my ($cmd);
($cmd) = @_;
&do_write('string "' . $cmd . '\n"' . "\n");
$_ = &do_read;
$_ = &do_read;
if (/ok/){
return send_wait;
}
return 0;
}
sub send_cmd
{
my ($cmd);
($cmd) = @_;
&do_write($cmd . "\n");
$_ = &do_read;
$_ = &do_read;
if (/ok/){
return send_wait;
}
return 0;
}
sub wait_for_response
{
my ($pass, $failure, $msg, $found, $loops);
$loops = 0;
$found = 0;
($pass, $failure, $msg) = @_;
while (1){
$loops = $loops + 1;
fail "timed out waiting for '$pass'" if ($loops > $max_loops);
&do_write("ascii\n");
while(1){
$_ = &do_read;
chomp;
last unless (/^data:/);
$found = 1 if (/$pass/);
if ($failure){
fail("$msg '$_'") if (/$failure/);
}
}
$_ = &do_read;
fail "wait for response failed '$_'" unless (/ok/);
last if $found;
sleep 1;
}
return 0;
}
sub check_response
{
($action) = @_;
$_ = &do_read;
$_ = &do_read;
fail "$action failed." unless (/ok/);
}
sub get_options_stdin
{
my $opt;
my $line = 0;
while( defined($in = <>) )
{
$_ = $in;
chomp;
# strip leading and trailing whitespace
s/^\s*//;
s/\s*$//;
# skip comments
next if /^#/;
$line+=1;
$opt=$_;
next unless $opt;
($name,$val)=split /\s*=\s*/, $opt;
if ( $name eq "" )
{
print stderr "parse error: illegal name in option $line\n";
exit 2;
}
# DO NOTHING -- this field is used by fenced or stomithd
elsif ($name eq "agent" ) { }
# FIXME -- depricated. use "userid" and "password" instead.
elsif ($name eq "fm" )
{
(my $dummy,$opt_u,$opt_p) = split /\s+/,$val;
print STDERR "Depricated \"fm\" entry detected. refer to man page.\n";
}
elsif ($name eq "ipaddr" )
{
$opt_a = $val;
}
elsif ($name eq "ipl" )
{
$opt_r = $val;
}
# FIXME -- depreicated residue of old fencing system
elsif ($name eq "name" ) { }
elsif ($name eq "passwd" )
{
$opt_p = $val;
}
elsif ($name eq "passwd_script" )
{
$opt_S = $val;
}
elsif ($name eq "userid" )
{
$opt_u = $val;
}
else
{
print stderr "parse error: unknown option \"$opt\"\n";
#> exit 2;
}
}
}
if (@ARGV > 0){
getopts("a:hp:S:qr:u:V") || fail_usage;
usage if defined $opt_h;
version if defined $opt_V;
fail_usage "Unkown parameter." if (@ARGV > 0);
fail_usage "No '-a' flag specified." unless defined $opt_a;
if (defined $opt_S) {
$pwd_script_out = `$opt_S`;
chomp($pwd_script_out);
if ($pwd_script_out) {
$opt_p = $pwd_script_out;
}
}
fail_usage "No '-p' or '-S' flag specified." unless defined $opt_p;
fail_usage "No '-u' flag specified." unless defined $opt_u;
} else {
get_options_stdin();
fail "no IP address" unless defined $opt_a;
fail "no userid" unless defined $opt_u;
if (defined $opt_S) {
$pwd_script_out = `$opt_S`;
chomp($pwd_script_out);
if ($pwd_script_out) {
$opt_p = $pwd_script_out;
}
}
fail "no password" unless defined $opt_p;
}
$pid = open2(READ_H, WRITE_H, "$comm_program 2>&1");
&do_write("connect $opt_a\n");
$_ = &do_read;
unless (/^U U U/){
chomp;
fail "communication program failed with '$_'.";
}
$_ = &do_read;
fail "couldn't connect to $opt_a." unless(/ok/);
send_wait or fail "couldn't start 3270 session on $opt_a.";
send_cmd "enter" or fail "couldn't reach logon prompt.";
look_for "Enter one of the following commands:" or fail "doesn't look like a login prompt\n";
send_string "logon $opt_u $opt_p norun here" or fail "couldn't login";
send_cmd "clear" or fail "couldn't send the clear command.";
send_string "#cp query userid";
wait_for_response(uc($opt_u),"Enter one of the following commands:", "logon failed");
fail "machine not in CP READ state" unless in_cp_read_state;
if (defined $opt_r){
send_string "ipl $opt_r" or fail "couldn't send reboot command";
} else {
send_string "stop" or fail "couldn't send stop command\n";
}
fail "command failed" if look_for "Unknown CP command";
if (defined $opt_r && !in_cp_read_state){
send_string "#cp disc";
} else {
&do_write("disconnect\n");
}
&do_write("quit\n");
print "success: booted userid $opt_u\n" unless defined $opt_q;
exit 0;
|