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
|
# Copyright © 2009-2013 Bernhard M. Wiedemann
# Copyright © 2012-2015 SUSE LLC
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, see <http://www.gnu.org/licenses/>.
package backend::ipmi;
use strict;
use base ('backend::baseclass');
require File::Temp;
use File::Temp ();
use Time::HiRes qw(sleep gettimeofday);
use IO::Select;
use IO::Socket::UNIX qw( SOCK_STREAM );
use IO::Handle;
use Data::Dumper;
use POSIX qw/strftime :sys_wait_h/;
use JSON;
require Carp;
use Fcntl;
use bmwqemu qw(fileContent diag save_vars diag);
use testapi qw(get_required_var);
use IPC::Run ();
require IPC::System::Simple;
use autodie qw(:all);
sub new {
my $class = shift;
get_required_var('WORKER_HOSTNAME');
return $class->SUPER::new;
}
use Time::HiRes qw(gettimeofday);
sub ipmi_cmdline {
my ($self) = @_;
return ('ipmitool', '-H', $bmwqemu::vars{IPMI_HOSTNAME}, '-U', $bmwqemu::vars{IPMI_USER}, '-P', $bmwqemu::vars{IPMI_PASSWORD});
}
sub ipmitool {
my ($self, $cmd) = @_;
my @cmd = $self->ipmi_cmdline();
push(@cmd, split(/ /, $cmd));
my ($stdin, $stdout, $stderr, $ret);
$ret = IPC::Run::run(\@cmd, \$stdin, \$stdout, \$stderr);
chomp $stdout;
chomp $stderr;
die join(' ', @cmd) . ": $stderr" unless ($ret);
bmwqemu::diag("IPMI: $stdout");
return $stdout;
}
sub restart_host {
my ($self) = @_;
$self->ipmitool("chassis power off");
while (1) {
my $stdout = $self->ipmitool('chassis power status');
last if $stdout =~ m/is off/;
$self->ipmitool('chassis power off');
sleep(2);
}
$self->ipmitool("chassis power on");
while (1) {
my $ret = $self->ipmitool('chassis power status');
last if $ret =~ m/is on/;
$self->ipmitool('chassis power on');
sleep(2);
}
}
sub relogin_vnc {
my ($self) = @_;
if ($self->{vnc}) {
close($self->{vnc}->socket);
sleep(1);
}
my $vnc = $testapi::distri->add_console(
'sut',
'vnc-base',
{
hostname => $bmwqemu::vars{IPMI_HOSTNAME},
port => 5900,
username => $bmwqemu::vars{IPMI_USER},
password => $bmwqemu::vars{IPMI_PASSWORD},
ikvm => 1
});
$vnc->backend($self);
$self->select_console({testapi_console => 'sut'});
return 1;
}
sub do_start_vm() {
my ($self) = @_;
# remove backend.crashed
$self->unlink_crash_file;
$self->restart_host;
$self->relogin_vnc;
$self->start_serial_grab;
return {};
}
sub do_stop_vm {
my ($self) = @_;
$self->ipmitool("chassis power off");
$self->stop_serial_grab();
return {};
}
sub is_shutdown {
my ($self) = @_;
my $ret = $self->ipmitool('chassis power status');
return $ret =~ m/is off/;
}
# serial grab
sub start_serial_grab {
my ($self) = @_;
$self->{serialpid} = fork();
if ($self->{serialpid} == 0) {
setpgrp 0, 0;
open(my $serial, '>', $self->{serialfile});
open(STDOUT, ">&", $serial);
open(STDERR, ">&", $serial);
my @cmd = ('/usr/sbin/ipmiconsole', '-h', $bmwqemu::vars{IPMI_HOSTNAME}, '-u', $bmwqemu::vars{IPMI_USER}, '-p', $bmwqemu::vars{IPMI_PASSWORD});
# zypper in dumponlyconsole, check devel:openQA for a patched freeipmi version that doesn't grab the terminal
push(@cmd, '--dumponly');
# our supermicro boards need workarounds to get SOL ;(
push(@cmd, qw/-W nochecksumcheck/);
exec(@cmd);
die "exec failed $!";
}
return;
}
sub stop_serial_grab {
my ($self) = @_;
return unless $self->{serialpid};
kill("-TERM", $self->{serialpid});
return waitpid($self->{serialpid}, 0);
}
# serial grab end
1;
# vim: set sw=4 et:
|