Clean up temp files on signal.
[pintos-anon] / src / utils / pintos
1 #! /usr/bin/perl -w
2
3 use strict;
4 use POSIX;
5 use Fcntl;
6 use File::Temp 'tempfile';
7 use Getopt::Long qw(:config bundling);
8
9 # Command-line options.
10 our ($sim);                     # Simulator: bochs, qemu, or gsx.
11 our ($debug) = "none";          # Debugger: none, monitor, or gdb.
12 our ($mem) = 4;                 # Physical RAM in MB.
13 our ($serial_out) = 1;          # Send output to serial port?
14 our ($vga);                     # VGA output: window, terminal, or none.
15 our ($jitter);                  # Seed for random timer interrupts, if set.
16 our ($realtime);                # Synchronize timer interrupts with real time?
17 our ($timeout);                 # Maximum runtime in seconds, if set.
18 our (@puts);                    # Files to copy into the VM.
19 our (@gets);                    # Files to copy out of the VM.
20 our ($as_ref);                  # Reference to last addition to @gets or @puts.
21 our (@kernel_args);             # Arguments to pass to kernel.
22 our (%disks) = (OS => {DEF_FN => 'os.dsk'},             # Disks to give VM.
23                 FS => {DEF_FN => 'fs.dsk'},
24                 SCRATCH => {DEF_FN => 'scratch.dsk'},
25                 SWAP => {DEF_FN => 'swap.dsk'});
26 our (@disks_by_iface) = @disks{qw (OS FS SCRATCH SWAP)};
27
28 parse_command_line ();
29 find_disks ();
30 prepare_scratch_disk ();
31 prepare_arguments ();
32 run_vm ();
33 finish_scratch_disk ();
34
35 exit 0;
36 \f
37 # Parses the command line.
38 sub parse_command_line {
39     usage (0) if @ARGV == 0 || (@ARGV == 1 && $ARGV[0] eq '--help');
40     
41     @kernel_args = @ARGV;
42     if (grep ($_ eq '--', @kernel_args)) {
43         @ARGV = ();
44         while ((my $arg = shift (@kernel_args)) ne '--') {
45             push (@ARGV, $arg);
46         }
47         GetOptions ("sim=s" => sub { set_sim (@_) },
48                     "bochs" => sub { set_sim ("bochs") },
49                     "qemu" => sub { set_sim ("qemu") },
50                     "gsx" => sub { set_sim ("gsx") },
51
52                     "debug=s" => sub { set_debug (@_) },
53                     "no-debug" => sub { set_debug ("none") },
54                     "monitor" => sub { set_debug ("monitor") },
55                     "gdb" => sub { set_debug ("gdb") },
56
57                     "m|memory=i" => \$mem,
58                     "j|jitter=i" => sub { set_jitter (@_) },
59                     "r|realtime" => sub { set_realtime () },
60                     "T|timeout=i" => \$timeout,
61
62                     "v|no-vga" => sub { set_vga ('none'); },
63                     "s|no-serial" => sub { $serial_out = 0; },
64                     "t|terminal" => sub { set_vga ('terminal'); },
65
66                     "p|put-file=s" => sub { add_file (\@puts, $_[1]); },
67                     "g|get-file=s" => sub { add_file (\@gets, $_[1]); },
68                     "a|as=s" => sub { set_as ($_[1]); },
69
70                     "h|help" => sub { usage (0); },
71
72                     "os-disk=s" => \$disks{OS}{FILENAME},
73                     "fs-disk=s" => \$disks{FS}{FILENAME},
74                     "scratch-disk=s" => \$disks{SCRATCH}{FILENAME},
75                     "swap-disk=s" => \$disks{SWAP}{FILENAME},
76
77                     "0|disk-0|hda=s" => \$disks_by_iface[0]{FILENAME},
78                     "1|disk-1|hdb=s" => \$disks_by_iface[1]{FILENAME},
79                     "2|disk-2|hdc=s" => \$disks_by_iface[2]{FILENAME},
80                     "3|disk-3|hdd=s" => \$disks_by_iface[3]{FILENAME})
81           or exit 1;
82     }
83
84     $sim = "bochs" if !defined $sim;
85     $debug = "none" if !defined $debug;
86     $vga = "window" if !defined $vga;
87 }
88
89 # usage($exitcode).
90 # Prints a usage message and exits with $exitcode.
91 sub usage {
92     my ($exitcode) = @_;
93     $exitcode = 1 unless defined $exitcode;
94     print <<'EOF';
95 pintos, a utility for running Pintos in a simulator
96 Usage: pintos [OPTION...] -- [ARGUMENT...]
97 where each OPTION is one of the following options
98   and each ARGUMENT is passed to Pintos kernel verbatim.
99 Simulator selection:
100   --bochs                  (default) Use Bochs as simulator
101   --qemu                   Use qemu as simulator
102   --gsx                    Use VMware GSX Server 3.x as simulator
103 Debugger selection:
104   --no-debug               (default) No debugger
105   --monitor                Debug with simulator's monitor
106   --gdb                    Debug with gdb
107 Display options: (default is both VGA and serial)
108   -v, --no-vga             No VGA display
109   -s, --no-serial          No serial output
110   -t, --terminal           Display VGA in terminal (Bochs only)
111 Timing options: (Bochs only)
112   -j SEED                  Randomize timer interrupts
113   -r, --realtime           Use realistic, not reproducible, timings
114   -T, --timeout=N          Time out and kill Pintos after N seconds
115 Configuration options:
116   -m, --mem=N              Give Pintos N MB physical RAM (default: 4)
117 File system commands (for `run' command):
118   -p, --put-file=HOSTFN    Copy HOSTFN into VM, by default under same name
119   -g, --get-file=GUESTFN   Copy GUESTFN out of VM, by default under same name
120   -a, --as=FILENAME        Specifies guest (for -p) or host (for -g) file name
121 Disk options: (name an existing FILE or specify SIZE in MB for a temp disk)
122   --os-disk=FILE           Set OS disk file (default: os.dsk)
123   --fs-disk=FILE|SIZE      Set FS disk file (default: fs.dsk)
124   --scratch-disk=FILE|SIZE Set scratch disk (default: scratch.dsk)
125   --swap-disk=FILE|SIZE    Set swap disk file (default: swap.dsk)
126 Other options:
127   -h, --help               Display this help message.
128 EOF
129     exit $exitcode;
130 }
131
132 # Sets the simulator.
133 sub set_sim {
134     my ($new_sim) = @_;
135     die "--$new_sim conflicts with --$sim\n"
136         if defined ($sim) && $sim ne $new_sim;
137     $sim = $new_sim;
138 }
139
140 # Sets the debugger.
141 sub set_debug {
142     my ($new_debug) = @_;
143     die "--$new_debug conflicts with --$debug\n"
144         if $debug ne 'none' && $new_debug ne 'none' && $debug ne $new_debug;
145     $debug = $new_debug;
146 }
147
148 # Sets VGA output destination.
149 sub set_vga {
150     my ($new_vga) = @_;
151     if (defined ($vga) && $vga ne $new_vga) {
152         print "warning: conflicting vga display options\n";
153     }
154     $vga = $new_vga;
155 }
156
157 # Sets randomized timer interrupts.
158 sub set_jitter {
159     my ($new_jitter) = @_;
160     die "--realtime conflicts with --jitter\n" if defined $realtime;
161     die "different --jitter already defined\n"
162         if defined $jitter && $jitter != $new_jitter;
163     $jitter = $new_jitter;
164 }
165
166 # Sets real-time timer interrupts.
167 sub set_realtime {
168     die "--realtime conflicts with --jitter\n" if defined $jitter;
169     $realtime = 1;
170 }
171
172 # add_file(\@list, $file)
173 #
174 # Adds [$file] to @list, which should be @puts or @gets.
175 # Sets $as_ref to point to the added element.
176 sub add_file {
177     my ($list, $file) = @_;
178     $as_ref = [$file];
179     push (@$list, $as_ref);
180 }
181
182 # Sets the guest/host name for the previous put/get.
183 sub set_as {
184     my ($as) = @_;
185     die "-a (or --as) is only allowed after -p or -g\n" if !defined $as_ref;
186     die "Only one -a (or --as) is allowed after -p or -g\n"
187       if defined $as_ref->[1];
188     $as_ref->[1] = $as;
189 }
190 \f
191 # Locates the files used to back each of the virtual disks,
192 # and creates temporary disks.
193 sub find_disks {
194     for my $disk (values %disks) {
195         # If there's no assigned file name but the default file exists,
196         # try to assign a default file name.
197         if (!defined ($disk->{FILENAME})) {
198             for my $try_fn ($disk->{DEF_FN}, "build/" . $disk->{DEF_FN}) {
199                 $disk->{FILENAME} = $try_fn, last
200                   if -e $try_fn;
201             }
202         }
203
204         # If there's no file name, we're done.
205         next if !defined ($disk->{FILENAME});
206
207         if ($disk->{FILENAME} =~ /^\d+(\.\d+)?|\.\d+$/) {
208             # Create a temporary disk of approximately the specified
209             # size in megabytes.
210             die "OS disk can't be temporary\n" if $disk == $disks{OS};
211
212             my ($mb) = $disk->{FILENAME};
213             undef $disk->{FILENAME};
214
215             my ($cyl_size) = 512 * 16 * 63;
216             extend_disk ($disk, ceil ($mb * 2) * $cyl_size);
217         } else {
218             # The file must exist and have nonzero size.
219             -e $disk->{FILENAME} or die "$disk->{FILENAME}: stat: $!\n";
220             -s _ or die "$disk->{FILENAME}: disk has zero size\n";
221         }
222     }
223
224     # Warn about (potentially) missing disks.
225     die "Cannot find OS disk\n" if !defined $disks{OS}{FILENAME};
226     if (my ($project) = `pwd` =~ /\b(threads|userprog|vm|filesys)\b/) {
227         if ((grep ($project eq $_, qw (userprog vm filesys)))
228             && !defined ($disks{FS}{FILENAME})) {
229             print STDERR "warning: it looks like you're running the $project ";
230             print STDERR "project, but no file system disk is present\n";
231         }
232         if ($project eq 'vm' && !defined $disks{SWAP}{FILENAME}) {
233             print STDERR "warning: it looks like you're running the $project ";
234             print STDERR "project, but no swap disk is present\n";
235         }
236     }
237 }
238 \f
239 # Prepare the scratch disk for gets and puts.
240 sub prepare_scratch_disk {
241     # Copy the files to put onto the scratch disk.
242     put_scratch_file ($_->[0]) foreach @puts;
243
244     # Make sure the scratch disk is big enough to get big files.
245     extend_disk ($disks{SCRATCH}, @gets * 1024 * 1024) if @gets;
246 }
247
248 # Read "get" files from the scratch disk.
249 sub finish_scratch_disk {
250     # We need to start reading the scratch disk from the beginning again.
251     if (@gets) {
252         close ($disks{SCRATCH}{HANDLE});
253         undef ($disks{SCRATCH}{HANDLE});
254     }
255
256     # Read each file.
257     get_scratch_file (defined ($_->[1]) ? $_->[1] : $_->[0]) foreach @gets;
258 }
259
260 # put_scratch_file($file).
261 #
262 # Copies $file into the scratch disk.
263 sub put_scratch_file {
264     my ($put_filename) = @_;
265     my ($disk_handle, $disk_filename) = open_disk ($disks{SCRATCH});
266
267     print "Copying $put_filename into $disk_filename...\n";
268
269     # Write metadata sector, which consists of a 4-byte signature
270     # followed by the file size.
271     stat $put_filename or die "$put_filename: stat: $!\n";
272     my ($size) = -s _;
273     my ($metadata) = pack ("a4 V x504", "PUT\0", $size);
274     write_fully ($disk_handle, $disk_filename, $metadata);
275
276     # Copy file data.
277     my ($put_handle);
278     sysopen ($put_handle, $put_filename, O_RDONLY)
279       or die "$put_filename: open: $!\n";
280     copy_file ($put_handle, $put_filename, $disk_handle, $disk_filename,
281                $size);
282     close ($put_handle);
283
284     # Round up disk data to beginning of next sector.
285     write_fully ($disk_handle, $disk_filename, "\0" x (512 - $size % 512))
286       if $size % 512;
287 }
288
289 # get_scratch_file($file).
290 #
291 # Copies from the scratch disk to $file.
292 sub get_scratch_file {
293     my ($get_filename) = @_;
294     my ($disk_handle, $disk_filename) = open_disk ($disks{SCRATCH});
295
296     print "Copying $get_filename out of $disk_filename...\n";
297
298     # Read metadata sector, which has a 4-byte signature followed by
299     # the file size.
300     my ($metadata) = read_fully ($disk_handle, $disk_filename, 512);
301     my ($signature, $size) = unpack ("a4 V", $metadata);
302     die "bad signature reading scratch disk--did Pintos run correctly?\n"
303       if $signature ne "GET\0";
304
305     # Copy file data.
306     my ($get_handle);
307     sysopen ($get_handle, $get_filename, O_WRONLY | O_CREAT | O_EXCL, 0666)
308       or die "$get_filename: create: $!\n";
309     copy_file ($disk_handle, $disk_filename, $get_handle, $get_filename,
310                $size);
311     close ($get_handle);
312
313     # Skip forward in disk up to beginning of next sector.
314     read_fully ($disk_handle, $disk_filename, 512 - $size % 512)
315       if $size % 512;
316 }
317 \f
318 # Prepares the arguments to pass to the Pintos kernel,
319 # and then write them into Pintos bootloader.
320 sub prepare_arguments {
321     my (@args);
322     push (@args, shift (@kernel_args))
323       while @kernel_args && $kernel_args[0] =~ /^-/;
324     push (@args, 'put', defined $_->[1] ? $_->[1] : $_->[0]) foreach @puts;
325     push (@args, @kernel_args);
326     push (@args, 'get', $_->[0]) foreach @gets;
327     write_cmd_line ($disks{OS}, @args);
328 }
329
330 # Writes @args into the Pintos bootloader at the beginning of $disk.
331 sub write_cmd_line {
332     my ($disk, @args) = @_;
333
334     # Figure out command line to write.
335     my ($arg_cnt) = pack ("V", scalar (@args));
336     my ($args) = join ('', map ("$_\0", @args));
337     die "command line exceeds 128 bytes" if length ($args) > 128;
338     $args .= "\0" x (128 - length ($args));
339
340     # Write command line.
341     my ($handle, $filename) = open_disk_copy ($disk);
342     print "Writing command line to $filename...\n";
343     sysseek ($handle, 0x17a, 0) == 0x17a or die "$filename: seek: $!\n";
344     syswrite ($handle, "$arg_cnt$args") or die "$filename: write: $!\n";
345 }
346 \f
347 # Running simulators.
348
349 # Runs the selected simulator.
350 sub run_vm {
351     if ($sim eq 'bochs') {
352         run_bochs ();
353     } elsif ($sim eq 'qemu') {
354         run_qemu ();
355     } elsif ($sim eq 'gsx') {
356         run_gsx ();
357     } else {
358         die "unknown simulator `$sim'\n";
359     }
360 }
361
362 # Runs Bochs.
363 sub run_bochs {
364     # Select Bochs binary based on the chosen debugger.
365     my ($bin);
366     if ($debug eq 'none') {
367         $bin = 'bochs';
368     } elsif ($debug eq 'monitor') {
369         $bin = 'bochs-dbg';
370     } elsif ($debug eq 'gdb') {
371         $bin = 'bochs-gdb';
372     }
373
374     # Write bochsrc.txt configuration file.
375     open (BOCHSRC, ">", "bochsrc.txt") or die "bochsrc.txt: create: $!\n";
376     print BOCHSRC <<EOF;
377 romimage: file=\$BXSHARE/BIOS-bochs-latest, address=0xf0000
378 vgaromimage: \$BXSHARE/VGABIOS-lgpl-latest
379 boot: c
380 ips: 1000000
381 megs: $mem
382 log: bochsout.txt
383 panic: action=fatal
384 EOF
385     print BOCHSRC "clock: sync=", $realtime ? 'realtime' : 'none', "time0=0\n";
386     print_bochs_disk_line ("ata0-master", 0);
387     print_bochs_disk_line ("ata0-slave", 1);
388     if (defined ($disks_by_iface[2]{FILENAME})
389         || defined ($disks_by_iface[3]{FILENAME})) {
390         print BOCHSRC "ata1: enabled=1, ioaddr1=0x170, ",
391           "ioaddr2=0x370, irq=15\n";
392         print_bochs_disk_line ("ata1-master", 2);
393         print_bochs_disk_line ("ata1-slave", 3);
394     }
395     if ($vga ne 'terminal') {
396         print BOCHSRC "com1: enabled=1, dev=/dev/stdout\n" if $serial_out;
397         print BOCHSRC "display_library: nogui\n" if $vga eq 'none';
398     } else {
399         print BOCHSRC "display_library: term\n";
400     }
401     close (BOCHSRC);
402
403     # Compose Bochs command line.
404     my (@cmd) = ($bin, '-q');
405     push (@cmd, '-j', $jitter) if defined $jitter;
406
407     # Run Bochs.
408     print join (' ', @cmd), "\n";
409     my ($exit) = xsystem (@cmd);
410     if (WIFEXITED ($exit)) {
411         # Bochs exited normally.
412         # Ignore the exit code; Bochs normally exits with status 1,
413         # which is weird.
414     } elsif (WIFSIGNALED ($exit)) {
415         die "Bochs died with signal ", WTERMSIG ($exit), "\n";
416     } else {
417         die "Bochs died: code $exit\n";
418     }
419 }
420
421 # print_bochs_disk_line($device, $iface)
422 #
423 # If IDE interface $iface has a disk attached, prints a bochsrc.txt
424 # line for attaching it to $device.
425 sub print_bochs_disk_line {
426     my ($device, $iface) = @_;
427     my ($disk) = $disks_by_iface[$iface];
428     my ($file) = $disk->{FILENAME};
429     if (defined $file) {
430         my (%geom) = disk_geometry ($disk);
431         print BOCHSRC "$device: type=disk, path=$file, mode=flat, ";
432         print BOCHSRC "cylinders=$geom{C}, heads=$geom{H}, spt=$geom{S}, ";
433         print BOCHSRC "translation=none\n";
434     }
435 }
436
437 # Runs qemu.
438 sub run_qemu {
439     print "warning: qemu doesn't support --terminal\n"
440       if $vga eq 'terminal';
441     print "warning: qemu doesn't support jitter\n"
442       if defined $jitter;
443     my (@cmd) = ('qemu');
444     for my $iface (0...3) {
445         my ($option) = ('-hda', '-hdb', '-hdc', '-hdd')[$iface];
446         push (@cmd, $option, $disks_by_iface[$iface]{FILENAME})
447           if defined $disks_by_iface[$iface]{FILENAME};
448     }
449     push (@cmd, '-m', $mem, '-nics', '0');
450     push (@cmd, '-nographic') if $vga eq 'none';
451     push (@cmd, '-serial', 'stdio') if $serial_out && $vga ne 'none';
452     push (@cmd, '-S') if $debug eq 'monitor';
453     push (@cmd, '-s', '-S') if $debug eq 'gdb';
454     push (@cmd, '-monitor', 'null') if $vga eq 'none' && $debug eq 'none';
455     run_command (@cmd);
456 }
457
458 # gsx_unsup($flag)
459 #
460 # Prints a message that $flag is unsupported by GSX Server.
461 sub gsx_unsup {
462     my ($flag) = @_;
463     print "warning: no support for $flag with VMware GSX Server\n";
464 }
465
466 # Runs VMware GSX Server.
467 sub run_gsx {
468     gsx_unsup ("--$debug") if $debug ne 'none';
469     gsx_unsup ("--no-vga") if $vga eq 'none';
470     gsx_unsup ("--terminal") if $vga eq 'terminal';
471     gsx_unsup ("--jitter") if defined $jitter;
472
473     unlink ("pintos.out");
474
475     open (VMX, ">", "pintos.vmx") or die "pintos.vmx: create: $!\n";
476     chmod 0777 & ~umask, "pintos.vmx";
477     print VMX <<EOF;
478 #! /usr/bin/vmware -G
479 config.version = 6
480 guestOS = "linux"
481 floppy0.present = FALSE
482 memsize = $mem
483
484 serial0.present = TRUE
485 serial0.fileType = "file"
486 serial0.fileName = "pintos.out"
487 EOF
488
489     for (my ($i) = 0; $i < 4; $i++) {
490         my ($disk) = $disks_by_iface[$i];
491         my ($dsk) = $disk->{FILENAME};
492         next if !defined $dsk;
493
494         my ($pln) = $dsk;
495         $pln =~ s/\.dsk//;
496         $pln .= ".pln";
497
498         my ($device) = "ide" . int ($i / 2) . ":" . ($i % 2);
499         print VMX <<EOF;
500
501 $device.present = TRUE
502 $device.deviceType = "plainDisk"
503 $device.fileName = "$pln"
504 EOF
505
506         my (%geom) = disk_geometry ($disk);
507         open (PLN, ">", $pln) or die "$pln: create: $!\n";
508         print PLN <<EOF;
509 DRIVETYPE       ide
510 #vm|VERSION     2
511 #vm|TOOLSVERSION        2
512 CYLINDERS       $geom{C}
513 HEADS           $geom{H}
514 SECTORS         $geom{S}
515 #vm|CAPACITY    $geom{CAPACITY}
516 ACCESS "$dsk" 0 $geom{CAPACITY}
517 EOF
518         close (PLN);
519     }
520     close (VMX);
521
522     my ($vmx) = getcwd () . "/pintos.vmx";
523     system ("vmware-cmd -s register $vmx >&/dev/null");
524     system ("vmware-cmd $vmx stop hard >&/dev/null");
525     system ("vmware -l -G -x -q $vmx");
526     system ("vmware-cmd $vmx stop hard >&/dev/null");
527     system ("vmware-cmd -s unregister $vmx >&/dev/null");
528 }
529 \f
530 # Disk utilities.
531
532 # open_disk($disk)
533 #
534 # Opens $disk, if it is not already open, and returns its file handle
535 # and file name.
536 sub open_disk {
537     my ($disk) = @_;
538     if (!defined ($disk->{HANDLE})) {
539         if ($disk->{FILENAME}) {
540             sysopen ($disk->{HANDLE}, $disk->{FILENAME}, O_RDWR)
541               or die "$disk->{FILENAME}: open: $!\n";
542         } else {
543             ($disk->{HANDLE}, $disk->{FILENAME}) = tempfile (UNLINK => 1,
544                                                              SUFFIX => '.dsk');
545         }
546     }
547     return ($disk->{HANDLE}, $disk->{FILENAME});
548 }
549
550 # open_disk_copy($disk)
551 #
552 # Makes a temporary copy of $disk and returns its file handle and file name.
553 sub open_disk_copy {
554     my ($disk) = @_;
555     die if !$disk->{FILENAME};
556
557     my ($orig_handle, $orig_filename) = open_disk ($disk);
558     my ($cp_handle, $cp_filename) = tempfile (UNLINK => 1, SUFFIX => '.dsk');
559     copy_file ($orig_handle, $orig_filename, $cp_handle, $cp_filename,
560                -s $orig_handle);
561     return ($disk->{HANDLE}, $disk->{FILENAME}) = ($cp_handle, $cp_filename);
562 }
563
564 # extend_disk($disk, $size)
565 #
566 # Extends $disk, if necessary, so that it is at least $size bytes
567 # long.
568 sub extend_disk {
569     my ($disk, $size) = @_;
570     my ($handle, $filename) = open_disk ($disk);
571     if (-s ($handle) < $size) {
572         sysseek ($handle, $size - 1, 0) == $size - 1
573           or die "$filename: seek: $!\n";
574         syswrite ($handle, "\0") == 1
575           or die "$filename: write: $!\n";
576     }
577 }
578
579 # disk_geometry($file)
580 #
581 # Examines $file and returns a valid IDE disk geometry for it, as a
582 # hash.
583 sub disk_geometry {
584     my ($disk) = @_;
585     my ($file) = $disk->{FILENAME};
586     my ($size) = -s $file;
587     die "$file: stat: $!\n" if !defined $size;
588     die "$file: size not a multiple of 512 bytes\n" if $size % 512;
589     my ($cyl_size) = 512 * 16 * 63;
590     my ($cylinders) = ceil ($size / $cyl_size);
591     extend_disk ($disk, $cylinders * $cyl_size) if $size % $cyl_size;
592
593     return (CAPACITY => $size / 512,
594             C => $cylinders,
595             H => 16,
596             S => 63);
597 }
598
599 # copy_file($from_handle, $from_filename, $to_handle, $to_filename, $size)
600 #
601 # Copies $size bytes from $from_handle to $to_handle.
602 # $from_filename and $to_filename are used in error messages.
603 sub copy_file {
604     my ($from_handle, $from_filename, $to_handle, $to_filename, $size) = @_;
605
606     while ($size > 0) {
607         my ($chunk_size) = 4096;
608         $chunk_size = $size if $chunk_size > $size;
609         $size -= $chunk_size;
610
611         my ($data) = read_fully ($from_handle, $from_filename, $chunk_size);
612         write_fully ($to_handle, $to_filename, $data);
613     }
614 }
615
616 # read_fully($handle, $filename, $bytes)
617 #
618 # Reads exactly $bytes bytes from $handle and returns the data read.
619 # $filename is used in error messages.
620 sub read_fully {
621     my ($handle, $filename, $bytes) = @_;
622     my ($data);
623     my ($read_bytes) = sysread ($handle, $data, $bytes);
624     die "$filename: read: $!\n" if !defined $read_bytes;
625     die "$filename: unexpected end of file\n" if $read_bytes != $bytes;
626     return $data;
627 }
628
629 # write_fully($handle, $filename, $data)
630 #
631 # Write $data to $handle.
632 # $filename is used in error messages.
633 sub write_fully {
634     my ($handle, $filename, $data) = @_;
635     my ($written_bytes) = syswrite ($handle, $data);
636     die "$filename: write: $!\n" if !defined $written_bytes;
637     die "$filename: short write\n" if $written_bytes != length $data;
638 }
639 \f
640 # Subprocess utilities.
641
642 # run_command(@args)
643 #
644 # Runs xsystem(@args).
645 # Also prints the command it's running and checks that it succeeded.
646 sub run_command {
647     print join (' ', @_), "\n";
648     die "command failed\n" if xsystem (@_);
649 }
650
651 # xsystem(@args)
652 #
653 # Creates a subprocess via exec(@args) and waits for it to complete.
654 # Relays common signals to the subprocess.
655 # If $timeout is set then the subprocess will be killed after that long.
656 sub xsystem {
657     my ($pid) = fork;
658     if (!defined ($pid)) {
659         # Fork failed.
660         die "fork: $!\n";
661     } elsif (!$pid) {
662         # Running in child process.
663         exec (@_);
664         exit (1);
665     } else {
666         # Running in parent process.
667         local $SIG{ALRM} = sub { timeout ($pid); };
668         local $SIG{INT} = sub { relay_signal ($pid, "INT"); };
669         local $SIG{TERM} = sub { relay_signal ($pid, "TERM"); };
670         alarm ($timeout) if defined ($timeout);
671         waitpid ($pid, 0);
672         alarm (0);
673         return $?;
674     }
675 }
676
677 # relay_signal($pid, $signal)
678 #
679 # Relays $signal to $pid and then reinvokes it for us with the default
680 # handler.  Also cleans up temporary files.
681 sub relay_signal {
682     my ($pid, $signal) = @_;
683     kill $signal, $pid;
684     File::Temp::cleanup();
685     $SIG{$signal} = 'DEFAULT';
686     kill $signal, getpid ();
687 }
688
689 # timeout($pid)
690 #
691 # Interrupts $pid and dies with a timeout error message.
692 sub timeout {
693     my ($pid) = @_;
694     kill "INT", $pid;
695     waitpid ($pid, 0);
696     seek (STDOUT, 0, 2);
697     my ($load_avg) = `uptime` =~ /(load average:.*)$/i;
698     print "\nTIMEOUT after $timeout seconds";
699     print  " - $load_avg" if defined $load_avg;
700     print "\n";
701     exit 0;
702 }