chiark / gitweb /
nailing-cargo: Fix unaltcargo error handling in cleanup
[nailing-cargo.git] / nailing-cargo
1 #!/usr/bin/perl -w
2
3 #    nailing-cargo: wrapper to use unpublished local crates
4 #
5 #    Copyright (C) 2019-2020 Ian Jackson
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 # example usages:
21 #   ../nailing-cargo/nailing-caretwgo make
22 #   ../nailing-cargo/nailing-cargo cargo build
23 #   CARGO='../nailing-cargo/nailing-cargo cargo' make
24
25 # Why do we need this ?
26 #
27 #  https://github.com/rust-lang/cargo/issues/6713
28 #  https://stackoverflow.com/questions/33025887/how-to-use-a-local-unpublished-crate
29 #  https://github.com/rust-lang/cargo/issues/1481
30
31 # Needs libtoml-perl
32
33 #: Cargo.nail:
34 #
35 #    [packages]
36 #    package = subdir
37 #    package = { subdir = ... }
38 #
39 #    [subdirs]
40 #    subdir
41
42 our $self;
43
44 use strict;
45 use POSIX;
46 use Types::Serialiser;
47
48 our %archmap = (
49     RPI => 'arm-unknown-linux-gnueabihf',
50 );
51
52 BEGIN {
53   $self = $0;  $self =~ s{^.*/(?=.)}{};
54   my $deref = $0;
55   while ($deref =~ m{^/}) {
56     my $link = readlink $deref;
57     if (!defined $link) {
58       $! == EINVAL
59         or die "$self: checking our script location $deref: $!\n";
60       $deref =~ s{/[^/]+$}{}
61         or die "$self: unexpected script path: $deref\n";
62       unshift @INC, $deref."/TOML-Tiny/lib";
63       last;
64     }
65     last if $link !~ m{^/};
66     $deref = $link;
67   }
68 }
69
70 use Fcntl qw(LOCK_EX);
71 use File::Compare;
72 use TOML::Tiny::Faithful;
73
74 our $src_absdir = getcwd() // die "$self: getcwd failed: $!\n";
75
76 our $worksphere = $src_absdir;
77 $worksphere =~ s{/([^/]+)$}{}
78   or die "$self: cwd \`$worksphere' unsupported!\n";
79 our $subdir = $1; # leafname
80
81 our $lockfile = "../.nailing-cargo.lock";
82
83 our $cargo_lock_update;
84 our $cargo_manifest_args;
85 our $alt_cargo_lock;
86
87 our @configs;
88 our $verbose=1;
89 our ($noact,$dump);
90 our $target;
91
92 sub read_or_enoent ($) {
93   my ($fn) = @_;
94   if (!open R, '<', $fn) {
95     return undef if $!==ENOENT;
96     die "$self: open $fn: $!\n";
97   }
98   local ($/) = undef;
99   my ($r) = <R> // die "$self: read $fn: $!\n";
100   $r;
101 }
102
103 sub stat_exists ($$) {
104   my ($fn, $what) = @_;
105   if (stat $fn) { return 1; }
106   $!==ENOENT or die "$self: stat $what: $fn: $!\n";
107   return 0;
108 }
109
110 sub toml_or_enoent ($$) {
111   my ($f,$what) = @_;
112   my $toml = read_or_enoent($f) // return;
113   my ($v,$e) = from_toml($toml);
114   if (!defined $v) {
115     chomp $e;
116     die "$self: parse TOML: $what: $f: $e\n";
117   }
118   die "$e ?" if length $e;
119   $v;
120 }
121
122 sub load1config ($) {
123   my ($f) = @_;
124   my $toml = toml_or_enoent($f, "config file");
125   push @configs, $toml if defined $toml;
126 }
127
128 sub loadconfigs () {
129   my $cfgleaf = ".nailing-cargo-cfg.toml";
130   load1config("/etc/nailing-cargo/cfg.toml");
131   load1config("$worksphere/$cfgleaf");
132   load1config("$ENV{HOME}/$cfgleaf") if defined $ENV{HOME};
133 }
134
135 sub getcfg ($$) {
136   my ($k, $def) = @_;
137   foreach my $cfg (@configs) {
138     my $v = $cfg->{$k};
139     return $v if defined $v;
140   }
141   return $def;
142 }
143
144 sub unlink_or_enoent ($) { unlink $_[0] or $!==ENOENT; }
145
146 sub same_file ($$) {
147   my ($x,$y) = @_;
148   "@$x[0..5]" eq "@$y[0..5]";
149 }
150
151 sub takelock () {
152   for (;;) {
153     open LOCK, ">", $lockfile or die "$self: open/create $lockfile: $!\n";
154     flock LOCK, LOCK_EX or die "$self: lock $lockfile: $!\n";
155     my @fstat = stat LOCK or die "$self: fstat: $!\n";
156     my @stat  = stat $lockfile;
157     if (!@stat) {
158       next if $! == ENOENT;
159       die "$self: stat $lockfile: $!\n";
160     }
161     last if same_file(\@fstat,\@stat);
162   }
163 }
164 sub unlock () {
165   unlink $lockfile or die "$self: removing lockfile: $!\n";
166 }
167
168 our $nail;
169
170 sub badcfg {
171   my $m = pop @_;
172   $" = '.';
173   die "$self: config key \`@_': $m\n";
174 }
175
176 sub cfg_uc {
177   my $v = $nail;
178   foreach my $k (@_) {
179     last unless defined $v;
180     ref($v) eq 'HASH' or badcfg @_, "parent key \`$k' is not a hash";
181     $v = $v->{$k};
182   }
183   return $v;
184 }
185
186 sub cfge {
187   my $exp = shift @_;
188   my $v = cfg_uc @_;
189   my $got = ref($v) || 'scalar';
190   return $v if !defined($v) || $got eq $exp;
191   badcfg @_, "found \L$got\E, expected \L$exp\E";
192   # ^ toml doesn't make refs to scalars, so this is unambiguous
193 }
194
195 sub cfgn {
196   my $exp = shift @_;
197   (cfge $exp, @_) // badcfg @_, "missing";
198 }
199
200 sub cfgs  { cfge 'scalar', @_ }
201 sub cfgsn { cfgn 'scalar', @_ }
202
203 sub cfg_bool {
204   my $v = cfg_uc @_;
205   return $v if !defined($v) || Types::Serialiser::is_bool $v;
206   badcfg @_, "expected boolean";
207 }
208
209 sub cfgn_list {
210   my $l = cfge 'ARRAY', @_;
211   foreach my $x (@$l) {
212     !ref $x or badcfg @_, "list contains non-scalar element";
213   }
214   @$l
215 }
216
217 sub readnail () {
218   my $nailfile = "../Cargo.nail";
219   open N, '<', $nailfile or die "$self: open $nailfile: $!\n";
220   local ($/) = undef;
221   my $toml = <N> // die "$self: read $nailfile: $!";
222   my $transformed;
223   if ($toml !~ m{^\s*\[/}m &&
224       $toml !~ m{^[^\n\#]*\=}m &&
225       # old non-toml syntax
226       $toml =~ s{^[ \t]*([-_0-9a-z]+)[ \t]+(\S+)[ \t]*$}{$1 = \"$2\"}mig) {
227     $toml =~ s{^}{[packages\]\n};
228     my @sd;
229     $toml =~ s{^[ \t]*\-[ \t]*\=[ \t]*(\"[-_0-9a-z]+\"\n?)$}{
230       push @sd, $1; '';
231     }mige;
232     $toml = "subdirs = [\n".(join '', map { "$_\n" } @sd)."]\n".$toml;
233     $transformed = 1;
234   }
235   my $e;
236   ($nail,$e) = from_toml($toml);
237   if (!defined $nail) {
238     if ($transformed) {
239       $toml =~ s/^/    /mg;
240       print STDERR "$self: $nailfile transformed into TOML:\n$toml\n";
241     }
242     $/="\n"; chomp $e;
243     die "$self: parse $nailfile: $e\n";
244   }
245   die "$e ?" if length $e;
246
247   if (!ref $nail->{subdirs}) {
248     $nail->{subdirs} = [
249       grep /^[^\#]/,
250       map { s/^\s+//; s/\s+$//; $_; }
251       split m{\n},
252       $nail->{subdirs}
253     ];
254   }
255 }
256
257 our @alt_cargo_lock_stat;
258
259 sub consider_alt_cargo_lock () {
260   my @ck = qw(alt_cargo_lock);
261   # User should *either* have Cargo.lock in .gitignore,
262   # or expect to commit Cargo.lock.example ($alt_cargo_lock)
263
264   $alt_cargo_lock = (cfg_uc @ck) // Types::Serialiser::true;
265
266   if (Types::Serialiser::is_bool $alt_cargo_lock) {
267     if (!$alt_cargo_lock) { $alt_cargo_lock = undef; return; }
268     $alt_cargo_lock = 'Cargo.lock.example';
269   }
270
271   if (ref($alt_cargo_lock) || $alt_cargo_lock =~ m{/}) {
272     badcfg @ck, "expected boolean, or leafname";
273   }
274
275   if (!stat_exists $alt_cargo_lock, "alt_cargo_lock") {
276     $alt_cargo_lock = undef;
277     return;
278   }
279   
280   @alt_cargo_lock_stat = stat _;
281 }
282
283 our $oot_dir;      # oot.dir or "Build"
284
285 sub consider_oot () {
286   $oot_dir = cfgs qw(oot dir);
287   my $use = cfgs qw(oot use);
288   unless (defined($oot_dir) || defined($use)) {
289     $cargo_lock_update//=0;
290     return;
291   }
292   $oot_dir //= 'Build';
293 }
294
295 our %manifests;
296 our %packagemap;
297
298 sub read_manifest ($) {
299   my ($subdir) = @_;
300   my $manifest = "../$subdir/Cargo.toml";
301   print STDERR "$self: reading $manifest...\n" if $verbose>=4;
302   if (defined $manifests{$manifest}) {
303     print STDERR
304  "$self: warning: $subdir: specified more than once!\n";
305     return undef;
306   }
307   foreach my $try ("$manifest.unnailed", "$manifest") {
308     my $toml = toml_or_enoent($try, "package manifest") // next;
309     my $p = $toml->{package}{name};
310     if (!defined $p) {
311       print STDERR
312  "$self: warning: $subdir: missing package.name in $try, ignoring\n";
313       next;
314     }
315     $manifests{$manifest} = $toml;
316     return $p;
317   }
318   return undef;
319 }
320
321 sub readorigs () {
322   foreach my $p (keys %{ $nail->{packages} }) {
323     my $v = $nail->{packages}{$p};
324     my $subdir = ref($v) ? $v->{subdir} : $v;
325     my $gotpackage = read_manifest($subdir) // '<nothing!>';
326     if ($gotpackage ne $p) {
327       print STDERR
328  "$self: warning: honouring Cargo.nail packages.$subdir=$p even though $subdir contains package $gotpackage!\n";
329     }
330     die if defined $packagemap{$p};
331     $packagemap{$p} = $subdir;
332   }
333   foreach my $subdir (@{ $nail->{subdirs} }) {
334     my $gotpackage = read_manifest($subdir);
335     if (!defined $gotpackage) {
336       print STDERR
337  "$self: warning: ignoring subdir $subdir which has no Cargo.toml\n";
338       next;
339     }
340     $packagemap{$gotpackage} //= $subdir;
341   }
342 }
343
344 sub calculate () {
345   foreach my $p (sort keys %packagemap) {
346     print STDERR "$self: package $p in $packagemap{$p}\n" if $verbose>=2;
347   }
348   foreach my $mf (keys %manifests) {
349     my $toml = $manifests{$mf};
350     foreach my $k (qw(dependencies build-dependencies dev-dependencies)) {
351       my $deps = $toml->{$k};
352       next unless $deps;
353       foreach my $p (keys %packagemap) {
354         my $info = $deps->{$p};
355         next unless defined $info;
356         $deps->{$p} = $info = { } unless ref $info;
357         delete $info->{version};
358         $info->{path} = $worksphere.'/'.$packagemap{$p};
359       }
360     }
361     my $nailing = "$mf.nailing~";
362     unlink_or_enoent $nailing or die "$self: remove old $nailing: $!\n";
363     open N, '>', $nailing or die "$self: create new $nailing: $!\n";
364     print N to_toml($toml) or die "$self: write new $nailing: $!\n";
365     close N or die "$self: close new $nailing: $!\n";
366   }
367 }
368
369 sub addargs () {
370   if (@ARGV>=2 &&
371       $ARGV[0] =~ m{\bcargo\b} &&
372       $ARGV[1] =~ m/generate-lockfile|update/) {
373     $cargo_lock_update //= 1;
374   } else {
375     $cargo_lock_update //= 0;
376   }
377   $cargo_manifest_args //=
378     (defined $oot_dir) && !$cargo_lock_update;
379
380   if ($cargo_manifest_args) {
381     push @ARGV, "--manifest-path=${src_absdir}/Cargo.toml",
382       qw(--locked --target-dir=target);
383   }
384
385   if (defined $target) {
386     if ($target =~ m{^[A-Z]}) {
387       $target = (cfgs 'arch', $target) // $archmap{$target}
388         // die "$self: --target=$target alias specified; not in cfg or map\n";
389     }
390     push @ARGV, "--target=$target";
391   }
392 }
393
394 our $oot_absdir;
395 our $build_absdir; # .../Build/<subdir>
396
397 sub oot_massage_cmdline () {
398   return unless defined $oot_dir;
399
400   my $use = cfgs qw(oot use);
401   $oot_absdir = ($oot_dir !~ m{^/} ? "$worksphere/" : ""). $oot_dir;
402   $build_absdir = "$oot_absdir/$subdir";
403
404   my ($pre,$post);
405   my @xargs;
406   if (!$cargo_lock_update) {
407     push @xargs, $build_absdir;
408     ($pre, $post) = ('cd "$1"; shift; ', '');
409   } else {
410     push @xargs, $oot_absdir, $subdir, $src_absdir;
411     $pre =  <<'END';
412         cd "$1"; shift;
413         mkdir -p -- "$1"; cd "$1"; shift;
414         cp -- "$1"/Cargo.toml
415 END
416     $pre .= <<'ENDLK' if stat_exists 'Cargo.lock', 'working cargo lockfile';
417               "$1"/Cargo.lock
418 ENDLK
419     $pre .= <<'ENDCP';
420                               .;
421 ENDCP
422     $pre .= <<'ENDPRE';
423         shift;
424         mkdir -p src; >src/lib.rs;
425 ENDPRE
426     $post = <<'ENDPOST';
427         rm -r src Cargo.toml;
428 ENDPOST
429   }
430   my $addpath = (cfg_uc qw(oot path_add)) //
431     $use eq 'really' ? Types::Serialiser::true : Types::Serialiser::false;
432   $addpath =
433     !Types::Serialiser::is_bool $addpath ? $addpath           :
434     $addpath                             ? '$HOME/.cargo/bin' :
435                                            undef;
436   if (defined $addpath) {
437     $pre .= <<END
438         PATH=$addpath:\${PATH-/usr/local/bin:/bin:/usr/bin};
439         export PATH;
440 END
441   }
442   $pre  =~ s/^\s+//mg; $pre  =~ s/\s+/ /g;
443   $post =~ s/^\s+//mg; $post =~ s/\s+/ /g;
444
445   my $getuser = sub { cfgsn qw(oot user) };
446   my @command;
447   my $xe = $verbose >= 2 ? 'xe' : 'e';
448   my $sh_ec = sub {
449     if (!length $post) {
450       @command = (@_, 'sh',"-${xe}c",$pre.'exec "$@"','--',@xargs);
451     } else {
452       @command = (@_, 'sh',"-${xe}c",$pre.'"$@"; '.$post,'--',@xargs);
453     }
454     push @command, @ARGV;
455   };
456   my $command_sh = sub {
457     my $quoted = join ' ', map {
458       return $_ if !m/\W/;
459       s/\'/\'\\'\'/g;
460       "'$_'"
461     } @ARGV;
462     @command = @_, "set -${xe}; $pre $quoted; $post";
463   };
464   print STDERR "$self: out-of-tree, building in: \`$build_absdir'\n"
465     if $verbose;
466   if ($use eq 'really') {
467     my $user = $getuser->();
468     my @pw = getpwnam $user or die "$self: oot.user \`$user' lookup failed\n";
469     my $homedir = $pw[7];
470     $sh_ec->('really','-u',$user,'env',"HOME=$homedir");
471     print STDERR "$self: using really to run as user \`$user'\n" if $verbose;
472   } elsif ($use eq 'ssh') {
473     my $user = $getuser->();
474     $user .= '@localhost' unless $user =~ m/\@/;
475     $command_sh->('ssh',$user);
476     print STDERR "$self: using ssh to run as \`$user'\n" if $verbose;
477   } elsif ($use eq 'command_args') {
478     my @c = cfgn_list qw(oot command);
479     $sh_ec->(@c);
480     print STDERR "$self: out-of-tree, adverbial command: @c\n" if $verbose;
481   } elsif ($use eq 'command_sh') {
482     my @c = cfgn_list qw(oot command);
483     $command_sh->(@c);
484     print STDERR "$self: out-of-tree, ssh'ish command: @c\n" if $verbose;
485   } elsif ($use eq 'null') {
486     $sh_ec->();
487   } else {
488     die "$self: oot.use mode $use not recognised\n";
489   }
490   die unless @command;
491   @ARGV = @command;
492 }
493
494 sub setenvs () {
495   $ENV{NAILINGCARGO_WORKSPHERE}   = $worksphere;
496   $ENV{NAILINGCARGO_MANIFEST_DIR} = $src_absdir;
497   $ENV{NAILINGCARGO_BUILDSPHERE}  = $oot_absdir;
498   delete $ENV{NAILINGCARGO_BUILDSPHERE} unless $oot_absdir;
499   $ENV{NAILINGCARGO_BUILD_DIR}    = $build_absdir // $src_absdir;
500 }
501
502 our $want_uninstall;
503
504 END {
505   if ($want_uninstall) {
506     local ($?);
507     foreach my $mf (keys %manifests) {
508       eval { uninstall1($mf,1); 1; } or warn "$@";
509     }
510     eval { unaltcargolock(1); 1; } or warn "$@";
511   }
512 }
513
514 our $cleanup_remove_cargo_lock;
515 sub makebackups () {
516   foreach my $mf (keys %manifests) {
517     link "$mf", "$mf.unnailed" or $!==EEXIST
518       or die "$self: make backup link $mf.unnailed: $!\n";
519   }
520
521   if (defined $alt_cargo_lock) {
522     print STDERR "$self: using alt_cargo_lock `$alt_cargo_lock'..."
523       if $verbose>=3;
524     if (link $alt_cargo_lock, 'Cargo.lock') {
525       print STDERR " linked\n" if $verbose>=3;
526     } elsif ($! != EEXIST) {
527       print STDERR "\n" if $verbose>=3;
528       die "$self: make \`Cargo.lock' available as \`$alt_cargo_lock': $!\n";
529     } else {
530       print STDERR "checking quality." if $verbose>=3;
531       my @lock_stat = stat 'Cargo.lock'
532         or die "$self: stat Cargo.lock (for alt check: $!\n";
533       same_file(\@alt_cargo_lock_stat, \@lock_stat)
534         or die
535 "$self: \`Cargo.lock' and alt file \`$alt_cargo_lock' both exist and are not the same file!\n";
536     }
537     $cleanup_remove_cargo_lock = 1;
538   }
539 }
540
541 sub nailed ($) {
542   my ($mf) = @_;
543   my $nailed  = "$mf.nailed~"; $nailed =~ s{/([^/]+)$}{/.$1} or die;
544   $nailed;
545 }    
546
547 sub install () {
548   foreach my $mf (keys %manifests) {
549     my $nailing = "$mf.nailing~";
550     my $nailed = nailed($mf);
551     my ($use, $rm);
552     my $diff;
553     if (open NN, '<', $nailed) {
554       $diff = compare($nailing, \*NN);
555       die "$self: compare $nailing and $nailed: $!" if $diff<0;
556     } else {
557       $!==ENOENT or die "$self: check previous $nailed: $!\n";
558       $diff = 1;
559     }
560     if ($diff) {
561       $use = $nailing;
562       $rm  = $nailed;
563     } else {
564       $use = $nailed;
565       $rm  = $nailing;
566     }
567     rename $use, $mf or die "$self: install nailed $use: $!\n";
568     unlink_or_enoent $rm or die "$self: remove old $rm: $!\n";
569     print STDERR "$self: nailed $mf\n" if $verbose>=3;
570   }
571 }
572
573 sub invoke () {
574   my $r = system @ARGV;
575   if (!$r) {
576     return 0;
577   } elsif ($r<0) {
578     print STDERR "$self: could not execute $ARGV[0]: $!\n";
579     return 127;
580   } elsif ($r & 0xff00) {
581     print STDERR "$self: $ARGV[0] failed (exit status $r)\n";
582     return $r >> 8;
583   } else {
584     print STDERR "$self: $ARGV[0] died due to signal! (wait status $r)\n";
585     return 125;
586   }
587 }
588
589 sub cargo_lock_update_after () {
590   return unless $cargo_lock_update;
591   # avoids importing File::Copy and the error handling is about as good
592   $!=0; $?=0;
593   my $r= system qw(cp --), "$build_absdir/Cargo.lock", "Cargo.lock";
594   die "$self: run cp: $! $?" if $r<0 || $r & 0xff;
595   die "$self: failed to update local Cargo.lock (wait status $r)\n" if $r;
596 }
597
598 sub uninstall1 ($$) {
599   my ($mf, $enoentok) = @_;
600   my $unnailed = "$mf.unnailed";
601   rename $unnailed, $mf or ($enoentok && $!==ENOENT)
602     or die "$self: failed to restore: rename $unnailed back to $mf: $!\n";
603 }
604
605 sub unaltcargolock ($) {
606   my ($enoentok) = @_;
607   return unless $cleanup_remove_cargo_lock;
608   die 'internal error!' unless defined $alt_cargo_lock;
609   unlink 'Cargo.lock' or ($enoentok && $!==ENOENT) or die
610  "$self: cleanup: remove \`Cargo.lock' in favour of \`$alt_cargo_lock': $!\n";
611 }
612
613 sub uninstall () {
614   foreach my $mf (keys %manifests) {
615     my $nailed = nailed($mf);
616     link $mf, $nailed or die "$self: preserve (link) $mf as $nailed: $!\n";
617     uninstall1($mf,0);
618   }
619   unaltcargolock(0);
620 }
621
622 while (@ARGV && $ARGV[0] =~ m/^-/) {
623   $_ = shift @ARGV;
624   last if m{^--$};
625   if (m{^-[^-]}) {
626     while (m{^-.}) {
627       if (s{^-v}{-}) {
628         $verbose++;
629       } elsif (s{^-q}{-}) {
630         $verbose=0;
631       } elsif (s{^-n}{-}) {
632         $noact++;
633       } elsif (s{^-D}{-}) {
634         $dump++;
635       } elsif (s{^-T(.+)}{-}s) {
636         $target = $1;
637       } elsif (s{^-([uU])}{-}) {
638         $cargo_lock_update= $1=~m/[a-z]/;
639       } elsif (s{^-([mM])}{-}) {
640         $cargo_manifest_args= $1=~m/[a-z]/;
641       } else {
642         die "$self: unknown short option(s) $_\n";
643       }
644     }
645   } elsif (s{^--target=}{}) {
646     $target = $_;
647   } elsif (m{^--(no-)?cargo-lock-update}) {
648     $cargo_lock_update= !!$1;
649   } elsif (m{^--(no-)?cargo-manifest-args}) {
650     $cargo_manifest_args= !!$1;
651   } else {
652     die "$self: unknown long option $_\n";
653   }
654 }
655
656 die "$self: need command to run\n" unless @ARGV || $noact;
657
658 takelock();
659 readnail();
660 consider_alt_cargo_lock();
661 consider_oot();
662 readorigs();
663 calculate();
664 addargs();
665 our @display_cmd = @ARGV;
666 oot_massage_cmdline();
667 setenvs();
668
669 if ($dump) {
670   eval '
671     use Data::Dumper;
672     print STDERR Dumper(\%manifests) if $dump>=2;
673     print STDERR Dumper(\%packagemap, \@ARGV,
674                         { src_absdir => $src_absdir,
675                           worksphere => $worksphere,
676                           subdir => $subdir,
677                           oot_dir => $oot_dir,
678                           oot_absdir => $oot_absdir,
679                           build_absdir => $build_absdir });
680   ' or die $@;
681 }
682
683 exit 0 if $noact;
684
685 $want_uninstall = 1;
686 makebackups();
687 install();
688
689 printf STDERR "$self: nailed (%s manifests, %s packages)%s\n",
690   (scalar keys %manifests), (scalar keys %packagemap),
691   (defined($alt_cargo_lock) and ", using `$alt_cargo_lock'")
692   if $verbose;
693
694 print STDERR "$self: invoking: @display_cmd\n" if $verbose;
695 my $estatus = invoke();
696
697 cargo_lock_update_after();
698
699 uninstall();
700 $want_uninstall = 0;
701
702 print STDERR "$self: unnailed.  status $estatus.\n" if $verbose;
703
704 exit $estatus;