]> rtime.felk.cvut.cz Git - novaboot.git/blob - novaboot
Change target connection warning to error
[novaboot.git] / novaboot
1 #!/usr/bin/perl -w
2
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 2 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 use strict;
17 use warnings;
18 use warnings (exists $ENV{NOVABOOT_TEST} ? (FATAL => 'all') : ());
19 use Getopt::Long qw(GetOptionsFromString GetOptionsFromArray);
20 use Pod::Usage;
21 use File::Basename;
22 use File::Spec;
23 use IO::Handle;
24 use Time::HiRes("usleep");
25 use Socket;
26 use FileHandle;
27 use IPC::Open2;
28 use POSIX qw(:errno_h);
29 use Cwd qw(getcwd abs_path);
30 use Expect;
31
32 # always flush
33 $| = 1;
34
35 my $invocation_dir = $ENV{PWD} || getcwd();
36
37 ## Configuration file handling
38
39 # Default configuration
40 $CFG::hypervisor = "";
41 $CFG::hypervisor_params = "serial";
42 $CFG::genisoimage = "genisoimage";
43 $CFG::qemu = 'qemu-system-i386 -cpu coreduo -smp 2';
44 $CFG::default_target = 'qemu';
45 %CFG::targets = (
46     'qemu' => '--qemu',
47     "tud" => '--server=erwin.inf.tu-dresden.de:~sojka/boot/novaboot --rsync-flags="--chmod=Dg+s,ug+w,o-w,+rX --rsync-path=\"umask 002 && rsync\"" --grub --grub-prefix=(nd)/tftpboot/sojka/novaboot --grub-preamble="timeout 0" --concat --iprelay=141.76.48.80:2324 --scriptmod=s/\\\\bhostserial\\\\b/hostserialpci/g',
48     "novabox" => '--server=rtime.felk.cvut.cz:/srv/tftp/novaboot --rsync-flags="--chmod=Dg+s,ug+w,o-w,+rX --rsync-path=\"umask 002 && rsync\"" --pulsar --iprelay=147.32.86.92:2324',
49     "localhost" => '--scriptmod=s/console=tty[A-Z0-9,]+// --server=/boot/novaboot/$NAME --grub2 --grub-prefix=/boot/novaboot/$NAME --grub2-prolog="  set root=\'(hd0,msdos1)\'"',
50     "ryu" =>  '--uboot --uboot-init="mw f0000b00 \${psc_cfg}; sleep 1" --uboot-addr kernel=800000 --uboot-addr ramdisk=b00000 --uboot-addr fdt=7f0000',
51     "ryuglab" => '--target ryu --server=pc-sojkam.felk.cvut.cz:/srv/tftp --remote-cmd="ssh -tt pc-sojkam.felk.cvut.cz \"sterm -d -s 115200 /dev/ttyUSB0\""',
52     "ryulocal" => '--target ryu --dhcp-tftp --serial --reset-cmd="if which dtrrts; then dtrrts $NB_SERIAL 0 1; sleep 0.1; dtrrts $NB_SERIAL 1 1; fi"',
53     );
54 chomp(my $nproc = `nproc`);
55 $CFG::scons = "scons -j$nproc";
56 $CFG::make = "make -j$nproc";
57
58 my $builddir;
59
60 sub read_config($) {
61     my ($cfg) = @_;
62     {
63         package CFG; # Put config data into a separate namespace
64
65         my $rc = do($cfg);
66
67         # Check for errors
68         if ($@) {
69             die("ERROR: Failure compiling '$cfg' - $@");
70         } elsif (! defined($rc)) {
71             die("ERROR: Failure reading '$cfg' - $!");
72         } elsif (! $rc) {
73             die("ERROR: Failure processing '$cfg'");
74         }
75     }
76     $builddir = File::Spec->rel2abs($CFG::builddir, dirname($cfg)) if defined $CFG::builddir;
77     print STDERR "novaboot: Read $cfg\n";
78 }
79
80 my @cfgs;
81 {
82     # We don't use $0 here, because it points to the novaboot itself and
83     # not to the novaboot script. The problem with this approach is that
84     # when a script is run as "novaboot <options> <script>" then $ARGV[0]
85     # contains the first option. Hence the -f check.
86     my $dir = File::Spec->rel2abs($ARGV[0] && -f $ARGV[0] ? dirname($ARGV[0]) : '', $invocation_dir);
87     while ((-d $dir || -l $dir ) && $dir ne "/") {
88         push @cfgs, "$dir/.novaboot" if -r "$dir/.novaboot";
89         my @dirs = File::Spec->splitdir($dir);
90         $dir = File::Spec->catdir(@dirs[0..$#dirs-1]);
91     }
92     @cfgs = reverse @cfgs;
93
94     my $xdg_config_home = $ENV{'XDG_CONFIG_HOME'} || $ENV{'HOME'}.'/.config';
95     unshift(@cfgs, "$xdg_config_home/novaboot") if -r "$xdg_config_home/novaboot";
96
97     $dir = $ENV{'NOVABOOT_CONFIG_DIR'} || '/etc/novaboot.d';
98     if (opendir(my $dh, $dir)) {
99         my @etccfg = map { "$dir/$_" } grep { /^[-_a-zA-Z0-9]+$/ && -f "$dir/$_" } readdir($dh);
100         closedir $dh;
101         @etccfg = sort(@etccfg);
102         @cfgs = ( @etccfg, @cfgs );
103     }
104 }
105 my $cfg = $ENV{'NOVABOOT_CONFIG'};
106 Getopt::Long::Configure(qw/no_ignore_case pass_through/);
107 GetOptions ("config|c=s" => \$cfg);
108 read_config($_) foreach $cfg or @cfgs;
109
110 ## Command line handling
111
112 my $explicit_target;
113 GetOptions ("target|t=s" => \$explicit_target);
114
115 my ($amt, @append, $bender, @chainloaders, $concat, $config_name_opt, $dhcp_tftp, $dump_opt, $dump_config, @exiton, $exiton_timeout, @expect_raw, $gen_only, $grub_config, $grub_prefix, $grub_preamble, $grub2_prolog, $grub2_config, $help, $ider, $iprelay, $iso_image, $interactive, $kernel_opt, $make, $man, $no_file_gen, $off_opt, $on_opt, $pulsar, $pulsar_root, $qemu, $qemu_append, $qemu_flags_cmd, $remote_cmd, $remote_expect, $reset, $reset_cmd, $rom_prefix, $rsync_flags, @scriptmod, $scons, $serial, $server, $stty, $tftp, $tftp_port, $uboot, %uboot_addr, $uboot_cmd, @uboot_init);
116
117 %uboot_addr = (
118     'kernel'  => '${kernel_addr_r}',
119     'ramdisk' => '${ramdisk_addr_r}',
120     'fdt'     => '${fdt_addr_r}',
121     );
122
123 $rsync_flags = '';
124 $rom_prefix = 'rom://';
125 $stty = 'raw -crtscts -onlcr 115200';
126 $reset = 1;                     # Reset target by default
127
128 my @expect_seen = ();
129 sub handle_expect
130 {
131     my ($n, $v) = @_;
132     push(@expect_seen, '-re') if $n eq "expect-re";
133     push(@expect_seen, $v);
134 }
135
136 sub handle_send
137 {
138     my ($n, $v) = @_;
139     unless (@expect_seen) { die("No --expect before --send"); }
140     my $ret = ($n eq "sendcont") ? exp_continue : 0;
141     unshift(@expect_raw, sub { shift->send(eval("\"$v\"")); $ret; });
142     unshift(@expect_raw, @expect_seen);
143     @expect_seen = ();
144 }
145
146 my %opt_spec;
147 %opt_spec = (
148     "amt=s"          => \$amt,
149     "append|a=s"     => \@append,
150     "bender|b"       => \$bender,
151     "build-dir=s"    => sub { my ($n, $v) = @_; $builddir = File::Spec->rel2abs($v); },
152     "concat"         => \$concat,
153     "chainloader=s"  => \@chainloaders,
154     "dhcp-tftp|d"    => \$dhcp_tftp,
155     "dump"           => \$dump_opt,
156     "dump-config"    => \$dump_config,
157     "exiton=s"       => \@exiton,
158     "exiton-timeout=i"=> \$exiton_timeout,
159     "exiton-re=s"    => sub { my ($n, $v) = @_; push(@exiton, '-re', $v); },
160     "expect=s"       => \&handle_expect,
161     "expect-re=s"    => \&handle_expect,
162     "expect-raw=s"   => sub { my ($n, $v) = @_; unshift(@expect_raw, eval($v)); },
163     "gen-only"       => \$gen_only,
164     "grub|g:s"       => \$grub_config,
165     "grub-preamble=s"=> \$grub_preamble,
166     "prefix|grub-prefix=s" => \$grub_prefix,
167     "grub2:s"        => \$grub2_config,
168     "grub2-prolog=s" => \$grub2_prolog,
169     "ider"           => \$ider,
170     "iprelay=s"      => \$iprelay,
171     "iso:s"          => \$iso_image,
172     "kernel|k=s"     => \$kernel_opt,
173     "interactive|i"  => \$interactive,
174     "name=s"         => \$config_name_opt,
175     "make|m:s"       => \$make,
176     "no-file-gen"    => \$no_file_gen,
177     "off"            => \$off_opt,
178     "on"             => \$on_opt,
179     "pulsar|p:s"     => \$pulsar,
180     "pulsar-root=s"  => \$pulsar_root,
181     "qemu|Q:s"       => \$qemu,
182     "qemu-append=s"  => \$qemu_append,
183     "qemu-flags|q=s" => \$qemu_flags_cmd,
184     "remote-cmd=s"   => \$remote_cmd,
185     "remote-expect=s"=> \$remote_expect,
186     "reset!"         => \$reset,
187     "reset-cmd=s"    => \$reset_cmd,
188     "rsync-flags=s"  => \$rsync_flags,
189     "scons:s"        => \$scons,
190     "scriptmod=s"    => \@scriptmod,
191     "send=s"         => \&handle_send,
192     "sendcont=s"     => \&handle_send,
193     "serial|s:s"     => \$serial,
194     "server:s"       => \$server,
195     "strip-rom"      => sub { $rom_prefix = ''; },
196     "stty=s"         => \$stty,
197     "tftp"           => \$tftp,
198     "tftp-port=i"    => \$tftp_port,
199     "uboot:s"        => \$uboot,
200     "uboot-addr=s"   => \%uboot_addr,
201     "uboot-cmd=s"    => \$uboot_cmd,
202     "uboot-init=s"   => \@uboot_init,
203     "h"              => \$help,
204     "help"           => \$man,
205     );
206
207 # First process target options
208 {
209     my $t = defined($explicit_target) ? $explicit_target : $CFG::default_target;
210     my @target_expanded;
211     Getopt::Long::Configure(qw/no_ignore_case pass_through/);
212     while ($t) {
213         exists $CFG::targets{$t} or die("Unknown target '$t' (valid targets are: ".join(", ", sort keys(%CFG::targets)).")");
214
215         undef $explicit_target;
216         my ($ret, $remaining_args) = GetOptionsFromString ($CFG::targets{$t}, ("target|t=s" => \$explicit_target));
217         if (!$ret) { die "Error parsing target $t option"; }
218         push(@target_expanded, @$remaining_args);
219         $t = $explicit_target;
220     }
221     Getopt::Long::Configure(qw/no_ignore_case no_pass_through/);
222     GetOptionsFromArray(\@target_expanded, %opt_spec) or die ("Error in target definition");
223 }
224
225 # Then process other command line options - some of them may override
226 # what was specified by the target
227 GetOptions %opt_spec or die("Error in command line arguments");
228 pod2usage(1) if $help;
229 pod2usage(-exitstatus => 0, -verbose => 2) if $man;
230
231 ### Dump sanitized configuration (if requested)
232
233 if ($dump_config) {
234     use Data::Dumper;
235     $Data::Dumper::Indent=1;
236     print "# This file is in perl syntax.\n";
237     foreach my $key(sort(keys(%CFG::))) { # See "Symbol Tables" in perlmod(1)
238         if (defined ${$CFG::{$key}}) { print Data::Dumper->Dump([${$CFG::{$key}}], ["*$key"]); }
239         if (        @{$CFG::{$key}}) { print Data::Dumper->Dump([\@{$CFG::{$key}}], ["*$key"]); }
240         if (        %{$CFG::{$key}}) { print Data::Dumper->Dump([\%{$CFG::{$key}}], ["*$key"]); }
241     }
242     print "1;\n";
243     exit;
244 }
245
246 ### Sanitize configuration
247
248 if ($interactive && !-t STDIN) {
249     die("novaboot: Interactive mode not supported when not on terminal");
250 }
251
252 if (defined $config_name_opt && scalar(@ARGV) > 1) { die "You cannot use --name with multiple scripts"; }
253
254 if ($ider) {
255     $iso_image //= ''; # IDE-R needs an ISO image
256     if (!defined $amt) { die "Error: --ider requires --amt"; }
257 }
258
259 {
260     my %input_opts = ('--iprelay'    => \$iprelay,
261                       '--serial'     => \$serial,
262                       '--remote-cmd' => \$remote_cmd,
263                       '--amt'        => \$amt);
264     my @opts = grep(defined(${$input_opts{$_}}) , keys %input_opts);
265
266     die("novaboot: More than one target connection option: ".join(', ', @opts)) if scalar @opts > 1;
267 }
268
269 # Default options
270 if (defined $serial) {
271     $serial ||= "/dev/ttyUSB0";
272     $ENV{NB_SERIAL} = $serial;
273 }
274 if (defined $grub_config) { $grub_config ||= "menu.lst"; }
275 if (defined $grub2_config) { $grub2_config ||= "grub.cfg"; }
276
277 ## Parse the novaboot script(s)
278 my @scripts;
279 my $file;
280 my $EOF;
281 my $last_fn = '';
282 my ($modules, $variables, $generated, $continuation) = ([], {}, []);
283 my $skip_reading = defined($on_opt) || defined($off_opt);
284 while (!$skip_reading && ($_ = <>)) {
285     if ($ARGV ne $last_fn) { # New script
286         die "Missing EOF in $last_fn" if $file;
287         die "Unfinished line in $last_fn" if $continuation;
288         $last_fn = $ARGV;
289         push @scripts, { 'filename' => $ARGV,
290                          'modules' => $modules = [],
291                          'variables' => $variables = {},
292                          'generated' => $generated = []};
293
294     }
295     chomp();
296     next if /^#/ || /^\s*$/;    # Skip comments and empty lines
297
298     $_ =~ s/^[[:space:]]*// if ($continuation);
299
300     if (/\\$/) {                # Line continuation
301         $continuation .= substr($_, 0, length($_)-1);
302         next;
303     }
304
305     if ($continuation) {        # Last continuation line
306         $_ = $continuation . $_;
307         $continuation = '';
308     }
309
310     foreach my $mod(@scriptmod) { eval $mod; }
311
312     if ($file && $_ eq $EOF) {  # Heredoc end
313         undef $file;
314         next;
315     }
316     if ($file) {                # Heredoc content
317         push @{$file}, "$_\n";
318         next;
319     }
320     if (/^([A-Z_]+)=(.*)$/) {   # Internal variable
321         $$variables{$1} = $2;
322         push(@exiton, $2) if ($1 eq "EXITON");
323         next;
324     }
325     if (s/^load *//) {          # Load line
326         die("novaboot: '$last_fn' line $.: Missing file name\n") unless /^[^ <]+/;
327         if (/^([^ ]*)(.*?)[[:space:]]*<<([^ ]*)$/) { # Heredoc start
328             push @$modules, "$1$2";
329             $file = [];
330             push @$generated, {filename => $1, content => $file};
331             $EOF = $3;
332             next;
333         }
334         if (/^([^ ]*)(.*?)[[:space:]]*< ?(.*)$/) { # Command substitution
335             push @$modules, "$1$2";
336             push @$generated, {filename => $1, command => $3};
337             next;
338         }
339         push @$modules, $_;
340         next;
341     }
342     if (/^run (.*)/) {          # run line
343         push @$generated, {command => $1};
344         next;
345     }
346     if (/^uboot(?::([0-9]+)s)? (.*)/) { # uboot line
347         # TODO: If U-Boot supports some interactive menu, it might
348         # make sense to store uboot lines per novaboot script.
349         if ($1) {               # Command with explicit timeout
350             push @uboot_init, { command => $2,
351                                 timeout => $1 };
352         } else {                # Command without explicit timeout
353             push @uboot_init, $2;
354         }
355         next;
356     }
357
358     die("novaboot: Cannot parse script '$last_fn' line $.. Didn't you forget 'load' keyword?\n");
359 }
360 # use Data::Dumper;
361 # print Dumper(\@scripts);
362
363 foreach my $script (@scripts) {
364     $modules = $$script{modules};
365     @$modules[0] =~ s/^[^ ]*/$kernel_opt/ if $kernel_opt;
366     @$modules[0] .= ' ' . join(' ', @append) if @append;
367
368     my $kernel;
369     if (exists $variables->{KERNEL}) {
370         $kernel = $variables->{KERNEL};
371     } else {
372         if ($CFG::hypervisor) {
373             $kernel = $CFG::hypervisor . " ";
374             if (exists $variables->{HYPERVISOR_PARAMS}) {
375                 $kernel .= $variables->{HYPERVISOR_PARAMS};
376             } else {
377                 $kernel .= $CFG::hypervisor_params;
378             }
379         }
380     }
381     @$modules = ($kernel, @$modules) if $kernel;
382     @$modules = (@chainloaders, @$modules);
383     @$modules = ("bin/boot/bender", @$modules) if ($bender || defined $ENV{'NOVABOOT_BENDER'});
384 }
385
386 if ($dump_opt) {
387     foreach my $script (@scripts) {
388         print join("\n", @{$$script{modules}})."\n";
389     }
390     exit(0);
391 }
392
393 ## Helper functions
394
395 sub generate_configs($$$) {
396     my ($base, $generated, $filename) = @_;
397     if ($base) { $base = "$base/"; };
398     foreach my $g(@$generated) {
399       if (exists $$g{content}) {
400         my $config = $$g{content};
401         my $fn = $$g{filename};
402         open(my $f, '>', $fn) || die("$fn: $!");
403         map { s|\brom://([^ ]*)|$rom_prefix$base$1|g; print $f "$_"; } @{$config};
404         close($f);
405         print "novaboot: Created $fn\n";
406       } elsif (exists $$g{command} && ! $no_file_gen) {
407         $ENV{SRCDIR} = dirname(File::Spec->rel2abs( $filename, $invocation_dir ));
408         if (exists $$g{filename}) {
409             system_verbose("( $$g{command} ) > $$g{filename}");
410         } else {
411             system_verbose($$g{command});
412         }
413       }
414     }
415 }
416
417 sub generate_grub_config($$$$;$)
418 {
419     my ($filename, $title, $base, $modules_ref, $preamble) = @_;
420     if ($base) { $base = "$base/"; };
421     open(my $fg, '>', $filename) or die "$filename: $!";
422     print $fg "$preamble\n" if $preamble;
423     print $fg "title $title\n" if $title;
424     #print $fg "root $base\n"; # root doesn't really work for (nd)
425     my $first = 1;
426     foreach (@$modules_ref) {
427         if ($first) {
428             $first = 0;
429             my ($kbin, $kcmd) = split(' ', $_, 2);
430             $kcmd = '' if !defined $kcmd;
431             print $fg "kernel ${base}$kbin $kcmd\n";
432         } else {
433             s|\brom://([^ ]*)|$rom_prefix$base$1|g; # Translate rom:// files - needed for vdisk parameter of sigma0
434             print $fg "module $base$_\n";
435         }
436     }
437     close($fg);
438     print("novaboot: Created $builddir/$filename\n");
439     return $filename;
440 }
441
442 sub generate_syslinux_config($$$$)
443 {
444     my ($filename, $title, $base, $modules_ref) = @_;
445     if ($base && $base !~ /\/$/) { $base = "$base/"; };
446     open(my $fg, '>', $filename) or die "$filename: $!";
447     print $fg "LABEL $title\n";
448     #TODO print $fg "MENU LABEL $human_readable_title\n";
449
450     my ($kbin, $kcmd) = split(' ', @$modules_ref[0], 2);
451
452     if (system("file $kbin|grep 'Linux kernel'") == 0) {
453         my $initrd = @$modules_ref[1];
454         die('To many "load" lines for Linux kernel') if (scalar @$modules_ref > 2);
455         print $fg "LINUX $base$kbin\n";
456         print $fg "APPEND $kcmd\n";
457         print $fg "INITRD $base$initrd\n";
458     } else {
459         print $fg "KERNEL mboot.c32\n";
460         my @append;
461         foreach (@$modules_ref) {
462             s|\brom://([^ ]*)|$rom_prefix$base$1|g; # Translate rom:// files - needed for vdisk parameter of sigma0
463             push @append, "$base$_";
464             print $fg "APPEND ".join(' --- ', @append)."\n";
465         }
466     }
467     #TODO print $fg "TEXT HELP\n";
468     #TODO print $fg "some help here\n";
469     #TODO print $fg "ENDTEXT\n";
470     close($fg);
471     print("novaboot: Created $builddir/$filename\n");
472     return $filename;
473 }
474
475 sub generate_grub2_config($$$$;$$)
476 {
477     my ($filename, $title, $base, $modules_ref, $preamble, $prolog) = @_;
478     if ($base && substr($base,-1,1) ne '/') { $base = "$base/"; };
479     open(my $fg, '>', $filename) or die "$filename: $!";
480     print $fg "$preamble\n" if $preamble;
481     $title ||= 'novaboot';
482     print $fg "menuentry $title {\n";
483     print $fg "$prolog\n" if $prolog;
484     my $first = 1;
485     foreach (@$modules_ref) {
486         if ($first) {
487             $first = 0;
488             my ($kbin, $kcmd) = split(' ', $_, 2);
489             $kcmd = '' if !defined $kcmd;
490             print $fg "  multiboot ${base}$kbin $kcmd\n";
491         } else {
492             my @args = split;
493             # GRUB2 doesn't pass filename in multiboot info so we have to duplicate it here
494             $_ = join(' ', ($args[0], @args));
495             s|\brom://|$rom_prefix|g; # We do not need to translate path for GRUB2
496             print $fg "  module $base$_\n";
497         }
498     }
499     print $fg "}\n";
500     close($fg);
501     print("novaboot: Created $builddir/$filename\n");
502     return $filename;
503 }
504
505 sub generate_pulsar_config($$)
506 {
507     my ($filename, $modules_ref) = @_;
508     open(my $fg, '>', $filename) or die "$filename: $!";
509     print $fg "root $pulsar_root\n" if defined $pulsar_root;
510     my $first = 1;
511     my ($kbin, $kcmd);
512     foreach (@$modules_ref) {
513         if ($first) {
514             $first = 0;
515             ($kbin, $kcmd) = split(' ', $_, 2);
516             $kcmd = '' if !defined $kcmd;
517         } else {
518             my @args = split;
519             s|\brom://|$rom_prefix|g;
520             print $fg "load $_\n";
521         }
522     }
523     # Put kernel as last - this is needed for booting Linux and has no influence on non-Linux OSes
524     print $fg "exec $kbin $kcmd\n";
525     close($fg);
526     print("novaboot: Created $builddir/$filename\n");
527     return $filename;
528 }
529
530 sub shell_cmd_string(@)
531 {
532     return join(' ', map((/^[-_=a-zA-Z0-9\/\.\+]+$/ ? "$_" : "'$_'"), @_));
533 }
534
535 sub exec_verbose(@)
536 {
537     print "novaboot: Running: ".shell_cmd_string(@_)."\n";
538     exec(@_);
539     exit(1); # should not be reached
540 }
541
542 sub system_verbose($)
543 {
544     my $cmd = shift;
545     print "novaboot: Running: $cmd\n";
546     my $ret = system($cmd);
547     if ($ret & 0x007f) { die("Command terminated by a signal"); }
548     if ($ret & 0xff00) {die("Command exit with non-zero exit code"); }
549     if ($ret) { die("Command failure $ret"); }
550 }
551
552 ## WvTest headline
553
554 if (exists $variables->{WVDESC}) {
555     print "Testing \"$variables->{WVDESC}\" in $last_fn:\n";
556 } elsif ($last_fn =~ /\.wv$/) {
557     print "Testing \"all\" in $last_fn:\n";
558 }
559
560 ## Connect to the target and check whether it is not occupied
561
562 # We have to do this before file generation phase, because file
563 # generation is intermixed with file deployment phase and we want to
564 # check whether the target is not used by somebody else before
565 # deploying files. Otherwise, we may rewrite other user's files on a
566 # boot server.
567
568 my $exp; # Expect object to communicate with the target over serial line
569
570 my ($target_reset, $target_power_on, $target_power_off);
571 my ($amt_user, $amt_password, $amt_host, $amt_port);
572
573 if (defined $iprelay) {
574     my $IPRELAY;
575     $iprelay =~ /([.0-9]+)(:([0-9]+))?/;
576     my $addr = $1;
577     my $port = $3 || 23;
578     my $paddr   = sockaddr_in($port, inet_aton($addr));
579     my $proto   = getprotobyname('tcp');
580     socket($IPRELAY, PF_INET, SOCK_STREAM, $proto)  || die "socket: $!";
581     print "novaboot: Connecting to IP relay... ";
582     connect($IPRELAY, $paddr)    || die "connect: $!";
583     print "done\n";
584     $exp = Expect->init(\*$IPRELAY);
585     $exp->log_stdout(1);
586
587     while (1) {
588         print $exp "\xFF\xF6";  # AYT
589         my $connected = $exp->expect(20, # Timeout in seconds
590                                      '<iprelayd: connected>',
591                                      '-re', '<WEB51 HW[^>]*>');
592         last if $connected;
593     }
594
595     sub relaycmd($$) {
596         my ($relay, $onoff) = @_;
597         die unless ($relay == 1 || $relay == 2);
598
599         my $cmd = ($relay == 1 ? 0x5 : 0x6) | ($onoff ? 0x20 : 0x10);
600         return "\xFF\xFA\x2C\x32".chr($cmd)."\xFF\xF0";
601     }
602
603     sub relayconf($$) {
604         my ($relay, $onoff) = @_;
605         die unless ($relay == 1 || $relay == 2);
606         my $cmd = ($relay == 1 ? 0xdf : 0xbf) | ($onoff ? 0x00 : 0xff);
607         return "\xFF\xFA\x2C\x97".chr($cmd)."\xFF\xF0";
608     }
609
610     sub relay($$;$) {
611         my ($relay, $onoff, $can_giveup) = @_;
612         my $confirmation = '';
613         $exp->log_stdout(0);
614         print $exp relaycmd($relay, $onoff);
615         my $confirmed = $exp->expect(20, # Timeout in seconds
616                                      relayconf($relay, $onoff));
617         if (!$confirmed) {
618             if ($can_giveup) {
619                 print("Relay confirmation timeout - ignoring\n");
620             } else {
621                 die "Relay confirmation timeout";
622             }
623         }
624         $exp->log_stdout(1);
625     }
626
627     $target_reset = sub {
628         relay(2, 1, 1); # Reset the machine
629         usleep(100000);
630         relay(2, 0);
631     };
632
633     $target_power_off = sub {
634         relay(1, 1);            # Press power button
635         usleep(6000000);        # Long press to switch off
636         relay(1, 0);
637     };
638
639     $target_power_on = sub {
640         relay(1, 1);            # Press power button
641         usleep(100000);         # Short press
642         relay(1, 0);
643     };
644 }
645 elsif ($serial) {
646     my $CONN;
647     system_verbose("stty -F $serial $stty");
648     open($CONN, "+<", $serial) || die "open $serial: $!";
649     $exp = Expect->init(\*$CONN);
650 }
651 elsif ($remote_cmd) {
652     print "novaboot: Running: $remote_cmd\n";
653     $exp = Expect->spawn($remote_cmd);
654 }
655 elsif (defined $amt) {
656     require LWP::UserAgent;
657     require LWP::Authen::Digest;
658
659     sub genXML {
660         my ($host, $username, $password, $schema, $className, $pstate) = @_;
661         #AMT numbers for PowerStateChange (MNI => bluescreen on windows;-)
662         my %pstates = ("on"        => 2,
663                        "standby"   => 4,
664                        "hibernate" => 7,
665                        "off"       => 8,
666                        "reset"     => 10,
667                        "MNI"       => 11);
668         return <<END;
669                 <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">
670                 <s:Header><a:To>http://$host:16992/wsman</a:To>
671                 <w:ResourceURI s:mustUnderstand="true">$schema</w:ResourceURI>
672                 <a:ReplyTo><a:Address s:mustUnderstand="true">http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>
673                 <a:Action s:mustUnderstand="true">$schema$className</a:Action>
674                 <w:MaxEnvelopeSize s:mustUnderstand="true">153600</w:MaxEnvelopeSize>
675                 <a:MessageID>uuid:709072C9-609C-4B43-B301-075004043C7C</a:MessageID>
676                 <w:Locale xml:lang="en-US" s:mustUnderstand="false" />
677                 <w:OperationTimeout>PT60.000S</w:OperationTimeout>
678                 <w:SelectorSet><w:Selector Name="Name">Intel(r) AMT Power Management Service</w:Selector></w:SelectorSet>
679                 </s:Header><s:Body>
680                 <p:RequestPowerStateChange_INPUT xmlns:p="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_PowerManagementService">
681                 <p:PowerState>$pstates{$pstate}</p:PowerState>
682                 <p:ManagedElement><a:Address>http://$host:16992/wsman</a:Address>
683                 <a:ReferenceParameters><w:ResourceURI>http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem</w:ResourceURI>
684                 <w:SelectorSet><w:Selector Name="Name">ManagedSystem</w:Selector></w:SelectorSet>
685                 </a:ReferenceParameters></p:ManagedElement>
686                 </p:RequestPowerStateChange_INPUT>
687                 </s:Body></s:Envelope>
688 END
689     }
690
691     sub sendPOST {
692         my ($host, $username, $password, $content) = @_;
693
694         my $ua = LWP::UserAgent->new();
695         $ua->agent("novaboot");
696
697         my $req = HTTP::Request->new(POST => "http://$host:16992/wsman");
698         my $res = $ua->request($req);
699         die ("Unexpected AMT response: " . $res->status_line) unless $res->code == 401;
700
701         my ($realm) = $res->header("WWW-Authenticate") =~ /Digest realm="(.*?)"/;
702         $ua->credentials("$host:16992", $realm, $username => $password);
703
704         # Create a request
705         $req = HTTP::Request->new(POST => "http://$host:16992/wsman");
706         $req->content_type('application/x-www-form-urlencoded');
707         $req->content($content);
708         $res = $ua->request($req);
709         die ("AMT power change request failed: " . $res->status_line) unless $res->is_success;
710         $res->content() =~ /<g:ReturnValue>(\d+)<\/g:ReturnValue>/;
711         return $1;
712     }
713
714     sub powerChange  {
715         my ($host, $username, $password, $pstate)=@_;
716         my $schema="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_PowerManagementService";
717         my $className="/RequestPowerStateChange";
718         my $content = genXML($host, $username, $password ,$schema, $className, $pstate);
719         return sendPOST($host, $username, $password, $content);
720     }
721
722     ($amt_user,$amt_password,$amt_host,$amt_port) = ($amt =~ /(?:(.*?)(?::(.*))?@)?([^:]*)(?::([0-9]*))?/);;
723     $amt_user ||= "admin";
724     $amt_password ||= $ENV{'AMT_PASSWORD'} || die "AMT password not specified";
725     $amt_host || die "AMT host not specified";
726     $amt_port ||= 16994;
727
728
729     $target_power_off = sub {
730         $exp->close();
731         my $result = powerChange($amt_host,$amt_user,$amt_password, "off");
732         die "AMT power off failed (ReturnValue $result)" if $result != 0;
733     };
734
735     $target_power_on = sub {
736         my $result = powerChange($amt_host,$amt_user,$amt_password, "on");
737         die "AMT power on failed (ReturnValue $result)" if $result != 0;
738     };
739
740     $target_reset = sub {
741         my $result = powerChange($amt_host,$amt_user,$amt_password, "reset");
742         if ($result != 0) {
743             print STDERR "Warning: Cannot reset $amt_host, trying power on. ";
744             $result = powerChange($amt_host,$amt_user,$amt_password, "on");
745         }
746         die "AMT reset failed (ReturnValue $result)" if $result != 0;
747     };
748
749     my $cmd = "amtterm -u $amt_user -p $amt_password $amt_host $amt_port";
750     print "novaboot: Running: $cmd\n" =~ s/\Q$amt_password\E/???/r;
751     $exp = Expect->spawn($cmd);
752     $exp->expect(10, "RUN_SOL") || die "Expect for 'RUN_SOL' timed out";
753
754 }
755
756
757 if ($remote_expect) {
758     $exp || die("No serial line connection");
759     $exp->expect(180, $remote_expect) || die "Expect for '$remote_expect' timed out";
760 }
761
762 if (defined $reset_cmd) {
763     $target_reset = sub {
764         system_verbose($reset_cmd);
765     };
766 }
767
768 if (defined $on_opt && defined $target_power_on) {
769     &$target_power_on();
770     exit;
771 }
772 if (defined $off_opt && defined $target_power_off) {
773     print "novaboot: Switching the target off...\n";
774     &$target_power_off();
775     exit;
776 }
777
778 $builddir ||= dirname(File::Spec->rel2abs( ${$scripts[0]}{filename})) if scalar @scripts;
779 if (defined $builddir) {
780     chdir($builddir) or die "Can't change directory to $builddir: $!";
781     print "novaboot: Entering directory `$builddir'\n";
782 } else {
783     $builddir = $invocation_dir;
784 }
785
786 ## File generation phase
787 my (%files_iso, $menu_iso, $filename);
788 my $config_name = '';
789 my $prefix = '';
790
791 foreach my $script (@scripts) {
792     $filename = $$script{filename};
793     $modules = $$script{modules};
794     $generated = $$script{generated};
795     $variables = $$script{variables};
796
797     ($config_name = $filename) =~ s#.*/##;
798     $config_name = $config_name_opt if (defined $config_name_opt);
799
800     if (exists $variables->{BUILDDIR}) {
801         $builddir = File::Spec->rel2abs($variables->{BUILDDIR});
802         chdir($builddir) or die "Can't change directory to $builddir: $!";
803         print "novaboot: Entering directory `$builddir'\n";
804     }
805
806     if ($grub_prefix) {
807         $prefix = $grub_prefix;
808         $prefix =~ s/\$NAME/$config_name/;
809         $prefix =~ s/\$BUILDDIR/$builddir/;
810     }
811     # TODO: use $grub_prefix as first parameter if some switch is given
812     generate_configs('', $generated, $filename);
813
814 ### Generate bootloader configuration files
815     my @bootloader_configs;
816     push @bootloader_configs, generate_grub_config($grub_config, $config_name, $prefix, $modules, $grub_preamble) if (defined $grub_config);
817     push @bootloader_configs, generate_grub2_config($grub2_config, $config_name, $prefix, $modules, $grub_preamble, $grub2_prolog) if (defined $grub2_config);
818     push @bootloader_configs, generate_pulsar_config('config-'.($pulsar||'novaboot'), $modules) if (defined $pulsar);
819
820 ### Run scons or make
821     {
822         my @files = map({ ($file) = m/([^ ]*)/; $file; } @$modules);
823         # Filter-out generated files
824         my @to_build = grep({ my $file = $_; !scalar(grep($file eq ($$_{filename} || ''), @$generated)) } @files);
825
826         system_verbose($scons || $CFG::scons." ".join(" ", @to_build)) if (defined $scons);
827         system_verbose($make  || $CFG::make ." ".join(" ", @to_build)) if (defined $make);
828     }
829
830 ### Copy files (using rsync)
831     if (defined $server && !defined($gen_only)) {
832         (my $real_server = $server) =~ s/\$NAME/$config_name/;
833
834         my ($hostname, $path) = split(":", $real_server, 2);
835         if (! defined $path) {
836             $path = $hostname;
837             $hostname = "";
838         }
839         my $files = join(" ", map({ ($file) = m/([^ ]*)/; $file; } ( @$modules, @bootloader_configs)));
840         map({ my $file = (split)[0]; die "$file: $!" if ! -f $file; } @$modules);
841         my $istty = -t STDOUT && ($ENV{'TERM'} || 'dumb') ne 'dumb';
842         my $progress = $istty ? "--progress" : "";
843         system_verbose("rsync $progress -RLp $rsync_flags $files $real_server");
844         if ($server =~ m|/\$NAME$| && $concat) {
845             my $cmd = join("; ", map { "( cd $path/.. && cat */$_ > $_ )" } @bootloader_configs);
846             system_verbose($hostname ? "ssh $hostname '$cmd'" : $cmd);
847         }
848     }
849
850 ### Prepare ISO image generation
851     if (defined $iso_image) {
852         generate_configs("(cd)", $generated, $filename);
853         my $menu;
854         generate_syslinux_config(\$menu, $config_name, "/", $modules);
855         $menu_iso .= "$menu\n";
856         map { ($file,undef) = split; $files_iso{$file} = 1; } @$modules;
857     }
858 }
859
860 ## Generate ISO image
861 if (defined $iso_image) {
862     system_verbose("mkdir -p isolinux");
863
864     my @files;
865     if (-f '/usr/lib/ISOLINUX/isolinux.bin') {
866         # Newer ISOLINUX version
867         @files = qw(/usr/lib/ISOLINUX/isolinux.bin /usr/lib/syslinux/modules/bios/mboot.c32 /usr/lib/syslinux/modules/bios/libcom32.c32 /usr/lib/syslinux/modules/bios/menu.c32 /usr/lib/syslinux/modules/bios/ldlinux.c32);
868     } else {
869         # Older ISOLINUX version
870         @files = qw(/usr/lib/syslinux/isolinux.bin /usr/lib/syslinux/mboot.c32 /usr/lib/syslinux/menu.c32);
871     }
872     system_verbose("cp @files isolinux");
873     open(my $fh, ">isolinux/isolinux.cfg");
874     if ($#scripts) {
875         print $fh "TIMEOUT 50\n";
876         print $fh "DEFAULT menu\n";
877     } else {
878         print $fh "DEFAULT $config_name\n";
879     }
880     print $fh "$menu_iso";
881     close($fh);
882
883     my $files = join(" ", map("$_=$_", (keys(%files_iso), 'isolinux/isolinux.cfg', map(s|.*/|isolinux/|r, @files))));
884     $iso_image ||= "$config_name.iso";
885
886     # Note: We use -U flag below to "Allow 'untranslated' filenames,
887     # completely violating the ISO9660 standards". Without this
888     # option, isolinux is not able to read files names for example
889     # bzImage-3.0.
890     system_verbose("$CFG::genisoimage -R -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -hide-rr-moved -U -o $iso_image -graft-points $files");
891     print("ISO image created: $builddir/$iso_image\n");
892 }
893
894 exit(0) if defined $gen_only;
895
896 ## Boot the system using various methods and send serial output to stdout
897
898 if (scalar(@scripts) > 1 && ( defined $dhcp_tftp || defined $serial || defined $iprelay)) {
899     die "You cannot do this with multiple scripts simultaneously";
900 }
901
902 if ($variables->{WVTEST_TIMEOUT}) {
903     print "wvtest: timeout ", $variables->{WVTEST_TIMEOUT}, "\n";
904 }
905
906 sub trim($) {
907     my ($str) = @_;
908     $str =~ s/^\s+|\s+$//g;
909     return $str
910 }
911
912 ### Start in Qemu
913
914 if (defined $qemu) {
915     # Qemu
916     $qemu ||= $variables->{QEMU} || $CFG::qemu;
917     my @qemu_flags = split(" ", $qemu);
918     $qemu = shift(@qemu_flags);
919
920     @qemu_flags = split(/ +/, trim($variables->{QEMU_FLAGS})) if exists $variables->{QEMU_FLAGS};
921     @qemu_flags = split(/ +/, trim($qemu_flags_cmd)) if $qemu_flags_cmd;
922     push(@qemu_flags, split(/ +/, trim($qemu_append || '')));
923
924     if (defined $iso_image) {
925         # Boot NOVA with grub (and test the iso image)
926         push(@qemu_flags, ('-cdrom', $iso_image));
927     } else {
928         # Boot NOVA without GRUB
929
930         # Non-patched qemu doesn't like commas, but NUL can live with pluses instead of commans
931         foreach (@$modules) {s/,/+/g;}
932         generate_configs("", $generated, $filename);
933
934         if (scalar @$modules) {
935             my ($kbin, $kcmd) = split(' ', shift(@$modules), 2);
936             $kcmd = '' if !defined $kcmd;
937             my $dtb;
938             @$modules = map { if (/\.dtb$/) { $dtb=$_; (); } else { $_ } } @$modules;
939             my $initrd = join ",", @$modules;
940
941             push(@qemu_flags, ('-kernel', $kbin, '-append', $kcmd));
942             push(@qemu_flags, ('-initrd', $initrd)) if $initrd;
943             push(@qemu_flags, ('-dtb', $dtb)) if $dtb;
944         }
945     }
946     push(@qemu_flags,  qw(-serial stdio)); # Redirect serial output (for collecting test restuls)
947     unshift(@qemu_flags, ('-name', $config_name));
948     print "novaboot: Running: ".shell_cmd_string($qemu, @qemu_flags)."\n";
949     $exp = Expect->spawn(($qemu, @qemu_flags)) || die("exec() failed: $!");
950 }
951
952 ### Local DHCPD and TFTPD
953
954 my ($dhcpd_pid, $tftpd_pid);
955
956 $tftp=1 if $tftp_port;
957
958 if (defined $dhcp_tftp)
959 {
960     generate_configs("(nd)", $generated, $filename);
961     system_verbose('mkdir -p tftpboot');
962     generate_grub_config("tftpboot/os-menu.lst", $config_name, "(nd)", \@$modules, "timeout 0");
963     open(my $fh, '>', 'dhcpd.conf');
964     my $mac = `cat /sys/class/net/eth0/address`;
965     chomp $mac;
966     print $fh "subnet 10.23.23.0 netmask 255.255.255.0 {
967                       range 10.23.23.10 10.23.23.100;
968                       filename \"bin/boot/grub/pxegrub.pxe\";
969                       next-server 10.23.23.1;
970 }
971 host server {
972         hardware ethernet $mac;
973         fixed-address 10.23.23.1;
974 }";
975     close($fh);
976     system_verbose("sudo ip a add 10.23.23.1/24 dev eth0;
977             sudo ip l set dev eth0 up;
978             sudo touch dhcpd.leases");
979
980     # We run servers by forking ourselves, because the servers end up
981     # in our process group and get killed by signals sent to the
982     # process group (e.g. Ctrl-C on terminal).
983     $dhcpd_pid = fork();
984     exec_verbose("sudo dhcpd -d -cf dhcpd.conf -lf dhcpd.leases -pf dhcpd.pid") if ($dhcpd_pid == 0);
985 }
986
987 if (defined $dhcp_tftp || defined $tftp) {
988     $tftp_port ||= 69;
989     # Unfortunately, tftpd requires root privileges even with
990     # non-privileged (>1023) port due to initgroups().
991     system_verbose("sudo in.tftpd --listen --secure -v -v -v --pidfile tftpd.pid  --address :$tftp_port $builddir");
992
993     # Kill server when we die
994     $SIG{__DIE__} = sub { system_verbose('sudo pkill --pidfile=dhcpd.pid') if (defined $dhcp_tftp);
995                           system_verbose('sudo pkill --pidfile=tftpd.pid'); };
996
997     # We have to kill tftpd explicitely, because it is not in our process group
998     $SIG{INT} = sub { system_verbose('sudo pkill --pidfile=tftpd.pid'); exit(0); };
999 }
1000
1001 ### AMT IDE-R
1002 if (defined $ider) {
1003     my $ider_cmd= "amtider -c $iso_image -u $amt_user -p $amt_password $amt_host $amt_port"  ;
1004     print "novaboot: Running: $ider_cmd\n" =~ s/\Q$amt_password\E/???/r;
1005     my $ider_pid = fork();
1006     if ($ider_pid == 0) {
1007         exec($ider_cmd);
1008         die "IDE redirection failed";
1009     }
1010     # FIXME: This collides with --tftp option. Hopefully, nobody needs
1011     # to use both simultaneously.
1012     $SIG{__DIE__} = sub { system_verbose('kill $ider_pid'); };
1013 }
1014
1015 ### Reset target (IP relay, AMT, ...)
1016
1017 if (defined $target_reset && $reset) {
1018     print "novaboot: Reseting the test box... ";
1019     &$target_reset();
1020     print "done\n";
1021 }
1022
1023 ### U-boot conversation
1024 if (defined $uboot) {
1025     my $uboot_prompt = $uboot || '=> ';
1026     print "novaboot: Waiting for U-Boot prompt...\n";
1027     $exp || die("No serial line connection");
1028     $exp->log_stdout(1);
1029     #$exp->exp_internal(1);
1030     $exp->expect(20,
1031                  [qr/Hit any key to stop autoboot:/, sub { $exp->send("\n"); exp_continue; }],
1032                  $uboot_prompt) || die "No U-Boot prompt deteceted";
1033     foreach my $cmdspec (@uboot_init) {
1034         my ($cmd, $timeout);
1035         if (ref($cmdspec) eq "HASH") {
1036             $cmd = $cmdspec->{command};
1037             $timeout = $cmdspec->{timeout};
1038         } else {
1039             $cmd = $cmdspec;
1040             $timeout = 10;
1041         }
1042         if ($cmd =~ /\$NB_MYIP/) {
1043             my $ip = (grep /inet /, `ip addr show eth0`)[0] || die "Problem determining our IP address";
1044             $ip =~ s/\s*inet ([0-9.]*).*/$1/;
1045             $cmd =~ s/\$NB_MYIP/$ip/g;
1046         }
1047         if ($cmd =~ /\$NB_PREFIX/) {
1048             my $p = $prefix;
1049             $p =~ s|/*$||;
1050             $cmd =~ s/\$NB_PREFIX/$p/g;
1051         }
1052         chomp($cmd);
1053         $exp->send("$cmd\n");
1054         $exp->expect($timeout, $uboot_prompt) || die "U-Boot prompt timeout";
1055     }
1056
1057     # Boot the system if there are some load lines in the script
1058     if (scalar(@$modules) > 0 && !$variables->{NO_BOOT}) {
1059         my ($kbin, $kcmd) = split(' ', shift(@$modules), 2);
1060         my $dtb;
1061         @$modules = map { if (/\.dtb$/) { $dtb=$_; (); } else { $_ } } @$modules;
1062         my $initrd = shift @$modules;
1063
1064         die "No '--uboot-addr kernel' given" unless $uboot_addr{kernel};
1065         $exp->send("tftpboot $uboot_addr{kernel} $prefix$kbin\n");
1066         $exp->expect(10,
1067                      [qr/##/, sub { exp_continue; }],
1068                      $uboot_prompt) || die "Kernel load timeout";
1069         if (defined $dtb) {
1070             die "No '--uboot-addr fdt' given" unless $uboot_addr{fdt};
1071             $exp->send("tftpboot $uboot_addr{fdt} $prefix$dtb\n");
1072             $exp->expect(10,
1073                          [qr/##/, sub { exp_continue; }],
1074                          $uboot_prompt) || die "Device tree load timeout";
1075         }
1076         if (defined $initrd) {
1077             die "No '--uboot-addr ramdisk' given" unless $uboot_addr{ramdisk};
1078             $exp->send("tftpboot $uboot_addr{ramdisk} $prefix$initrd\n");
1079             $exp->expect(10,
1080                          [qr/##/, sub { exp_continue; }],
1081                          $uboot_prompt) || die "Initrd load timeout";
1082         } else {
1083             $uboot_addr{ramdisk} = '-';
1084         }
1085
1086         $kcmd //= '';
1087         $exp->send("setenv bootargs $kcmd\n");
1088         $exp->expect(5, $uboot_prompt)  || die "U-Boot prompt timeout";
1089
1090         $uboot_cmd //= $variables->{UBOOT_CMD} // 'bootm $kernel_addr $ramdisk_addr $fdt_addr';
1091         $uboot_cmd =~ s/\$kernel_addr/$uboot_addr{kernel}/g;
1092         $uboot_cmd =~ s/\$ramdisk_addr/$uboot_addr{ramdisk}/g;
1093         $uboot_cmd =~ s/\$fdt_addr/$uboot_addr{fdt}/g;
1094
1095         $exp->send($uboot_cmd . "\n");
1096         $exp->expect(5, "\n")  || die "U-Boot command timeout";
1097     }
1098 }
1099
1100 ### Serial line interaction
1101 if (defined $exp) {
1102     # Serial line of the target is available
1103     my $interrupt = 'Ctrl-C';
1104     if ($interactive && !@exiton) {
1105         $interrupt = '"~~."';
1106     }
1107     my $note = (-t STDIN) ? '' : '- only target->host ';
1108     print "novaboot: Serial line interaction $note(press $interrupt to interrupt)...\n";
1109     $exp->log_stdout(1);
1110     if (@exiton) {
1111         $exp->expect($exiton_timeout, @expect_raw, @exiton) || die("exiton timeout");
1112         print "\n";
1113     } else {
1114         my @inputs = ($exp);
1115         if (-t STDIN) { # Set up bi-directional communication if we run on terminal
1116             my $infile = new IO::File;
1117             $infile->IO::File::fdopen(*STDIN,'r');
1118             my $in_object = Expect->exp_init($infile);
1119             $in_object->set_group($exp);
1120
1121             if ($interactive) {
1122                 $in_object->set_seq('~~\.', sub { print "novaboot: Escape sequence detected\r\n"; undef; });
1123                 $in_object->manual_stty(0);       # Use raw terminal mode
1124             } else {
1125                 $in_object->manual_stty(1);       # Do not modify terminal settings
1126             }
1127             push(@inputs, $in_object);
1128         }
1129         #use Data::Dumper;
1130         #print Dumper(\@expect_raw);
1131         $exp->expect(undef, @expect_raw) if @expect_raw;
1132         Expect::interconnect(@inputs) unless defined($exp->exitstatus);
1133     }
1134 }
1135
1136 ## Kill dhcpc or tftpd
1137 if (defined $dhcp_tftp || defined $tftp) {
1138     die("novaboot: This should kill servers on background\n");
1139 }
1140
1141 ## Documentation
1142
1143 =head1 NAME
1144
1145 novaboot - Boots a locally compiled operating system on a remote
1146 target or in qemu
1147
1148 =head1 SYNOPSIS
1149
1150 B<novaboot> --help
1151
1152 B<novaboot> [option]... [--] script...
1153
1154 B<./script> [option]...
1155
1156 =head1 DESCRIPTION
1157
1158 This program makes booting of a locally compiled operating system (OS)
1159 (e.g. NOVA or Linux) on remote targets as simple as running a program
1160 locally. It automates things like copying OS images to a TFTP server,
1161 generation of bootloader configuration files, resetting of target
1162 hardware or redirection of target's serial line to stdin/out. Novaboot
1163 is highly configurable and it makes it easy to boot a single image on
1164 different targets or different images on a single target.
1165
1166 Novaboot operation is controlled by command line options and by a so
1167 called novaboot script, which can be thought as a generalization of
1168 bootloader configuration files (see L</"NOVABOOT SCRIPT SYNTAX">).
1169 Typical way of using novaboot is to make the novaboot script
1170 executable and set its first line to I<#!/usr/bin/env novaboot>. Then,
1171 booting a particular OS configuration becomes the same as executing a
1172 local program - the novaboot script.
1173
1174 Novaboot uses configuration files to, among other things, define
1175 command line options needed for different targets. Users typically use
1176 only the B<-t>/B<--target> command line option to select the target.
1177 Internally, this option expands to the pre-configured options.
1178 Configuration files are searched at multiple places, which allows to
1179 have per-system, per-user or per-project configurations. Configuration
1180 file syntax is described in section L</"CONFIGURATION FILE">.
1181
1182 Simple examples of using C<novaboot>:
1183
1184 =over 3
1185
1186 =item 1.
1187
1188 Run an OS in Qemu. This is the default action when no other action is
1189 specified by command line switches. Thus running C<novaboot myos> (or
1190 C<./myos> as described above) will run Qemu and make it boot the
1191 configuration specified in the F<myos> script.
1192
1193 =item 2.
1194
1195 Create a bootloader configuration file (currently supported
1196 bootloaders are GRUB, GRUB2, ISOLINUX, Pulsar and U-Boot) and copy it
1197 with all other files needed for booting to a remote boot server. Then
1198 use a TCP/IP-controlled relay/serial-to-TCP converter to reset the
1199 target and receive its serial output.
1200
1201  ./myos --grub2 --server=192.168.1.1:/tftp --iprelay=192.168.1.2
1202
1203 =item 3.
1204
1205 Run DHCP and TFTP server on developer's machine to boot the target
1206 from it.
1207
1208  ./myos --dhcp-tftp
1209
1210 This is useful when no network infrastructure is in place and
1211 the target is connected directly to developer's box.
1212
1213 =item 4.
1214
1215 Create bootable ISO image.
1216
1217  novaboot --iso -- script1 script2
1218
1219 The created ISO image will have ISOLINUX bootloader installed on it
1220 and the boot menu will allow selecting between I<script1> and
1221 I<script2> configurations.
1222
1223 =back
1224
1225 =head1 PHASES AND OPTIONS
1226
1227 Novaboot performs its work in several phases. Each phase can be
1228 influenced by several command line options, certain phases can be
1229 skipped. The list of phases (in the execution order) and the
1230 corresponding options follows.
1231
1232 =head2 Configuration reading phase
1233
1234 After starting, novaboot reads configuration files. Their content is
1235 described in section L</"CONFIGURATION FILE">. By default,
1236 configuration is read from multiple locations. First from the system
1237 configuration directory (F</etc/novaboot.d/>), second from the user
1238 configuration file (F<~/.config/novaboot>) and third from F<.novaboot>
1239 files along the path to the current directory. Alternatively, a single
1240 configuration file specified with the B<-c> switch or with the
1241 C<NOVABOOT_CONFIG> environment variable is read. The latter read files
1242 override settings from the former ones.
1243
1244 The system configuration directory is determined by the content of
1245 NOVABOOT_CONFIG_DIR environment variable and defaults to
1246 F</etc/novaboot.d>. Files in this directory with names consisting
1247 solely of English letters, numbers, dashes '-' and underscores '_'
1248 (note that dot '.' is not included) are read in alphabetical order.
1249
1250 Then, the user configuration file is read from
1251 F<$XDG_CONFIG_HOME/novaboot>. If C<$XDG_CONFIG_HOME> environemnt
1252 variable is not set F<~/.config/novaboot> is read instead.
1253
1254 Finally, novaboot searches for files named F<.novaboot> starting from the
1255 directory of the novaboot script (or working directory, see bellow)
1256 and continuing upwards up to the root directory. The found
1257 configuration files are then read in the opposite order (i.e. from the
1258 root directory downwards). This allows to have, for example, a project
1259 specific configuration in F<~/project/.novaboot>.
1260
1261 Note the difference between F<~/.config/novaboot> and F<~/.novaboot>.
1262 The former one is read always, whereas the latter only when novaboot
1263 script or working directory is under the C<$HOME> directory.
1264
1265 In certain cases, the location of the novaboot script cannot be
1266 determined in this early phase. This happens either when the script is
1267 read from the standard input or when novaboot is invoked explicitly as
1268 in the example L</"4."> above. In this case the current working
1269 directory is used as a starting point for configuration file search
1270 instead of the novaboot script directory.
1271
1272 =over 8
1273
1274 =item -c, --config=I<filename>
1275
1276 Use the specified configuration file instead of the default one(s).
1277
1278 =back
1279
1280 =head2 Command line processing phase
1281
1282 =over 8
1283
1284 =item --dump-config
1285
1286 Dump the current configuration to stdout end exit. Useful as an
1287 initial template for a configuration file.
1288
1289 =item -h, --help
1290
1291 Print short (B<-h>) or long (B<--help>) help.
1292
1293 =item -t, --target=I<target>
1294
1295 This option serves as a user configurable shortcut for other novaboot
1296 options. The effect of this option is the same as the options stored
1297 in the C<%targets> configuration variable under key I<target>. See
1298 also L</"CONFIGURATION FILE">.
1299
1300 =back
1301
1302 =head2 Script preprocessing phase
1303
1304 This phases allows to modify the parsed novaboot script before it is
1305 used in the later phases.
1306
1307 =over 8
1308
1309 =item -a, --append=I<parameters>
1310
1311 Append a string to the first C<load> line in the novaboot script. This
1312 can be used to append parameters to the kernel's or root task's
1313 command line. This option can appear multiple times.
1314
1315 =item -b, --bender
1316
1317 Use F<bender> chainloader. Bender scans the PCI bus for PCI serial
1318 ports and stores the information about them in the BIOS data area for
1319 use by the kernel.
1320
1321 =item --chainloader=I<chainloader>
1322
1323 Specifies a chainloader that is loaded before the kernel and other
1324 files specified in the novaboot script. E.g. 'bin/boot/bender
1325 promisc'.
1326
1327 =item --dump
1328
1329 Print the modules to boot and their parameters after this phase
1330 finishes. Then exit. This is useful for seeing the effect of other
1331 options in this section.
1332
1333 =item -k, --kernel=F<file>
1334
1335 Replace the first word on the first C<load> line in the novaboot
1336 script with F<file>.
1337
1338 =item --scriptmod=I<perl expression>
1339
1340 When novaboot script is read, I<perl expression> is executed for every
1341 line (in $_ variable). For example, C<novaboot
1342 --scriptmod=s/sigma0/omega6/g> replaces every occurrence of I<sigma0>
1343 in the script with I<omega6>.
1344
1345 When this option is present, it overrides I<$script_modifier> variable
1346 from the configuration file, which has the same effect. If this option
1347 is given multiple times all expressions are evaluated in the command
1348 line order.
1349
1350 =back
1351
1352 =head2 File generation phase
1353
1354 In this phase, files needed for booting are generated in a so called
1355 I<build directory> (see L</--build-dir>). In most cases configuration
1356 for a bootloader is generated automatically by novaboot. It is also
1357 possible to generate other files using I<heredoc> or I<"<"> syntax in
1358 novaboot scripts. Finally, binaries can be generated in this phases by
1359 running C<scons> or C<make>.
1360
1361 =over 8
1362
1363 =item --build-dir=I<directory>
1364
1365 Overrides the default build directory location.
1366
1367 The default build directory location is determined as follows: If the
1368 configuration file defines the C<$builddir> variable, its value is
1369 used. Otherwise, it is the directory that contains the first processed
1370 novaboot script.
1371
1372 See also L</BUILDDIR> variable.
1373
1374 =item -g, --grub[=I<filename>]
1375
1376 Generates grub bootloader menu file. If the I<filename> is not
1377 specified, F<menu.lst> is used. The I<filename> is relative to the
1378 build directory (see B<--build-dir>).
1379
1380 =item --grub-preamble=I<prefix>
1381
1382 Specifies the I<preable> that is at the beginning of the generated
1383 GRUB or GRUB2 config files. This is useful for specifying GRUB's
1384 timeout.
1385
1386 =item --prefix=I<prefix>
1387
1388 Specifies I<prefix> (e.g. F</srv/tftp>) that is put in front of every
1389 file name in generated bootloader configuration files (or in U-Boot
1390 commands).
1391
1392 If the I<prefix> contains string $NAME, it will be replaced with the
1393 name of the novaboot script (see also B<--name>).
1394
1395 If the I<prefix> contains string $BUILDDIR, it will be replaced with
1396 the build directory (see also B<--build-dir>).
1397
1398 =item --grub-prefix
1399
1400 Alias for B<--prefix>.
1401
1402 =item --grub2[=I<filename>]
1403
1404 Generate GRUB2 menu entry in I<filename>. If I<filename> is not
1405 specified F<grub.cfg> is used. The content of the menu entry can be
1406 customized with B<--grub-preamble>, B<--grub2-prolog> or
1407 B<--grub_prefix> options.
1408
1409 In order to use the the generated menu entry on your development
1410 machine that uses GRUB2, append the following snippet to
1411 F</etc/grub.d/40_custom> file and regenerate your grub configuration,
1412 i.e. run update-grub on Debian/Ubuntu.
1413
1414   if [ -f /path/to/nul/build/grub.cfg ]; then
1415     source /path/to/nul/build/grub.cfg
1416   fi
1417
1418 =item --grub2-prolog=I<prolog>
1419
1420 Specifies text that is put at the beginning of the GRUB2 menu entry.
1421
1422 =item -m, --make[=make command]
1423
1424 Runs C<make> to build files that are not generated by novaboot itself.
1425
1426 =item --name=I<string>
1427
1428 Use the name I<string> instead of the name of the novaboot script.
1429 This name is used for things like a title of grub menu or for the
1430 server directory where the boot files are copied to.
1431
1432 =item --no-file-gen
1433
1434 Do not run external commands to generate files (i.e. "<" syntax and
1435 C<run> keyword). This switch does not influence generation of files
1436 specified with "<<WORD" syntax.
1437
1438 =item -p, --pulsar[=mac]
1439
1440 Generates pulsar bootloader configuration file named F<config-I<mac>>
1441 The I<mac> string is typically a MAC address and defaults to
1442 I<novaboot>.
1443
1444 =item --scons[=scons command]
1445
1446 Runs C<scons> to build files that are not generated by novaboot
1447 itself.
1448
1449 =item --strip-rom
1450
1451 Strip I<rom://> prefix from command lines and generated config files.
1452 The I<rom://> prefix is used by NUL. For NRE, it has to be stripped.
1453
1454 =item --gen-only
1455
1456 Exit novaboot after file generation phase.
1457
1458 =back
1459
1460 =head2 Target connection check
1461
1462 If supported by the target, the connection to it is made and it is
1463 checked whether the target is not occupied by another novaboot
1464 user/instance.
1465
1466 =over 8
1467
1468 =item --amt=I<"[user[:password]@]host[:port]>
1469
1470 Use Intel AMT technology to control the target machine. WS management
1471 is used to powercycle it and Serial-Over-Lan (SOL) for input/output.
1472 The hostname or (IP address) is given by the I<host> parameter. If
1473 I<password> is not specified, environment variable AMT_PASSWORD is
1474 used. The I<port> specifies a TCP port for SOL. If not specified, the
1475 default is 16992. Default I<user> is admin.
1476
1477 =item --iprelay=I<addr[:port]>
1478
1479 Use TCP/IP relay and serial port to access the target's serial port
1480 and powercycle it. The IP address of the relay is given by I<addr>
1481 parameter. If I<port> is not specified, it default to 23.
1482
1483 Note: This option is supposed to work with HWG-ER02a IP relays.
1484
1485 =item -s, --serial[=device]
1486
1487 Target's serial line is connected to host's serial line (device). The
1488 default value for device is F</dev/ttyUSB0>.
1489
1490 The value of this option is exported in NB_NOVABOOT environment
1491 variable to all subprocesses run by C<novaboot>.
1492
1493 =item --stty=I<settings>
1494
1495 Specifies settings passed to C<stty> invoked on the serial line
1496 specified with B<--serial> option. If this option is not given,
1497 C<stty> is called with C<raw -crtscts -onlcr 115200> settings.
1498
1499 =item --remote-cmd=I<cmd>
1500
1501 Command that mediates connection to the target's serial line. For
1502 example C<ssh server 'cu -l /dev/ttyS0'>.
1503
1504 =item --remote-expect=I<string>
1505
1506 Wait for reception of I<string> after establishing the the remote
1507 connection before continuing.
1508
1509
1510 =back
1511
1512 =head2 File deployment phase
1513
1514 In some setups, it is necessary to copy the files needed for booting
1515 to a particular location, e.g. to a TFTP boot server or to the
1516 F</boot> partition.
1517
1518 =over 8
1519
1520 =item -d, --dhcp-tftp
1521
1522 Turns your workstation into a DHCP and TFTP server so that the OS can
1523 be booted via PXE BIOS (or similar mechanism) on the test machine
1524 directly connected by a plain Ethernet cable to your workstation.
1525
1526 The DHCP and TFTP servers requires root privileges and C<novaboot>
1527 uses C<sudo> command to obtain those. You can put the following to
1528 I</etc/sudoers> to allow running the necessary commands without asking
1529 for password.
1530
1531  Cmnd_Alias NOVABOOT = /bin/ip a add 10.23.23.1/24 dev eth0, /bin/ip l set dev eth0 up, /usr/sbin/dhcpd -d -cf dhcpd.conf -lf dhcpd.leases -pf dhcpd.pid, /usr/sbin/in.tftpd --listen --secure -v -v -v --pidfile tftpd.pid *, /usr/bin/touch dhcpd.leases, /usr/bin/pkill --pidfile=dhcpd.pid, /usr/bin/pkill --pidfile=tftpd.pid
1532  your_login ALL=NOPASSWD: NOVABOOT
1533
1534 =item --tftp
1535
1536 Starts a TFTP server on your workstation. This is similar to
1537 B<--dhcp-tftp> except that DHCP server is not started.
1538
1539 The TFTP server require root privileges and C<novaboot> uses C<sudo>
1540 command to obtain those. You can put the following to I</etc/sudoers>
1541 to allow running the necessary commands without asking for password.
1542
1543  Cmnd_Alias NOVABOOT =  /usr/sbin/in.tftpd --listen --secure -v -v -v --pidfile tftpd.pid *, /usr/bin/pkill --pidfile=tftpd.pid
1544  your_login ALL=NOPASSWD: NOVABOOT
1545
1546 =item --tftp-port=I<port>
1547
1548 Port to run the TFTP server on. Implies B<--tftp>.
1549
1550 =item --iso[=filename]
1551
1552 Generates the ISO image that boots NOVA system via GRUB. If no filename
1553 is given, the image is stored under I<NAME>.iso, where I<NAME> is the name
1554 of the novaboot script (see also B<--name>).
1555
1556 =item --server[=[[user@]server:]path]
1557
1558 Copy all files needed for booting to another location. The files will
1559 be copied (by B<rsync> tool) to the directory I<path>. If the I<path>
1560 contains string $NAME, it will be replaced with the name of the
1561 novaboot script (see also B<--name>).
1562
1563 =item --rsync-flags=I<flags>
1564
1565 Specifies which I<flags> are appended to F<rsync> command line when
1566 copying files as a result of I<--server> option.
1567
1568 =item --concat
1569
1570 If B<--server> is used and its value ends with $NAME, then after
1571 copying the files, a new bootloader configuration file (e.g. menu.lst)
1572 is created at I<path-wo-name>, i.e. the path specified by B<--server>
1573 with $NAME part removed. The content of the file is created by
1574 concatenating all files of the same name from all subdirectories of
1575 I<path-wo-name> found on the "server".
1576
1577 =item --ider
1578
1579 Use Intel AMT technology for IDE redirection. This allows the target
1580 machine to boot from novaboot created ISO image. Implies B<--iso>.
1581
1582 The experimental C<amtider> utility needed by this option can be
1583 obtained from https://github.com/wentasah/amtterm.
1584
1585 =back
1586
1587 =head2 Target power-on and reset phase
1588
1589 At this point, the target is reset (or switched on/off). There is
1590 several ways how this can be accomplished. Resetting a physical target
1591 can currently be accomplished by the following options: B<--amt>,
1592 B<--iprelay>, B<--reset-cmd>.
1593
1594 =over 8
1595
1596 =item --on, --off
1597
1598 Switch on/off the target machine and exit. The script (if any) is
1599 completely ignored. Currently it works only with B<--iprelay> or
1600 B<--amt>.
1601
1602 =item -Q, --qemu[=I<qemu-binary>]
1603
1604 Boot the configuration in qemu. Optionally, the name of qemu binary
1605 can be specified as a parameter.
1606
1607 =item --qemu-append=I<flags>
1608
1609 Append I<flags> to the default qemu flags (QEMU_FLAGS variable or
1610 C<-cpu coreduo -smp 2>).
1611
1612 =item -q, --qemu-flags=I<flags>
1613
1614 Replace the default qemu flags (QEMU_FLAGS variable or C<-cpu coreduo
1615 -smp 2>) with I<flags> specified here.
1616
1617 =item --reset-cmd=I<cmd>
1618
1619 Command that resets the target.
1620
1621 =item --no-reset, --reset
1622
1623 Disable/enable resetting of the target.
1624
1625 =back
1626
1627 =head2 Interaction with the bootloader on the target
1628
1629 =over 8
1630
1631 =item --uboot[=I<prompt>]
1632
1633 Interact with U-Boot bootloader to boot the thing described in the
1634 novaboot script. I<prompt> specifies the U-Boot's prompt (default is
1635 "=> ", other common prompts are "U-Boot> " or "U-Boot# ").
1636 Implementation of this option is currently tied to a particular board
1637 that we use. It may be subject to changes in the future!
1638
1639 =item --uboot-init
1640
1641 Command(s) to send the U-Boot bootloader before loading the images and
1642 booting them. This option can be given multiple times. After sending
1643 commands from each option novaboot waits for U-Boot I<prompt>.
1644
1645 If the command contains string I<$NB_MYIP> then this string is
1646 replaced by IPv4 address of eth0 interface. Similarly I<$NB_PREFIX> is
1647 replaced with prefix given by B<--prefix>.
1648
1649 See also C<uboot> keyword in L</"NOVABOOT SCRIPT SYNTAX">).
1650
1651 =item --uboot-addr I<name>=I<address>
1652
1653 Load address of U-Boot's C<tftpboot> command for loading I<name>,
1654 where name is one of I<kernel>, I<ramdisk> or I<fdt> (flattened device
1655 tree).
1656
1657 The default addresses are ${I<name>_addr_r}, i.e. U-Boot environment
1658 variables used by convention for this purpose.
1659
1660 =item --uboot-cmd=I<command>
1661
1662 Specifies U-Boot command used to execute the OS. If the command
1663 contains strings C<$kernel_addr>, C<$ramdisk_addr>, C<$fdt_addr>,
1664 these are replaced with the addresses configured with B<--uboot-addr>.
1665
1666 The default value is
1667
1668     bootm $kernel_addr $ramdisk_addr $fdt_addr
1669
1670 or the C<UBOOT_CMD> variable if defined in the novaboot script.
1671
1672 =back
1673
1674 =head2 Target interaction phase
1675
1676 In this phase, target's serial output is redirected to stdout and if
1677 stdin is a TTY, it is redirected to the target's serial input allowing
1678 interactive work with the target.
1679
1680 =over 8
1681
1682 =item --exiton=I<string>
1683
1684 When I<string> is sent by the target, novaboot exits. This option can
1685 be specified multiple times, in which case novaboot exits whenever
1686 either of the specified strings is sent.
1687
1688 If I<string> is C<-re>, then the next B<--exiton>'s I<string> is
1689 treated as regular expression. For example:
1690
1691     --exiton -re --exiton 'error:.*failed'
1692
1693 =item --exiton-re=I<regex>
1694
1695 The same as --exiton -re --exiton I<regex>.
1696
1697 =item --exiton-timeout=I<seconds>
1698
1699 By default B<--exiton> waits for the string match forever. When this
1700 option is specified, "exiton" timeouts after the specifies number of
1701 seconds and novaboot returns non-zero exit code.
1702
1703 =item -i, --interactive
1704
1705 Setup things for interactive use of target. Your terminal will be
1706 switched to raw mode. In raw mode, your system does not process input
1707 in any way (no echoing of entered characters, no interpretation
1708 special characters). This, among others, means that Ctrl-C is passed
1709 to the target and does no longer interrupt novaboot. Use "~~."
1710 sequence to exit novaboot.
1711
1712 =item --expect=I<string>
1713
1714 When I<string> is received from the target, send the string specified
1715 with the subsequent B<--send*> option to the target.
1716
1717 =item --expect-re=I<regex>
1718
1719 When target's output matches regular expression I<regex>, send the
1720 string specified with the subsequent B<--send*> option to the target.
1721
1722 =item --expect-raw=I<perl-code>
1723
1724 Provides direct control over Perl's Expect module.
1725
1726 =item --send=I<string>
1727
1728 Send I<string> to the target after the previously specified
1729 B<--expect*> was matched in the target's output. The I<string> may
1730 contain escape sequences such as "\n".
1731
1732 Note that I<string> is actually interpreted by Perl, so it can contain
1733 much more that escape sequences. This behavior may change in the
1734 future.
1735
1736 Example: C<--expect='login: ' --send='root\n'>
1737
1738 =item --sendcont=I<string>
1739
1740 Similar to B<--send> but continue expecting more input.
1741
1742 Example: C<--expect='Continue?' --sendcont='yes\n'>
1743
1744 =back
1745
1746 =head1 NOVABOOT SCRIPT SYNTAX
1747
1748 The syntax tries to mimic POSIX shell syntax. The syntax is defined
1749 with the following rules.
1750
1751 Lines starting with "#" and empty lines are ignored.
1752
1753 Lines that end with "\" are concatenated with the following line after
1754 removal of the final "\" and leading whitespace of the following line.
1755
1756 Lines of the form I<VARIABLE=...> (i.e. matching '^[A-Z_]+=' regular
1757 expression) assign values to internal variables. See L</VARIABLES>
1758 section.
1759
1760 Lines starting with C<load> keyword represent modules to boot. The
1761 word after C<load> is a file name (relative to the build directory
1762 (see B<--build-dir>) of the module to load and the remaining words are
1763 passed to it as the command line parameters.
1764
1765 When the C<load> line ends with "<<WORD" then the subsequent lines
1766 until the line containing solely WORD are copied literally to the file
1767 named on that line. This is similar to shell's heredoc feature.
1768
1769 When the C<load> line ends with "< CMD" then command CMD is executed
1770 with F</bin/sh> and its standard output is stored in the file named on
1771 that line. The SRCDIR variable in CMD's environment is set to the
1772 absolute path of the directory containing the interpreted novaboot
1773 script.
1774
1775 Lines starting with C<run> keyword contain shell commands that are run
1776 during file generation phase. This is the same as the "< CMD" syntax
1777 for C<load> keyboard except that the command's output is not
1778 redirected to a file. The ordering of commands is the same as they
1779 appear in the novaboot script.
1780
1781 Lines starting with C<uboot> represent U-Boot commands that are sent
1782 to the target if B<--uboot> option is given. Having a U-Boot line in
1783 the novaboot script is the same as passing an equivalent
1784 B<--uboot-init> option to novaboot. The C<uboot> keyword can be
1785 suffixed with timeout specification. The syntax is C<uboot:Ns>, where
1786 C<N> is the whole number of seconds. If the U-Boot command prompt does
1787 not appear before the timeout, novaboot fails. The default timeout is
1788 10 seconds.
1789
1790 Example (Linux):
1791
1792   #!/usr/bin/env novaboot
1793   load bzImage console=ttyS0,115200
1794   run  make -C buildroot
1795   load rootfs.cpio < gen_cpio buildroot/images/rootfs.cpio "myapp->/etc/init.d/S99myapp"
1796
1797 Example (NOVA User Land - NUL):
1798
1799   #!/usr/bin/env novaboot
1800   WVDESC=Example program
1801   load bin/apps/sigma0.nul S0_DEFAULT script_start:1,1 \
1802                            verbose hostkeyb:0,0x60,1,12,2
1803   load bin/apps/hello.nul
1804   load hello.nulconfig <<EOF
1805   sigma0::mem:16 name::/s0/log name::/s0/timer name::/s0/fs/rom ||
1806   rom://bin/apps/hello.nul
1807   EOF
1808
1809 This example will load three modules: F<sigma0.nul>, F<hello.nul> and
1810 F<hello.nulconfig>. sigma0 receives some command line parameters and
1811 F<hello.nulconfig> file is generated on the fly from the lines between
1812 C<<<EOF> and C<EOF>.
1813
1814 =head2 VARIABLES
1815
1816 The following variables are interpreted in the novaboot script:
1817
1818 =over 8
1819
1820 =item BUILDDIR
1821
1822 Novaboot chdir()s to this directory before file generation phase. The
1823 directory name specified here is relative to the build directory
1824 specified by other means (see L</--build-dir>).
1825
1826 =item EXITON
1827
1828 Assigning this variable has the same effect as specifying L</--exiton>
1829 option.
1830
1831 =item HYPERVISOR_PARAMS
1832
1833 Parameters passed to hypervisor. The default value is "serial", unless
1834 overridden in configuration file.
1835
1836 =item KERNEL
1837
1838 The kernel to use instead of the hypervisor specified in the
1839 configuration file with the C<$hypervisor> variable. The value should
1840 contain the name of the kernel image as well as its command line
1841 parameters. If this variable is defined and non-empty, the variable
1842 HYPERVISOR_PARAMS is not used.
1843
1844 =item NO_BOOT
1845
1846 If this variable is 1, the system is not booted. This is currently
1847 only implemented for U-Boot bootloader where it is useful for
1848 interacting with the bootloader without booting the system - e.g. for
1849 flashing.
1850
1851 =item QEMU
1852
1853 Use a specific qemu binary (can be overridden with B<-Q>) and flags
1854 when booting this script under qemu. If QEMU_FLAGS variable is also
1855 specified flags specified in QEMU variable are replaced by those in
1856 QEMU_FLAGS.
1857
1858 =item QEMU_FLAGS
1859
1860 Use specific qemu flags (can be overridden with B<-q>).
1861
1862 =item UBOOT_CMD
1863
1864 See L</--uboot-cmd>.
1865
1866 =item WVDESC
1867
1868 Description of the WvTest-compliant program.
1869
1870 =item WVTEST_TIMEOUT
1871
1872 The timeout in seconds for WvTest harness. If no complete line appears
1873 in the test output within the time specified here, the test fails. It
1874 is necessary to specify this for long running tests that produce no
1875 intermediate output.
1876
1877 =back
1878
1879 =head1 CONFIGURATION FILE
1880
1881 Novaboot can read its configuration from one or more files. By
1882 default, novaboot looks for files in F</etc/novaboot.d>, file
1883 F<~/.config/novaboot> and files named F<.novaboot> as described in
1884 L</Configuration reading phase>. Alternatively, configuration file
1885 location can be specified with the B<-c> switch or with the
1886 NOVABOOT_CONFIG environment variable. The configuration file has Perl
1887 syntax (i.e. it is better to put C<1;> as the last line) and should set
1888 values of certain Perl variables. The current configuration can be
1889 dumped with the B<--dump-config> switch. Some configuration variables
1890 can be overridden by environment variables (see below) or by command
1891 line switches.
1892
1893 Supported configuration variables include:
1894
1895 =over 8
1896
1897 =item $builddir
1898
1899 Build directory location relative to the location of the configuration
1900 file.
1901
1902 =item $default_target
1903
1904 Default target (see below) to use when no target is explicitly
1905 specified on command line with the B<--target> option.
1906
1907 =item %targets
1908
1909 Hash of target definitions to be used with the B<--target> option. The
1910 key is the identifier of the target, the value is the string with
1911 command line options. For instance, if the configuration file contains:
1912
1913  $targets{'mybox'} = '--server=boot:/tftproot --serial=/dev/ttyUSB0 --grub',
1914
1915 then the following two commands are equivalent:
1916
1917  ./myos --server=boot:/tftproot --serial=/dev/ttyUSB0 --grub
1918  ./myos -t mybox
1919
1920 =back
1921
1922 =head1 ENVIRONMENT VARIABLES
1923
1924 Some options can be specified not only via config file or command line
1925 but also through environment variables. Environment variables override
1926 the values from configuration file and command line parameters
1927 override the environment variables.
1928
1929 =over 8
1930
1931 =item NOVABOOT_CONFIG
1932
1933 Name of the novaboot configuration file to use instead of the default
1934 one(s).
1935
1936 =item NOVABOOT_CONFIG_DIR
1937
1938 Name of the novaboot configuration directory. When not specified
1939 F</etc/novaboot.d> is used.
1940
1941 =item NOVABOOT_BENDER
1942
1943 Defining this variable has the same meaning as B<--bender> option.
1944
1945 =back
1946
1947 =head1 AUTHORS
1948
1949 Michal Sojka <sojka@os.inf.tu-dresden.de>
1950
1951 =cut
1952
1953 # LocalWords:  novaboot Novaboot NOVABOOT TFTP PXE DHCP filename stty
1954 # LocalWords:  chainloader stdout Qemu qemu preprocessing ISOLINUX bootable
1955 # LocalWords:  config subprocesses sudo sudoers tftp dhcp IDE stdin
1956 # LocalWords:  subdirectories TTY whitespace heredoc POSIX WvTest