ktest.pl 9.1 KB
Newer Older
S
Steven Rostedt 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/perl -w

use strict;
use IPC::Open2;
use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);
use FileHandle;

$#ARGV >= 0 || die "usage: autotest.pl config-file\n";

$| = 1;

my %opt;

#default opts
$opt{"NUM_BUILDS"}		= 5;
$opt{"DEFAULT_BUILD_TYPE"}	= "randconfig";
$opt{"MAKE_CMD"}		= "make";
$opt{"TIMEOUT"}			= 50;
$opt{"TMP_DIR"}			= "/tmp/autotest";
$opt{"SLEEP_TIME"}		= 60;	# sleep time between tests
21
$opt{"BUILD_NOCLEAN"}		= 0;
22
$opt{"REBOOT_ON_ERROR"}		= 0;
23 24
$opt{"POWEROFF_ON_ERROR"}	= 0;
$opt{"POWEROFF_ON_SUCCESS"}	= 0;
25
$opt{"BUILD_OPTIONS"}		= "";
S
Steven Rostedt 已提交
26 27 28 29 30 31

my $version;
my $install_mods;
my $grub_number;
my $target;
my $make;
32
my $noclean;
S
Steven Rostedt 已提交
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

sub read_config {
    my ($config) = @_;

    open(IN, $config) || die "can't read file $config";

    while (<IN>) {

	# ignore blank lines and comments
	next if (/^\s*$/ || /\s*\#/);

	if (/^\s*(\S+)\s*=\s*(.*?)\s*$/) {
	    my $lvalue = $1;
	    my $rvalue = $2;

	    $opt{$lvalue} = $rvalue;
	}
    }

    close(IN);
}

sub doprint {
    print @_;

    if (defined($opt{"LOG_FILE"})) {
	open(OUT, ">> $opt{LOG_FILE}") or die "Can't write to $opt{LOG_FILE}";
	print OUT @_;
	close(OUT);
    }
}

65 66 67
sub dodie {
    doprint "CRITICAL FAILURE... ", @_;

68 69 70 71 72
    if ($opt{"REBOOT_ON_ERROR"}) {
	doprint "REBOOTING\n";
	`$opt{"POWER_CYCLE"}`;

    } elsif ($opt{"POWEROFF_ON_ERROR"} && defined($opt{"POWER_OFF"})) {
73 74 75
	doprint "POWERING OFF\n";
	`$opt{"POWER_OFF"}`;
    }
76

77 78 79
    die @_;
}

S
Steven Rostedt 已提交
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
sub run_command {
    my ($command) = @_;
    my $redirect = "";

    if (defined($opt{"LOG_FILE"})) {
	$redirect = " >> $opt{LOG_FILE} 2>&1";
    }

    doprint "$command ... ";
    `$command $redirect`;

    my $failed = $?;

    if ($failed) {
	doprint "FAILED!\n";
    } else {
	doprint "SUCCESS\n";
    }

    return $failed;
}

my $timeout = $opt{"TIMEOUT"};

sub wait_for_input
{
    my ($fp, $time) = @_;
    my $rin;
    my $ready;
    my $line;
    my $ch;

    if (!defined($time)) {
	$time = $timeout;
    }

    $rin = '';
    vec($rin, fileno($fp), 1) = 1;
    $ready = select($rin, undef, undef, $time);

    $line = "";

    # try to read one char at a time
    while (sysread $fp, $ch, 1) {
	$line .= $ch;
	last if ($ch eq "\n");
    }

    if (!length($line)) {
	return undef;
    }

    return $line;
}

135
sub reboot_to {
S
Steven Rostedt 已提交
136 137 138 139 140 141 142 143 144
    run_command "ssh $target '(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'";
}

sub monitor {
    my $flags;
    my $booted = 0;
    my $bug = 0;
    my $pid;
    my $doopen2 = 0;
145
    my $skip_call_trace = 0;
S
Steven Rostedt 已提交
146 147

    if ($doopen2) {
148
	$pid = open2(\*IN, \*OUT, $opt{"CONSOLE"});
S
Steven Rostedt 已提交
149
	if ($pid < 0) {
150
	    dodie "Failed to connect to the console";
S
Steven Rostedt 已提交
151 152 153 154 155 156
	}
    } else {
	$pid = open(IN, "$opt{CONSOLE} |");
    }

    $flags = fcntl(IN, F_GETFL, 0) or
157
	dodie "Can't get flags for the socket: $!\n";
S
Steven Rostedt 已提交
158 159

    $flags = fcntl(IN, F_SETFL, $flags | O_NONBLOCK) or
160
	dodie "Can't set flags for the socket: $!\n";
S
Steven Rostedt 已提交
161 162 163 164 165 166 167 168 169 170

    my $line;
    my $full_line = "";

    doprint "Wait for monitor to settle down.\n";
    # read the monitor and wait for the system to calm down
    do {
	$line = wait_for_input(\*IN, 5);
    } while (defined($line));

171
    reboot_to;
S
Steven Rostedt 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187

    for (;;) {

	$line = wait_for_input(\*IN);

	last if (!defined($line));

	doprint $line;

	# we are not guaranteed to get a full line
	$full_line .= $line;

	if ($full_line =~ /login:/) {
	    $booted = 1;
	}

188 189 190 191
	if ($full_line =~ /\[ backtrace testing \]/) {
	    $skip_call_trace = 1;
	}

S
Steven Rostedt 已提交
192
	if ($full_line =~ /call trace:/i) {
193 194 195 196 197 198 199 200
	    $bug = 1 if (!$skip_call_trace);
	}

	if ($full_line =~ /\[ end of backtrace testing \]/) {
	    $skip_call_trace = 0;
	}

	if ($full_line =~ /Kernel panic -/) {
S
Steven Rostedt 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
	    $bug = 1;
	}

	if ($line =~ /\n/) {
	    $full_line = "";
	}
    }

    doprint "kill child process $pid\n";
    kill 2, $pid;

    print "closing!\n";
    close(IN);

    if (!$booted) {
216
	dodie "failed - never got a boot prompt.\n";
S
Steven Rostedt 已提交
217 218 219
    }

    if ($bug) {
220
	dodie "failed - got a bug report\n";
S
Steven Rostedt 已提交
221 222 223 224 225 226
    }
}

sub install {

    if (run_command "scp $opt{OUTPUT_DIR}/$opt{BUILD_TARGET} $target:$opt{TARGET_IMAGE}") {
227
	dodie "failed to copy image";
S
Steven Rostedt 已提交
228 229 230 231
    }

    if ($install_mods) {
	my $modlib = "/lib/modules/$version";
232
	my $modtar = "autotest-mods.tar.bz2";
S
Steven Rostedt 已提交
233 234

	if (run_command "ssh $target rm -rf $modlib") {
235 236 237 238
	    dodie "failed to remove old mods: $modlib";
	}

	# would be nice if scp -r did not follow symbolic links
239
	if (run_command "cd $opt{TMP_DIR} && tar -cjf $modtar lib/modules/$version") {
240
	    dodie "making tarball";
S
Steven Rostedt 已提交
241 242
	}

243 244 245 246 247 248 249 250
	if (run_command "scp $opt{TMP_DIR}/$modtar $target:/tmp") {
	    dodie "failed to copy modules";
	}

	unlink "$opt{TMP_DIR}/$modtar";

	if (run_command "ssh $target '(cd / && tar xf /tmp/$modtar)'") {
	    dodie "failed to tar modules";
S
Steven Rostedt 已提交
251
	}
252 253

	run_command "ssh $target rm -f /tmp/$modtar";
S
Steven Rostedt 已提交
254 255 256 257 258 259
    }

}

sub build {
    my ($type) = @_;
260 261 262
    my $defconfig = "";
    my $append = "";

263 264 265 266 267 268 269
    if ($type =~ /^useconfig:(.*)/) {
	if (run_command "cp $1 $opt{OUTPUT_DIR}/.config") {
	    dodie "could not copy $1 to .config";
	}
	$type = "oldconfig";
    }

270 271 272
    # old config can ask questions
    if ($type eq "oldconfig") {
	$append = "yes ''|";
273 274 275 276

	# allow for empty configs
	run_command "touch $opt{OUTPUT_DIR}/.config";

277 278 279
	if (run_command "mv $opt{OUTPUT_DIR}/.config $opt{OUTPUT_DIR}/config_temp") {
	    dodie "moving .config";
	}
S
Steven Rostedt 已提交
280

281 282 283
	if (!$noclean && run_command "$make mrproper") {
	    dodie "make mrproper";
	}
S
Steven Rostedt 已提交
284

285 286 287 288 289 290 291 292 293 294
	if (run_command "mv $opt{OUTPUT_DIR}/config_temp $opt{OUTPUT_DIR}/.config") {
	    dodie "moving config_temp";
	}

    } elsif (!$noclean) {
	unlink "$opt{OUTPUT_DIR}/.config";
	if (run_command "$make mrproper") {
	    dodie "make mrproper";
	}
    }
S
Steven Rostedt 已提交
295 296

    # add something to distinguish this build
297
    open(OUT, "> $opt{OUTPUT_DIR}/localversion") or dodie("Can't make localversion file");
S
Steven Rostedt 已提交
298 299 300
    print OUT "$opt{LOCALVERSION}\n";
    close(OUT);

301 302
    if (defined($opt{"MIN_CONFIG"})) {
	$defconfig = "KCONFIG_ALLCONFIG=$opt{MIN_CONFIG}";
S
Steven Rostedt 已提交
303 304
    }

305 306
    if (run_command "$defconfig $append $make $type") {
	dodie "failed make config";
S
Steven Rostedt 已提交
307 308 309
    }

    if (run_command "$make $opt{BUILD_OPTIONS}") {
310
	dodie "failed build";
S
Steven Rostedt 已提交
311 312 313
    }
}

314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
sub reboot {
    # try to reboot normally
    if (run_command "ssh $target reboot") {
	# nope? power cycle it.
	run_command "$opt{POWER_CYCLE}";
    }
}

sub halt {
    if ((run_command "ssh $target halt") or defined($opt{"POWER_OFF"})) {
	# nope? the zap it!
	run_command "$opt{POWER_OFF}";
    }
}

S
Steven Rostedt 已提交
329 330 331 332 333 334 335 336
read_config $ARGV[0];

# mandatory configs
die "MACHINE not defined\n"		if (!defined($opt{"MACHINE"}));
die "SSH_USER not defined\n"		if (!defined($opt{"SSH_USER"}));
die "BUILD_DIR not defined\n"		if (!defined($opt{"BUILD_DIR"}));
die "OUTPUT_DIR not defined\n"		if (!defined($opt{"OUTPUT_DIR"}));
die "BUILD_TARGET not defined\n"	if (!defined($opt{"BUILD_TARGET"}));
337
die "TARGET_IMAGE not defined\n"	if (!defined($opt{"TARGET_IMAGE"}));
S
Steven Rostedt 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
die "POWER_CYCLE not defined\n"		if (!defined($opt{"POWER_CYCLE"}));
die "CONSOLE not defined\n"		if (!defined($opt{"CONSOLE"}));
die "LOCALVERSION not defined\n"	if (!defined($opt{"LOCALVERSION"}));
die "GRUB_MENU not defined\n"		if (!defined($opt{"GRUB_MENU"}));

chdir $opt{"BUILD_DIR"} || die "can't change directory to $opt{BUILD_DIR}";

$target = "$opt{SSH_USER}\@$opt{MACHINE}";

doprint "\n\nSTARTING AUTOMATED TESTS\n";

doprint "Find grub menu ... ";
$grub_number = -1;
open(IN, "ssh $target cat /boot/grub/menu.lst |")
    or die "unable to get menu.lst";
while (<IN>) {
    if (/^\s*title\s+$opt{GRUB_MENU}\s*$/) {
	$grub_number++;
	last;
    } elsif (/^\s*title\s/) {
	$grub_number++;
    }
}
close(IN);
die "Could not find '$opt{GRUB_MENU}' in /boot/grub/menu on $opt{MACHINE}"
    if ($grub_number < 0);
doprint "$grub_number\n";

$make = "$opt{MAKE_CMD} O=$opt{OUTPUT_DIR}";

# First we need to do is the builds
for (my $i = 1; $i <= $opt{"NUM_BUILDS"}; $i++) {
    my $type = "BUILD_TYPE[$i]";

372 373 374 375 376 377 378
    if (defined($opt{"BUILD_NOCLEAN[$i]"}) &&
	$opt{"BUILD_NOCLEAN[$i]"} != 0) {
	$noclean = 1;
    } else {
	$noclean = $opt{"BUILD_NOCLEAN"};
    }

S
Steven Rostedt 已提交
379 380 381 382 383 384 385 386
    if (!defined($opt{$type})) {
	$opt{$type} = $opt{"DEFAULT_BUILD_TYPE"};
    }

    doprint "\n\n";
    doprint "RUNNING TEST $i of $opt{NUM_BUILDS} with option $opt{$type}\n\n";

    if ($opt{$type} ne "nobuild") {
387
	build $opt{$type};
S
Steven Rostedt 已提交
388 389 390 391 392 393 394 395 396 397
    }

    # get the release name
    doprint "$make kernelrelease ... ";
    $version = `$make kernelrelease | tail -1`;
    chomp($version);
    doprint "$version\n";

    # should we process modules?
    $install_mods = 0;
398
    open(IN, "$opt{OUTPUT_DIR}/.config") or dodie("Can't read config file");
S
Steven Rostedt 已提交
399 400 401 402 403 404 405 406 407 408
    while (<IN>) {
	if (/CONFIG_MODULES(=y)?/) {
	    $install_mods = 1 if (defined($1));
	    last;
	}
    }
    close(IN);

    if ($install_mods) {
	if (run_command "$make INSTALL_MOD_PATH=$opt{TMP_DIR} modules_install") {
409
	    dodie "Failed to install modules";
S
Steven Rostedt 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
	}
    } else {
	doprint "No modules needed\n";
    }

    install;

    monitor;

    doprint "\n\n*******************************************\n";
    doprint     "*******************************************\n";
    doprint     "**            SUCCESS!!!!                **\n";
    doprint     "*******************************************\n";
    doprint     "*******************************************\n";

425 426 427
    if ($i != $opt{"NUM_BUILDS"}) {
	reboot;
	sleep "$opt{SLEEP_TIME}";
S
Steven Rostedt 已提交
428 429 430
    }
}

431
if ($opt{"POWEROFF_ON_SUCCESS"}) {
432 433 434
    halt;
} else {
    reboot;
435
}
436

S
Steven Rostedt 已提交
437
exit 0;