chiark / gitweb /
absurd/git: Better debugging
[dgit.git] / dgit
1 #!/usr/bin/perl -w
2 # dgit
3 # Integration between git and Debian-style archives
4 #
5 # Copyright (C)2013-2016 Ian Jackson
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (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 General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 use strict;
21
22 use Debian::Dgit;
23 setup_sigwarn();
24
25 use IO::Handle;
26 use Data::Dumper;
27 use LWP::UserAgent;
28 use Dpkg::Control::Hash;
29 use File::Path;
30 use File::Temp qw(tempdir);
31 use File::Basename;
32 use Dpkg::Version;
33 use POSIX;
34 use IPC::Open2;
35 use Digest::SHA;
36 use Digest::MD5;
37 use List::Util qw(any);
38 use List::MoreUtils qw(pairwise);
39 use Text::Glob qw(match_glob);
40 use Fcntl qw(:DEFAULT :flock);
41 use Carp;
42
43 use Debian::Dgit;
44
45 our $our_version = 'UNRELEASED'; ###substituted###
46 our $absurdity = undef; ###substituted###
47
48 our @rpushprotovsn_support = qw(4 3 2); # 4 is new tag format
49 our $protovsn;
50
51 our $isuite = 'unstable';
52 our $idistro;
53 our $package;
54 our @ropts;
55
56 our $sign = 1;
57 our $dryrun_level = 0;
58 our $changesfile;
59 our $buildproductsdir = '..';
60 our $new_package = 0;
61 our $ignoredirty = 0;
62 our $rmonerror = 1;
63 our @deliberatelies;
64 our %previously;
65 our $existing_package = 'dpkg';
66 our $cleanmode;
67 our $changes_since_version;
68 our $rmchanges;
69 our $overwrite_version; # undef: not specified; '': check changelog
70 our $quilt_mode;
71 our $quilt_modes_re = 'linear|smash|auto|nofix|nocheck|gbp|dpm|unapplied';
72 our $dodep14tag;
73 our $dodep14tag_re = 'want|no|always';
74 our $split_brain_save;
75 our $we_are_responder;
76 our $initiator_tempdir;
77 our $patches_applied_dirtily = 00;
78 our $tagformat_want;
79 our $tagformat;
80 our $tagformatfn;
81
82 our %forceopts = map { $_=>0 }
83     qw(unrepresentable unsupported-source-format
84        dsc-changes-mismatch changes-origs-exactly
85        import-gitapply-absurd
86        import-gitapply-no-absurd
87        import-dsc-with-dgit-field);
88
89 our %format_ok = map { $_=>1 } ("1.0","3.0 (native)","3.0 (quilt)");
90
91 our $suite_re = '[-+.0-9a-z]+';
92 our $cleanmode_re = 'dpkg-source(?:-d)?|git|git-ff|check|none';
93 our $orig_f_comp_re = 'orig(?:-[-0-9a-z]+)?';
94 our $orig_f_sig_re = '\\.(?:asc|gpg|pgp)';
95 our $orig_f_tail_re = "$orig_f_comp_re\\.tar(?:\\.\\w+)?(?:$orig_f_sig_re)?";
96
97 our $git_authline_re = '^([^<>]+) \<(\S+)\> (\d+ [-+]\d+)$';
98 our $splitbraincache = 'dgit-intern/quilt-cache';
99
100 our (@git) = qw(git);
101 our (@dget) = qw(dget);
102 our (@curl) = qw(curl);
103 our (@dput) = qw(dput);
104 our (@debsign) = qw(debsign);
105 our (@gpg) = qw(gpg);
106 our (@sbuild) = qw(sbuild);
107 our (@ssh) = 'ssh';
108 our (@dgit) = qw(dgit);
109 our (@aptget) = qw(apt-get);
110 our (@aptcache) = qw(apt-cache);
111 our (@dpkgbuildpackage) = qw(dpkg-buildpackage -i\.git/ -I.git);
112 our (@dpkgsource) = qw(dpkg-source -i\.git/ -I.git);
113 our (@dpkggenchanges) = qw(dpkg-genchanges);
114 our (@mergechanges) = qw(mergechanges -f);
115 our (@gbp_build) = ('');
116 our (@gbp_pq) = ('gbp pq');
117 our (@changesopts) = ('');
118
119 our %opts_opt_map = ('dget' => \@dget, # accept for compatibility
120                      'curl' => \@curl,
121                      'dput' => \@dput,
122                      'debsign' => \@debsign,
123                      'gpg' => \@gpg,
124                      'sbuild' => \@sbuild,
125                      'ssh' => \@ssh,
126                      'dgit' => \@dgit,
127                      'git' => \@git,
128                      'apt-get' => \@aptget,
129                      'apt-cache' => \@aptcache,
130                      'dpkg-source' => \@dpkgsource,
131                      'dpkg-buildpackage' => \@dpkgbuildpackage,
132                      'dpkg-genchanges' => \@dpkggenchanges,
133                      'gbp-build' => \@gbp_build,
134                      'gbp-pq' => \@gbp_pq,
135                      'ch' => \@changesopts,
136                      'mergechanges' => \@mergechanges);
137
138 our %opts_opt_cmdonly = ('gpg' => 1, 'git' => 1);
139 our %opts_cfg_insertpos = map {
140     $_,
141     scalar @{ $opts_opt_map{$_} }
142 } keys %opts_opt_map;
143
144 sub finalise_opts_opts();
145
146 our $keyid;
147
148 autoflush STDOUT 1;
149
150 our $supplementary_message = '';
151 our $need_split_build_invocation = 0;
152 our $split_brain = 0;
153
154 END {
155     local ($@, $?);
156     print STDERR "! $_\n" foreach $supplementary_message =~ m/^.+$/mg;
157 }
158
159 our $remotename = 'dgit';
160 our @ourdscfield = qw(Dgit Vcs-Dgit-Master);
161 our $csuite;
162 our $instead_distro;
163
164 if (!defined $absurdity) {
165     $absurdity = $0;
166     $absurdity =~ s{/[^/]+$}{/absurd} or die;
167 }
168
169 sub debiantag ($$) {
170     my ($v,$distro) = @_;
171     return $tagformatfn->($v, $distro);
172 }
173
174 sub debiantag_maintview ($$) { 
175     my ($v,$distro) = @_;
176     return "$distro/".dep14_version_mangle $v;
177 }
178
179 sub madformat ($) { $_[0] eq '3.0 (quilt)' }
180
181 sub lbranch () { return "$branchprefix/$csuite"; }
182 my $lbranch_re = '^refs/heads/'.$branchprefix.'/([^/.]+)$';
183 sub lref () { return "refs/heads/".lbranch(); }
184 sub lrref () { return "refs/remotes/$remotename/".server_branch($csuite); }
185 sub rrref () { return server_ref($csuite); }
186
187 sub lrfetchrefs () { return "refs/dgit-fetch/$csuite"; }
188 sub lrfetchref () { return lrfetchrefs.'/'.server_branch($csuite); }
189
190 # We fetch some parts of lrfetchrefs/*.  Ideally we delete these
191 # locally fetched refs because they have unhelpful names and clutter
192 # up gitk etc.  So we track whether we have "used up" head ref (ie,
193 # whether we have made another local ref which refers to this object).
194 #
195 # (If we deleted them unconditionally, then we might end up
196 # re-fetching the same git objects each time dgit fetch was run.)
197 #
198 # So, leach use of lrfetchrefs needs to be accompanied by arrangements
199 # in git_fetch_us to fetch the refs in question, and possibly a call
200 # to lrfetchref_used.
201
202 our (%lrfetchrefs_f, %lrfetchrefs_d);
203 # $lrfetchrefs_X{lrfetchrefs."/heads/whatever"} = $objid
204
205 sub lrfetchref_used ($) {
206     my ($fullrefname) = @_;
207     my $objid = $lrfetchrefs_f{$fullrefname};
208     $lrfetchrefs_d{$fullrefname} = $objid if defined $objid;
209 }
210
211 sub stripepoch ($) {
212     my ($vsn) = @_;
213     $vsn =~ s/^\d+\://;
214     return $vsn;
215 }
216
217 sub srcfn ($$) {
218     my ($vsn,$sfx) = @_;
219     return "${package}_".(stripepoch $vsn).$sfx
220 }
221
222 sub dscfn ($) {
223     my ($vsn) = @_;
224     return srcfn($vsn,".dsc");
225 }
226
227 sub changespat ($;$) {
228     my ($vsn, $arch) = @_;
229     return "${package}_".(stripepoch $vsn)."_".($arch//'*').".changes";
230 }
231
232 sub upstreamversion ($) {
233     my ($vsn) = @_;
234     $vsn =~ s/-[^-]+$//;
235     return $vsn;
236 }
237
238 our $us = 'dgit';
239 initdebug('');
240
241 our @end;
242 END { 
243     local ($?);
244     foreach my $f (@end) {
245         eval { $f->(); };
246         print STDERR "$us: cleanup: $@" if length $@;
247     }
248 };
249
250 sub badcfg { print STDERR "$us: invalid configuration: @_\n"; exit 12; }
251
252 sub forceable_fail ($$) {
253     my ($forceoptsl, $msg) = @_;
254     fail $msg unless grep { $forceopts{$_} } @$forceoptsl;
255     print STDERR "warning: overriding problem due to --force:\n". $msg;
256 }
257
258 sub forceing ($) {
259     my ($forceoptsl) = @_;
260     my @got = grep { $forceopts{$_} } @$forceoptsl;
261     return 0 unless @got;
262     print STDERR
263  "warning: skipping checks or functionality due to --force-$got[0]\n";
264 }
265
266 sub no_such_package () {
267     print STDERR "$us: package $package does not exist in suite $isuite\n";
268     exit 4;
269 }
270
271 sub changedir ($) {
272     my ($newdir) = @_;
273     printdebug "CD $newdir\n";
274     chdir $newdir or confess "chdir: $newdir: $!";
275 }
276
277 sub deliberately ($) {
278     my ($enquiry) = @_;
279     return !!grep { $_ eq "--deliberately-$enquiry" } @deliberatelies;
280 }
281
282 sub deliberately_not_fast_forward () {
283     foreach (qw(not-fast-forward fresh-repo)) {
284         return 1 if deliberately($_) || deliberately("TEST-dgit-only-$_");
285     }
286 }
287
288 sub quiltmode_splitbrain () {
289     $quilt_mode =~ m/gbp|dpm|unapplied/;
290 }
291
292 sub opts_opt_multi_cmd {
293     my @cmd;
294     push @cmd, split /\s+/, shift @_;
295     push @cmd, @_;
296     @cmd;
297 }
298
299 sub gbp_pq {
300     return opts_opt_multi_cmd @gbp_pq;
301 }
302
303 #---------- remote protocol support, common ----------
304
305 # remote push initiator/responder protocol:
306 #  $ dgit remote-push-build-host <n-rargs> <rargs>... <push-args>...
307 #  where <rargs> is <push-host-dir> <supported-proto-vsn>,... ...
308 #  < dgit-remote-push-ready <actual-proto-vsn>
309 #
310 # occasionally:
311 #
312 #  > progress NBYTES
313 #  [NBYTES message]
314 #
315 #  > supplementary-message NBYTES          # $protovsn >= 3
316 #  [NBYTES message]
317 #
318 # main sequence:
319 #
320 #  > file parsed-changelog
321 #  [indicates that output of dpkg-parsechangelog follows]
322 #  > data-block NBYTES
323 #  > [NBYTES bytes of data (no newline)]
324 #  [maybe some more blocks]
325 #  > data-end
326 #
327 #  > file dsc
328 #  [etc]
329 #
330 #  > file changes
331 #  [etc]
332 #
333 #  > param head DGIT-VIEW-HEAD
334 #  > param csuite SUITE
335 #  > param tagformat old|new
336 #  > param maint-view MAINT-VIEW-HEAD
337 #
338 #  > previously REFNAME=OBJNAME       # if --deliberately-not-fast-forward
339 #                                     # goes into tag, for replay prevention
340 #
341 #  > want signed-tag
342 #  [indicates that signed tag is wanted]
343 #  < data-block NBYTES
344 #  < [NBYTES bytes of data (no newline)]
345 #  [maybe some more blocks]
346 #  < data-end
347 #  < files-end
348 #
349 #  > want signed-dsc-changes
350 #  < data-block NBYTES    [transfer of signed dsc]
351 #  [etc]
352 #  < data-block NBYTES    [transfer of signed changes]
353 #  [etc]
354 #  < files-end
355 #
356 #  > complete
357
358 our $i_child_pid;
359
360 sub i_child_report () {
361     # Sees if our child has died, and reap it if so.  Returns a string
362     # describing how it died if it failed, or undef otherwise.
363     return undef unless $i_child_pid;
364     my $got = waitpid $i_child_pid, WNOHANG;
365     return undef if $got <= 0;
366     die unless $got == $i_child_pid;
367     $i_child_pid = undef;
368     return undef unless $?;
369     return "build host child ".waitstatusmsg();
370 }
371
372 sub badproto ($$) {
373     my ($fh, $m) = @_;
374     fail "connection lost: $!" if $fh->error;
375     fail "protocol violation; $m not expected";
376 }
377
378 sub badproto_badread ($$) {
379     my ($fh, $wh) = @_;
380     fail "connection lost: $!" if $!;
381     my $report = i_child_report();
382     fail $report if defined $report;
383     badproto $fh, "eof (reading $wh)";
384 }
385
386 sub protocol_expect (&$) {
387     my ($match, $fh) = @_;
388     local $_;
389     $_ = <$fh>;
390     defined && chomp or badproto_badread $fh, "protocol message";
391     if (wantarray) {
392         my @r = &$match;
393         return @r if @r;
394     } else {
395         my $r = &$match;
396         return $r if $r;
397     }
398     badproto $fh, "\`$_'";
399 }
400
401 sub protocol_send_file ($$) {
402     my ($fh, $ourfn) = @_;
403     open PF, "<", $ourfn or die "$ourfn: $!";
404     for (;;) {
405         my $d;
406         my $got = read PF, $d, 65536;
407         die "$ourfn: $!" unless defined $got;
408         last if !$got;
409         print $fh "data-block ".length($d)."\n" or die $!;
410         print $fh $d or die $!;
411     }
412     PF->error and die "$ourfn $!";
413     print $fh "data-end\n" or die $!;
414     close PF;
415 }
416
417 sub protocol_read_bytes ($$) {
418     my ($fh, $nbytes) = @_;
419     $nbytes =~ m/^[1-9]\d{0,5}$|^0$/ or badproto \*RO, "bad byte count";
420     my $d;
421     my $got = read $fh, $d, $nbytes;
422     $got==$nbytes or badproto_badread $fh, "data block";
423     return $d;
424 }
425
426 sub protocol_receive_file ($$) {
427     my ($fh, $ourfn) = @_;
428     printdebug "() $ourfn\n";
429     open PF, ">", $ourfn or die "$ourfn: $!";
430     for (;;) {
431         my ($y,$l) = protocol_expect {
432             m/^data-block (.*)$/ ? (1,$1) :
433             m/^data-end$/ ? (0,) :
434             ();
435         } $fh;
436         last unless $y;
437         my $d = protocol_read_bytes $fh, $l;
438         print PF $d or die $!;
439     }
440     close PF or die $!;
441 }
442
443 #---------- remote protocol support, responder ----------
444
445 sub responder_send_command ($) {
446     my ($command) = @_;
447     return unless $we_are_responder;
448     # called even without $we_are_responder
449     printdebug ">> $command\n";
450     print PO $command, "\n" or die $!;
451 }    
452
453 sub responder_send_file ($$) {
454     my ($keyword, $ourfn) = @_;
455     return unless $we_are_responder;
456     printdebug "]] $keyword $ourfn\n";
457     responder_send_command "file $keyword";
458     protocol_send_file \*PO, $ourfn;
459 }
460
461 sub responder_receive_files ($@) {
462     my ($keyword, @ourfns) = @_;
463     die unless $we_are_responder;
464     printdebug "[[ $keyword @ourfns\n";
465     responder_send_command "want $keyword";
466     foreach my $fn (@ourfns) {
467         protocol_receive_file \*PI, $fn;
468     }
469     printdebug "[[\$\n";
470     protocol_expect { m/^files-end$/ } \*PI;
471 }
472
473 #---------- remote protocol support, initiator ----------
474
475 sub initiator_expect (&) {
476     my ($match) = @_;
477     protocol_expect { &$match } \*RO;
478 }
479
480 #---------- end remote code ----------
481
482 sub progress {
483     if ($we_are_responder) {
484         my $m = join '', @_;
485         responder_send_command "progress ".length($m) or die $!;
486         print PO $m or die $!;
487     } else {
488         print @_, "\n";
489     }
490 }
491
492 our $ua;
493
494 sub url_get {
495     if (!$ua) {
496         $ua = LWP::UserAgent->new();
497         $ua->env_proxy;
498     }
499     my $what = $_[$#_];
500     progress "downloading $what...";
501     my $r = $ua->get(@_) or die $!;
502     return undef if $r->code == 404;
503     $r->is_success or fail "failed to fetch $what: ".$r->status_line;
504     return $r->decoded_content(charset => 'none');
505 }
506
507 our ($dscdata,$dscurl,$dsc,$dsc_checked,$skew_warning_vsn);
508
509 sub runcmd {
510     debugcmd "+",@_;
511     $!=0; $?=-1;
512     failedcmd @_ if system @_;
513 }
514
515 sub act_local () { return $dryrun_level <= 1; }
516 sub act_scary () { return !$dryrun_level; }
517
518 sub printdone {
519     if (!$dryrun_level) {
520         progress "$us ok: @_";
521     } else {
522         progress "would be ok: @_ (but dry run only)";
523     }
524 }
525
526 sub dryrun_report {
527     printcmd(\*STDERR,$debugprefix."#",@_);
528 }
529
530 sub runcmd_ordryrun {
531     if (act_scary()) {
532         runcmd @_;
533     } else {
534         dryrun_report @_;
535     }
536 }
537
538 sub runcmd_ordryrun_local {
539     if (act_local()) {
540         runcmd @_;
541     } else {
542         dryrun_report @_;
543     }
544 }
545
546 sub shell_cmd {
547     my ($first_shell, @cmd) = @_;
548     return qw(sh -ec), $first_shell.'; exec "$@"', 'x', @cmd;
549 }
550
551 our $helpmsg = <<END;
552 main usages:
553   dgit [dgit-opts] clone [dgit-opts] package [suite] [./dir|/dir]
554   dgit [dgit-opts] fetch|pull [dgit-opts] [suite]
555   dgit [dgit-opts] build [dpkg-buildpackage-opts]
556   dgit [dgit-opts] sbuild [sbuild-opts]
557   dgit [dgit-opts] push [dgit-opts] [suite]
558   dgit [dgit-opts] rpush build-host:build-dir ...
559 important dgit options:
560   -k<keyid>           sign tag and package with <keyid> instead of default
561   --dry-run -n        do not change anything, but go through the motions
562   --damp-run -L       like --dry-run but make local changes, without signing
563   --new -N            allow introducing a new package
564   --debug -D          increase debug level
565   -c<name>=<value>    set git config option (used directly by dgit too)
566 END
567
568 our $later_warning_msg = <<END;
569 Perhaps the upload is stuck in incoming.  Using the version from git.
570 END
571
572 sub badusage {
573     print STDERR "$us: @_\n", $helpmsg or die $!;
574     exit 8;
575 }
576
577 sub nextarg {
578     @ARGV or badusage "too few arguments";
579     return scalar shift @ARGV;
580 }
581
582 sub cmd_help () {
583     print $helpmsg or die $!;
584     exit 0;
585 }
586
587 our $td = $ENV{DGIT_TEST_DUMMY_DIR} || "DGIT_TEST_DUMMY_DIR-unset";
588
589 our %defcfg = ('dgit.default.distro' => 'debian',
590                'dgit-suite.*-security.distro' => 'debian-security',
591                'dgit.default.username' => '',
592                'dgit.default.archive-query-default-component' => 'main',
593                'dgit.default.ssh' => 'ssh',
594                'dgit.default.archive-query' => 'madison:',
595                'dgit.default.sshpsql-dbname' => 'service=projectb',
596                'dgit.default.aptget-components' => 'main',
597                'dgit.default.dgit-tag-format' => 'new,old,maint',
598                # old means "repo server accepts pushes with old dgit tags"
599                # new means "repo server accepts pushes with new dgit tags"
600                # maint means "repo server accepts split brain pushes"
601                # hist means "repo server may have old pushes without new tag"
602                #   ("hist" is implied by "old")
603                'dgit-distro.debian.archive-query' => 'ftpmasterapi:',
604                'dgit-distro.debian.git-check' => 'url',
605                'dgit-distro.debian.git-check-suffix' => '/info/refs',
606                'dgit-distro.debian.new-private-pushers' => 't',
607                'dgit-distro.debian/push.git-url' => '',
608                'dgit-distro.debian/push.git-host' => 'push.dgit.debian.org',
609                'dgit-distro.debian/push.git-user-force' => 'dgit',
610                'dgit-distro.debian/push.git-proto' => 'git+ssh://',
611                'dgit-distro.debian/push.git-path' => '/dgit/debian/repos',
612                'dgit-distro.debian/push.git-create' => 'true',
613                'dgit-distro.debian/push.git-check' => 'ssh-cmd',
614  'dgit-distro.debian.archive-query-url', 'https://api.ftp-master.debian.org/',
615 # 'dgit-distro.debian.archive-query-tls-key',
616 #    '/etc/ssl/certs/%HOST%.pem:/etc/dgit/%HOST%.pem',
617 # ^ this does not work because curl is broken nowadays
618 # Fixing #790093 properly will involve providing providing the key
619 # in some pacagke and maybe updating these paths.
620 #
621 # 'dgit-distro.debian.archive-query-tls-curl-args',
622 #   '--ca-path=/etc/ssl/ca-debian',
623 # ^ this is a workaround but works (only) on DSA-administered machines
624                'dgit-distro.debian.git-url' => 'https://git.dgit.debian.org',
625                'dgit-distro.debian.git-url-suffix' => '',
626                'dgit-distro.debian.upload-host' => 'ftp-master', # for dput
627                'dgit-distro.debian.mirror' => 'http://ftp.debian.org/debian/',
628  'dgit-distro.debian-security.archive-query' => 'aptget:',
629  'dgit-distro.debian-security.mirror' => 'http://security.debian.org/debian-security/',
630  'dgit-distro.debian-security.aptget-suite-map' => 's#-security$#/updates#',
631  'dgit-distro.debian-security.aptget-suite-rmap' => 's#$#-security#',
632  'dgit-distro.debian-security.nominal-distro' => 'debian',
633  'dgit-distro.debian.backports-quirk' => '(squeeze)-backports*',
634  'dgit-distro.debian-backports.mirror' => 'http://backports.debian.org/debian-backports/',
635                'dgit-distro.ubuntu.git-check' => 'false',
636  'dgit-distro.ubuntu.mirror' => 'http://archive.ubuntu.com/ubuntu',
637                'dgit-distro.test-dummy.ssh' => "$td/ssh",
638                'dgit-distro.test-dummy.username' => "alice",
639                'dgit-distro.test-dummy.git-check' => "ssh-cmd",
640                'dgit-distro.test-dummy.git-create' => "ssh-cmd",
641                'dgit-distro.test-dummy.git-url' => "$td/git",
642                'dgit-distro.test-dummy.git-host' => "git",
643                'dgit-distro.test-dummy.git-path' => "$td/git",
644                'dgit-distro.test-dummy.archive-query' => "dummycatapi:",
645                'dgit-distro.test-dummy.archive-query-url' => "file://$td/aq/",
646                'dgit-distro.test-dummy.mirror' => "file://$td/mirror/",
647                'dgit-distro.test-dummy.upload-host' => 'test-dummy',
648                );
649
650 our %gitcfgs;
651 our @gitcfgsources = qw(cmdline local global system);
652
653 sub git_slurp_config () {
654     local ($debuglevel) = $debuglevel-2;
655     local $/="\0";
656
657     # This algoritm is a bit subtle, but this is needed so that for
658     # options which we want to be single-valued, we allow the
659     # different config sources to override properly.  See #835858.
660     foreach my $src (@gitcfgsources) {
661         next if $src eq 'cmdline';
662         # we do this ourselves since git doesn't handle it
663         
664         my @cmd = (@git, qw(config -z --get-regexp), "--$src", qw(.*));
665         debugcmd "|",@cmd;
666
667         open GITS, "-|", @cmd or die $!;
668         while (<GITS>) {
669             chomp or die;
670             printdebug "=> ", (messagequote $_), "\n";
671             m/\n/ or die "$_ ?";
672             push @{ $gitcfgs{$src}{$`} }, $'; #';
673         }
674         $!=0; $?=0;
675         close GITS
676             or ($!==0 && $?==256)
677             or failedcmd @cmd;
678     }
679 }
680
681 sub git_get_config ($) {
682     my ($c) = @_;
683     foreach my $src (@gitcfgsources) {
684         my $l = $gitcfgs{$src}{$c};
685         printdebug"C $c ".(defined $l ? messagequote "'$l'" : "undef")."\n"
686             if $debuglevel >= 4;
687         $l or next;
688         @$l==1 or badcfg "multiple values for $c".
689             " (in $src git config)" if @$l > 1;
690         return $l->[0];
691     }
692     return undef;
693 }
694
695 sub cfg {
696     foreach my $c (@_) {
697         return undef if $c =~ /RETURN-UNDEF/;
698         my $v = git_get_config($c);
699         return $v if defined $v;
700         my $dv = $defcfg{$c};
701         return $dv if defined $dv;
702     }
703     badcfg "need value for one of: @_\n".
704         "$us: distro or suite appears not to be (properly) supported";
705 }
706
707 sub access_basedistro () {
708     if (defined $idistro) {
709         return $idistro;
710     } else {    
711         my $def = cfg("dgit-suite.$isuite.distro", 'RETURN-UNDEF');
712         return $def if defined $def;
713         foreach my $src (@gitcfgsources, 'internal') {
714             my $kl = $src eq 'internal' ? \%defcfg : $gitcfgs{$src};
715             next unless $kl;
716             foreach my $k (keys %$kl) {
717                 next unless $k =~ m#^dgit-suite\.(.*)\.distro$#;
718                 my $dpat = $1;
719                 next unless match_glob $dpat, $isuite;
720                 return $kl->{$k};
721             }
722         }
723         return cfg("dgit.default.distro");
724     }
725 }
726
727 sub access_nomdistro () {
728     my $base = access_basedistro();
729     return cfg("dgit-distro.$base.nominal-distro",'RETURN-UNDEF') // $base;
730 }
731
732 sub access_quirk () {
733     # returns (quirk name, distro to use instead or undef, quirk-specific info)
734     my $basedistro = access_basedistro();
735     my $backports_quirk = cfg("dgit-distro.$basedistro.backports-quirk",
736                               'RETURN-UNDEF');
737     if (defined $backports_quirk) {
738         my $re = $backports_quirk;
739         $re =~ s/[^-0-9a-z_\%*()]/\\$&/ig;
740         $re =~ s/\*/.*/g;
741         $re =~ s/\%/([-0-9a-z_]+)/
742             or $re =~ m/[()]/ or badcfg "backports-quirk needs \% or ( )";
743         if ($isuite =~ m/^$re$/) {
744             return ('backports',"$basedistro-backports",$1);
745         }
746     }
747     return ('none',undef);
748 }
749
750 our $access_forpush;
751
752 sub parse_cfg_bool ($$$) {
753     my ($what,$def,$v) = @_;
754     $v //= $def;
755     return
756         $v =~ m/^[ty1]/ ? 1 :
757         $v =~ m/^[fn0]/ ? 0 :
758         badcfg "$what needs t (true, y, 1) or f (false, n, 0) not \`$v'";
759 }       
760
761 sub access_forpush_config () {
762     my $d = access_basedistro();
763
764     return 1 if
765         $new_package &&
766         parse_cfg_bool('new-private-pushers', 0,
767                        cfg("dgit-distro.$d.new-private-pushers",
768                            'RETURN-UNDEF'));
769
770     my $v = cfg("dgit-distro.$d.readonly", 'RETURN-UNDEF');
771     $v //= 'a';
772     return
773         $v =~ m/^[ty1]/ ? 0 : # force readonly,    forpush = 0
774         $v =~ m/^[fn0]/ ? 1 : # force nonreadonly, forpush = 1
775         $v =~ m/^[a]/  ? '' : # auto,              forpush = ''
776         badcfg "readonly needs t (true, y, 1) or f (false, n, 0) or a (auto)";
777 }
778
779 sub access_forpush () {
780     $access_forpush //= access_forpush_config();
781     return $access_forpush;
782 }
783
784 sub pushing () {
785     die "$access_forpush ?" if ($access_forpush // 1) ne 1;
786     badcfg "pushing but distro is configured readonly"
787         if access_forpush_config() eq '0';
788     $access_forpush = 1;
789     $supplementary_message = <<'END' unless $we_are_responder;
790 Push failed, before we got started.
791 You can retry the push, after fixing the problem, if you like.
792 END
793     finalise_opts_opts();
794 }
795
796 sub notpushing () {
797     finalise_opts_opts();
798 }
799
800 sub supplementary_message ($) {
801     my ($msg) = @_;
802     if (!$we_are_responder) {
803         $supplementary_message = $msg;
804         return;
805     } elsif ($protovsn >= 3) {
806         responder_send_command "supplementary-message ".length($msg)
807             or die $!;
808         print PO $msg or die $!;
809     }
810 }
811
812 sub access_distros () {
813     # Returns list of distros to try, in order
814     #
815     # We want to try:
816     #    0. `instead of' distro name(s) we have been pointed to
817     #    1. the access_quirk distro, if any
818     #    2a. the user's specified distro, or failing that  } basedistro
819     #    2b. the distro calculated from the suite          }
820     my @l = access_basedistro();
821
822     my (undef,$quirkdistro) = access_quirk();
823     unshift @l, $quirkdistro;
824     unshift @l, $instead_distro;
825     @l = grep { defined } @l;
826
827     push @l, access_nomdistro();
828
829     if (access_forpush()) {
830         @l = map { ("$_/push", $_) } @l;
831     }
832     @l;
833 }
834
835 sub access_cfg_cfgs (@) {
836     my (@keys) = @_;
837     my @cfgs;
838     # The nesting of these loops determines the search order.  We put
839     # the key loop on the outside so that we search all the distros
840     # for each key, before going on to the next key.  That means that
841     # if access_cfg is called with a more specific, and then a less
842     # specific, key, an earlier distro can override the less specific
843     # without necessarily overriding any more specific keys.  (If the
844     # distro wants to override the more specific keys it can simply do
845     # so; whereas if we did the loop the other way around, it would be
846     # impossible to for an earlier distro to override a less specific
847     # key but not the more specific ones without restating the unknown
848     # values of the more specific keys.
849     my @realkeys;
850     my @rundef;
851     # We have to deal with RETURN-UNDEF specially, so that we don't
852     # terminate the search prematurely.
853     foreach (@keys) {
854         if (m/RETURN-UNDEF/) { push @rundef, $_; last; }
855         push @realkeys, $_
856     }
857     foreach my $d (access_distros()) {
858         push @cfgs, map { "dgit-distro.$d.$_" } @realkeys;
859     }
860     push @cfgs, map { "dgit.default.$_" } @realkeys;
861     push @cfgs, @rundef;
862     return @cfgs;
863 }
864
865 sub access_cfg (@) {
866     my (@keys) = @_;
867     my (@cfgs) = access_cfg_cfgs(@keys);
868     my $value = cfg(@cfgs);
869     return $value;
870 }
871
872 sub access_cfg_bool ($$) {
873     my ($def, @keys) = @_;
874     parse_cfg_bool($keys[0], $def, access_cfg(@keys, 'RETURN-UNDEF'));
875 }
876
877 sub string_to_ssh ($) {
878     my ($spec) = @_;
879     if ($spec =~ m/\s/) {
880         return qw(sh -ec), 'exec '.$spec.' "$@"', 'x';
881     } else {
882         return ($spec);
883     }
884 }
885
886 sub access_cfg_ssh () {
887     my $gitssh = access_cfg('ssh', 'RETURN-UNDEF');
888     if (!defined $gitssh) {
889         return @ssh;
890     } else {
891         return string_to_ssh $gitssh;
892     }
893 }
894
895 sub access_runeinfo ($) {
896     my ($info) = @_;
897     return ": dgit ".access_basedistro()." $info ;";
898 }
899
900 sub access_someuserhost ($) {
901     my ($some) = @_;
902     my $user = access_cfg("$some-user-force", 'RETURN-UNDEF');
903     defined($user) && length($user) or
904         $user = access_cfg("$some-user",'username');
905     my $host = access_cfg("$some-host");
906     return length($user) ? "$user\@$host" : $host;
907 }
908
909 sub access_gituserhost () {
910     return access_someuserhost('git');
911 }
912
913 sub access_giturl (;$) {
914     my ($optional) = @_;
915     my $url = access_cfg('git-url','RETURN-UNDEF');
916     my $suffix;
917     if (!length $url) {
918         my $proto = access_cfg('git-proto', 'RETURN-UNDEF');
919         return undef unless defined $proto;
920         $url =
921             $proto.
922             access_gituserhost().
923             access_cfg('git-path');
924     } else {
925         $suffix = access_cfg('git-url-suffix','RETURN-UNDEF');
926     }
927     $suffix //= '.git';
928     return "$url/$package$suffix";
929 }              
930
931 sub parsecontrolfh ($$;$) {
932     my ($fh, $desc, $allowsigned) = @_;
933     our $dpkgcontrolhash_noissigned;
934     my $c;
935     for (;;) {
936         my %opts = ('name' => $desc);
937         $opts{allow_pgp}= $allowsigned || !$dpkgcontrolhash_noissigned;
938         $c = Dpkg::Control::Hash->new(%opts);
939         $c->parse($fh,$desc) or die "parsing of $desc failed";
940         last if $allowsigned;
941         last if $dpkgcontrolhash_noissigned;
942         my $issigned= $c->get_option('is_pgp_signed');
943         if (!defined $issigned) {
944             $dpkgcontrolhash_noissigned= 1;
945             seek $fh, 0,0 or die "seek $desc: $!";
946         } elsif ($issigned) {
947             fail "control file $desc is (already) PGP-signed. ".
948                 " Note that dgit push needs to modify the .dsc and then".
949                 " do the signature itself";
950         } else {
951             last;
952         }
953     }
954     return $c;
955 }
956
957 sub parsecontrol {
958     my ($file, $desc, $allowsigned) = @_;
959     my $fh = new IO::Handle;
960     open $fh, '<', $file or die "$file: $!";
961     my $c = parsecontrolfh($fh,$desc,$allowsigned);
962     $fh->error and die $!;
963     close $fh;
964     return $c;
965 }
966
967 sub getfield ($$) {
968     my ($dctrl,$field) = @_;
969     my $v = $dctrl->{$field};
970     return $v if defined $v;
971     fail "missing field $field in ".$dctrl->get_option('name');
972 }
973
974 sub parsechangelog {
975     my $c = Dpkg::Control::Hash->new(name => 'parsed changelog');
976     my $p = new IO::Handle;
977     my @cmd = (qw(dpkg-parsechangelog), @_);
978     open $p, '-|', @cmd or die $!;
979     $c->parse($p);
980     $?=0; $!=0; close $p or failedcmd @cmd;
981     return $c;
982 }
983
984 sub commit_getclogp ($) {
985     # Returns the parsed changelog hashref for a particular commit
986     my ($objid) = @_;
987     our %commit_getclogp_memo;
988     my $memo = $commit_getclogp_memo{$objid};
989     return $memo if $memo;
990     mkpath '.git/dgit';
991     my $mclog = ".git/dgit/clog-$objid";
992     runcmd shell_cmd "exec >$mclog", @git, qw(cat-file blob),
993         "$objid:debian/changelog";
994     $commit_getclogp_memo{$objid} = parsechangelog("-l$mclog");
995 }
996
997 sub must_getcwd () {
998     my $d = getcwd();
999     defined $d or fail "getcwd failed: $!";
1000     return $d;
1001 }
1002
1003 sub parse_dscdata () {
1004     my $dscfh = new IO::File \$dscdata, '<' or die $!;
1005     printdebug Dumper($dscdata) if $debuglevel>1;
1006     $dsc = parsecontrolfh($dscfh,$dscurl,1);
1007     printdebug Dumper($dsc) if $debuglevel>1;
1008 }
1009
1010 our %rmad;
1011
1012 sub archive_query ($;@) {
1013     my ($method) = shift @_;
1014     fail "this operation does not support multiple comma-separated suites"
1015         if $isuite =~ m/,/;
1016     my $query = access_cfg('archive-query','RETURN-UNDEF');
1017     $query =~ s/^(\w+):// or badcfg "invalid archive-query method \`$query'";
1018     my $proto = $1;
1019     my $data = $'; #';
1020     { no strict qw(refs); &{"${method}_${proto}"}($proto,$data,@_); }
1021 }
1022
1023 sub archive_query_prepend_mirror {
1024     my $m = access_cfg('mirror');
1025     return map { [ $_->[0], $m.$_->[1], @$_[2..$#$_] ] } @_;
1026 }
1027
1028 sub pool_dsc_subpath ($$) {
1029     my ($vsn,$component) = @_; # $package is implict arg
1030     my $prefix = substr($package, 0, $package =~ m/^l/ ? 4 : 1);
1031     return "/pool/$component/$prefix/$package/".dscfn($vsn);
1032 }
1033
1034 sub cfg_apply_map ($$$) {
1035     my ($varref, $what, $mapspec) = @_;
1036     return unless $mapspec;
1037
1038     printdebug "config $what EVAL{ $mapspec; }\n";
1039     $_ = $$varref;
1040     eval "package Dgit::Config; $mapspec;";
1041     die $@ if $@;
1042     $$varref = $_;
1043 }
1044
1045 #---------- `ftpmasterapi' archive query method (nascent) ----------
1046
1047 sub archive_api_query_cmd ($) {
1048     my ($subpath) = @_;
1049     my @cmd = (@curl, qw(-sS));
1050     my $url = access_cfg('archive-query-url');
1051     if ($url =~ m#^https://([-.0-9a-z]+)/#) {
1052         my $host = $1;
1053         my $keys = access_cfg('archive-query-tls-key','RETURN-UNDEF') //'';
1054         foreach my $key (split /\:/, $keys) {
1055             $key =~ s/\%HOST\%/$host/g;
1056             if (!stat $key) {
1057                 fail "for $url: stat $key: $!" unless $!==ENOENT;
1058                 next;
1059             }
1060             fail "config requested specific TLS key but do not know".
1061                 " how to get curl to use exactly that EE key ($key)";
1062 #           push @cmd, "--cacert", $key, "--capath", "/dev/enoent";
1063 #           # Sadly the above line does not work because of changes
1064 #           # to gnutls.   The real fix for #790093 may involve
1065 #           # new curl options.
1066             last;
1067         }
1068         # Fixing #790093 properly will involve providing a value
1069         # for this on clients.
1070         my $kargs = access_cfg('archive-query-tls-curl-ca-args','RETURN-UNDEF');
1071         push @cmd, split / /, $kargs if defined $kargs;
1072     }
1073     push @cmd, $url.$subpath;
1074     return @cmd;
1075 }
1076
1077 sub api_query ($$;$) {
1078     use JSON;
1079     my ($data, $subpath, $ok404) = @_;
1080     badcfg "ftpmasterapi archive query method takes no data part"
1081         if length $data;
1082     my @cmd = archive_api_query_cmd($subpath);
1083     my $url = $cmd[$#cmd];
1084     push @cmd, qw(-w %{http_code});
1085     my $json = cmdoutput @cmd;
1086     unless ($json =~ s/\d+\d+\d$//) {
1087         failedcmd_report_cmd undef, @cmd;
1088         fail "curl failed to print 3-digit HTTP code";
1089     }
1090     my $code = $&;
1091     return undef if $code eq '404' && $ok404;
1092     fail "fetch of $url gave HTTP code $code"
1093         unless $url =~ m#^file://# or $code =~ m/^2/;
1094     return decode_json($json);
1095 }
1096
1097 sub canonicalise_suite_ftpmasterapi {
1098     my ($proto,$data) = @_;
1099     my $suites = api_query($data, 'suites');
1100     my @matched;
1101     foreach my $entry (@$suites) {
1102         next unless grep { 
1103             my $v = $entry->{$_};
1104             defined $v && $v eq $isuite;
1105         } qw(codename name);
1106         push @matched, $entry;
1107     }
1108     fail "unknown suite $isuite" unless @matched;
1109     my $cn;
1110     eval {
1111         @matched==1 or die "multiple matches for suite $isuite\n";
1112         $cn = "$matched[0]{codename}";
1113         defined $cn or die "suite $isuite info has no codename\n";
1114         $cn =~ m/^$suite_re$/ or die "suite $isuite maps to bad codename\n";
1115     };
1116     die "bad ftpmaster api response: $@\n".Dumper(\@matched)
1117         if length $@;
1118     return $cn;
1119 }
1120
1121 sub archive_query_ftpmasterapi {
1122     my ($proto,$data) = @_;
1123     my $info = api_query($data, "dsc_in_suite/$isuite/$package");
1124     my @rows;
1125     my $digester = Digest::SHA->new(256);
1126     foreach my $entry (@$info) {
1127         eval {
1128             my $vsn = "$entry->{version}";
1129             my ($ok,$msg) = version_check $vsn;
1130             die "bad version: $msg\n" unless $ok;
1131             my $component = "$entry->{component}";
1132             $component =~ m/^$component_re$/ or die "bad component";
1133             my $filename = "$entry->{filename}";
1134             $filename && $filename !~ m#[^-+:._~0-9a-zA-Z/]|^[/.]|/[/.]#
1135                 or die "bad filename";
1136             my $sha256sum = "$entry->{sha256sum}";
1137             $sha256sum =~ m/^[0-9a-f]+$/ or die "bad sha256sum";
1138             push @rows, [ $vsn, "/pool/$component/$filename",
1139                           $digester, $sha256sum ];
1140         };
1141         die "bad ftpmaster api response: $@\n".Dumper($entry)
1142             if length $@;
1143     }
1144     @rows = sort { -version_compare($a->[0],$b->[0]) } @rows;
1145     return archive_query_prepend_mirror @rows;
1146 }
1147
1148 sub file_in_archive_ftpmasterapi {
1149     my ($proto,$data,$filename) = @_;
1150     my $pat = $filename;
1151     $pat =~ s/_/\\_/g;
1152     $pat = "%/$pat";
1153     $pat =~ s#[^-+_.0-9a-z/]# sprintf '%%%02x', ord $& #ge;
1154     my $info = api_query($data, "file_in_archive/$pat", 1);
1155 }
1156
1157 #---------- `aptget' archive query method ----------
1158
1159 our $aptget_base;
1160 our $aptget_releasefile;
1161 our $aptget_configpath;
1162
1163 sub aptget_aptget   () { return @aptget,   qw(-c), $aptget_configpath; }
1164 sub aptget_aptcache () { return @aptcache, qw(-c), $aptget_configpath; }
1165
1166 sub aptget_cache_clean {
1167     runcmd_ordryrun_local qw(sh -ec),
1168         'cd "$1"; find -atime +30 -type f -print0 | xargs -0r rm --',
1169         'x', $aptget_base;
1170 }
1171
1172 sub aptget_lock_acquire () {
1173     my $lockfile = "$aptget_base/lock";
1174     open APTGET_LOCK, '>', $lockfile or die "open $lockfile: $!";
1175     flock APTGET_LOCK, LOCK_EX or die "lock $lockfile: $!";
1176 }
1177
1178 sub aptget_prep ($) {
1179     my ($data) = @_;
1180     return if defined $aptget_base;
1181
1182     badcfg "aptget archive query method takes no data part"
1183         if length $data;
1184
1185     my $cache = $ENV{XDG_CACHE_DIR} // "$ENV{HOME}/.cache";
1186
1187     ensuredir $cache;
1188     ensuredir "$cache/dgit";
1189     my $cachekey =
1190         access_cfg('aptget-cachekey','RETURN-UNDEF')
1191         // access_nomdistro();
1192
1193     $aptget_base = "$cache/dgit/aptget";
1194     ensuredir $aptget_base;
1195
1196     my $quoted_base = $aptget_base;
1197     die "$quoted_base contains bad chars, cannot continue"
1198         if $quoted_base =~ m/["\\]/; # apt.conf(5) says no escaping :-/
1199
1200     ensuredir $aptget_base;
1201
1202     aptget_lock_acquire();
1203
1204     aptget_cache_clean();
1205
1206     $aptget_configpath = "$aptget_base/apt.conf#$cachekey";
1207     my $sourceslist = "source.list#$cachekey";
1208
1209     my $aptsuites = $isuite;
1210     cfg_apply_map(\$aptsuites, 'suite map',
1211                   access_cfg('aptget-suite-map', 'RETURN-UNDEF'));
1212
1213     open SRCS, ">", "$aptget_base/$sourceslist" or die $!;
1214     printf SRCS "deb-src %s %s %s\n",
1215         access_cfg('mirror'),
1216         $aptsuites,
1217         access_cfg('aptget-components')
1218         or die $!;
1219
1220     ensuredir "$aptget_base/cache";
1221     ensuredir "$aptget_base/lists";
1222
1223     open CONF, ">", $aptget_configpath or die $!;
1224     print CONF <<END;
1225 Debug::NoLocking "true";
1226 APT::Get::List-Cleanup "false";
1227 #clear APT::Update::Post-Invoke-Success;
1228 Dir::Etc::SourceList "$quoted_base/$sourceslist";
1229 Dir::State::Lists "$quoted_base/lists";
1230 Dir::Etc::preferences "$quoted_base/preferences";
1231 Dir::Cache::srcpkgcache "$quoted_base/cache/srcs#$cachekey";
1232 Dir::Cache::pkgcache "$quoted_base/cache/pkgs#$cachekey";
1233 END
1234
1235     foreach my $key (qw(
1236                         Dir::Cache
1237                         Dir::State
1238                         Dir::Cache::Archives
1239                         Dir::Etc::SourceParts
1240                         Dir::Etc::preferencesparts
1241                       )) {
1242         ensuredir "$aptget_base/$key";
1243         print CONF "$key \"$quoted_base/$key\";\n" or die $!;
1244     };
1245
1246     my $oldatime = (time // die $!) - 1;
1247     foreach my $oldlist (<$aptget_base/lists/*Release>) {
1248         next unless stat_exists $oldlist;
1249         my ($mtime) = (stat _)[9];
1250         utime $oldatime, $mtime, $oldlist or die "$oldlist $!";
1251     }
1252
1253     runcmd_ordryrun_local aptget_aptget(), qw(update);
1254
1255     my @releasefiles;
1256     foreach my $oldlist (<$aptget_base/lists/*Release>) {
1257         next unless stat_exists $oldlist;
1258         my ($atime) = (stat _)[8];
1259         next if $atime == $oldatime;
1260         push @releasefiles, $oldlist;
1261     }
1262     my @inreleasefiles = grep { m#/InRelease$# } @releasefiles;
1263     @releasefiles = @inreleasefiles if @inreleasefiles;
1264     die "apt updated wrong number of Release files (@releasefiles), erk"
1265         unless @releasefiles == 1;
1266
1267     ($aptget_releasefile) = @releasefiles;
1268 }
1269
1270 sub canonicalise_suite_aptget {
1271     my ($proto,$data) = @_;
1272     aptget_prep($data);
1273
1274     my $release = parsecontrol $aptget_releasefile, "Release file", 1;
1275
1276     foreach my $name (qw(Codename Suite)) {
1277         my $val = $release->{$name};
1278         if (defined $val) {
1279             printdebug "release file $name: $val\n";
1280             $val =~ m/^$suite_re$/o or fail
1281  "Release file ($aptget_releasefile) specifies intolerable $name";
1282             cfg_apply_map(\$val, 'suite rmap',
1283                           access_cfg('aptget-suite-rmap', 'RETURN-UNDEF'));
1284             return $val
1285         }
1286     }
1287     return $isuite;
1288 }
1289
1290 sub archive_query_aptget {
1291     my ($proto,$data) = @_;
1292     aptget_prep($data);
1293
1294     ensuredir "$aptget_base/source";
1295     foreach my $old (<$aptget_base/source/*.dsc>) {
1296         unlink $old or die "$old: $!";
1297     }
1298
1299     my $showsrc = cmdoutput aptget_aptcache(), qw(showsrc), $package;
1300     return () unless $showsrc =~ m/^package:\s*\Q$package\E\s*$/mi;
1301     # avoids apt-get source failing with ambiguous error code
1302
1303     runcmd_ordryrun_local
1304         shell_cmd 'cd "$1"/source; shift', $aptget_base,
1305         aptget_aptget(), qw(--download-only --only-source source), $package;
1306
1307     my @dscs = <$aptget_base/source/*.dsc>;
1308     fail "apt-get source did not produce a .dsc" unless @dscs;
1309     fail "apt-get source produced several .dscs (@dscs)" unless @dscs==1;
1310
1311     my $pre_dsc = parsecontrol $dscs[0], $dscs[0], 1;
1312
1313     use URI::Escape;
1314     my $uri = "file://". uri_escape $dscs[0];
1315     $uri =~ s{\%2f}{/}gi;
1316     return [ (getfield $pre_dsc, 'Version'), $uri ];
1317 }
1318
1319 #---------- `dummyapicat' archive query method ----------
1320
1321 sub archive_query_dummycatapi { archive_query_ftpmasterapi @_; }
1322 sub canonicalise_suite_dummycatapi { canonicalise_suite_ftpmasterapi @_; }
1323
1324 sub file_in_archive_dummycatapi ($$$) {
1325     my ($proto,$data,$filename) = @_;
1326     my $mirror = access_cfg('mirror');
1327     $mirror =~ s#^file://#/# or die "$mirror ?";
1328     my @out;
1329     my @cmd = (qw(sh -ec), '
1330             cd "$1"
1331             find -name "$2" -print0 |
1332             xargs -0r sha256sum
1333         ', qw(x), $mirror, $filename);
1334     debugcmd "-|", @cmd;
1335     open FIA, "-|", @cmd or die $!;
1336     while (<FIA>) {
1337         chomp or die;
1338         printdebug "| $_\n";
1339         m/^(\w+)  (\S+)$/ or die "$_ ?";
1340         push @out, { sha256sum => $1, filename => $2 };
1341     }
1342     close FIA or die failedcmd @cmd;
1343     return \@out;
1344 }
1345
1346 #---------- `madison' archive query method ----------
1347
1348 sub archive_query_madison {
1349     return archive_query_prepend_mirror
1350         map { [ @$_[0..1] ] } madison_get_parse(@_);
1351 }
1352
1353 sub madison_get_parse {
1354     my ($proto,$data) = @_;
1355     die unless $proto eq 'madison';
1356     if (!length $data) {
1357         $data= access_cfg('madison-distro','RETURN-UNDEF');
1358         $data //= access_basedistro();
1359     }
1360     $rmad{$proto,$data,$package} ||= cmdoutput
1361         qw(rmadison -asource),"-s$isuite","-u$data",$package;
1362     my $rmad = $rmad{$proto,$data,$package};
1363
1364     my @out;
1365     foreach my $l (split /\n/, $rmad) {
1366         $l =~ m{^ \s*( [^ \t|]+ )\s* \|
1367                   \s*( [^ \t|]+ )\s* \|
1368                   \s*( [^ \t|/]+ )(?:/([^ \t|/]+))? \s* \|
1369                   \s*( [^ \t|]+ )\s* }x or die "$rmad ?";
1370         $1 eq $package or die "$rmad $package ?";
1371         my $vsn = $2;
1372         my $newsuite = $3;
1373         my $component;
1374         if (defined $4) {
1375             $component = $4;
1376         } else {
1377             $component = access_cfg('archive-query-default-component');
1378         }
1379         $5 eq 'source' or die "$rmad ?";
1380         push @out, [$vsn,pool_dsc_subpath($vsn,$component),$newsuite];
1381     }
1382     return sort { -version_compare($a->[0],$b->[0]); } @out;
1383 }
1384
1385 sub canonicalise_suite_madison {
1386     # madison canonicalises for us
1387     my @r = madison_get_parse(@_);
1388     @r or fail
1389         "unable to canonicalise suite using package $package".
1390         " which does not appear to exist in suite $isuite;".
1391         " --existing-package may help";
1392     return $r[0][2];
1393 }
1394
1395 sub file_in_archive_madison { return undef; }
1396
1397 #---------- `sshpsql' archive query method ----------
1398
1399 sub sshpsql ($$$) {
1400     my ($data,$runeinfo,$sql) = @_;
1401     if (!length $data) {
1402         $data= access_someuserhost('sshpsql').':'.
1403             access_cfg('sshpsql-dbname');
1404     }
1405     $data =~ m/:/ or badcfg "invalid sshpsql method string \`$data'";
1406     my ($userhost,$dbname) = ($`,$'); #';
1407     my @rows;
1408     my @cmd = (access_cfg_ssh, $userhost,
1409                access_runeinfo("ssh-psql $runeinfo").
1410                " export LC_MESSAGES=C; export LC_CTYPE=C;".
1411                " ".shellquote qw(psql -A), $dbname, qw(-c), $sql);
1412     debugcmd "|",@cmd;
1413     open P, "-|", @cmd or die $!;
1414     while (<P>) {
1415         chomp or die;
1416         printdebug(">|$_|\n");
1417         push @rows, $_;
1418     }
1419     $!=0; $?=0; close P or failedcmd @cmd;
1420     @rows or die;
1421     my $nrows = pop @rows;
1422     $nrows =~ s/^\((\d+) rows?\)$/$1/ or die "$nrows ?";
1423     @rows == $nrows+1 or die "$nrows ".(scalar @rows)." ?";
1424     @rows = map { [ split /\|/, $_ ] } @rows;
1425     my $ncols = scalar @{ shift @rows };
1426     die if grep { scalar @$_ != $ncols } @rows;
1427     return @rows;
1428 }
1429
1430 sub sql_injection_check {
1431     foreach (@_) { die "$_ $& ?" if m{[^-+=:_.,/0-9a-zA-Z]}; }
1432 }
1433
1434 sub archive_query_sshpsql ($$) {
1435     my ($proto,$data) = @_;
1436     sql_injection_check $isuite, $package;
1437     my @rows = sshpsql($data, "archive-query $isuite $package", <<END);
1438         SELECT source.version, component.name, files.filename, files.sha256sum
1439           FROM source
1440           JOIN src_associations ON source.id = src_associations.source
1441           JOIN suite ON suite.id = src_associations.suite
1442           JOIN dsc_files ON dsc_files.source = source.id
1443           JOIN files_archive_map ON files_archive_map.file_id = dsc_files.file
1444           JOIN component ON component.id = files_archive_map.component_id
1445           JOIN files ON files.id = dsc_files.file
1446          WHERE ( suite.suite_name='$isuite' OR suite.codename='$isuite' )
1447            AND source.source='$package'
1448            AND files.filename LIKE '%.dsc';
1449 END
1450     @rows = sort { -version_compare($a->[0],$b->[0]) } @rows;
1451     my $digester = Digest::SHA->new(256);
1452     @rows = map {
1453         my ($vsn,$component,$filename,$sha256sum) = @$_;
1454         [ $vsn, "/pool/$component/$filename",$digester,$sha256sum ];
1455     } @rows;
1456     return archive_query_prepend_mirror @rows;
1457 }
1458
1459 sub canonicalise_suite_sshpsql ($$) {
1460     my ($proto,$data) = @_;
1461     sql_injection_check $isuite;
1462     my @rows = sshpsql($data, "canonicalise-suite $isuite", <<END);
1463         SELECT suite.codename
1464           FROM suite where suite_name='$isuite' or codename='$isuite';
1465 END
1466     @rows = map { $_->[0] } @rows;
1467     fail "unknown suite $isuite" unless @rows;
1468     die "ambiguous $isuite: @rows ?" if @rows>1;
1469     return $rows[0];
1470 }
1471
1472 sub file_in_archive_sshpsql ($$$) { return undef; }
1473
1474 #---------- `dummycat' archive query method ----------
1475
1476 sub canonicalise_suite_dummycat ($$) {
1477     my ($proto,$data) = @_;
1478     my $dpath = "$data/suite.$isuite";
1479     if (!open C, "<", $dpath) {
1480         $!==ENOENT or die "$dpath: $!";
1481         printdebug "dummycat canonicalise_suite $isuite $dpath ENOENT\n";
1482         return $isuite;
1483     }
1484     $!=0; $_ = <C>;
1485     chomp or die "$dpath: $!";
1486     close C;
1487     printdebug "dummycat canonicalise_suite $isuite $dpath = $_\n";
1488     return $_;
1489 }
1490
1491 sub archive_query_dummycat ($$) {
1492     my ($proto,$data) = @_;
1493     canonicalise_suite();
1494     my $dpath = "$data/package.$csuite.$package";
1495     if (!open C, "<", $dpath) {
1496         $!==ENOENT or die "$dpath: $!";
1497         printdebug "dummycat query $csuite $package $dpath ENOENT\n";
1498         return ();
1499     }
1500     my @rows;
1501     while (<C>) {
1502         next if m/^\#/;
1503         next unless m/\S/;
1504         die unless chomp;
1505         printdebug "dummycat query $csuite $package $dpath | $_\n";
1506         my @row = split /\s+/, $_;
1507         @row==2 or die "$dpath: $_ ?";
1508         push @rows, \@row;
1509     }
1510     C->error and die "$dpath: $!";
1511     close C;
1512     return archive_query_prepend_mirror
1513         sort { -version_compare($a->[0],$b->[0]); } @rows;
1514 }
1515
1516 sub file_in_archive_dummycat () { return undef; }
1517
1518 #---------- tag format handling ----------
1519
1520 sub access_cfg_tagformats () {
1521     split /\,/, access_cfg('dgit-tag-format');
1522 }
1523
1524 sub access_cfg_tagformats_can_splitbrain () {
1525     my %y = map { $_ => 1 } access_cfg_tagformats;
1526     foreach my $needtf (qw(new maint)) {
1527         next if $y{$needtf};
1528         return 0;
1529     }
1530     return 1;
1531 }
1532
1533 sub need_tagformat ($$) {
1534     my ($fmt, $why) = @_;
1535     fail "need to use tag format $fmt ($why) but also need".
1536         " to use tag format $tagformat_want->[0] ($tagformat_want->[1])".
1537         " - no way to proceed"
1538         if $tagformat_want && $tagformat_want->[0] ne $fmt;
1539     $tagformat_want = [$fmt, $why, $tagformat_want->[2] // 0];
1540 }
1541
1542 sub select_tagformat () {
1543     # sets $tagformatfn
1544     return if $tagformatfn && !$tagformat_want;
1545     die 'bug' if $tagformatfn && $tagformat_want;
1546     # ... $tagformat_want assigned after previous select_tagformat
1547
1548     my (@supported) = grep { $_ =~ m/^(?:old|new)$/ } access_cfg_tagformats();
1549     printdebug "select_tagformat supported @supported\n";
1550
1551     $tagformat_want //= [ $supported[0], "distro access configuration", 0 ];
1552     printdebug "select_tagformat specified @$tagformat_want\n";
1553
1554     my ($fmt,$why,$override) = @$tagformat_want;
1555
1556     fail "target distro supports tag formats @supported".
1557         " but have to use $fmt ($why)"
1558         unless $override
1559             or grep { $_ eq $fmt } @supported;
1560
1561     $tagformat_want = undef;
1562     $tagformat = $fmt;
1563     $tagformatfn = ${*::}{"debiantag_$fmt"};
1564
1565     fail "trying to use unknown tag format \`$fmt' ($why) !"
1566         unless $tagformatfn;
1567 }
1568
1569 #---------- archive query entrypoints and rest of program ----------
1570
1571 sub canonicalise_suite () {
1572     return if defined $csuite;
1573     fail "cannot operate on $isuite suite" if $isuite eq 'UNRELEASED';
1574     $csuite = archive_query('canonicalise_suite');
1575     if ($isuite ne $csuite) {
1576         progress "canonical suite name for $isuite is $csuite";
1577     } else {
1578         progress "canonical suite name is $csuite";
1579     }
1580 }
1581
1582 sub get_archive_dsc () {
1583     canonicalise_suite();
1584     my @vsns = archive_query('archive_query');
1585     foreach my $vinfo (@vsns) {
1586         my ($vsn,$vsn_dscurl,$digester,$digest) = @$vinfo;
1587         $dscurl = $vsn_dscurl;
1588         $dscdata = url_get($dscurl);
1589         if (!$dscdata) {
1590             $skew_warning_vsn = $vsn if !defined $skew_warning_vsn;
1591             next;
1592         }
1593         if ($digester) {
1594             $digester->reset();
1595             $digester->add($dscdata);
1596             my $got = $digester->hexdigest();
1597             $got eq $digest or
1598                 fail "$dscurl has hash $got but".
1599                     " archive told us to expect $digest";
1600         }
1601         parse_dscdata();
1602         my $fmt = getfield $dsc, 'Format';
1603         $format_ok{$fmt} or forceable_fail [qw(unsupported-source-format)],
1604             "unsupported source format $fmt, sorry";
1605             
1606         $dsc_checked = !!$digester;
1607         printdebug "get_archive_dsc: Version ".(getfield $dsc, 'Version')."\n";
1608         return;
1609     }
1610     $dsc = undef;
1611     printdebug "get_archive_dsc: nothing in archive, returning undef\n";
1612 }
1613
1614 sub check_for_git ();
1615 sub check_for_git () {
1616     # returns 0 or 1
1617     my $how = access_cfg('git-check');
1618     if ($how eq 'ssh-cmd') {
1619         my @cmd =
1620             (access_cfg_ssh, access_gituserhost(),
1621              access_runeinfo("git-check $package").
1622              " set -e; cd ".access_cfg('git-path').";".
1623              " if test -d $package.git; then echo 1; else echo 0; fi");
1624         my $r= cmdoutput @cmd;
1625         if (defined $r and $r =~ m/^divert (\w+)$/) {
1626             my $divert=$1;
1627             my ($usedistro,) = access_distros();
1628             # NB that if we are pushing, $usedistro will be $distro/push
1629             $instead_distro= cfg("dgit-distro.$usedistro.diverts.$divert");
1630             $instead_distro =~ s{^/}{ access_basedistro()."/" }e;
1631             progress "diverting to $divert (using config for $instead_distro)";
1632             return check_for_git();
1633         }
1634         failedcmd @cmd unless defined $r and $r =~ m/^[01]$/;
1635         return $r+0;
1636     } elsif ($how eq 'url') {
1637         my $prefix = access_cfg('git-check-url','git-url');
1638         my $suffix = access_cfg('git-check-suffix','git-suffix',
1639                                 'RETURN-UNDEF') // '.git';
1640         my $url = "$prefix/$package$suffix";
1641         my @cmd = (@curl, qw(-sS -I), $url);
1642         my $result = cmdoutput @cmd;
1643         $result =~ s/^\S+ 200 .*\n\r?\n//;
1644         # curl -sS -I with https_proxy prints
1645         # HTTP/1.0 200 Connection established
1646         $result =~ m/^\S+ (404|200) /s or
1647             fail "unexpected results from git check query - ".
1648                 Dumper($prefix, $result);
1649         my $code = $1;
1650         if ($code eq '404') {
1651             return 0;
1652         } elsif ($code eq '200') {
1653             return 1;
1654         } else {
1655             die;
1656         }
1657     } elsif ($how eq 'true') {
1658         return 1;
1659     } elsif ($how eq 'false') {
1660         return 0;
1661     } else {
1662         badcfg "unknown git-check \`$how'";
1663     }
1664 }
1665
1666 sub create_remote_git_repo () {
1667     my $how = access_cfg('git-create');
1668     if ($how eq 'ssh-cmd') {
1669         runcmd_ordryrun
1670             (access_cfg_ssh, access_gituserhost(),
1671              access_runeinfo("git-create $package").
1672              "set -e; cd ".access_cfg('git-path').";".
1673              " cp -a _template $package.git");
1674     } elsif ($how eq 'true') {
1675         # nothing to do
1676     } else {
1677         badcfg "unknown git-create \`$how'";
1678     }
1679 }
1680
1681 our ($dsc_hash,$lastpush_mergeinput);
1682
1683 our $ud = '.git/dgit/unpack';
1684
1685 sub prep_ud (;$) {
1686     my ($d) = @_;
1687     $d //= $ud;
1688     rmtree($d);
1689     mkpath '.git/dgit';
1690     mkdir $d or die $!;
1691 }
1692
1693 sub mktree_in_ud_here () {
1694     runcmd qw(git init -q);
1695     runcmd qw(git config gc.auto 0);
1696     rmtree('.git/objects');
1697     symlink '../../../../objects','.git/objects' or die $!;
1698 }
1699
1700 sub git_write_tree () {
1701     my $tree = cmdoutput @git, qw(write-tree);
1702     $tree =~ m/^\w+$/ or die "$tree ?";
1703     return $tree;
1704 }
1705
1706 sub git_add_write_tree () {
1707     runcmd @git, qw(add -Af .);
1708     return git_write_tree();
1709 }
1710
1711 sub remove_stray_gits ($) {
1712     my ($what) = @_;
1713     my @gitscmd = qw(find -name .git -prune -print0);
1714     debugcmd "|",@gitscmd;
1715     open GITS, "-|", @gitscmd or die $!;
1716     {
1717         local $/="\0";
1718         while (<GITS>) {
1719             chomp or die;
1720             print STDERR "$us: warning: removing from $what: ",
1721                 (messagequote $_), "\n";
1722             rmtree $_;
1723         }
1724     }
1725     $!=0; $?=0; close GITS or failedcmd @gitscmd;
1726 }
1727
1728 sub mktree_in_ud_from_only_subdir ($;$) {
1729     my ($what,$raw) = @_;
1730
1731     # changes into the subdir
1732     my (@dirs) = <*/.>;
1733     die "expected one subdir but found @dirs ?" unless @dirs==1;
1734     $dirs[0] =~ m#^([^/]+)/\.$# or die;
1735     my $dir = $1;
1736     changedir $dir;
1737
1738     remove_stray_gits($what);
1739     mktree_in_ud_here();
1740     if (!$raw) {
1741         my ($format, $fopts) = get_source_format();
1742         if (madformat($format)) {
1743             rmtree '.pc';
1744         }
1745     }
1746
1747     my $tree=git_add_write_tree();
1748     return ($tree,$dir);
1749 }
1750
1751 our @files_csum_info_fields = 
1752     (['Checksums-Sha256','Digest::SHA', 'new(256)', 'sha256sum'],
1753      ['Checksums-Sha1',  'Digest::SHA', 'new(1)',   'sha1sum'],
1754      ['Files',           'Digest::MD5', 'new()',    'md5sum']);
1755
1756 sub dsc_files_info () {
1757     foreach my $csumi (@files_csum_info_fields) {
1758         my ($fname, $module, $method) = @$csumi;
1759         my $field = $dsc->{$fname};
1760         next unless defined $field;
1761         eval "use $module; 1;" or die $@;
1762         my @out;
1763         foreach (split /\n/, $field) {
1764             next unless m/\S/;
1765             m/^(\w+) (\d+) (\S+)$/ or
1766                 fail "could not parse .dsc $fname line \`$_'";
1767             my $digester = eval "$module"."->$method;" or die $@;
1768             push @out, {
1769                 Hash => $1,
1770                 Bytes => $2,
1771                 Filename => $3,
1772                 Digester => $digester,
1773             };
1774         }
1775         return @out;
1776     }
1777     fail "missing any supported Checksums-* or Files field in ".
1778         $dsc->get_option('name');
1779 }
1780
1781 sub dsc_files () {
1782     map { $_->{Filename} } dsc_files_info();
1783 }
1784
1785 sub files_compare_inputs (@) {
1786     my $inputs = \@_;
1787     my %record;
1788     my %fchecked;
1789
1790     my $showinputs = sub {
1791         return join "; ", map { $_->get_option('name') } @$inputs;
1792     };
1793
1794     foreach my $in (@$inputs) {
1795         my $expected_files;
1796         my $in_name = $in->get_option('name');
1797
1798         printdebug "files_compare_inputs $in_name\n";
1799
1800         foreach my $csumi (@files_csum_info_fields) {
1801             my ($fname) = @$csumi;
1802             printdebug "files_compare_inputs $in_name $fname\n";
1803
1804             my $field = $in->{$fname};
1805             next unless defined $field;
1806
1807             my @files;
1808             foreach (split /\n/, $field) {
1809                 next unless m/\S/;
1810
1811                 my ($info, $f) = m/^(\w+ \d+) (?:\S+ \S+ )?(\S+)$/ or
1812                     fail "could not parse $in_name $fname line \`$_'";
1813
1814                 printdebug "files_compare_inputs $in_name $fname $f\n";
1815
1816                 push @files, $f;
1817
1818                 my $re = \ $record{$f}{$fname};
1819                 if (defined $$re) {
1820                     $fchecked{$f}{$in_name} = 1;
1821                     $$re eq $info or
1822                         fail "hash or size of $f varies in $fname fields".
1823                         " (between: ".$showinputs->().")";
1824                 } else {
1825                     $$re = $info;
1826                 }
1827             }
1828             @files = sort @files;
1829             $expected_files //= \@files;
1830             "@$expected_files" eq "@files" or
1831                 fail "file list in $in_name varies between hash fields!";
1832         }
1833         $expected_files or
1834             fail "$in_name has no files list field(s)";
1835     }
1836     printdebug "files_compare_inputs ".Dumper(\%fchecked, \%record)
1837         if $debuglevel>=2;
1838
1839     grep { keys %$_ == @$inputs-1 } values %fchecked
1840         or fail "no file appears in all file lists".
1841         " (looked in: ".$showinputs->().")";
1842 }
1843
1844 sub is_orig_file_in_dsc ($$) {
1845     my ($f, $dsc_files_info) = @_;
1846     return 0 if @$dsc_files_info <= 1;
1847     # One file means no origs, and the filename doesn't have a "what
1848     # part of dsc" component.  (Consider versions ending `.orig'.)
1849     return 0 unless $f =~ m/\.$orig_f_tail_re$/o;
1850     return 1;
1851 }
1852
1853 sub is_orig_file_of_vsn ($$) {
1854     my ($f, $upstreamvsn) = @_;
1855     my $base = srcfn $upstreamvsn, '';
1856     return 0 unless $f =~ m/^\Q$base\E\.$orig_f_tail_re$/;
1857     return 1;
1858 }
1859
1860 sub changes_update_origs_from_dsc ($$$$) {
1861     my ($dsc, $changes, $upstreamvsn, $changesfile) = @_;
1862     my %changes_f;
1863     printdebug "checking origs needed ($upstreamvsn)...\n";
1864     $_ = getfield $changes, 'Files';
1865     m/^\w+ \d+ (\S+ \S+) \S+$/m or
1866         fail "cannot find section/priority from .changes Files field";
1867     my $placementinfo = $1;
1868     my %changed;
1869     printdebug "checking origs needed placement '$placementinfo'...\n";
1870     foreach my $l (split /\n/, getfield $dsc, 'Files') {
1871         $l =~ m/\S+$/ or next;
1872         my $file = $&;
1873         printdebug "origs $file | $l\n";
1874         next unless is_orig_file_of_vsn $file, $upstreamvsn;
1875         printdebug "origs $file is_orig\n";
1876         my $have = archive_query('file_in_archive', $file);
1877         if (!defined $have) {
1878             print STDERR <<END;
1879 archive does not support .orig check; hope you used --ch:--sa/-sd if needed
1880 END
1881             return;
1882         }
1883         my $found_same = 0;
1884         my @found_differ;
1885         printdebug "origs $file \$#\$have=$#$have\n";
1886         foreach my $h (@$have) {
1887             my $same = 0;
1888             my @differ;
1889             foreach my $csumi (@files_csum_info_fields) {
1890                 my ($fname, $module, $method, $archivefield) = @$csumi;
1891                 next unless defined $h->{$archivefield};
1892                 $_ = $dsc->{$fname};
1893                 next unless defined;
1894                 m/^(\w+) .* \Q$file\E$/m or
1895                     fail ".dsc $fname missing entry for $file";
1896                 if ($h->{$archivefield} eq $1) {
1897                     $same++;
1898                 } else {
1899                     push @differ,
1900  "$archivefield: $h->{$archivefield} (archive) != $1 (local .dsc)";
1901                 }
1902             }
1903             die "$file ".Dumper($h)." ?!" if $same && @differ;
1904             $found_same++
1905                 if $same;
1906             push @found_differ, "archive $h->{filename}: ".join "; ", @differ
1907                 if @differ;
1908         }
1909         printdebug "origs $file f.same=$found_same".
1910             " #f._differ=$#found_differ\n";
1911         if (@found_differ && !$found_same) {
1912             fail join "\n",
1913                 "archive contains $file with different checksum",
1914                 @found_differ;
1915         }
1916         # Now we edit the changes file to add or remove it
1917         foreach my $csumi (@files_csum_info_fields) {
1918             my ($fname, $module, $method, $archivefield) = @$csumi;
1919             next unless defined $changes->{$fname};
1920             if ($found_same) {
1921                 # in archive, delete from .changes if it's there
1922                 $changed{$file} = "removed" if
1923                     $changes->{$fname} =~ s/^.* \Q$file\E$(?:)\n//m;
1924             } elsif ($changes->{$fname} =~ m/^.* \Q$file\E$(?:)\n/m) {
1925                 # not in archive, but it's here in the .changes
1926             } else {
1927                 my $dsc_data = getfield $dsc, $fname;
1928                 $dsc_data =~ m/^(.* \Q$file\E$)\n/m or die "$dsc_data $file ?";
1929                 my $extra = $1;
1930                 $extra =~ s/ \d+ /$&$placementinfo /
1931                     or die "$fname $extra >$dsc_data< ?"
1932                     if $fname eq 'Files';
1933                 $changes->{$fname} .= "\n". $extra;
1934                 $changed{$file} = "added";
1935             }
1936         }
1937     }
1938     if (%changed) {
1939         foreach my $file (keys %changed) {
1940             progress sprintf
1941                 "edited .changes for archive .orig contents: %s %s",
1942                 $changed{$file}, $file;
1943         }
1944         my $chtmp = "$changesfile.tmp";
1945         $changes->save($chtmp);
1946         if (act_local()) {
1947             rename $chtmp,$changesfile or die "$changesfile $!";
1948         } else {
1949             progress "[new .changes left in $changesfile]";
1950         }
1951     } else {
1952         progress "$changesfile already has appropriate .orig(s) (if any)";
1953     }
1954 }
1955
1956 sub make_commit ($) {
1957     my ($file) = @_;
1958     return cmdoutput @git, qw(hash-object -w -t commit), $file;
1959 }
1960
1961 sub make_commit_text ($) {
1962     my ($text) = @_;
1963     my ($out, $in);
1964     my @cmd = (@git, qw(hash-object -w -t commit --stdin));
1965     debugcmd "|",@cmd;
1966     print Dumper($text) if $debuglevel > 1;
1967     my $child = open2($out, $in, @cmd) or die $!;
1968     my $h;
1969     eval {
1970         print $in $text or die $!;
1971         close $in or die $!;
1972         $h = <$out>;
1973         $h =~ m/^\w+$/ or die;
1974         $h = $&;
1975         printdebug "=> $h\n";
1976     };
1977     close $out;
1978     waitpid $child, 0 == $child or die "$child $!";
1979     $? and failedcmd @cmd;
1980     return $h;
1981 }
1982
1983 sub clogp_authline ($) {
1984     my ($clogp) = @_;
1985     my $author = getfield $clogp, 'Maintainer';
1986     $author =~ s#,.*##ms;
1987     my $date = cmdoutput qw(date), '+%s %z', qw(-d), getfield($clogp,'Date');
1988     my $authline = "$author $date";
1989     $authline =~ m/$git_authline_re/o or
1990         fail "unexpected commit author line format \`$authline'".
1991         " (was generated from changelog Maintainer field)";
1992     return ($1,$2,$3) if wantarray;
1993     return $authline;
1994 }
1995
1996 sub vendor_patches_distro ($$) {
1997     my ($checkdistro, $what) = @_;
1998     return unless defined $checkdistro;
1999
2000     my $series = "debian/patches/\L$checkdistro\E.series";
2001     printdebug "checking for vendor-specific $series ($what)\n";
2002
2003     if (!open SERIES, "<", $series) {
2004         die "$series $!" unless $!==ENOENT;
2005         return;
2006     }
2007     while (<SERIES>) {
2008         next unless m/\S/;
2009         next if m/^\s+\#/;
2010
2011         print STDERR <<END;
2012
2013 Unfortunately, this source package uses a feature of dpkg-source where
2014 the same source package unpacks to different source code on different
2015 distros.  dgit cannot safely operate on such packages on affected
2016 distros, because the meaning of source packages is not stable.
2017
2018 Please ask the distro/maintainer to remove the distro-specific series
2019 files and use a different technique (if necessary, uploading actually
2020 different packages, if different distros are supposed to have
2021 different code).
2022
2023 END
2024         fail "Found active distro-specific series file for".
2025             " $checkdistro ($what): $series, cannot continue";
2026     }
2027     die "$series $!" if SERIES->error;
2028     close SERIES;
2029 }
2030
2031 sub check_for_vendor_patches () {
2032     # This dpkg-source feature doesn't seem to be documented anywhere!
2033     # But it can be found in the changelog (reformatted):
2034
2035     #   commit  4fa01b70df1dc4458daee306cfa1f987b69da58c
2036     #   Author: Raphael Hertzog <hertzog@debian.org>
2037     #   Date: Sun  Oct  3  09:36:48  2010 +0200
2038
2039     #   dpkg-source: correctly create .pc/.quilt_series with alternate
2040     #   series files
2041     #   
2042     #   If you have debian/patches/ubuntu.series and you were
2043     #   unpacking the source package on ubuntu, quilt was still
2044     #   directed to debian/patches/series instead of
2045     #   debian/patches/ubuntu.series.
2046     #   
2047     #   debian/changelog                        |    3 +++
2048     #   scripts/Dpkg/Source/Package/V3/quilt.pm |    4 +++-
2049     #   2 files changed, 6 insertions(+), 1 deletion(-)
2050
2051     use Dpkg::Vendor;
2052     vendor_patches_distro($ENV{DEB_VENDOR}, "DEB_VENDOR");
2053     vendor_patches_distro(Dpkg::Vendor::get_current_vendor(),
2054                          "Dpkg::Vendor \`current vendor'");
2055     vendor_patches_distro(access_basedistro(),
2056                           "(base) distro being accessed");
2057     vendor_patches_distro(access_nomdistro(),
2058                           "(nominal) distro being accessed");
2059 }
2060
2061 sub generate_commits_from_dsc () {
2062     # See big comment in fetch_from_archive, below.
2063     # See also README.dsc-import.
2064     prep_ud();
2065     changedir $ud;
2066
2067     my @dfi = dsc_files_info();
2068     foreach my $fi (@dfi) {
2069         my $f = $fi->{Filename};
2070         die "$f ?" if $f =~ m#/|^\.|\.dsc$|\.tmp$#;
2071
2072         printdebug "considering linking $f: ";
2073
2074         link_ltarget "../../../../$f", $f
2075             or ((printdebug "($!) "), 0)
2076             or $!==&ENOENT
2077             or die "$f $!";
2078
2079         printdebug "linked.\n";
2080
2081         complete_file_from_dsc('.', $fi)
2082             or next;
2083
2084         if (is_orig_file_in_dsc($f, \@dfi)) {
2085             link $f, "../../../../$f"
2086                 or $!==&EEXIST
2087                 or die "$f $!";
2088         }
2089     }
2090
2091     # We unpack and record the orig tarballs first, so that we only
2092     # need disk space for one private copy of the unpacked source.
2093     # But we can't make them into commits until we have the metadata
2094     # from the debian/changelog, so we record the tree objects now and
2095     # make them into commits later.
2096     my @tartrees;
2097     my $upstreamv = upstreamversion $dsc->{version};
2098     my $orig_f_base = srcfn $upstreamv, '';
2099
2100     foreach my $fi (@dfi) {
2101         # We actually import, and record as a commit, every tarball
2102         # (unless there is only one file, in which case there seems
2103         # little point.
2104
2105         my $f = $fi->{Filename};
2106         printdebug "import considering $f ";
2107         (printdebug "only one dfi\n"), next if @dfi == 1;
2108         (printdebug "not tar\n"), next unless $f =~ m/\.tar(\.\w+)?$/;
2109         (printdebug "signature\n"), next if $f =~ m/$orig_f_sig_re$/o;
2110         my $compr_ext = $1;
2111
2112         my ($orig_f_part) =
2113             $f =~ m/^\Q$orig_f_base\E\.([^._]+)?\.tar(?:\.\w+)?$/;
2114
2115         printdebug "Y ", (join ' ', map { $_//"(none)" }
2116                           $compr_ext, $orig_f_part
2117                          ), "\n";
2118
2119         my $input = new IO::File $f, '<' or die "$f $!";
2120         my $compr_pid;
2121         my @compr_cmd;
2122
2123         if (defined $compr_ext) {
2124             my $cname =
2125                 Dpkg::Compression::compression_guess_from_filename $f;
2126             fail "Dpkg::Compression cannot handle file $f in source package"
2127                 if defined $compr_ext && !defined $cname;
2128             my $compr_proc =
2129                 new Dpkg::Compression::Process compression => $cname;
2130             my @compr_cmd = $compr_proc->get_uncompress_cmdline();
2131             my $compr_fh = new IO::Handle;
2132             my $compr_pid = open $compr_fh, "-|" // die $!;
2133             if (!$compr_pid) {
2134                 open STDIN, "<&", $input or die $!;
2135                 exec @compr_cmd;
2136                 die "dgit (child): exec $compr_cmd[0]: $!\n";
2137             }
2138             $input = $compr_fh;
2139         }
2140
2141         rmtree "_unpack-tar";
2142         mkdir "_unpack-tar" or die $!;
2143         my @tarcmd = qw(tar -x -f -
2144                         --no-same-owner --no-same-permissions
2145                         --no-acls --no-xattrs --no-selinux);
2146         my $tar_pid = fork // die $!;
2147         if (!$tar_pid) {
2148             chdir "_unpack-tar" or die $!;
2149             open STDIN, "<&", $input or die $!;
2150             exec @tarcmd;
2151             die "dgit (child): exec $tarcmd[0]: $!";
2152         }
2153         $!=0; (waitpid $tar_pid, 0) == $tar_pid or die $!;
2154         !$? or failedcmd @tarcmd;
2155
2156         close $input or
2157             (@compr_cmd ? failedcmd @compr_cmd
2158              : die $!);
2159         # finally, we have the results in "tarball", but maybe
2160         # with the wrong permissions
2161
2162         runcmd qw(chmod -R +rwX _unpack-tar);
2163         changedir "_unpack-tar";
2164         remove_stray_gits($f);
2165         mktree_in_ud_here();
2166         
2167         my ($tree) = git_add_write_tree();
2168         my $tentries = cmdoutput @git, qw(ls-tree -z), $tree;
2169         if ($tentries =~ m/^\d+ tree (\w+)\t[^\000]+\000$/s) {
2170             $tree = $1;
2171             printdebug "one subtree $1\n";
2172         } else {
2173             printdebug "multiple subtrees\n";
2174         }
2175         changedir "..";
2176         rmtree "_unpack-tar";
2177
2178         my $ent = [ $f, $tree ];
2179         push @tartrees, {
2180             Orig => !!$orig_f_part,
2181             Sort => (!$orig_f_part         ? 2 :
2182                      $orig_f_part =~ m/-/g ? 1 :
2183                                              0),
2184             F => $f,
2185             Tree => $tree,
2186         };
2187     }
2188
2189     @tartrees = sort {
2190         # put any without "_" first (spec is not clear whether files
2191         # are always in the usual order).  Tarballs without "_" are
2192         # the main orig or the debian tarball.
2193         $a->{Sort} <=> $b->{Sort} or
2194         $a->{F}    cmp $b->{F}
2195     } @tartrees;
2196
2197     my $any_orig = grep { $_->{Orig} } @tartrees;
2198
2199     my $dscfn = "$package.dsc";
2200
2201     my $treeimporthow = 'package';
2202
2203     open D, ">", $dscfn or die "$dscfn: $!";
2204     print D $dscdata or die "$dscfn: $!";
2205     close D or die "$dscfn: $!";
2206     my @cmd = qw(dpkg-source);
2207     push @cmd, '--no-check' if $dsc_checked;
2208     if (madformat $dsc->{format}) {
2209         push @cmd, '--skip-patches';
2210         $treeimporthow = 'unpatched';
2211     }
2212     push @cmd, qw(-x --), $dscfn;
2213     runcmd @cmd;
2214
2215     my ($tree,$dir) = mktree_in_ud_from_only_subdir("source package");
2216     if (madformat $dsc->{format}) { 
2217         check_for_vendor_patches();
2218     }
2219
2220     my $dappliedtree;
2221     if (madformat $dsc->{format}) {
2222         my @pcmd = qw(dpkg-source --before-build .);
2223         runcmd shell_cmd 'exec >/dev/null', @pcmd;
2224         rmtree '.pc';
2225         $dappliedtree = git_add_write_tree();
2226     }
2227
2228     my @clogcmd = qw(dpkg-parsechangelog --format rfc822 --all);
2229     debugcmd "|",@clogcmd;
2230     open CLOGS, "-|", @clogcmd or die $!;
2231
2232     my $clogp;
2233     my $r1clogp;
2234
2235     printdebug "import clog search...\n";
2236
2237     for (;;) {
2238         my $stanzatext = do { local $/=""; <CLOGS>; };
2239         printdebug "import clogp ".Dumper($stanzatext) if $debuglevel>1;
2240         last if !defined $stanzatext;
2241
2242         my $desc = "package changelog, entry no.$.";
2243         open my $stanzafh, "<", \$stanzatext or die;
2244         my $thisstanza = parsecontrolfh $stanzafh, $desc, 1;
2245         $clogp //= $thisstanza;
2246
2247         printdebug "import clog $thisstanza->{version} $desc...\n";
2248
2249         last if !$any_orig; # we don't need $r1clogp
2250
2251         # We look for the first (most recent) changelog entry whose
2252         # version number is lower than the upstream version of this
2253         # package.  Then the last (least recent) previous changelog
2254         # entry is treated as the one which introduced this upstream
2255         # version and used for the synthetic commits for the upstream
2256         # tarballs.
2257
2258         # One might think that a more sophisticated algorithm would be
2259         # necessary.  But: we do not want to scan the whole changelog
2260         # file.  Stopping when we see an earlier version, which
2261         # necessarily then is an earlier upstream version, is the only
2262         # realistic way to do that.  Then, either the earliest
2263         # changelog entry we have seen so far is indeed the earliest
2264         # upload of this upstream version; or there are only changelog
2265         # entries relating to later upstream versions (which is not
2266         # possible unless the changelog and .dsc disagree about the
2267         # version).  Then it remains to choose between the physically
2268         # last entry in the file, and the one with the lowest version
2269         # number.  If these are not the same, we guess that the
2270         # versions were created in a non-monotic order rather than
2271         # that the changelog entries have been misordered.
2272
2273         printdebug "import clog $thisstanza->{version} vs $upstreamv...\n";
2274
2275         last if version_compare($thisstanza->{version}, $upstreamv) < 0;
2276         $r1clogp = $thisstanza;
2277
2278         printdebug "import clog $r1clogp->{version} becomes r1\n";
2279     }
2280     die $! if CLOGS->error;
2281     close CLOGS or $?==SIGPIPE or failedcmd @clogcmd;
2282
2283     $clogp or fail "package changelog has no entries!";
2284
2285     my $authline = clogp_authline $clogp;
2286     my $changes = getfield $clogp, 'Changes';
2287     my $cversion = getfield $clogp, 'Version';
2288
2289     if (@tartrees) {
2290         $r1clogp //= $clogp; # maybe there's only one entry;
2291         my $r1authline = clogp_authline $r1clogp;
2292         # Strictly, r1authline might now be wrong if it's going to be
2293         # unused because !$any_orig.  Whatever.
2294
2295         printdebug "import tartrees authline   $authline\n";
2296         printdebug "import tartrees r1authline $r1authline\n";
2297
2298         foreach my $tt (@tartrees) {
2299             printdebug "import tartree $tt->{F} $tt->{Tree}\n";
2300
2301             $tt->{Commit} = make_commit_text($tt->{Orig} ? <<END_O : <<END_T);
2302 tree $tt->{Tree}
2303 author $r1authline
2304 committer $r1authline
2305
2306 Import $tt->{F}
2307
2308 [dgit import orig $tt->{F}]
2309 END_O
2310 tree $tt->{Tree}
2311 author $authline
2312 committer $authline
2313
2314 Import $tt->{F}
2315
2316 [dgit import tarball $package $cversion $tt->{F}]
2317 END_T
2318         }
2319     }
2320
2321     printdebug "import main commit\n";
2322
2323     open C, ">../commit.tmp" or die $!;
2324     print C <<END or die $!;
2325 tree $tree
2326 END
2327     print C <<END or die $! foreach @tartrees;
2328 parent $_->{Commit}
2329 END
2330     print C <<END or die $!;
2331 author $authline
2332 committer $authline
2333
2334 $changes
2335
2336 [dgit import $treeimporthow $package $cversion]
2337 END
2338
2339     close C or die $!;
2340     my $rawimport_hash = make_commit qw(../commit.tmp);
2341
2342     if (madformat $dsc->{format}) {
2343         printdebug "import apply patches...\n";
2344
2345         # regularise the state of the working tree so that
2346         # the checkout of $rawimport_hash works nicely.
2347         my $dappliedcommit = make_commit_text(<<END);
2348 tree $dappliedtree
2349 author $authline
2350 committer $authline
2351
2352 [dgit dummy commit]
2353 END
2354         runcmd @git, qw(checkout -q -b dapplied), $dappliedcommit;
2355
2356         runcmd @git, qw(checkout -q -b unpa), $rawimport_hash;
2357
2358         # We need the answers to be reproducible
2359         my @authline = clogp_authline($clogp);
2360         local $ENV{GIT_COMMITTER_NAME} =  $authline[0];
2361         local $ENV{GIT_COMMITTER_EMAIL} = $authline[1];
2362         local $ENV{GIT_COMMITTER_DATE} =  $authline[2];
2363         local $ENV{GIT_AUTHOR_NAME} =  $authline[0];
2364         local $ENV{GIT_AUTHOR_EMAIL} = $authline[1];
2365         local $ENV{GIT_AUTHOR_DATE} =  $authline[2];
2366
2367         my $path = $ENV{PATH} or die;
2368
2369         foreach my $use_absurd (qw(0 1)) {
2370             local $ENV{PATH} = $path;
2371             if ($use_absurd) {
2372                 chomp $@;
2373                 progress "warning: $@";
2374                 $path = "$absurdity:$path";
2375                 progress "$us: trying slow absurd-git-apply...";
2376                 rename "../../gbp-pq-output","../../gbp-pq-output.0"
2377                     or $!==ENOENT
2378                     or die $!;
2379             }
2380             eval {
2381                 die "forbid absurd git-apply\n" if $use_absurd
2382                     && forceing [qw(import-gitapply-no-absurd)];
2383                 die "only absurd git-apply!\n" if !$use_absurd
2384                     && forceing [qw(import-gitapply-absurd)];
2385
2386                 local $ENV{DGIT_ABSURD_DEBUG} = $debuglevel if $use_absurd;
2387                 local $ENV{PATH} = $path                    if $use_absurd;
2388
2389                 my @showcmd = (gbp_pq, qw(import));
2390                 my @realcmd = shell_cmd
2391                     'exec >/dev/null 2>>../../gbp-pq-output', @showcmd;
2392                 debugcmd "+",@realcmd;
2393                 if (system @realcmd) {
2394                     die +(shellquote @showcmd).
2395                         " failed: ".
2396                         failedcmd_waitstatus()."\n";
2397                 }
2398
2399                 my $gapplied = git_rev_parse('HEAD');
2400                 my $gappliedtree = cmdoutput @git, qw(rev-parse HEAD:);
2401                 $gappliedtree eq $dappliedtree or
2402                     fail <<END;
2403 gbp-pq import and dpkg-source disagree!
2404  gbp-pq import gave commit $gapplied
2405  gbp-pq import gave tree $gappliedtree
2406  dpkg-source --before-build gave tree $dappliedtree
2407 END
2408                 $rawimport_hash = $gapplied;
2409             };
2410             last unless $@;
2411         }
2412         if ($@) {
2413             { local $@; eval { runcmd qw(cat ../../gbp-pq-output); }; }
2414             die $@;
2415         }
2416     }
2417
2418     progress "synthesised git commit from .dsc $cversion";
2419
2420     my $rawimport_mergeinput = {
2421         Commit => $rawimport_hash,
2422         Info => "Import of source package",
2423     };
2424     my @output = ($rawimport_mergeinput);
2425
2426     if ($lastpush_mergeinput) {
2427         my $oldclogp = mergeinfo_getclogp($lastpush_mergeinput);
2428         my $oversion = getfield $oldclogp, 'Version';
2429         my $vcmp =
2430             version_compare($oversion, $cversion);
2431         if ($vcmp < 0) {
2432             @output = ($rawimport_mergeinput, $lastpush_mergeinput,
2433                 { Message => <<END, ReverseParents => 1 });
2434 Record $package ($cversion) in archive suite $csuite
2435 END
2436         } elsif ($vcmp > 0) {
2437             print STDERR <<END or die $!;
2438
2439 Version actually in archive:   $cversion (older)
2440 Last version pushed with dgit: $oversion (newer or same)
2441 $later_warning_msg
2442 END
2443             @output = $lastpush_mergeinput;
2444         } else {
2445             # Same version.  Use what's in the server git branch,
2446             # discarding our own import.  (This could happen if the
2447             # server automatically imports all packages into git.)
2448             @output = $lastpush_mergeinput;
2449         }
2450     }
2451     changedir '../../../..';
2452     rmtree($ud);
2453     return @output;
2454 }
2455
2456 sub complete_file_from_dsc ($$) {
2457     our ($dstdir, $fi) = @_;
2458     # Ensures that we have, in $dir, the file $fi, with the correct
2459     # contents.  (Downloading it from alongside $dscurl if necessary.)
2460
2461     my $f = $fi->{Filename};
2462     my $tf = "$dstdir/$f";
2463     my $downloaded = 0;
2464
2465     if (stat_exists $tf) {
2466         progress "using existing $f";
2467     } else {
2468         printdebug "$tf does not exist, need to fetch\n";
2469         my $furl = $dscurl;
2470         $furl =~ s{/[^/]+$}{};
2471         $furl .= "/$f";
2472         die "$f ?" unless $f =~ m/^\Q${package}\E_/;
2473         die "$f ?" if $f =~ m#/#;
2474         runcmd_ordryrun_local @curl,qw(-f -o),$tf,'--',"$furl";
2475         return 0 if !act_local();
2476         $downloaded = 1;
2477     }
2478
2479     open F, "<", "$tf" or die "$tf: $!";
2480     $fi->{Digester}->reset();
2481     $fi->{Digester}->addfile(*F);
2482     F->error and die $!;
2483     my $got = $fi->{Digester}->hexdigest();
2484     $got eq $fi->{Hash} or
2485         fail "file $f has hash $got but .dsc".
2486             " demands hash $fi->{Hash} ".
2487             ($downloaded ? "(got wrong file from archive!)"
2488              : "(perhaps you should delete this file?)");
2489
2490     return 1;
2491 }
2492
2493 sub ensure_we_have_orig () {
2494     my @dfi = dsc_files_info();
2495     foreach my $fi (@dfi) {
2496         my $f = $fi->{Filename};
2497         next unless is_orig_file_in_dsc($f, \@dfi);
2498         complete_file_from_dsc('..', $fi)
2499             or next;
2500     }
2501 }
2502
2503 sub git_fetch_us () {
2504     # Want to fetch only what we are going to use, unless
2505     # deliberately-not-ff, in which case we must fetch everything.
2506
2507     my @specs = deliberately_not_fast_forward ? qw(tags/*) :
2508         map { "tags/$_" }
2509         (quiltmode_splitbrain
2510          ? (map { $_->('*',access_nomdistro) }
2511             \&debiantag_new, \&debiantag_maintview)
2512          : debiantags('*',access_nomdistro));
2513     push @specs, server_branch($csuite);
2514     push @specs, qw(heads/*) if deliberately_not_fast_forward;
2515
2516     # This is rather miserable:
2517     # When git fetch --prune is passed a fetchspec ending with a *,
2518     # it does a plausible thing.  If there is no * then:
2519     # - it matches subpaths too, even if the supplied refspec
2520     #   starts refs, and behaves completely madly if the source
2521     #   has refs/refs/something.  (See, for example, Debian #NNNN.)
2522     # - if there is no matching remote ref, it bombs out the whole
2523     #   fetch.
2524     # We want to fetch a fixed ref, and we don't know in advance
2525     # if it exists, so this is not suitable.
2526     #
2527     # Our workaround is to use git ls-remote.  git ls-remote has its
2528     # own qairks.  Notably, it has the absurd multi-tail-matching
2529     # behaviour: git ls-remote R refs/foo can report refs/foo AND
2530     # refs/refs/foo etc.
2531     #
2532     # Also, we want an idempotent snapshot, but we have to make two
2533     # calls to the remote: one to git ls-remote and to git fetch.  The
2534     # solution is use git ls-remote to obtain a target state, and
2535     # git fetch to try to generate it.  If we don't manage to generate
2536     # the target state, we try again.
2537
2538     printdebug "git_fetch_us specs @specs\n";
2539
2540     my $specre = join '|', map {
2541         my $x = $_;
2542         $x =~ s/\W/\\$&/g;
2543         $x =~ s/\\\*$/.*/;
2544         "(?:refs/$x)";
2545     } @specs;
2546     printdebug "git_fetch_us specre=$specre\n";
2547     my $wanted_rref = sub {
2548         local ($_) = @_;
2549         return m/^(?:$specre)$/o;
2550     };
2551
2552     my $fetch_iteration = 0;
2553     FETCH_ITERATION:
2554     for (;;) {
2555         printdebug "git_fetch_us iteration $fetch_iteration\n";
2556         if (++$fetch_iteration > 10) {
2557             fail "too many iterations trying to get sane fetch!";
2558         }
2559
2560         my @look = map { "refs/$_" } @specs;
2561         my @lcmd = (@git, qw(ls-remote -q --refs), access_giturl(), @look);
2562         debugcmd "|",@lcmd;
2563
2564         my %wantr;
2565         open GITLS, "-|", @lcmd or die $!;
2566         while (<GITLS>) {
2567             printdebug "=> ", $_;
2568             m/^(\w+)\s+(\S+)\n/ or die "ls-remote $_ ?";
2569             my ($objid,$rrefname) = ($1,$2);
2570             if (!$wanted_rref->($rrefname)) {
2571                 print STDERR <<END;
2572 warning: git ls-remote @look reported $rrefname; this is silly, ignoring it.
2573 END
2574                 next;
2575             }
2576             $wantr{$rrefname} = $objid;
2577         }
2578         $!=0; $?=0;
2579         close GITLS or failedcmd @lcmd;
2580
2581         # OK, now %want is exactly what we want for refs in @specs
2582         my @fspecs = map {
2583             !m/\*$/ && !exists $wantr{"refs/$_"} ? () :
2584             "+refs/$_:".lrfetchrefs."/$_";
2585         } @specs;
2586
2587         printdebug "git_fetch_us fspecs @fspecs\n";
2588
2589         my @fcmd = (@git, qw(fetch -p -n -q), access_giturl(), @fspecs);
2590         runcmd_ordryrun_local @git, qw(fetch -p -n -q), access_giturl(),
2591             @fspecs;
2592
2593         %lrfetchrefs_f = ();
2594         my %objgot;
2595
2596         git_for_each_ref(lrfetchrefs, sub {
2597             my ($objid,$objtype,$lrefname,$reftail) = @_;
2598             $lrfetchrefs_f{$lrefname} = $objid;
2599             $objgot{$objid} = 1;
2600         });
2601
2602         foreach my $lrefname (sort keys %lrfetchrefs_f) {
2603             my $rrefname = 'refs'.substr($lrefname, length lrfetchrefs);
2604             if (!exists $wantr{$rrefname}) {
2605                 if ($wanted_rref->($rrefname)) {
2606                     printdebug <<END;
2607 git-fetch @fspecs created $lrefname which git ls-remote @look didn't list.
2608 END
2609                 } else {
2610                     print STDERR <<END
2611 warning: git fetch @fspecs created $lrefname; this is silly, deleting it.
2612 END
2613                 }
2614                 runcmd_ordryrun_local @git, qw(update-ref -d), $lrefname;
2615                 delete $lrfetchrefs_f{$lrefname};
2616                 next;
2617             }
2618         }
2619         foreach my $rrefname (sort keys %wantr) {
2620             my $lrefname = lrfetchrefs.substr($rrefname, 4);
2621             my $got = $lrfetchrefs_f{$lrefname} // '<none>';
2622             my $want = $wantr{$rrefname};
2623             next if $got eq $want;
2624             if (!defined $objgot{$want}) {
2625                 print STDERR <<END;
2626 warning: git ls-remote suggests we want $lrefname
2627 warning:  and it should refer to $want
2628 warning:  but git fetch didn't fetch that object to any relevant ref.
2629 warning:  This may be due to a race with someone updating the server.
2630 warning:  Will try again...
2631 END
2632                 next FETCH_ITERATION;
2633             }
2634             printdebug <<END;
2635 git-fetch @fspecs made $lrefname=$got but want git ls-remote @look says $want
2636 END
2637             runcmd_ordryrun_local @git, qw(update-ref -m),
2638                 "dgit fetch git fetch fixup", $lrefname, $want;
2639             $lrfetchrefs_f{$lrefname} = $want;
2640         }
2641         last;
2642     }
2643     printdebug "git_fetch_us: git fetch --no-insane emulation complete\n",
2644         Dumper(\%lrfetchrefs_f);
2645
2646     my %here;
2647     my @tagpats = debiantags('*',access_nomdistro);
2648
2649     git_for_each_ref([map { "refs/tags/$_" } @tagpats], sub {
2650         my ($objid,$objtype,$fullrefname,$reftail) = @_;
2651         printdebug "currently $fullrefname=$objid\n";
2652         $here{$fullrefname} = $objid;
2653     });
2654     git_for_each_ref([map { lrfetchrefs."/tags/".$_ } @tagpats], sub {
2655         my ($objid,$objtype,$fullrefname,$reftail) = @_;
2656         my $lref = "refs".substr($fullrefname, length(lrfetchrefs));
2657         printdebug "offered $lref=$objid\n";
2658         if (!defined $here{$lref}) {
2659             my @upd = (@git, qw(update-ref), $lref, $objid, '');
2660             runcmd_ordryrun_local @upd;
2661             lrfetchref_used $fullrefname;
2662         } elsif ($here{$lref} eq $objid) {
2663             lrfetchref_used $fullrefname;
2664         } else {
2665             print STDERR \
2666                 "Not updateting $lref from $here{$lref} to $objid.\n";
2667         }
2668     });
2669 }
2670
2671 sub mergeinfo_getclogp ($) {
2672     # Ensures thit $mi->{Clogp} exists and returns it
2673     my ($mi) = @_;
2674     $mi->{Clogp} = commit_getclogp($mi->{Commit});
2675 }
2676
2677 sub mergeinfo_version ($) {
2678     return getfield( (mergeinfo_getclogp $_[0]), 'Version' );
2679 }
2680
2681 sub fetch_from_archive_record_1 ($) {
2682     my ($hash) = @_;
2683     runcmd @git, qw(update-ref -m), "dgit fetch $csuite",
2684             'DGIT_ARCHIVE', $hash;
2685     cmdoutput @git, qw(log -n2), $hash;
2686     # ... gives git a chance to complain if our commit is malformed
2687 }
2688
2689 sub fetch_from_archive_record_2 ($) {
2690     my ($hash) = @_;
2691     my @upd_cmd = (@git, qw(update-ref -m), 'dgit fetch', lrref(), $hash);
2692     if (act_local()) {
2693         cmdoutput @upd_cmd;
2694     } else {
2695         dryrun_report @upd_cmd;
2696     }
2697 }
2698
2699 sub fetch_from_archive () {
2700     ensure_setup_existing_tree();
2701
2702     # Ensures that lrref() is what is actually in the archive, one way
2703     # or another, according to us - ie this client's
2704     # appropritaely-updated archive view.  Also returns the commit id.
2705     # If there is nothing in the archive, leaves lrref alone and
2706     # returns undef.  git_fetch_us must have already been called.
2707     get_archive_dsc();
2708
2709     if ($dsc) {
2710         foreach my $field (@ourdscfield) {
2711             $dsc_hash = $dsc->{$field};
2712             last if defined $dsc_hash;
2713         }
2714         if (defined $dsc_hash) {
2715             $dsc_hash =~ m/\w+/ or fail "invalid hash in .dsc \`$dsc_hash'";
2716             $dsc_hash = $&;
2717             progress "last upload to archive specified git hash";
2718         } else {
2719             progress "last upload to archive has NO git hash";
2720         }
2721     } else {
2722         progress "no version available from the archive";
2723     }
2724
2725     # If the archive's .dsc has a Dgit field, there are three
2726     # relevant git commitids we need to choose between and/or merge
2727     # together:
2728     #   1. $dsc_hash: the Dgit field from the archive
2729     #   2. $lastpush_hash: the suite branch on the dgit git server
2730     #   3. $lastfetch_hash: our local tracking brach for the suite
2731     #
2732     # These may all be distinct and need not be in any fast forward
2733     # relationship:
2734     #
2735     # If the dsc was pushed to this suite, then the server suite
2736     # branch will have been updated; but it might have been pushed to
2737     # a different suite and copied by the archive.  Conversely a more
2738     # recent version may have been pushed with dgit but not appeared
2739     # in the archive (yet).
2740     #
2741     # $lastfetch_hash may be awkward because archive imports
2742     # (particularly, imports of Dgit-less .dscs) are performed only as
2743     # needed on individual clients, so different clients may perform a
2744     # different subset of them - and these imports are only made
2745     # public during push.  So $lastfetch_hash may represent a set of
2746     # imports different to a subsequent upload by a different dgit
2747     # client.
2748     #
2749     # Our approach is as follows:
2750     #
2751     # As between $dsc_hash and $lastpush_hash: if $lastpush_hash is a
2752     # descendant of $dsc_hash, then it was pushed by a dgit user who
2753     # had based their work on $dsc_hash, so we should prefer it.
2754     # Otherwise, $dsc_hash was installed into this suite in the
2755     # archive other than by a dgit push, and (necessarily) after the
2756     # last dgit push into that suite (since a dgit push would have
2757     # been descended from the dgit server git branch); thus, in that
2758     # case, we prefer the archive's version (and produce a
2759     # pseudo-merge to overwrite the dgit server git branch).
2760     #
2761     # (If there is no Dgit field in the archive's .dsc then
2762     # generate_commit_from_dsc uses the version numbers to decide
2763     # whether the suite branch or the archive is newer.  If the suite
2764     # branch is newer it ignores the archive's .dsc; otherwise it
2765     # generates an import of the .dsc, and produces a pseudo-merge to
2766     # overwrite the suite branch with the archive contents.)
2767     #
2768     # The outcome of that part of the algorithm is the `public view',
2769     # and is same for all dgit clients: it does not depend on any
2770     # unpublished history in the local tracking branch.
2771     #
2772     # As between the public view and the local tracking branch: The
2773     # local tracking branch is only updated by dgit fetch, and
2774     # whenever dgit fetch runs it includes the public view in the
2775     # local tracking branch.  Therefore if the public view is not
2776     # descended from the local tracking branch, the local tracking
2777     # branch must contain history which was imported from the archive
2778     # but never pushed; and, its tip is now out of date.  So, we make
2779     # a pseudo-merge to overwrite the old imports and stitch the old
2780     # history in.
2781     #
2782     # Finally: we do not necessarily reify the public view (as
2783     # described above).  This is so that we do not end up stacking two
2784     # pseudo-merges.  So what we actually do is figure out the inputs
2785     # to any public view pseudo-merge and put them in @mergeinputs.
2786
2787     my @mergeinputs;
2788     # $mergeinputs[]{Commit}
2789     # $mergeinputs[]{Info}
2790     # $mergeinputs[0] is the one whose tree we use
2791     # @mergeinputs is in the order we use in the actual commit)
2792     #
2793     # Also:
2794     # $mergeinputs[]{Message} is a commit message to use
2795     # $mergeinputs[]{ReverseParents} if def specifies that parent
2796     #                                list should be in opposite order
2797     # Such an entry has no Commit or Info.  It applies only when found
2798     # in the last entry.  (This ugliness is to support making
2799     # identical imports to previous dgit versions.)
2800
2801     my $lastpush_hash = git_get_ref(lrfetchref());
2802     printdebug "previous reference hash=$lastpush_hash\n";
2803     $lastpush_mergeinput = $lastpush_hash && {
2804         Commit => $lastpush_hash,
2805         Info => "dgit suite branch on dgit git server",
2806     };
2807
2808     my $lastfetch_hash = git_get_ref(lrref());
2809     printdebug "fetch_from_archive: lastfetch=$lastfetch_hash\n";
2810     my $lastfetch_mergeinput = $lastfetch_hash && {
2811         Commit => $lastfetch_hash,
2812         Info => "dgit client's archive history view",
2813     };
2814
2815     my $dsc_mergeinput = $dsc_hash && {
2816         Commit => $dsc_hash,
2817         Info => "Dgit field in .dsc from archive",
2818     };
2819
2820     my $cwd = getcwd();
2821     my $del_lrfetchrefs = sub {
2822         changedir $cwd;
2823         my $gur;
2824         printdebug "del_lrfetchrefs...\n";
2825         foreach my $fullrefname (sort keys %lrfetchrefs_d) {
2826             my $objid = $lrfetchrefs_d{$fullrefname};
2827             printdebug "del_lrfetchrefs: $objid $fullrefname\n";
2828             if (!$gur) {
2829                 $gur ||= new IO::Handle;
2830                 open $gur, "|-", qw(git update-ref --stdin) or die $!;
2831             }
2832             printf $gur "delete %s %s\n", $fullrefname, $objid;
2833         }
2834         if ($gur) {
2835             close $gur or failedcmd "git update-ref delete lrfetchrefs";
2836         }
2837     };
2838
2839     if (defined $dsc_hash) {
2840         ensure_we_have_orig();
2841         if (!$lastpush_hash || $dsc_hash eq $lastpush_hash) {
2842             @mergeinputs = $dsc_mergeinput
2843         } elsif (is_fast_fwd($dsc_hash,$lastpush_hash)) {
2844             print STDERR <<END or die $!;
2845
2846 Git commit in archive is behind the last version allegedly pushed/uploaded.
2847 Commit referred to by archive: $dsc_hash
2848 Last version pushed with dgit: $lastpush_hash
2849 $later_warning_msg
2850 END
2851             @mergeinputs = ($lastpush_mergeinput);
2852         } else {
2853             # Archive has .dsc which is not a descendant of the last dgit
2854             # push.  This can happen if the archive moves .dscs about.
2855             # Just follow its lead.
2856             if (is_fast_fwd($lastpush_hash,$dsc_hash)) {
2857                 progress "archive .dsc names newer git commit";
2858                 @mergeinputs = ($dsc_mergeinput);
2859             } else {
2860                 progress "archive .dsc names other git commit, fixing up";
2861                 @mergeinputs = ($dsc_mergeinput, $lastpush_mergeinput);
2862             }
2863         }
2864     } elsif ($dsc) {
2865         @mergeinputs = generate_commits_from_dsc();
2866         # We have just done an import.  Now, our import algorithm might
2867         # have been improved.  But even so we do not want to generate
2868         # a new different import of the same package.  So if the
2869         # version numbers are the same, just use our existing version.
2870         # If the version numbers are different, the archive has changed
2871         # (perhaps, rewound).
2872         if ($lastfetch_mergeinput &&
2873             !version_compare( (mergeinfo_version $lastfetch_mergeinput),
2874                               (mergeinfo_version $mergeinputs[0]) )) {
2875             @mergeinputs = ($lastfetch_mergeinput);
2876         }
2877     } elsif ($lastpush_hash) {
2878         # only in git, not in the archive yet
2879         @mergeinputs = ($lastpush_mergeinput);
2880         print STDERR <<END or die $!;
2881
2882 Package not found in the archive, but has allegedly been pushed using dgit.
2883 $later_warning_msg
2884 END
2885     } else {
2886         printdebug "nothing found!\n";
2887         if (defined $skew_warning_vsn) {
2888             print STDERR <<END or die $!;
2889
2890 Warning: relevant archive skew detected.
2891 Archive allegedly contains $skew_warning_vsn
2892 But we were not able to obtain any version from the archive or git.
2893
2894 END
2895         }
2896         unshift @end, $del_lrfetchrefs;
2897         return undef;
2898     }
2899
2900     if ($lastfetch_hash &&
2901         !grep {
2902             my $h = $_->{Commit};
2903             $h and is_fast_fwd($lastfetch_hash, $h);
2904             # If true, one of the existing parents of this commit
2905             # is a descendant of the $lastfetch_hash, so we'll
2906             # be ff from that automatically.
2907         } @mergeinputs
2908         ) {
2909         # Otherwise:
2910         push @mergeinputs, $lastfetch_mergeinput;
2911     }
2912
2913     printdebug "fetch mergeinfos:\n";
2914     foreach my $mi (@mergeinputs) {
2915         if ($mi->{Info}) {
2916             printdebug " commit $mi->{Commit} $mi->{Info}\n";
2917         } else {
2918             printdebug sprintf " ReverseParents=%d Message=%s",
2919                 $mi->{ReverseParents}, $mi->{Message};
2920         }
2921     }
2922
2923     my $compat_info= pop @mergeinputs
2924         if $mergeinputs[$#mergeinputs]{Message};
2925
2926     @mergeinputs = grep { defined $_->{Commit} } @mergeinputs;
2927
2928     my $hash;
2929     if (@mergeinputs > 1) {
2930         # here we go, then:
2931         my $tree_commit = $mergeinputs[0]{Commit};
2932
2933         my $tree = cmdoutput @git, qw(cat-file commit), $tree_commit;
2934         $tree =~ m/\n\n/;  $tree = $`;
2935         $tree =~ m/^tree (\w+)$/m or die "$dsc_hash tree ?";
2936         $tree = $1;
2937
2938         # We use the changelog author of the package in question the
2939         # author of this pseudo-merge.  This is (roughly) correct if
2940         # this commit is simply representing aa non-dgit upload.
2941         # (Roughly because it does not record sponsorship - but we
2942         # don't have sponsorship info because that's in the .changes,
2943         # which isn't in the archivw.)
2944         #
2945         # But, it might be that we are representing archive history
2946         # updates (including in-archive copies).  These are not really
2947         # the responsibility of the person who created the .dsc, but
2948         # there is no-one whose name we should better use.  (The
2949         # author of the .dsc-named commit is clearly worse.)
2950
2951         my $useclogp = mergeinfo_getclogp $mergeinputs[0];
2952         my $author = clogp_authline $useclogp;
2953         my $cversion = getfield $useclogp, 'Version';
2954
2955         my $mcf = ".git/dgit/mergecommit";
2956         open MC, ">", $mcf or die "$mcf $!";
2957         print MC <<END or die $!;
2958 tree $tree
2959 END
2960
2961         my @parents = grep { $_->{Commit} } @mergeinputs;
2962         @parents = reverse @parents if $compat_info->{ReverseParents};
2963         print MC <<END or die $! foreach @parents;
2964 parent $_->{Commit}
2965 END
2966
2967         print MC <<END or die $!;
2968 author $author
2969 committer $author
2970
2971 END
2972
2973         if (defined $compat_info->{Message}) {
2974             print MC $compat_info->{Message} or die $!;
2975         } else {
2976             print MC <<END or die $!;
2977 Record $package ($cversion) in archive suite $csuite
2978
2979 Record that
2980 END
2981             my $message_add_info = sub {
2982                 my ($mi) = (@_);
2983                 my $mversion = mergeinfo_version $mi;
2984                 printf MC "  %-20s %s\n", $mversion, $mi->{Info}
2985                     or die $!;
2986             };
2987
2988             $message_add_info->($mergeinputs[0]);
2989             print MC <<END or die $!;
2990 should be treated as descended from
2991 END
2992             $message_add_info->($_) foreach @mergeinputs[1..$#mergeinputs];
2993         }
2994
2995         close MC or die $!;
2996         $hash = make_commit $mcf;
2997     } else {
2998         $hash = $mergeinputs[0]{Commit};
2999     }
3000     printdebug "fetch hash=$hash\n";
3001
3002     my $chkff = sub {
3003         my ($lasth, $what) = @_;
3004         return unless $lasth;
3005         die "$lasth $hash $what ?" unless is_fast_fwd($lasth, $hash);
3006     };
3007
3008     $chkff->($lastpush_hash, 'dgit repo server tip (last push)')
3009         if $lastpush_hash;
3010     $chkff->($lastfetch_hash, 'local tracking tip (last fetch)');
3011
3012     fetch_from_archive_record_1($hash);
3013
3014     if (defined $skew_warning_vsn) {
3015         mkpath '.git/dgit';
3016         printdebug "SKEW CHECK WANT $skew_warning_vsn\n";
3017         my $gotclogp = commit_getclogp($hash);
3018         my $got_vsn = getfield $gotclogp, 'Version';
3019         printdebug "SKEW CHECK GOT $got_vsn\n";
3020         if (version_compare($got_vsn, $skew_warning_vsn) < 0) {
3021             print STDERR <<END or die $!;
3022
3023 Warning: archive skew detected.  Using the available version:
3024 Archive allegedly contains    $skew_warning_vsn
3025 We were able to obtain only   $got_vsn
3026
3027 END
3028         }
3029     }
3030
3031     if ($lastfetch_hash ne $hash) {
3032         fetch_from_archive_record_2($hash);
3033     }
3034
3035     lrfetchref_used lrfetchref();
3036
3037     unshift @end, $del_lrfetchrefs;
3038     return $hash;
3039 }
3040
3041 sub set_local_git_config ($$) {
3042     my ($k, $v) = @_;
3043     runcmd @git, qw(config), $k, $v;
3044 }
3045
3046 sub setup_mergechangelogs (;$) {
3047     my ($always) = @_;
3048     return unless $always || access_cfg_bool(1, 'setup-mergechangelogs');
3049
3050     my $driver = 'dpkg-mergechangelogs';
3051     my $cb = "merge.$driver";
3052     my $attrs = '.git/info/attributes';
3053     ensuredir '.git/info';
3054
3055     open NATTRS, ">", "$attrs.new" or die "$attrs.new $!";
3056     if (!open ATTRS, "<", $attrs) {
3057         $!==ENOENT or die "$attrs: $!";
3058     } else {
3059         while (<ATTRS>) {
3060             chomp;
3061             next if m{^debian/changelog\s};
3062             print NATTRS $_, "\n" or die $!;
3063         }
3064         ATTRS->error and die $!;
3065         close ATTRS;
3066     }
3067     print NATTRS "debian/changelog merge=$driver\n" or die $!;
3068     close NATTRS;
3069
3070     set_local_git_config "$cb.name", 'debian/changelog merge driver';
3071     set_local_git_config "$cb.driver", 'dpkg-mergechangelogs -m %O %A %B %A';
3072
3073     rename "$attrs.new", "$attrs" or die "$attrs: $!";
3074 }
3075
3076 sub setup_useremail (;$) {
3077     my ($always) = @_;
3078     return unless $always || access_cfg_bool(1, 'setup-useremail');
3079
3080     my $setup = sub {
3081         my ($k, $envvar) = @_;
3082         my $v = access_cfg("user-$k", 'RETURN-UNDEF') // $ENV{$envvar};
3083         return unless defined $v;
3084         set_local_git_config "user.$k", $v;
3085     };
3086
3087     $setup->('email', 'DEBEMAIL');
3088     $setup->('name', 'DEBFULLNAME');
3089 }
3090
3091 sub ensure_setup_existing_tree () {
3092     my $k = "remote.$remotename.skipdefaultupdate";
3093     my $c = git_get_config $k;
3094     return if defined $c;
3095     set_local_git_config $k, 'true';
3096 }
3097
3098 sub setup_new_tree () {
3099     setup_mergechangelogs();
3100     setup_useremail();
3101 }
3102
3103 sub multisuite_suite_child ($$$) {
3104     my ($tsuite, $merginputs, $fn) = @_;
3105     # in child, sets things up, calls $fn->(), and returns undef
3106     # in parent, returns canonical suite name for $tsuite
3107     my $canonsuitefh = IO::File::new_tmpfile;
3108     my $pid = fork // die $!;
3109     if (!$pid) {
3110         $isuite = $tsuite;
3111         $us .= " [$isuite]";
3112         $debugprefix .= " ";
3113         progress "fetching $tsuite...";
3114         canonicalise_suite();
3115         print $canonsuitefh $csuite, "\n" or die $!;
3116         close $canonsuitefh or die $!;
3117         $fn->();
3118         return undef;
3119     }
3120     waitpid $pid,0 == $pid or die $!;
3121     fail "failed to obtain $tsuite: ".waitstatusmsg() if $? && $?!=256*4;
3122     seek $canonsuitefh,0,0 or die $!;
3123     local $csuite = <$canonsuitefh>;
3124     die $! unless defined $csuite && chomp $csuite;
3125     if ($? == 256*4) {
3126         printdebug "multisuite $tsuite missing\n";
3127         return $csuite;
3128     }
3129     printdebug "multisuite $tsuite ok (canon=$csuite)\n";
3130     push @$merginputs, {
3131         Ref => lrref,
3132         Info => $csuite,
3133     };
3134     return $csuite;
3135 }
3136
3137 sub fork_for_multisuite ($) {
3138     my ($before_fetch_merge) = @_;
3139     # if nothing unusual, just returns ''
3140     #
3141     # if multisuite:
3142     # returns 0 to caller in child, to do first of the specified suites
3143     # in child, $csuite is not yet set
3144     #
3145     # returns 1 to caller in parent, to finish up anything needed after
3146     # in parent, $csuite is set to canonicalised portmanteau
3147
3148     my $org_isuite = $isuite;
3149     my @suites = split /\,/, $isuite;
3150     return '' unless @suites > 1;
3151     printdebug "fork_for_multisuite: @suites\n";
3152
3153     my @mergeinputs;
3154
3155     my $cbasesuite = multisuite_suite_child($suites[0], \@mergeinputs,
3156                                             sub { });
3157     return 0 unless defined $cbasesuite;
3158
3159     fail "package $package missing in (base suite) $cbasesuite"
3160         unless @mergeinputs;
3161
3162     my @csuites = ($cbasesuite);
3163
3164     $before_fetch_merge->();
3165
3166     foreach my $tsuite (@suites[1..$#suites]) {
3167         my $csubsuite = multisuite_suite_child($tsuite, \@mergeinputs,
3168                                                sub {
3169             @end = ();
3170             fetch();
3171             exit 0;
3172         });
3173         # xxx collecte the ref here
3174
3175         $csubsuite =~ s/^\Q$cbasesuite\E-/-/;
3176         push @csuites, $csubsuite;
3177     }
3178
3179     foreach my $mi (@mergeinputs) {
3180         my $ref = git_get_ref $mi->{Ref};
3181         die "$mi->{Ref} ?" unless length $ref;
3182         $mi->{Commit} = $ref;
3183     }
3184
3185     $csuite = join ",", @csuites;
3186
3187     my $previous = git_get_ref lrref;
3188     if ($previous) {
3189         unshift @mergeinputs, {
3190             Commit => $previous,
3191             Info => "local combined tracking branch",
3192             Warning =>
3193  "archive seems to have rewound: local tracking branch is ahead!",
3194         };
3195     }
3196
3197     foreach my $ix (0..$#mergeinputs) {
3198         $mergeinputs[$ix]{Index} = $ix;
3199     }
3200
3201     @mergeinputs = sort {
3202         -version_compare(mergeinfo_version $a,
3203                          mergeinfo_version $b) # highest version first
3204             or
3205         $a->{Index} <=> $b->{Index}; # earliest in spec first
3206     } @mergeinputs;
3207
3208     my @needed;
3209
3210   NEEDED:
3211     foreach my $mi (@mergeinputs) {
3212         printdebug "multisuite merge check $mi->{Info}\n";
3213         foreach my $previous (@needed) {
3214             next unless is_fast_fwd $mi->{Commit}, $previous->{Commit};
3215             printdebug "multisuite merge un-needed $previous->{Info}\n";
3216             next NEEDED;
3217         }
3218         push @needed, $mi;
3219         printdebug "multisuite merge this-needed\n";
3220         $mi->{Character} = '+';
3221     }
3222
3223     $needed[0]{Character} = '*';
3224
3225     my $output = $needed[0]{Commit};
3226
3227     if (@needed > 1) {
3228         printdebug "multisuite merge nontrivial\n";
3229         my $tree = cmdoutput qw(git rev-parse), $needed[0]{Commit}.':';
3230
3231         my $commit = "tree $tree\n";
3232         my $msg = "Combine archive branches $csuite [dgit]\n\n".
3233             "Input branches:\n";
3234
3235         foreach my $mi (sort { $a->{Index} <=> $b->{Index} } @mergeinputs) {
3236             printdebug "multisuite merge include $mi->{Info}\n";
3237             $mi->{Character} //= ' ';
3238             $commit .= "parent $mi->{Commit}\n";
3239             $msg .= sprintf " %s  %-25s %s\n",
3240                 $mi->{Character},
3241                 (mergeinfo_version $mi),
3242                 $mi->{Info};
3243         }
3244         my $authline = clogp_authline mergeinfo_getclogp $needed[0];
3245         $msg .= "\nKey\n".
3246             " * marks the highest version branch, which choose to use\n".
3247             " + marks each branch which was not already an ancestor\n\n".
3248             "[dgit multi-suite $csuite]\n";
3249         $commit .=
3250             "author $authline\n".
3251             "committer $authline\n\n";
3252         $output = make_commit_text $commit.$msg;
3253         printdebug "multisuite merge generated $output\n";
3254     }
3255
3256     fetch_from_archive_record_1($output);
3257     fetch_from_archive_record_2($output);
3258
3259     progress "calculated combined tracking suite $csuite";
3260
3261     return 1;
3262 }
3263
3264 sub clone_set_head () {
3265     open H, "> .git/HEAD" or die $!;
3266     print H "ref: ".lref()."\n" or die $!;
3267     close H or die $!;
3268 }
3269 sub clone_finish ($) {
3270     my ($dstdir) = @_;
3271     runcmd @git, qw(reset --hard), lrref();
3272     runcmd qw(bash -ec), <<'END';
3273         set -o pipefail
3274         git ls-tree -r --name-only -z HEAD | \
3275         xargs -0r touch -h -r . --
3276 END
3277     printdone "ready for work in $dstdir";
3278 }
3279
3280 sub clone ($) {
3281     my ($dstdir) = @_;
3282     badusage "dry run makes no sense with clone" unless act_local();
3283
3284     my $multi_fetched = fork_for_multisuite(sub {
3285         printdebug "multi clone before fetch merge\n";
3286         changedir $dstdir;
3287     });
3288     if ($multi_fetched) {
3289         printdebug "multi clone after fetch merge\n";
3290         clone_set_head();
3291         clone_finish($dstdir);
3292         exit 0;
3293     }
3294     printdebug "clone main body\n";
3295
3296     canonicalise_suite();
3297     my $hasgit = check_for_git();
3298     mkdir $dstdir or fail "create \`$dstdir': $!";
3299     changedir $dstdir;
3300     runcmd @git, qw(init -q);
3301     clone_set_head();
3302     my $giturl = access_giturl(1);
3303     if (defined $giturl) {
3304         runcmd @git, qw(remote add), 'origin', $giturl;
3305     }
3306     if ($hasgit) {
3307         progress "fetching existing git history";
3308         git_fetch_us();
3309         runcmd_ordryrun_local @git, qw(fetch origin);
3310     } else {
3311         progress "starting new git history";
3312     }
3313     fetch_from_archive() or no_such_package;
3314     my $vcsgiturl = $dsc->{'Vcs-Git'};
3315     if (length $vcsgiturl) {
3316         $vcsgiturl =~ s/\s+-b\s+\S+//g;
3317         runcmd @git, qw(remote add vcs-git), $vcsgiturl;
3318     }
3319     setup_new_tree();
3320     clone_finish($dstdir);
3321 }
3322
3323 sub fetch () {
3324     canonicalise_suite();
3325     if (check_for_git()) {
3326         git_fetch_us();
3327     }
3328     fetch_from_archive() or no_such_package();
3329     printdone "fetched into ".lrref();
3330 }
3331
3332 sub pull () {
3333     my $multi_fetched = fork_for_multisuite(sub { });
3334     fetch() unless $multi_fetched; # parent
3335     return if $multi_fetched eq '0'; # child
3336     runcmd_ordryrun_local @git, qw(merge -m),"Merge from $csuite [dgit]",
3337         lrref();
3338     printdone "fetched to ".lrref()." and merged into HEAD";
3339 }
3340
3341 sub check_not_dirty () {
3342     foreach my $f (qw(local-options local-patch-header)) {
3343         if (stat_exists "debian/source/$f") {
3344             fail "git tree contains debian/source/$f";
3345         }
3346     }
3347
3348     return if $ignoredirty;
3349
3350     my @cmd = (@git, qw(diff --quiet HEAD));
3351     debugcmd "+",@cmd;
3352     $!=0; $?=-1; system @cmd;
3353     return if !$?;
3354     if ($?==256) {
3355         fail "working tree is dirty (does not match HEAD)";
3356     } else {
3357         failedcmd @cmd;
3358     }
3359 }
3360
3361 sub commit_admin ($) {
3362     my ($m) = @_;
3363     progress "$m";
3364     runcmd_ordryrun_local @git, qw(commit -m), $m;
3365 }
3366
3367 sub commit_quilty_patch () {
3368     my $output = cmdoutput @git, qw(status --porcelain);
3369     my %adds;
3370     foreach my $l (split /\n/, $output) {
3371         next unless $l =~ m/\S/;
3372         if ($l =~ m{^(?:\?\?| M) (.pc|debian/patches)}) {
3373             $adds{$1}++;
3374         }
3375     }
3376     delete $adds{'.pc'}; # if there wasn't one before, don't add it
3377     if (!%adds) {
3378         progress "nothing quilty to commit, ok.";
3379         return;
3380     }
3381     my @adds = map { s/[][*?\\]/\\$&/g; $_; } sort keys %adds;
3382     runcmd_ordryrun_local @git, qw(add -f), @adds;
3383     commit_admin <<END
3384 Commit Debian 3.0 (quilt) metadata
3385
3386 [dgit ($our_version) quilt-fixup]
3387 END
3388 }
3389
3390 sub get_source_format () {
3391     my %options;
3392     if (open F, "debian/source/options") {
3393         while (<F>) {
3394             next if m/^\s*\#/;
3395             next unless m/\S/;
3396             s/\s+$//; # ignore missing final newline
3397             if (m/\s*\#\s*/) {
3398                 my ($k, $v) = ($`, $'); #');
3399                 $v =~ s/^"(.*)"$/$1/;
3400                 $options{$k} = $v;
3401             } else {
3402                 $options{$_} = 1;
3403             }
3404         }
3405         F->error and die $!;
3406         close F;
3407     } else {
3408         die $! unless $!==&ENOENT;
3409     }
3410
3411     if (!open F, "debian/source/format") {
3412         die $! unless $!==&ENOENT;
3413         return '';
3414     }
3415     $_ = <F>;
3416     F->error and die $!;
3417     chomp;
3418     return ($_, \%options);
3419 }
3420
3421 sub madformat_wantfixup ($) {
3422     my ($format) = @_;
3423     return 0 unless $format eq '3.0 (quilt)';
3424     our $quilt_mode_warned;
3425     if ($quilt_mode eq 'nocheck') {
3426         progress "Not doing any fixup of \`$format' due to".
3427             " ----no-quilt-fixup or --quilt=nocheck"
3428             unless $quilt_mode_warned++;
3429         return 0;
3430     }
3431     progress "Format \`$format', need to check/update patch stack"
3432         unless $quilt_mode_warned++;
3433     return 1;
3434 }
3435
3436 sub maybe_split_brain_save ($$$) {
3437     my ($headref, $dgitview, $msg) = @_;
3438     # => message fragment "$saved" describing disposition of $dgitview
3439     return "commit id $dgitview" unless defined $split_brain_save;
3440     my @cmd = (shell_cmd "cd ../../../..",
3441                @git, qw(update-ref -m),
3442                "dgit --dgit-view-save $msg HEAD=$headref",
3443                $split_brain_save, $dgitview);
3444     runcmd @cmd;
3445     return "and left in $split_brain_save";
3446 }
3447
3448 # An "infopair" is a tuple [ $thing, $what ]
3449 # (often $thing is a commit hash; $what is a description)
3450
3451 sub infopair_cond_equal ($$) {
3452     my ($x,$y) = @_;
3453     $x->[0] eq $y->[0] or fail <<END;
3454 $x->[1] ($x->[0]) not equal to $y->[1] ($y->[0])
3455 END
3456 };
3457
3458 sub infopair_lrf_tag_lookup ($$) {
3459     my ($tagnames, $what) = @_;
3460     # $tagname may be an array ref
3461     my @tagnames = ref $tagnames ? @$tagnames : ($tagnames);
3462     printdebug "infopair_lrfetchref_tag_lookup $what @tagnames\n";
3463     foreach my $tagname (@tagnames) {
3464         my $lrefname = lrfetchrefs."/tags/$tagname";
3465         my $tagobj = $lrfetchrefs_f{$lrefname};
3466         next unless defined $tagobj;
3467         printdebug "infopair_lrfetchref_tag_lookup $tagobj $tagname $what\n";
3468         return [ git_rev_parse($tagobj), $what ];
3469     }
3470     fail @tagnames==1 ? <<END : <<END;
3471 Wanted tag $what (@tagnames) on dgit server, but not found
3472 END
3473 Wanted tag $what (one of: @tagnames) on dgit server, but not found
3474 END
3475 }
3476
3477 sub infopair_cond_ff ($$) {
3478     my ($anc,$desc) = @_;
3479     is_fast_fwd($anc->[0], $desc->[0]) or fail <<END;
3480 $anc->[1] ($anc->[0]) .. $desc->[1] ($desc->[0]) is not fast forward
3481 END
3482 };
3483
3484 sub pseudomerge_version_check ($$) {
3485     my ($clogp, $archive_hash) = @_;
3486
3487     my $arch_clogp = commit_getclogp $archive_hash;
3488     my $i_arch_v = [ (getfield $arch_clogp, 'Version'),
3489                      'version currently in archive' ];
3490     if (defined $overwrite_version) {
3491         if (length $overwrite_version) {
3492             infopair_cond_equal([ $overwrite_version,
3493                                   '--overwrite= version' ],
3494                                 $i_arch_v);
3495         } else {
3496             my $v = $i_arch_v->[0];
3497             progress "Checking package changelog for archive version $v ...";
3498             eval {
3499                 my @xa = ("-f$v", "-t$v");
3500                 my $vclogp = parsechangelog @xa;
3501                 my $cv = [ (getfield $vclogp, 'Version'),
3502                            "Version field from dpkg-parsechangelog @xa" ];
3503                 infopair_cond_equal($i_arch_v, $cv);
3504             };
3505             if ($@) {
3506                 $@ =~ s/^dgit: //gm;
3507                 fail "$@".
3508                     "Perhaps debian/changelog does not mention $v ?";
3509             }
3510         }
3511     }
3512     
3513     printdebug "pseudomerge_version_check i_arch_v @$i_arch_v\n";
3514     return $i_arch_v;
3515 }
3516
3517 sub pseudomerge_make_commit ($$$$ $$) {
3518     my ($clogp, $dgitview, $archive_hash, $i_arch_v,
3519         $msg_cmd, $msg_msg) = @_;
3520     progress "Declaring that HEAD inciudes all changes in $i_arch_v->[0]...";
3521
3522     my $tree = cmdoutput qw(git rev-parse), "${dgitview}:";
3523     my $authline = clogp_authline $clogp;
3524
3525     chomp $msg_msg;
3526     $msg_cmd .=
3527         !defined $overwrite_version ? ""
3528         : !length  $overwrite_version ? " --overwrite"
3529         : " --overwrite=".$overwrite_version;
3530
3531     mkpath '.git/dgit';
3532     my $pmf = ".git/dgit/pseudomerge";
3533     open MC, ">", $pmf or die "$pmf $!";
3534     print MC <<END or die $!;
3535 tree $tree
3536 parent $dgitview
3537 parent $archive_hash
3538 author $authline
3539 commiter $authline
3540
3541 $msg_msg
3542
3543 [$msg_cmd]
3544 END
3545     close MC or die $!;
3546
3547     return make_commit($pmf);
3548 }
3549
3550 sub splitbrain_pseudomerge ($$$$) {
3551     my ($clogp, $maintview, $dgitview, $archive_hash) = @_;
3552     # => $merged_dgitview
3553     printdebug "splitbrain_pseudomerge...\n";
3554     #
3555     #     We:      debian/PREVIOUS    HEAD($maintview)
3556     # expect:          o ----------------- o
3557     #                    \                   \
3558     #                     o                   o
3559     #                 a/d/PREVIOUS        $dgitview
3560     #                $archive_hash              \
3561     #  If so,                \                   \
3562     #  we do:                 `------------------ o
3563     #   this:                                   $dgitview'
3564     #
3565
3566     return $dgitview unless defined $archive_hash;
3567
3568     printdebug "splitbrain_pseudomerge...\n";
3569
3570     my $i_arch_v = pseudomerge_version_check($clogp, $archive_hash);
3571
3572     if (!defined $overwrite_version) {
3573         progress "Checking that HEAD inciudes all changes in archive...";
3574     }
3575
3576     return $dgitview if is_fast_fwd $archive_hash, $dgitview;
3577
3578     if (defined $overwrite_version) {
3579     } elsif (!eval {
3580         my $t_dep14 = debiantag_maintview $i_arch_v->[0], access_nomdistro;
3581         my $i_dep14 = infopair_lrf_tag_lookup($t_dep14, "maintainer view tag");
3582         my $t_dgit = debiantag_new $i_arch_v->[0], access_nomdistro;
3583         my $i_dgit = infopair_lrf_tag_lookup($t_dgit, "dgit view tag");
3584         my $i_archive = [ $archive_hash, "current archive contents" ];
3585
3586         printdebug "splitbrain_pseudomerge i_archive @$i_archive\n";
3587
3588         infopair_cond_equal($i_dgit, $i_archive);
3589         infopair_cond_ff($i_dep14, $i_dgit);
3590         infopair_cond_ff($i_dep14, [ $maintview, 'HEAD' ]);
3591         1;
3592     }) {
3593         print STDERR <<END;
3594 $us: check failed (maybe --overwrite is needed, consult documentation)
3595 END
3596         die "$@";
3597     }
3598
3599     my $r = pseudomerge_make_commit
3600         $clogp, $dgitview, $archive_hash, $i_arch_v,
3601         "dgit --quilt=$quilt_mode",
3602         (defined $overwrite_version ? <<END_OVERWR : <<END_MAKEFF);
3603 Declare fast forward from $i_arch_v->[0]
3604 END_OVERWR
3605 Make fast forward from $i_arch_v->[0]
3606 END_MAKEFF
3607
3608     maybe_split_brain_save $maintview, $r, "pseudomerge";
3609
3610     progress "Made pseudo-merge of $i_arch_v->[0] into dgit view.";
3611     return $r;
3612 }       
3613
3614 sub plain_overwrite_pseudomerge ($$$) {
3615     my ($clogp, $head, $archive_hash) = @_;
3616
3617     printdebug "plain_overwrite_pseudomerge...";
3618
3619     my $i_arch_v = pseudomerge_version_check($clogp, $archive_hash);
3620
3621     return $head if is_fast_fwd $archive_hash, $head;
3622
3623     my $m = "Declare fast forward from $i_arch_v->[0]";
3624
3625     my $r = pseudomerge_make_commit
3626         $clogp, $head, $archive_hash, $i_arch_v,
3627         "dgit", $m;
3628
3629     runcmd @git, qw(update-ref -m), $m, 'HEAD', $r, $head;
3630
3631     progress "Make pseudo-merge of $i_arch_v->[0] into your HEAD.";
3632     return $r;
3633 }
3634
3635 sub push_parse_changelog ($) {
3636     my ($clogpfn) = @_;
3637
3638     my $clogp = Dpkg::Control::Hash->new();
3639     $clogp->load($clogpfn) or die;
3640
3641     my $clogpackage = getfield $clogp, 'Source';
3642     $package //= $clogpackage;
3643     fail "-p specified $package but changelog specified $clogpackage"
3644         unless $package eq $clogpackage;
3645     my $cversion = getfield $clogp, 'Version';
3646     my $tag = debiantag($cversion, access_nomdistro);
3647     runcmd @git, qw(check-ref-format), $tag;
3648
3649     my $dscfn = dscfn($cversion);
3650
3651     return ($clogp, $cversion, $dscfn);
3652 }
3653
3654 sub push_parse_dsc ($$$) {
3655     my ($dscfn,$dscfnwhat, $cversion) = @_;
3656     $dsc = parsecontrol($dscfn,$dscfnwhat);
3657     my $dversion = getfield $dsc, 'Version';
3658     my $dscpackage = getfield $dsc, 'Source';
3659     ($dscpackage eq $package && $dversion eq $cversion) or
3660         fail "$dscfn is for $dscpackage $dversion".
3661             " but debian/changelog is for $package $cversion";
3662 }
3663
3664 sub push_tagwants ($$$$) {
3665     my ($cversion, $dgithead, $maintviewhead, $tfbase) = @_;
3666     my @tagwants;
3667     push @tagwants, {
3668         TagFn => \&debiantag,
3669         Objid => $dgithead,
3670         TfSuffix => '',
3671         View => 'dgit',
3672     };
3673     if (defined $maintviewhead) {
3674         push @tagwants, {
3675             TagFn => \&debiantag_maintview,
3676             Objid => $maintviewhead,
3677             TfSuffix => '-maintview',
3678             View => 'maint',
3679         };
3680     } elsif ($dodep14tag eq 'no' ? 0
3681              : $dodep14tag eq 'want' ? access_cfg_tagformats_can_splitbrain
3682              : $dodep14tag eq 'always'
3683              ? (access_cfg_tagformats_can_splitbrain or fail <<END)
3684 --dep14tag-always (or equivalent in config) means server must support
3685  both "new" and "maint" tag formats, but config says it doesn't.
3686 END
3687             : die "$dodep14tag ?") {
3688         push @tagwants, {
3689             TagFn => \&debiantag_maintview,
3690             Objid => $dgithead,
3691             TfSuffix => '-dgit',
3692             View => 'dgit',
3693         };
3694     };
3695     foreach my $tw (@tagwants) {
3696         $tw->{Tag} = $tw->{TagFn}($cversion, access_nomdistro);
3697         $tw->{Tfn} = sub { $tfbase.$tw->{TfSuffix}.$_[0]; };
3698     }
3699     printdebug 'push_tagwants: ', Dumper(\@_, \@tagwants);
3700     return @tagwants;
3701 }
3702
3703 sub push_mktags ($$ $$ $) {
3704     my ($clogp,$dscfn,
3705         $changesfile,$changesfilewhat,
3706         $tagwants) = @_;
3707
3708     die unless $tagwants->[0]{View} eq 'dgit';
3709
3710     $dsc->{$ourdscfield[0]} = $tagwants->[0]{Objid};
3711     $dsc->save("$dscfn.tmp") or die $!;
3712
3713     my $changes = parsecontrol($changesfile,$changesfilewhat);
3714     foreach my $field (qw(Source Distribution Version)) {
3715         $changes->{$field} eq $clogp->{$field} or
3716             fail "changes field $field \`$changes->{$field}'".
3717                 " does not match changelog \`$clogp->{$field}'";
3718     }
3719
3720     my $cversion = getfield $clogp, 'Version';
3721     my $clogsuite = getfield $clogp, 'Distribution';
3722
3723     # We make the git tag by hand because (a) that makes it easier
3724     # to control the "tagger" (b) we can do remote signing
3725     my $authline = clogp_authline $clogp;
3726     my $delibs = join(" ", "",@deliberatelies);
3727     my $declaredistro = access_nomdistro();
3728
3729     my $mktag = sub {
3730         my ($tw) = @_;
3731         my $tfn = $tw->{Tfn};
3732         my $head = $tw->{Objid};
3733         my $tag = $tw->{Tag};
3734
3735         open TO, '>', $tfn->('.tmp') or die $!;
3736         print TO <<END or die $!;
3737 object $head
3738 type commit
3739 tag $tag
3740 tagger $authline
3741
3742 END
3743         if ($tw->{View} eq 'dgit') {
3744             print TO <<END or die $!;
3745 $package release $cversion for $clogsuite ($csuite) [dgit]
3746 [dgit distro=$declaredistro$delibs]
3747 END
3748             foreach my $ref (sort keys %previously) {
3749                 print TO <<END or die $!;
3750 [dgit previously:$ref=$previously{$ref}]
3751 END
3752             }
3753         } elsif ($tw->{View} eq 'maint') {
3754             print TO <<END or die $!;
3755 $package release $cversion for $clogsuite ($csuite)
3756 (maintainer view tag generated by dgit --quilt=$quilt_mode)
3757 END
3758         } else {
3759             die Dumper($tw)."?";
3760         }
3761
3762         close TO or die $!;
3763
3764         my $tagobjfn = $tfn->('.tmp');
3765         if ($sign) {
3766             if (!defined $keyid) {
3767                 $keyid = access_cfg('keyid','RETURN-UNDEF');
3768             }
3769             if (!defined $keyid) {
3770                 $keyid = getfield $clogp, 'Maintainer';
3771             }
3772             unlink $tfn->('.tmp.asc') or $!==&ENOENT or die $!;
3773             my @sign_cmd = (@gpg, qw(--detach-sign --armor));
3774             push @sign_cmd, qw(-u),$keyid if defined $keyid;
3775             push @sign_cmd, $tfn->('.tmp');
3776             runcmd_ordryrun @sign_cmd;
3777             if (act_scary()) {
3778                 $tagobjfn = $tfn->('.signed.tmp');
3779                 runcmd shell_cmd "exec >$tagobjfn", qw(cat --),
3780                     $tfn->('.tmp'), $tfn->('.tmp.asc');
3781             }
3782         }
3783         return $tagobjfn;
3784     };
3785
3786     my @r = map { $mktag->($_); } @$tagwants;
3787     return @r;
3788 }
3789
3790 sub sign_changes ($) {
3791     my ($changesfile) = @_;
3792     if ($sign) {
3793         my @debsign_cmd = @debsign;
3794         push @debsign_cmd, "-k$keyid" if defined $keyid;
3795         push @debsign_cmd, "-p$gpg[0]" if $gpg[0] ne 'gpg';
3796         push @debsign_cmd, $changesfile;
3797         runcmd_ordryrun @debsign_cmd;
3798     }
3799 }
3800
3801 sub dopush () {
3802     printdebug "actually entering push\n";
3803
3804     supplementary_message(<<'END');
3805 Push failed, while checking state of the archive.
3806 You can retry the push, after fixing the problem, if you like.
3807 END
3808     if (check_for_git()) {
3809         git_fetch_us();
3810     }
3811     my $archive_hash = fetch_from_archive();
3812     if (!$archive_hash) {
3813         $new_package or
3814             fail "package appears to be new in this suite;".
3815                 " if this is intentional, use --new";
3816     }
3817
3818     supplementary_message(<<'END');
3819 Push failed, while preparing your push.
3820 You can retry the push, after fixing the problem, if you like.
3821 END
3822
3823     need_tagformat 'new', "quilt mode $quilt_mode"
3824         if quiltmode_splitbrain;
3825
3826     prep_ud();
3827
3828     access_giturl(); # check that success is vaguely likely
3829     select_tagformat();
3830
3831     my $clogpfn = ".git/dgit/changelog.822.tmp";
3832     runcmd shell_cmd "exec >$clogpfn", qw(dpkg-parsechangelog);
3833
3834     responder_send_file('parsed-changelog', $clogpfn);
3835
3836     my ($clogp, $cversion, $dscfn) =
3837         push_parse_changelog("$clogpfn");
3838
3839     my $dscpath = "$buildproductsdir/$dscfn";
3840     stat_exists $dscpath or
3841         fail "looked for .dsc $dscpath, but $!;".
3842             " maybe you forgot to build";
3843
3844     responder_send_file('dsc', $dscpath);
3845
3846     push_parse_dsc($dscpath, $dscfn, $cversion);
3847
3848     my $format = getfield $dsc, 'Format';
3849     printdebug "format $format\n";
3850
3851     my $actualhead = git_rev_parse('HEAD');
3852     my $dgithead = $actualhead;
3853     my $maintviewhead = undef;
3854
3855     my $upstreamversion = upstreamversion $clogp->{Version};
3856
3857     if (madformat_wantfixup($format)) {
3858         # user might have not used dgit build, so maybe do this now:
3859         if (quiltmode_splitbrain()) {
3860             changedir $ud;
3861             quilt_make_fake_dsc($upstreamversion);
3862             my $cachekey;
3863             ($dgithead, $cachekey) =
3864                 quilt_check_splitbrain_cache($actualhead, $upstreamversion);
3865             $dgithead or fail
3866  "--quilt=$quilt_mode but no cached dgit view:
3867  perhaps tree changed since dgit build[-source] ?";
3868             $split_brain = 1;
3869             $dgithead = splitbrain_pseudomerge($clogp,
3870                                                $actualhead, $dgithead,
3871                                                $archive_hash);
3872             $maintviewhead = $actualhead;
3873             changedir '../../../..';
3874             prep_ud(); # so _only_subdir() works, below
3875         } else {
3876             commit_quilty_patch();
3877         }
3878     }
3879
3880     if (defined $overwrite_version && !defined $maintviewhead) {
3881         $dgithead = plain_overwrite_pseudomerge($clogp,
3882                                                 $dgithead,
3883                                                 $archive_hash);
3884     }
3885
3886     check_not_dirty();
3887
3888     my $forceflag = '';
3889     if ($archive_hash) {
3890         if (is_fast_fwd($archive_hash, $dgithead)) {
3891             # ok
3892         } elsif (deliberately_not_fast_forward) {
3893             $forceflag = '+';
3894         } else {
3895             fail "dgit push: HEAD is not a descendant".
3896                 " of the archive's version.\n".
3897                 "To overwrite the archive's contents,".
3898                 " pass --overwrite[=VERSION].\n".
3899                 "To rewind history, if permitted by the archive,".
3900                 " use --deliberately-not-fast-forward.";
3901         }
3902     }
3903
3904     changedir $ud;
3905     progress "checking that $dscfn corresponds to HEAD";
3906     runcmd qw(dpkg-source -x --),
3907         $dscpath =~ m#^/# ? $dscpath : "../../../$dscpath";
3908     my ($tree,$dir) = mktree_in_ud_from_only_subdir("source package");
3909     check_for_vendor_patches() if madformat($dsc->{format});
3910     changedir '../../../..';
3911     my @diffcmd = (@git, qw(diff --quiet), $tree, $dgithead);
3912     debugcmd "+",@diffcmd;
3913     $!=0; $?=-1;
3914     my $r = system @diffcmd;
3915     if ($r) {
3916         if ($r==256) {
3917             my $diffs = cmdoutput @git, qw(diff --stat), $tree, $dgithead;
3918             fail <<END
3919 HEAD specifies a different tree to $dscfn:
3920 $diffs
3921 Perhaps you forgot to build.  Or perhaps there is a problem with your
3922  source tree (see dgit(7) for some hints).  To see a full diff, run
3923    git diff $tree HEAD
3924 END
3925         } else {
3926             failedcmd @diffcmd;
3927         }
3928     }
3929     if (!$changesfile) {
3930         my $pat = changespat $cversion;
3931         my @cs = glob "$buildproductsdir/$pat";
3932         fail "failed to find unique changes file".
3933             " (looked for $pat in $buildproductsdir);".
3934             " perhaps you need to use dgit -C"
3935             unless @cs==1;
3936         ($changesfile) = @cs;
3937     } else {
3938         $changesfile = "$buildproductsdir/$changesfile";
3939     }
3940
3941     # Check that changes and .dsc agree enough
3942     $changesfile =~ m{[^/]*$};
3943     my $changes = parsecontrol($changesfile,$&);
3944     files_compare_inputs($dsc, $changes)
3945         unless forceing [qw(dsc-changes-mismatch)];
3946
3947     # Perhaps adjust .dsc to contain right set of origs
3948     changes_update_origs_from_dsc($dsc, $changes, $upstreamversion,
3949                                   $changesfile)
3950         unless forceing [qw(changes-origs-exactly)];
3951
3952     # Checks complete, we're going to try and go ahead:
3953
3954     responder_send_file('changes',$changesfile);
3955     responder_send_command("param head $dgithead");
3956     responder_send_command("param csuite $csuite");
3957     responder_send_command("param tagformat $tagformat");
3958     if (defined $maintviewhead) {
3959         die unless ($protovsn//4) >= 4;
3960         responder_send_command("param maint-view $maintviewhead");
3961     }
3962
3963     if (deliberately_not_fast_forward) {
3964         git_for_each_ref(lrfetchrefs, sub {
3965             my ($objid,$objtype,$lrfetchrefname,$reftail) = @_;
3966             my $rrefname= substr($lrfetchrefname, length(lrfetchrefs) + 1);
3967             responder_send_command("previously $rrefname=$objid");
3968             $previously{$rrefname} = $objid;
3969         });
3970     }
3971
3972     my @tagwants = push_tagwants($cversion, $dgithead, $maintviewhead,
3973                                  ".git/dgit/tag");
3974     my @tagobjfns;
3975
3976     supplementary_message(<<'END');
3977 Push failed, while signing the tag.
3978 You can retry the push, after fixing the problem, if you like.
3979 END
3980     # If we manage to sign but fail to record it anywhere, it's fine.
3981     if ($we_are_responder) {
3982         @tagobjfns = map { $_->{Tfn}('.signed-tmp') } @tagwants;
3983         responder_receive_files('signed-tag', @tagobjfns);
3984     } else {
3985         @tagobjfns = push_mktags($clogp,$dscpath,
3986                               $changesfile,$changesfile,
3987                               \@tagwants);
3988     }
3989     supplementary_message(<<'END');
3990 Push failed, *after* signing the tag.
3991 If you want to try again, you should use a new version number.
3992 END
3993
3994     pairwise { $a->{TagObjFn} = $b } @tagwants, @tagobjfns;
3995
3996     foreach my $tw (@tagwants) {
3997         my $tag = $tw->{Tag};
3998         my $tagobjfn = $tw->{TagObjFn};
3999         my $tag_obj_hash =
4000             cmdoutput @git, qw(hash-object -w -t tag), $tagobjfn;
4001         runcmd_ordryrun @git, qw(verify-tag), $tag_obj_hash;
4002         runcmd_ordryrun_local
4003             @git, qw(update-ref), "refs/tags/$tag", $tag_obj_hash;
4004     }
4005
4006     supplementary_message(<<'END');
4007 Push failed, while updating the remote git repository - see messages above.
4008 If you want to try again, you should use a new version number.
4009 END
4010     if (!check_for_git()) {
4011         create_remote_git_repo();
4012     }
4013
4014     my @pushrefs = $forceflag.$dgithead.":".rrref();
4015     foreach my $tw (@tagwants) {
4016         push @pushrefs, $forceflag."refs/tags/$tw->{Tag}";
4017     }
4018
4019     runcmd_ordryrun @git,
4020         qw(-c push.followTags=false push), access_giturl(), @pushrefs;
4021     runcmd_ordryrun @git, qw(update-ref -m), 'dgit push', lrref(), $dgithead;
4022
4023     supplementary_message(<<'END');
4024 Push failed, while obtaining signatures on the .changes and .dsc.
4025 If it was just that the signature failed, you may try again by using
4026 debsign by hand to sign the changes
4027    $changesfile
4028 and then dput to complete the upload.
4029 If you need to change the package, you must use a new version number.
4030 END
4031     if ($we_are_responder) {
4032         my $dryrunsuffix = act_local() ? "" : ".tmp";
4033         responder_receive_files('signed-dsc-changes',
4034                                 "$dscpath$dryrunsuffix",
4035                                 "$changesfile$dryrunsuffix");
4036     } else {
4037         if (act_local()) {
4038             rename "$dscpath.tmp",$dscpath or die "$dscfn $!";
4039         } else {
4040             progress "[new .dsc left in $dscpath.tmp]";
4041         }
4042         sign_changes $changesfile;
4043     }
4044
4045     supplementary_message(<<END);
4046 Push failed, while uploading package(s) to the archive server.
4047 You can retry the upload of exactly these same files with dput of:
4048   $changesfile
4049 If that .changes file is broken, you will need to use a new version
4050 number for your next attempt at the upload.
4051 END
4052     my $host = access_cfg('upload-host','RETURN-UNDEF');
4053     my @hostarg = defined($host) ? ($host,) : ();
4054     runcmd_ordryrun @dput, @hostarg, $changesfile;
4055     printdone "pushed and uploaded $cversion";
4056
4057     supplementary_message('');
4058     responder_send_command("complete");
4059 }
4060
4061 sub cmd_clone {
4062     parseopts();
4063     notpushing();
4064     my $dstdir;
4065     badusage "-p is not allowed with clone; specify as argument instead"
4066         if defined $package;
4067     if (@ARGV==1) {
4068         ($package) = @ARGV;
4069     } elsif (@ARGV==2 && $ARGV[1] =~ m#^\w#) {
4070         ($package,$isuite) = @ARGV;
4071     } elsif (@ARGV==2 && $ARGV[1] =~ m#^[./]#) {
4072         ($package,$dstdir) = @ARGV;
4073     } elsif (@ARGV==3) {
4074         ($package,$isuite,$dstdir) = @ARGV;
4075     } else {
4076         badusage "incorrect arguments to dgit clone";
4077     }
4078     $dstdir ||= "$package";
4079
4080     if (stat_exists $dstdir) {
4081         fail "$dstdir already exists";
4082     }
4083
4084     my $cwd_remove;
4085     if ($rmonerror && !$dryrun_level) {
4086         $cwd_remove= getcwd();
4087         unshift @end, sub { 
4088             return unless defined $cwd_remove;
4089             if (!chdir "$cwd_remove") {
4090                 return if $!==&ENOENT;
4091                 die "chdir $cwd_remove: $!";
4092             }
4093             printdebug "clone rmonerror removing $dstdir\n";
4094             if (stat $dstdir) {
4095                 rmtree($dstdir) or die "remove $dstdir: $!\n";
4096             } elsif (grep { $! == $_ }
4097                      (ENOENT, ENOTDIR, EACCES, EPERM, ELOOP)) {
4098             } else {
4099                 print STDERR "check whether to remove $dstdir: $!\n";
4100             }
4101         };
4102     }
4103
4104     clone($dstdir);
4105     $cwd_remove = undef;
4106 }
4107
4108 sub branchsuite () {
4109     my $branch = cmdoutput_errok @git, qw(symbolic-ref HEAD);
4110     if ($branch =~ m#$lbranch_re#o) {
4111         return $1;
4112     } else {
4113         return undef;
4114     }
4115 }
4116
4117 sub fetchpullargs () {
4118     notpushing();
4119     if (!defined $package) {
4120         my $sourcep = parsecontrol('debian/control','debian/control');
4121         $package = getfield $sourcep, 'Source';
4122     }
4123     if (@ARGV==0) {
4124         $isuite = branchsuite();
4125         if (!$isuite) {
4126             my $clogp = parsechangelog();
4127             $isuite = getfield $clogp, 'Distribution';
4128         }
4129     } elsif (@ARGV==1) {
4130         ($isuite) = @ARGV;
4131     } else {
4132         badusage "incorrect arguments to dgit fetch or dgit pull";
4133     }
4134 }
4135
4136 sub cmd_fetch {
4137     parseopts();
4138     fetchpullargs();
4139     my $multi_fetched = fork_for_multisuite(sub { });
4140     exit 0 if $multi_fetched;
4141     fetch();
4142 }
4143
4144 sub cmd_pull {
4145     parseopts();
4146     fetchpullargs();
4147     if (quiltmode_splitbrain()) {
4148         my ($format, $fopts) = get_source_format();
4149         madformat($format) and fail <<END
4150 dgit pull not yet supported in split view mode (--quilt=$quilt_mode)
4151 END
4152     }
4153     pull();
4154 }
4155
4156 sub cmd_push {
4157     parseopts();
4158     pushing();
4159     badusage "-p is not allowed with dgit push" if defined $package;
4160     check_not_dirty();
4161     my $clogp = parsechangelog();
4162     $package = getfield $clogp, 'Source';
4163     my $specsuite;
4164     if (@ARGV==0) {
4165     } elsif (@ARGV==1) {
4166         ($specsuite) = (@ARGV);
4167     } else {
4168         badusage "incorrect arguments to dgit push";
4169     }
4170     $isuite = getfield $clogp, 'Distribution';
4171     if ($new_package) {
4172         local ($package) = $existing_package; # this is a hack
4173         canonicalise_suite();
4174     } else {
4175         canonicalise_suite();
4176     }
4177     if (defined $specsuite &&
4178         $specsuite ne $isuite &&
4179         $specsuite ne $csuite) {
4180             fail "dgit push: changelog specifies $isuite ($csuite)".
4181                 " but command line specifies $specsuite";
4182     }
4183     dopush();
4184 }
4185
4186 #---------- remote commands' implementation ----------
4187
4188 sub cmd_remote_push_build_host {
4189     my ($nrargs) = shift @ARGV;
4190     my (@rargs) = @ARGV[0..$nrargs-1];
4191     @ARGV = @ARGV[$nrargs..$#ARGV];
4192     die unless @rargs;
4193     my ($dir,$vsnwant) = @rargs;
4194     # vsnwant is a comma-separated list; we report which we have
4195     # chosen in our ready response (so other end can tell if they
4196     # offered several)
4197     $debugprefix = ' ';
4198     $we_are_responder = 1;
4199     $us .= " (build host)";
4200
4201     pushing();
4202
4203     open PI, "<&STDIN" or die $!;
4204     open STDIN, "/dev/null" or die $!;
4205     open PO, ">&STDOUT" or die $!;
4206     autoflush PO 1;
4207     open STDOUT, ">&STDERR" or die $!;
4208     autoflush STDOUT 1;
4209
4210     $vsnwant //= 1;
4211     ($protovsn) = grep {
4212         $vsnwant =~ m{^(?:.*,)?$_(?:,.*)?$}
4213     } @rpushprotovsn_support;
4214
4215     fail "build host has dgit rpush protocol versions ".
4216         (join ",", @rpushprotovsn_support).
4217         " but invocation host has $vsnwant"
4218         unless defined $protovsn;
4219
4220     responder_send_command("dgit-remote-push-ready $protovsn");
4221     rpush_handle_protovsn_bothends();
4222     changedir $dir;
4223     &cmd_push;
4224 }
4225
4226 sub cmd_remote_push_responder { cmd_remote_push_build_host(); }
4227 # ... for compatibility with proto vsn.1 dgit (just so that user gets
4228 #     a good error message)
4229
4230 sub rpush_handle_protovsn_bothends () {
4231     if ($protovsn < 4) {
4232         need_tagformat 'old', "rpush negotiated protocol $protovsn";
4233     }
4234     select_tagformat();
4235 }
4236
4237 our $i_tmp;
4238
4239 sub i_cleanup {
4240     local ($@, $?);
4241     my $report = i_child_report();
4242     if (defined $report) {
4243         printdebug "($report)\n";
4244     } elsif ($i_child_pid) {
4245         printdebug "(killing build host child $i_child_pid)\n";
4246         kill 15, $i_child_pid;
4247     }
4248     if (defined $i_tmp && !defined $initiator_tempdir) {
4249         changedir "/";
4250         eval { rmtree $i_tmp; };
4251     }
4252 }
4253
4254 END { i_cleanup(); }
4255
4256 sub i_method {
4257     my ($base,$selector,@args) = @_;
4258     $selector =~ s/\-/_/g;
4259     { no strict qw(refs); &{"${base}_${selector}"}(@args); }
4260 }
4261
4262 sub cmd_rpush {
4263     pushing();
4264     my $host = nextarg;
4265     my $dir;
4266     if ($host =~ m/^((?:[^][]|\[[^][]*\])*)\:/) {
4267         $host = $1;
4268         $dir = $'; #';
4269     } else {
4270         $dir = nextarg;
4271     }
4272     $dir =~ s{^-}{./-};
4273     my @rargs = ($dir);
4274     push @rargs, join ",", @rpushprotovsn_support;
4275     my @rdgit;
4276     push @rdgit, @dgit;
4277     push @rdgit, @ropts;
4278     push @rdgit, qw(remote-push-build-host), (scalar @rargs), @rargs;
4279     push @rdgit, @ARGV;
4280     my @cmd = (@ssh, $host, shellquote @rdgit);
4281     debugcmd "+",@cmd;
4282
4283     if (defined $initiator_tempdir) {
4284         rmtree $initiator_tempdir;
4285         mkdir $initiator_tempdir, 0700 or die "$initiator_tempdir: $!";
4286         $i_tmp = $initiator_tempdir;
4287     } else {
4288         $i_tmp = tempdir();
4289     }
4290     $i_child_pid = open2(\*RO, \*RI, @cmd);
4291     changedir $i_tmp;
4292     ($protovsn) = initiator_expect { m/^dgit-remote-push-ready (\S+)/ };
4293     die "$protovsn ?" unless grep { $_ eq $protovsn } @rpushprotovsn_support;
4294     $supplementary_message = '' unless $protovsn >= 3;
4295
4296     fail "rpush negotiated protocol version $protovsn".
4297         " which does not support quilt mode $quilt_mode"
4298         if quiltmode_splitbrain;
4299
4300     rpush_handle_protovsn_bothends();
4301     for (;;) {
4302         my ($icmd,$iargs) = initiator_expect {
4303             m/^(\S+)(?: (.*))?$/;
4304             ($1,$2);
4305         };
4306         i_method "i_resp", $icmd, $iargs;
4307     }
4308 }
4309
4310 sub i_resp_progress ($) {
4311     my ($rhs) = @_;
4312     my $msg = protocol_read_bytes \*RO, $rhs;
4313     progress $msg;
4314 }
4315
4316 sub i_resp_supplementary_message ($) {
4317     my ($rhs) = @_;
4318     $supplementary_message = protocol_read_bytes \*RO, $rhs;
4319 }
4320
4321 sub i_resp_complete {
4322     my $pid = $i_child_pid;
4323     $i_child_pid = undef; # prevents killing some other process with same pid
4324     printdebug "waiting for build host child $pid...\n";
4325     my $got = waitpid $pid, 0;
4326     die $! unless $got == $pid;
4327     die "build host child failed $?" if $?;
4328
4329     i_cleanup();
4330     printdebug "all done\n";
4331     exit 0;
4332 }
4333
4334 sub i_resp_file ($) {
4335     my ($keyword) = @_;
4336     my $localname = i_method "i_localname", $keyword;
4337     my $localpath = "$i_tmp/$localname";
4338     stat_exists $localpath and
4339         badproto \*RO, "file $keyword ($localpath) twice";
4340     protocol_receive_file \*RO, $localpath;
4341     i_method "i_file", $keyword;
4342 }
4343
4344 our %i_param;
4345
4346 sub i_resp_param ($) {
4347     $_[0] =~ m/^(\S+) (.*)$/ or badproto \*RO, "bad param spec";
4348     $i_param{$1} = $2;
4349 }
4350
4351 sub i_resp_previously ($) {
4352     $_[0] =~ m#^(refs/tags/\S+)=(\w+)$#
4353         or badproto \*RO, "bad previously spec";
4354     my $r = system qw(git check-ref-format), $1;
4355     die "bad previously ref spec ($r)" if $r;
4356     $previously{$1} = $2;
4357 }
4358
4359 our %i_wanted;
4360
4361 sub i_resp_want ($) {
4362     my ($keyword) = @_;
4363     die "$keyword ?" if $i_wanted{$keyword}++;
4364     my @localpaths = i_method "i_want", $keyword;
4365     printdebug "[[  $keyword @localpaths\n";
4366     foreach my $localpath (@localpaths) {
4367         protocol_send_file \*RI, $localpath;
4368     }
4369     print RI "files-end\n" or die $!;
4370 }
4371
4372 our ($i_clogp, $i_version, $i_dscfn, $i_changesfn);
4373
4374 sub i_localname_parsed_changelog {
4375     return "remote-changelog.822";
4376 }
4377 sub i_file_parsed_changelog {
4378     ($i_clogp, $i_version, $i_dscfn) =
4379         push_parse_changelog "$i_tmp/remote-changelog.822";
4380     die if $i_dscfn =~ m#/|^\W#;
4381 }
4382
4383 sub i_localname_dsc {
4384     defined $i_dscfn or badproto \*RO, "dsc (before parsed-changelog)";
4385     return $i_dscfn;
4386 }
4387 sub i_file_dsc { }
4388
4389 sub i_localname_changes {
4390     defined $i_dscfn or badproto \*RO, "dsc (before parsed-changelog)";
4391     $i_changesfn = $i_dscfn;
4392     $i_changesfn =~ s/\.dsc$/_dgit.changes/ or die;
4393     return $i_changesfn;
4394 }
4395 sub i_file_changes { }
4396
4397 sub i_want_signed_tag {
4398     printdebug Dumper(\%i_param, $i_dscfn);
4399     defined $i_param{'head'} && defined $i_dscfn && defined $i_clogp
4400         && defined $i_param{'csuite'}
4401         or badproto \*RO, "premature desire for signed-tag";
4402     my $head = $i_param{'head'};
4403     die if $head =~ m/[^0-9a-f]/ || $head !~ m/^../;
4404
4405     my $maintview = $i_param{'maint-view'};
4406     die if defined $maintview && $maintview =~ m/[^0-9a-f]/;
4407
4408     select_tagformat();
4409     if ($protovsn >= 4) {
4410         my $p = $i_param{'tagformat'} // '<undef>';
4411         $p eq $tagformat
4412             or badproto \*RO, "tag format mismatch: $p vs. $tagformat";
4413     }
4414
4415     die unless $i_param{'csuite'} =~ m/^$suite_re$/;
4416     $csuite = $&;
4417     push_parse_dsc $i_dscfn, 'remote dsc', $i_version;
4418
4419     my @tagwants = push_tagwants $i_version, $head, $maintview, "tag";
4420
4421     return
4422         push_mktags $i_clogp, $i_dscfn,
4423             $i_changesfn, 'remote changes',
4424             \@tagwants;
4425 }
4426
4427 sub i_want_signed_dsc_changes {
4428     rename "$i_dscfn.tmp","$i_dscfn" or die "$i_dscfn $!";
4429     sign_changes $i_changesfn;
4430     return ($i_dscfn, $i_changesfn);
4431 }
4432
4433 #---------- building etc. ----------
4434
4435 our $version;
4436 our $sourcechanges;
4437 our $dscfn;
4438
4439 #----- `3.0 (quilt)' handling -----
4440
4441 our $fakeeditorenv = 'DGIT_FAKE_EDITOR_QUILT';
4442
4443 sub quiltify_dpkg_commit ($$$;$) {
4444     my ($patchname,$author,$msg, $xinfo) = @_;
4445     $xinfo //= '';
4446
4447     mkpath '.git/dgit';
4448     my $descfn = ".git/dgit/quilt-description.tmp";
4449     open O, '>', $descfn or die "$descfn: $!";
4450     $msg =~ s/\n+/\n\n/;
4451     print O <<END or die $!;
4452 From: $author
4453 ${xinfo}Subject: $msg
4454 ---
4455
4456 END
4457     close O or die $!;
4458
4459     {
4460         local $ENV{'EDITOR'} = cmdoutput qw(realpath --), $0;
4461         local $ENV{'VISUAL'} = $ENV{'EDITOR'};
4462         local $ENV{$fakeeditorenv} = cmdoutput qw(realpath --), $descfn;
4463         runcmd @dpkgsource, qw(--commit .), $patchname;
4464     }
4465 }
4466
4467 sub quiltify_trees_differ ($$;$$$) {
4468     my ($x,$y,$finegrained,$ignorenamesr,$unrepres) = @_;
4469     # returns true iff the two tree objects differ other than in debian/
4470     # with $finegrained,
4471     # returns bitmask 01 - differ in upstream files except .gitignore
4472     #                 02 - differ in .gitignore
4473     # if $ignorenamesr is defined, $ingorenamesr->{$fn}
4474     #  is set for each modified .gitignore filename $fn
4475     # if $unrepres is defined, array ref to which is appeneded
4476     #  a list of unrepresentable changes (removals of upstream files
4477     #  (as messages)
4478     local $/=undef;
4479     my @cmd = (@git, qw(diff-tree -z));
4480     push @cmd, qw(--name-only) unless $unrepres;
4481     push @cmd, qw(-r) if $finegrained || $unrepres;
4482     push @cmd, $x, $y;
4483     my $diffs= cmdoutput @cmd;
4484     my $r = 0;
4485     my @lmodes;
4486     foreach my $f (split /\0/, $diffs) {
4487         if ($unrepres && !@lmodes) {
4488             @lmodes = $f =~ m/^\:(\w+) (\w+) \w+ \w+ / or die "$_ ?";
4489             next;
4490         }
4491         my ($oldmode,$newmode) = @lmodes;
4492         @lmodes = ();
4493
4494         next if $f =~ m#^debian(?:/.*)?$#s;
4495
4496         if ($unrepres) {
4497             eval {
4498                 die "deleted\n" unless $newmode =~ m/[^0]/;
4499                 die "not a plain file\n" unless $newmode =~ m/^10\d{4}$/;
4500                 if ($oldmode =~ m/[^0]/) {
4501                     die "mode changed\n" if $oldmode ne $newmode;
4502                 } else {
4503                     die "non-default mode\n" unless $newmode =~ m/^100644$/;
4504                 }
4505             };
4506             if ($@) {
4507                 local $/="\n"; chomp $@;
4508                 push @$unrepres, [ $f, $@ ];
4509             }
4510         }
4511
4512         my $isignore = $f =~ m#^(?:.*/)?.gitignore$#s;
4513         $r |= $isignore ? 02 : 01;
4514         $ignorenamesr->{$f}=1 if $ignorenamesr && $isignore;
4515     }
4516     printdebug "quiltify_trees_differ $x $y => $r\n";
4517     return $r;
4518 }
4519
4520 sub quiltify_tree_sentinelfiles ($) {
4521     # lists the `sentinel' files present in the tree
4522     my ($x) = @_;
4523     my $r = cmdoutput @git, qw(ls-tree --name-only), $x,
4524         qw(-- debian/rules debian/control);
4525     $r =~ s/\n/,/g;
4526     return $r;
4527 }
4528
4529 sub quiltify_splitbrain_needed () {
4530     if (!$split_brain) {
4531         progress "dgit view: changes are required...";
4532         runcmd @git, qw(checkout -q -b dgit-view);
4533         $split_brain = 1;
4534     }
4535 }
4536
4537 sub quiltify_splitbrain ($$$$$$) {
4538     my ($clogp, $unapplied, $headref, $diffbits,
4539         $editedignores, $cachekey) = @_;
4540     if ($quilt_mode !~ m/gbp|dpm/) {
4541         # treat .gitignore just like any other upstream file
4542         $diffbits = { %$diffbits };
4543         $_ = !!$_ foreach values %$diffbits;
4544     }
4545     # We would like any commits we generate to be reproducible
4546     my @authline = clogp_authline($clogp);
4547     local $ENV{GIT_COMMITTER_NAME} =  $authline[0];
4548     local $ENV{GIT_COMMITTER_EMAIL} = $authline[1];
4549     local $ENV{GIT_COMMITTER_DATE} =  $authline[2];
4550     local $ENV{GIT_AUTHOR_NAME} =  $authline[0];
4551     local $ENV{GIT_AUTHOR_EMAIL} = $authline[1];
4552     local $ENV{GIT_AUTHOR_DATE} =  $authline[2];
4553
4554     if ($quilt_mode =~ m/gbp|unapplied/ &&
4555         ($diffbits->{O2H} & 01)) {
4556         my $msg =
4557  "--quilt=$quilt_mode specified, implying patches-unapplied git tree\n".
4558  " but git tree differs from orig in upstream files.";
4559         if (!stat_exists "debian/patches") {
4560             $msg .=
4561  "\n ... debian/patches is missing; perhaps this is a patch queue branch?";
4562         }  
4563         fail $msg;
4564     }
4565     if ($quilt_mode =~ m/dpm/ &&
4566         ($diffbits->{H2A} & 01)) {
4567         fail <<END;
4568 --quilt=$quilt_mode specified, implying patches-applied git tree
4569  but git tree differs from result of applying debian/patches to upstream
4570 END
4571     }
4572     if ($quilt_mode =~ m/gbp|unapplied/ &&
4573         ($diffbits->{O2A} & 01)) { # some patches
4574         quiltify_splitbrain_needed();
4575         progress "dgit view: creating patches-applied version using gbp pq";
4576         runcmd shell_cmd 'exec >/dev/null', gbp_pq, qw(import);
4577         # gbp pq import creates a fresh branch; push back to dgit-view
4578         runcmd @git, qw(update-ref refs/heads/dgit-view HEAD);
4579         runcmd @git, qw(checkout -q dgit-view);
4580     }
4581     if ($quilt_mode =~ m/gbp|dpm/ &&
4582         ($diffbits->{O2A} & 02)) {
4583         fail <<END
4584 --quilt=$quilt_mode specified, implying that HEAD is for use with a
4585  tool which does not create patches for changes to upstream
4586  .gitignores: but, such patches exist in debian/patches.
4587 END
4588     }
4589     if (($diffbits->{O2H} & 02) && # user has modified .gitignore
4590         !($diffbits->{O2A} & 02)) { # patches do not change .gitignore
4591         quiltify_splitbrain_needed();
4592         progress "dgit view: creating patch to represent .gitignore changes";
4593         ensuredir "debian/patches";
4594         my $gipatch = "debian/patches/auto-gitignore";
4595         open GIPATCH, ">>", "$gipatch" or die "$gipatch: $!";
4596         stat GIPATCH or die "$gipatch: $!";
4597         fail "$gipatch already exists; but want to create it".
4598             " to record .gitignore changes" if (stat _)[7];
4599         print GIPATCH <<END or die "$gipatch: $!";
4600 Subject: Update .gitignore from Debian packaging branch
4601
4602 The Debian packaging git branch contains these updates to the upstream
4603 .gitignore file(s).  This patch is autogenerated, to provide these
4604 updates to users of the official Debian archive view of the package.
4605
4606 [dgit ($our_version) update-gitignore]
4607 ---
4608 END
4609         close GIPATCH or die "$gipatch: $!";
4610         runcmd shell_cmd "exec >>$gipatch", @git, qw(diff),
4611             $unapplied, $headref, "--", sort keys %$editedignores;
4612         open SERIES, "+>>", "debian/patches/series" or die $!;
4613         defined seek SERIES, -1, 2 or $!==EINVAL or die $!;
4614         my $newline;
4615         defined read SERIES, $newline, 1 or die $!;
4616         print SERIES "\n" or die $! unless $newline eq "\n";
4617         print SERIES "auto-gitignore\n" or die $!;
4618         close SERIES or die  $!;
4619         runcmd @git, qw(add -- debian/patches/series), $gipatch;
4620         commit_admin <<END
4621 Commit patch to update .gitignore
4622
4623 [dgit ($our_version) update-gitignore-quilt-fixup]
4624 END
4625     }
4626
4627     my $dgitview = git_rev_parse 'HEAD';
4628
4629     changedir '../../../..';
4630     # When we no longer need to support squeeze, use --create-reflog
4631     # instead of this:
4632     ensuredir ".git/logs/refs/dgit-intern";
4633     my $makelogfh = new IO::File ".git/logs/refs/$splitbraincache", '>>'
4634       or die $!;
4635
4636     my $oldcache = git_get_ref "refs/$splitbraincache";
4637     if ($oldcache eq $dgitview) {
4638         my $tree = cmdoutput qw(git rev-parse), "$dgitview:";
4639         # git update-ref doesn't always update, in this case.  *sigh*
4640         my $dummy = make_commit_text <<END;
4641 tree $tree
4642 parent $dgitview
4643 author Dgit <dgit\@example.com> 1000000000 +0000
4644 committer Dgit <dgit\@example.com> 1000000000 +0000
4645
4646 Dummy commit - do not use
4647 END
4648         runcmd @git, qw(update-ref -m), "dgit $our_version - dummy",
4649             "refs/$splitbraincache", $dummy;
4650     }
4651     runcmd @git, qw(update-ref -m), $cachekey, "refs/$splitbraincache",
4652         $dgitview;
4653
4654     changedir '.git/dgit/unpack/work';
4655
4656     my $saved = maybe_split_brain_save $headref, $dgitview, "converted";
4657     progress "dgit view: created ($saved)";
4658 }
4659
4660 sub quiltify ($$$$) {
4661     my ($clogp,$target,$oldtiptree,$failsuggestion) = @_;
4662
4663     # Quilt patchification algorithm
4664     #
4665     # We search backwards through the history of the main tree's HEAD
4666     # (T) looking for a start commit S whose tree object is identical
4667     # to to the patch tip tree (ie the tree corresponding to the
4668     # current dpkg-committed patch series).  For these purposes
4669     # `identical' disregards anything in debian/ - this wrinkle is
4670     # necessary because dpkg-source treates debian/ specially.
4671     #
4672     # We can only traverse edges where at most one of the ancestors'
4673     # trees differs (in changes outside in debian/).  And we cannot
4674     # handle edges which change .pc/ or debian/patches.  To avoid
4675     # going down a rathole we avoid traversing edges which introduce
4676     # debian/rules or debian/control.  And we set a limit on the
4677     # number of edges we are willing to look at.
4678     #
4679     # If we succeed, we walk forwards again.  For each traversed edge
4680     # PC (with P parent, C child) (starting with P=S and ending with
4681     # C=T) to we do this:
4682     #  - git checkout C
4683     #  - dpkg-source --commit with a patch name and message derived from C
4684     # After traversing PT, we git commit the changes which
4685     # should be contained within debian/patches.
4686
4687     # The search for the path S..T is breadth-first.  We maintain a
4688     # todo list containing search nodes.  A search node identifies a
4689     # commit, and looks something like this:
4690     #  $p = {
4691     #      Commit => $git_commit_id,
4692     #      Child => $c,                          # or undef if P=T
4693     #      Whynot => $reason_edge_PC_unsuitable, # in @nots only
4694     #      Nontrivial => true iff $p..$c has relevant changes
4695     #  };
4696
4697     my @todo;
4698     my @nots;
4699     my $sref_S;
4700     my $max_work=100;
4701     my %considered; # saves being exponential on some weird graphs
4702
4703     my $t_sentinels = quiltify_tree_sentinelfiles $target;
4704
4705     my $not = sub {
4706         my ($search,$whynot) = @_;
4707         printdebug " search NOT $search->{Commit} $whynot\n";
4708         $search->{Whynot} = $whynot;
4709         push @nots, $search;
4710         no warnings qw(exiting);
4711         next;
4712     };
4713
4714     push @todo, {
4715         Commit => $target,
4716     };
4717
4718     while (@todo) {
4719         my $c = shift @todo;
4720         next if $considered{$c->{Commit}}++;
4721
4722         $not->($c, "maximum search space exceeded") if --$max_work <= 0;
4723
4724         printdebug "quiltify investigate $c->{Commit}\n";
4725
4726         # are we done?
4727         if (!quiltify_trees_differ $c->{Commit}, $oldtiptree) {
4728             printdebug " search finished hooray!\n";
4729             $sref_S = $c;
4730             last;
4731         }
4732
4733         if ($quilt_mode eq 'nofix') {
4734             fail "quilt fixup required but quilt mode is \`nofix'\n".
4735                 "HEAD commit $c->{Commit} differs from tree implied by ".
4736                 " debian/patches (tree object $oldtiptree)";
4737         }
4738         if ($quilt_mode eq 'smash') {
4739             printdebug " search quitting smash\n";
4740             last;
4741         }
4742
4743         my $c_sentinels = quiltify_tree_sentinelfiles $c->{Commit};
4744         $not->($c, "has $c_sentinels not $t_sentinels")
4745             if $c_sentinels ne $t_sentinels;
4746
4747         my $commitdata = cmdoutput @git, qw(cat-file commit), $c->{Commit};
4748         $commitdata =~ m/\n\n/;
4749         $commitdata =~ $`;
4750         my @parents = ($commitdata =~ m/^parent (\w+)$/gm);
4751         @parents = map { { Commit => $_, Child => $c } } @parents;
4752
4753         $not->($c, "root commit") if !@parents;
4754
4755         foreach my $p (@parents) {
4756             $p->{Nontrivial}= quiltify_trees_differ $p->{Commit},$c->{Commit};
4757         }
4758         my $ndiffers = grep { $_->{Nontrivial} } @parents;
4759         $not->($c, "merge ($ndiffers nontrivial parents)") if $ndiffers > 1;
4760
4761         foreach my $p (@parents) {
4762             printdebug "considering C=$c->{Commit} P=$p->{Commit}\n";
4763
4764             my @cmd= (@git, qw(diff-tree -r --name-only),
4765                       $p->{Commit},$c->{Commit}, qw(-- debian/patches .pc));
4766             my $patchstackchange = cmdoutput @cmd;
4767             if (length $patchstackchange) {
4768                 $patchstackchange =~ s/\n/,/g;
4769                 $not->($p, "changed $patchstackchange");
4770             }
4771
4772             printdebug " search queue P=$p->{Commit} ",
4773                 ($p->{Nontrivial} ? "NT" : "triv"),"\n";
4774             push @todo, $p;
4775         }
4776     }
4777
4778     if (!$sref_S) {
4779         printdebug "quiltify want to smash\n";
4780
4781         my $abbrev = sub {
4782             my $x = $_[0]{Commit};
4783             $x =~ s/(.*?[0-9a-z]{8})[0-9a-z]*$/$1/;
4784             return $x;
4785         };
4786         my $reportnot = sub {
4787             my ($notp) = @_;
4788             my $s = $abbrev->($notp);
4789             my $c = $notp->{Child};
4790             $s .= "..".$abbrev->($c) if $c;
4791             $s .= ": ".$notp->{Whynot};
4792             return $s;
4793         };
4794         if ($quilt_mode eq 'linear') {
4795             print STDERR "$us: quilt fixup cannot be linear.  Stopped at:\n";
4796             foreach my $notp (@nots) {
4797                 print STDERR "$us:  ", $reportnot->($notp), "\n";
4798             }
4799             print STDERR "$us: $_\n" foreach @$failsuggestion;
4800             fail "quilt fixup naive history linearisation failed.\n".
4801  "Use dpkg-source --commit by hand; or, --quilt=smash for one ugly patch";
4802         } elsif ($quilt_mode eq 'smash') {
4803         } elsif ($quilt_mode eq 'auto') {
4804             progress "quilt fixup cannot be linear, smashing...";
4805         } else {
4806             die "$quilt_mode ?";
4807         }
4808
4809         my $time = $ENV{'GIT_COMMITTER_DATE'} || time;
4810         $time =~ s/\s.*//; # trim timezone from GIT_COMMITTER_DATE
4811         my $ncommits = 3;
4812         my $msg = cmdoutput @git, qw(log), "-n$ncommits";
4813
4814         quiltify_dpkg_commit "auto-$version-$target-$time",
4815             (getfield $clogp, 'Maintainer'),
4816             "Automatically generated patch ($clogp->{Version})\n".
4817             "Last (up to) $ncommits git changes, FYI:\n\n". $msg;
4818         return;
4819     }
4820
4821     progress "quiltify linearisation planning successful, executing...";
4822
4823     for (my $p = $sref_S;
4824          my $c = $p->{Child};
4825          $p = $p->{Child}) {
4826         printdebug "quiltify traverse $p->{Commit}..$c->{Commit}\n";
4827         next unless $p->{Nontrivial};
4828
4829         my $cc = $c->{Commit};
4830
4831         my $commitdata = cmdoutput @git, qw(cat-file commit), $cc;
4832         $commitdata =~ m/\n\n/ or die "$c ?";
4833         $commitdata = $`;
4834         my $msg = $'; #';
4835         $commitdata =~ m/^author (.*) \d+ [-+0-9]+$/m or die "$cc ?";
4836         my $author = $1;
4837
4838         my $commitdate = cmdoutput
4839             @git, qw(log -n1 --pretty=format:%aD), $cc;
4840
4841         $msg =~ s/^(.*)\n*/$1\n/ or die "$cc $msg ?";
4842
4843         my $strip_nls = sub { $msg =~ s/\n+$//; $msg .= "\n"; };
4844         $strip_nls->();
4845
4846         my $title = $1;
4847         my $patchname;
4848         my $patchdir;
4849
4850         my $gbp_check_suitable = sub {
4851             $_ = shift;
4852             my ($what) = @_;
4853
4854             eval {
4855                 die "contains unexpected slashes\n" if m{//} || m{/$};
4856                 die "contains leading punctuation\n" if m{^\W} || m{/\W};
4857                 die "contains bad character(s)\n" if m{[^-a-z0-9_.+=~/]}i;
4858                 die "too long" if length > 200;
4859             };
4860             return $_ unless $@;
4861             print STDERR "quiltifying commit $cc:".
4862                 " ignoring/dropping Gbp-Pq $what: $@";
4863             return undef;
4864         };
4865
4866         if ($msg =~ s/^ (?: gbp(?:-pq)? : \s* name \s+ |
4867                            gbp-pq-name: \s* )
4868                        (\S+) \s* \n //ixm) {
4869             $patchname = $gbp_check_suitable->($1, 'Name');
4870         }
4871         if ($msg =~ s/^ (?: gbp(?:-pq)? : \s* topic \s+ |
4872                            gbp-pq-topic: \s* )
4873                        (\S+) \s* \n //ixm) {
4874             $patchdir = $gbp_check_suitable->($1, 'Topic');
4875         }
4876
4877         $strip_nls->();
4878
4879         if (!defined $patchname) {
4880             $patchname = $title;
4881             $patchname =~ s/[.:]$//;
4882             use Text::Iconv;
4883             eval {
4884                 my $converter = new Text::Iconv qw(UTF-8 ASCII//TRANSLIT);
4885                 my $translitname = $converter->convert($patchname);
4886                 die unless defined $translitname;
4887                 $patchname = $translitname;
4888             };
4889             print STDERR
4890                 "dgit: patch title transliteration error: $@"
4891                 if $@;
4892             $patchname =~ y/ A-Z/-a-z/;
4893             $patchname =~ y/-a-z0-9_.+=~//cd;
4894             $patchname =~ s/^\W/x-$&/;
4895             $patchname = substr($patchname,0,40);
4896         }
4897         if (!defined $patchdir) {
4898             $patchdir = '';
4899         }
4900         if (length $patchdir) {
4901             $patchname = "$patchdir/$patchname";
4902         }
4903         if ($patchname =~ m{^(.*)/}) {
4904             mkpath "debian/patches/$1";
4905         }
4906
4907         my $index;
4908         for ($index='';
4909              stat "debian/patches/$patchname$index";
4910              $index++) { }
4911         $!==ENOENT or die "$patchname$index $!";
4912
4913         runcmd @git, qw(checkout -q), $cc;
4914
4915         # We use the tip's changelog so that dpkg-source doesn't
4916         # produce complaining messages from dpkg-parsechangelog.  None
4917         # of the information dpkg-source gets from the changelog is
4918         # actually relevant - it gets put into the original message
4919         # which dpkg-source provides our stunt editor, and then
4920         # overwritten.
4921         runcmd @git, qw(checkout -q), $target, qw(debian/changelog);
4922
4923         quiltify_dpkg_commit "$patchname$index", $author, $msg,
4924             "Date: $commitdate\n".
4925             "X-Dgit-Generated: $clogp->{Version} $cc\n";
4926
4927         runcmd @git, qw(checkout -q), $cc, qw(debian/changelog);
4928     }
4929
4930     runcmd @git, qw(checkout -q master);
4931 }
4932
4933 sub build_maybe_quilt_fixup () {
4934     my ($format,$fopts) = get_source_format;
4935     return unless madformat_wantfixup $format;
4936     # sigh
4937
4938     check_for_vendor_patches();
4939
4940     if (quiltmode_splitbrain) {
4941         fail <<END unless access_cfg_tagformats_can_splitbrain;
4942 quilt mode $quilt_mode requires split view so server needs to support
4943  both "new" and "maint" tag formats, but config says it doesn't.
4944 END
4945     }
4946
4947     my $clogp = parsechangelog();
4948     my $headref = git_rev_parse('HEAD');
4949
4950     prep_ud();
4951     changedir $ud;
4952
4953     my $upstreamversion = upstreamversion $version;
4954
4955     if ($fopts->{'single-debian-patch'}) {
4956         quilt_fixup_singlepatch($clogp, $headref, $upstreamversion);
4957     } else {
4958         quilt_fixup_multipatch($clogp, $headref, $upstreamversion);
4959     }
4960
4961     die 'bug' if $split_brain && !$need_split_build_invocation;
4962
4963     changedir '../../../..';
4964     runcmd_ordryrun_local
4965         @git, qw(pull --ff-only -q .git/dgit/unpack/work master);
4966 }
4967
4968 sub quilt_fixup_mkwork ($) {
4969     my ($headref) = @_;
4970
4971     mkdir "work" or die $!;
4972     changedir "work";
4973     mktree_in_ud_here();
4974     runcmd @git, qw(reset -q --hard), $headref;
4975 }
4976
4977 sub quilt_fixup_linkorigs ($$) {
4978     my ($upstreamversion, $fn) = @_;
4979     # calls $fn->($leafname);
4980
4981     foreach my $f (<../../../../*>) { #/){
4982         my $b=$f; $b =~ s{.*/}{};
4983         {
4984             local ($debuglevel) = $debuglevel-1;
4985             printdebug "QF linkorigs $b, $f ?\n";
4986         }
4987         next unless is_orig_file_of_vsn $b, $upstreamversion;
4988         printdebug "QF linkorigs $b, $f Y\n";
4989         link_ltarget $f, $b or die "$b $!";
4990         $fn->($b);
4991     }
4992 }
4993
4994 sub quilt_fixup_delete_pc () {
4995     runcmd @git, qw(rm -rqf .pc);
4996     commit_admin <<END
4997 Commit removal of .pc (quilt series tracking data)
4998
4999 [dgit ($our_version) upgrade quilt-remove-pc]
5000 END
5001 }
5002
5003 sub quilt_fixup_singlepatch ($$$) {
5004     my ($clogp, $headref, $upstreamversion) = @_;
5005
5006     progress "starting quiltify (single-debian-patch)";
5007
5008     # dpkg-source --commit generates new patches even if
5009     # single-debian-patch is in debian/source/options.  In order to
5010     # get it to generate debian/patches/debian-changes, it is
5011     # necessary to build the source package.
5012
5013     quilt_fixup_linkorigs($upstreamversion, sub { });
5014     quilt_fixup_mkwork($headref);
5015
5016     rmtree("debian/patches");
5017
5018     runcmd @dpkgsource, qw(-b .);
5019     changedir "..";
5020     runcmd @dpkgsource, qw(-x), (srcfn $version, ".dsc");
5021     rename srcfn("$upstreamversion", "/debian/patches"), 
5022            "work/debian/patches";
5023
5024     changedir "work";
5025     commit_quilty_patch();
5026 }
5027
5028 sub quilt_make_fake_dsc ($) {
5029     my ($upstreamversion) = @_;
5030
5031     my $fakeversion="$upstreamversion-~~DGITFAKE";
5032
5033     my $fakedsc=new IO::File 'fake.dsc', '>' or die $!;
5034     print $fakedsc <<END or die $!;
5035 Format: 3.0 (quilt)
5036 Source: $package
5037 Version: $fakeversion
5038 Files:
5039 END
5040
5041     my $dscaddfile=sub {
5042         my ($b) = @_;
5043         
5044         my $md = new Digest::MD5;
5045
5046         my $fh = new IO::File $b, '<' or die "$b $!";
5047         stat $fh or die $!;
5048         my $size = -s _;
5049
5050         $md->addfile($fh);
5051         print $fakedsc " ".$md->hexdigest." $size $b\n" or die $!;
5052     };
5053
5054     quilt_fixup_linkorigs($upstreamversion, $dscaddfile);
5055
5056     my @files=qw(debian/source/format debian/rules
5057                  debian/control debian/changelog);
5058     foreach my $maybe (qw(debian/patches debian/source/options
5059                           debian/tests/control)) {
5060         next unless stat_exists "../../../$maybe";
5061         push @files, $maybe;
5062     }
5063
5064     my $debtar= srcfn $fakeversion,'.debian.tar.gz';
5065     runcmd qw(env GZIP=-1n tar -zcf), "./$debtar", qw(-C ../../..), @files;
5066
5067     $dscaddfile->($debtar);
5068     close $fakedsc or die $!;
5069 }
5070
5071 sub quilt_check_splitbrain_cache ($$) {
5072     my ($headref, $upstreamversion) = @_;
5073     # Called only if we are in (potentially) split brain mode.
5074     # Called in $ud.
5075     # Computes the cache key and looks in the cache.
5076     # Returns ($dgit_view_commitid, $cachekey) or (undef, $cachekey)
5077
5078     my $splitbrain_cachekey;
5079     
5080     progress
5081  "dgit: split brain (separate dgit view) may be needed (--quilt=$quilt_mode).";
5082     # we look in the reflog of dgit-intern/quilt-cache
5083     # we look for an entry whose message is the key for the cache lookup
5084     my @cachekey = (qw(dgit), $our_version);
5085     push @cachekey, $upstreamversion;
5086     push @cachekey, $quilt_mode;
5087     push @cachekey, $headref;
5088
5089     push @cachekey, hashfile('fake.dsc');
5090
5091     my $srcshash = Digest::SHA->new(256);
5092     my %sfs = ( %INC, '$0(dgit)' => $0 );
5093     foreach my $sfk (sort keys %sfs) {
5094         next unless $sfk =~ m/^\$0\b/ || $sfk =~ m{^Debian/Dgit\b};
5095         $srcshash->add($sfk,"  ");
5096         $srcshash->add(hashfile($sfs{$sfk}));
5097         $srcshash->add("\n");
5098     }
5099     push @cachekey, $srcshash->hexdigest();
5100     $splitbrain_cachekey = "@cachekey";
5101
5102     my @cmd = (@git, qw(log -g), '--pretty=format:%H %gs',
5103                $splitbraincache);
5104     printdebug "splitbrain cachekey $splitbrain_cachekey\n";
5105     debugcmd "|(probably)",@cmd;
5106     my $child = open GC, "-|";  defined $child or die $!;
5107     if (!$child) {
5108         chdir '../../..' or die $!;
5109         if (!stat ".git/logs/refs/$splitbraincache") {
5110             $! == ENOENT or die $!;
5111             printdebug ">(no reflog)\n";
5112             exit 0;
5113         }
5114         exec @cmd; die $!;
5115     }
5116     while (<GC>) {
5117         chomp;
5118         printdebug ">| ", $_, "\n" if $debuglevel > 1;
5119         next unless m/^(\w+) (\S.*\S)$/ && $2 eq $splitbrain_cachekey;
5120             
5121         my $cachehit = $1;
5122         quilt_fixup_mkwork($headref);
5123         my $saved = maybe_split_brain_save $headref, $cachehit, "cache-hit";
5124         if ($cachehit ne $headref) {
5125             progress "dgit view: found cached ($saved)";
5126             runcmd @git, qw(checkout -q -b dgit-view), $cachehit;
5127             $split_brain = 1;
5128             return ($cachehit, $splitbrain_cachekey);
5129         }
5130         progress "dgit view: found cached, no changes required";
5131         return ($headref, $splitbrain_cachekey);
5132     }
5133     die $! if GC->error;
5134     failedcmd unless close GC;
5135
5136     printdebug "splitbrain cache miss\n";
5137     return (undef, $splitbrain_cachekey);
5138 }
5139
5140 sub quilt_fixup_multipatch ($$$) {
5141     my ($clogp, $headref, $upstreamversion) = @_;
5142
5143     progress "examining quilt state (multiple patches, $quilt_mode mode)";
5144
5145     # Our objective is:
5146     #  - honour any existing .pc in case it has any strangeness
5147     #  - determine the git commit corresponding to the tip of
5148     #    the patch stack (if there is one)
5149     #  - if there is such a git commit, convert each subsequent
5150     #    git commit into a quilt patch with dpkg-source --commit
5151     #  - otherwise convert all the differences in the tree into
5152     #    a single git commit
5153     #
5154     # To do this we:
5155
5156     # Our git tree doesn't necessarily contain .pc.  (Some versions of
5157     # dgit would include the .pc in the git tree.)  If there isn't
5158     # one, we need to generate one by unpacking the patches that we
5159     # have.
5160     #
5161     # We first look for a .pc in the git tree.  If there is one, we
5162     # will use it.  (This is not the normal case.)
5163     #
5164     # Otherwise need to regenerate .pc so that dpkg-source --commit
5165     # can work.  We do this as follows:
5166     #     1. Collect all relevant .orig from parent directory
5167     #     2. Generate a debian.tar.gz out of
5168     #         debian/{patches,rules,source/format,source/options}
5169     #     3. Generate a fake .dsc containing just these fields:
5170     #          Format Source Version Files
5171     #     4. Extract the fake .dsc
5172     #        Now the fake .dsc has a .pc directory.
5173     # (In fact we do this in every case, because in future we will
5174     # want to search for a good base commit for generating patches.)
5175     #
5176     # Then we can actually do the dpkg-source --commit
5177     #     1. Make a new working tree with the same object
5178     #        store as our main tree and check out the main
5179     #        tree's HEAD.
5180     #     2. Copy .pc from the fake's extraction, if necessary
5181     #     3. Run dpkg-source --commit
5182     #     4. If the result has changes to debian/, then
5183     #          - git add them them
5184     #          - git add .pc if we had a .pc in-tree
5185     #          - git commit
5186     #     5. If we had a .pc in-tree, delete it, and git commit
5187     #     6. Back in the main tree, fast forward to the new HEAD
5188
5189     # Another situation we may have to cope with is gbp-style
5190     # patches-unapplied trees.
5191     #
5192     # We would want to detect these, so we know to escape into
5193     # quilt_fixup_gbp.  However, this is in general not possible.
5194     # Consider a package with a one patch which the dgit user reverts
5195     # (with git revert or the moral equivalent).
5196     #
5197     # That is indistinguishable in contents from a patches-unapplied
5198     # tree.  And looking at the history to distinguish them is not
5199     # useful because the user might have made a confusing-looking git
5200     # history structure (which ought to produce an error if dgit can't
5201     # cope, not a silent reintroduction of an unwanted patch).
5202     #
5203     # So gbp users will have to pass an option.  But we can usually
5204     # detect their failure to do so: if the tree is not a clean
5205     # patches-applied tree, quilt linearisation fails, but the tree
5206     # _is_ a clean patches-unapplied tree, we can suggest that maybe
5207     # they want --quilt=unapplied.
5208     #
5209     # To help detect this, when we are extracting the fake dsc, we
5210     # first extract it with --skip-patches, and then apply the patches
5211     # afterwards with dpkg-source --before-build.  That lets us save a
5212     # tree object corresponding to .origs.
5213
5214     my $splitbrain_cachekey;
5215
5216     quilt_make_fake_dsc($upstreamversion);
5217
5218     if (quiltmode_splitbrain()) {
5219         my $cachehit;
5220         ($cachehit, $splitbrain_cachekey) =
5221             quilt_check_splitbrain_cache($headref, $upstreamversion);
5222         return if $cachehit;
5223     }
5224
5225     runcmd qw(sh -ec),
5226         'exec dpkg-source --no-check --skip-patches -x fake.dsc >/dev/null';
5227
5228     my $fakexdir= $package.'-'.(stripepoch $upstreamversion);
5229     rename $fakexdir, "fake" or die "$fakexdir $!";
5230
5231     changedir 'fake';
5232
5233     remove_stray_gits("source package");
5234     mktree_in_ud_here();
5235
5236     rmtree '.pc';
5237
5238     my $unapplied=git_add_write_tree();
5239     printdebug "fake orig tree object $unapplied\n";
5240
5241     ensuredir '.pc';
5242
5243     my @bbcmd = (qw(sh -ec), 'exec dpkg-source --before-build . >/dev/null');
5244     $!=0; $?=-1;
5245     if (system @bbcmd) {
5246         failedcmd @bbcmd if $? < 0;
5247         fail <<END;
5248 failed to apply your git tree's patch stack (from debian/patches/) to
5249  the corresponding upstream tarball(s).  Your source tree and .orig
5250  are probably too inconsistent.  dgit can only fix up certain kinds of
5251  anomaly (depending on the quilt mode).  See --quilt= in dgit(1).
5252 END
5253     }
5254
5255     changedir '..';
5256
5257     quilt_fixup_mkwork($headref);
5258
5259     my $mustdeletepc=0;
5260     if (stat_exists ".pc") {
5261         -d _ or die;
5262         progress "Tree already contains .pc - will use it then delete it.";
5263         $mustdeletepc=1;
5264     } else {
5265         rename '../fake/.pc','.pc' or die $!;
5266     }
5267
5268     changedir '../fake';
5269     rmtree '.pc';
5270     my $oldtiptree=git_add_write_tree();
5271     printdebug "fake o+d/p tree object $unapplied\n";
5272     changedir '../work';
5273
5274
5275     # We calculate some guesswork now about what kind of tree this might
5276     # be.  This is mostly for error reporting.
5277
5278     my %editedignores;
5279     my @unrepres;
5280     my $diffbits = {
5281         # H = user's HEAD
5282         # O = orig, without patches applied
5283         # A = "applied", ie orig with H's debian/patches applied
5284         O2H => quiltify_trees_differ($unapplied,$headref,   1,
5285                                      \%editedignores, \@unrepres),
5286         H2A => quiltify_trees_differ($headref,  $oldtiptree,1),
5287         O2A => quiltify_trees_differ($unapplied,$oldtiptree,1),
5288     };
5289
5290     my @dl;
5291     foreach my $b (qw(01 02)) {
5292         foreach my $v (qw(O2H O2A H2A)) {
5293             push @dl, ($diffbits->{$v} & $b) ? '##' : '==';
5294         }
5295     }
5296     printdebug "differences \@dl @dl.\n";
5297
5298     progress sprintf
5299 "$us: base trees orig=%.20s o+d/p=%.20s",
5300               $unapplied, $oldtiptree;
5301     progress sprintf
5302 "$us: quilt differences: src:  %s orig %s     gitignores:  %s orig %s\n".
5303 "$us: quilt differences:      HEAD %s o+d/p               HEAD %s o+d/p",
5304                              $dl[0], $dl[1],              $dl[3], $dl[4],
5305                                  $dl[2],                     $dl[5];
5306
5307     if (@unrepres) {
5308         print STDERR "dgit:  cannot represent change: $_->[1]: $_->[0]\n"
5309             foreach @unrepres;
5310         forceable_fail [qw(unrepresentable)], <<END;
5311 HEAD has changes to .orig[s] which are not representable by `3.0 (quilt)'
5312 END
5313     }
5314
5315     my @failsuggestion;
5316     if (!($diffbits->{O2H} & $diffbits->{O2A})) {
5317         push @failsuggestion, "This might be a patches-unapplied branch.";
5318     }  elsif (!($diffbits->{H2A} & $diffbits->{O2A})) {
5319         push @failsuggestion, "This might be a patches-applied branch.";
5320     }
5321     push @failsuggestion, "Maybe you need to specify one of".
5322         " --[quilt=]gbp --[quilt=]dpm --quilt=unapplied ?";
5323
5324     if (quiltmode_splitbrain()) {
5325         quiltify_splitbrain($clogp, $unapplied, $headref,
5326                             $diffbits, \%editedignores,
5327                             $splitbrain_cachekey);
5328         return;
5329     }
5330
5331     progress "starting quiltify (multiple patches, $quilt_mode mode)";
5332     quiltify($clogp,$headref,$oldtiptree,\@failsuggestion);
5333
5334     if (!open P, '>>', ".pc/applied-patches") {
5335         $!==&ENOENT or die $!;
5336     } else {
5337         close P;
5338     }
5339
5340     commit_quilty_patch();
5341
5342     if ($mustdeletepc) {
5343         quilt_fixup_delete_pc();
5344     }
5345 }
5346
5347 sub quilt_fixup_editor () {
5348     my $descfn = $ENV{$fakeeditorenv};
5349     my $editing = $ARGV[$#ARGV];
5350     open I1, '<', $descfn or die "$descfn: $!";
5351     open I2, '<', $editing or die "$editing: $!";
5352     unlink $editing or die "$editing: $!";
5353     open O, '>', $editing or die "$editing: $!";
5354     while (<I1>) { print O or die $!; } I1->error and die $!;
5355     my $copying = 0;
5356     while (<I2>) {
5357         $copying ||= m/^\-\-\- /;
5358         next unless $copying;
5359         print O or die $!;
5360     }
5361     I2->error and die $!;
5362     close O or die $1;
5363     exit 0;
5364 }
5365
5366 sub maybe_apply_patches_dirtily () {
5367     return unless $quilt_mode =~ m/gbp|unapplied/;
5368     print STDERR <<END or die $!;
5369
5370 dgit: Building, or cleaning with rules target, in patches-unapplied tree.
5371 dgit: Have to apply the patches - making the tree dirty.
5372 dgit: (Consider specifying --clean=git and (or) using dgit sbuild.)
5373
5374 END
5375     $patches_applied_dirtily = 01;
5376     $patches_applied_dirtily |= 02 unless stat_exists '.pc';
5377     runcmd qw(dpkg-source --before-build .);
5378 }
5379
5380 sub maybe_unapply_patches_again () {
5381     progress "dgit: Unapplying patches again to tidy up the tree."
5382         if $patches_applied_dirtily;
5383     runcmd qw(dpkg-source --after-build .)
5384         if $patches_applied_dirtily & 01;
5385     rmtree '.pc'
5386         if $patches_applied_dirtily & 02;
5387     $patches_applied_dirtily = 0;
5388 }
5389
5390 #----- other building -----
5391
5392 our $clean_using_builder;
5393 # ^ tree is to be cleaned by dpkg-source's builtin idea that it should
5394 #   clean the tree before building (perhaps invoked indirectly by
5395 #   whatever we are using to run the build), rather than separately
5396 #   and explicitly by us.
5397
5398 sub clean_tree () {
5399     return if $clean_using_builder;
5400     if ($cleanmode eq 'dpkg-source') {
5401         maybe_apply_patches_dirtily();
5402         runcmd_ordryrun_local @dpkgbuildpackage, qw(-T clean);
5403     } elsif ($cleanmode eq 'dpkg-source-d') {
5404         maybe_apply_patches_dirtily();
5405         runcmd_ordryrun_local @dpkgbuildpackage, qw(-d -T clean);
5406     } elsif ($cleanmode eq 'git') {
5407         runcmd_ordryrun_local @git, qw(clean -xdf);
5408     } elsif ($cleanmode eq 'git-ff') {
5409         runcmd_ordryrun_local @git, qw(clean -xdff);
5410     } elsif ($cleanmode eq 'check') {
5411         my $leftovers = cmdoutput @git, qw(clean -xdn);
5412         if (length $leftovers) {
5413             print STDERR $leftovers, "\n" or die $!;
5414             fail "tree contains uncommitted files and --clean=check specified";
5415         }
5416     } elsif ($cleanmode eq 'none') {
5417     } else {
5418         die "$cleanmode ?";
5419     }
5420 }
5421
5422 sub cmd_clean () {
5423     badusage "clean takes no additional arguments" if @ARGV;
5424     notpushing();
5425     clean_tree();
5426     maybe_unapply_patches_again();
5427 }
5428
5429 sub build_prep_early () {
5430     our $build_prep_early_done //= 0;
5431     return if $build_prep_early_done++;
5432     notpushing();
5433     badusage "-p is not allowed when building" if defined $package;
5434     my $clogp = parsechangelog();
5435     $isuite = getfield $clogp, 'Distribution';
5436     $package = getfield $clogp, 'Source';
5437     $version = getfield $clogp, 'Version';
5438     check_not_dirty();
5439 }
5440
5441 sub build_prep () {
5442     build_prep_early();
5443     clean_tree();
5444     build_maybe_quilt_fixup();
5445     if ($rmchanges) {
5446         my $pat = changespat $version;
5447         foreach my $f (glob "$buildproductsdir/$pat") {
5448             if (act_local()) {
5449                 unlink $f or fail "remove old changes file $f: $!";
5450             } else {
5451                 progress "would remove $f";
5452             }
5453         }
5454     }
5455 }
5456
5457 sub changesopts_initial () {
5458     my @opts =@changesopts[1..$#changesopts];
5459 }
5460
5461 sub changesopts_version () {
5462     if (!defined $changes_since_version) {
5463         my @vsns = archive_query('archive_query');
5464         my @quirk = access_quirk();
5465         if ($quirk[0] eq 'backports') {
5466             local $isuite = $quirk[2];
5467             local $csuite;
5468             canonicalise_suite();
5469             push @vsns, archive_query('archive_query');
5470         }
5471         if (@vsns) {
5472             @vsns = map { $_->[0] } @vsns;
5473             @vsns = sort { -version_compare($a, $b) } @vsns;
5474             $changes_since_version = $vsns[0];
5475             progress "changelog will contain changes since $vsns[0]";
5476         } else {
5477             $changes_since_version = '_';
5478             progress "package seems new, not specifying -v<version>";
5479         }
5480     }
5481     if ($changes_since_version ne '_') {
5482         return ("-v$changes_since_version");
5483     } else {
5484         return ();
5485     }
5486 }
5487
5488 sub changesopts () {
5489     return (changesopts_initial(), changesopts_version());
5490 }
5491
5492 sub massage_dbp_args ($;$) {
5493     my ($cmd,$xargs) = @_;
5494     # We need to:
5495     #
5496     #  - if we're going to split the source build out so we can
5497     #    do strange things to it, massage the arguments to dpkg-buildpackage
5498     #    so that the main build doessn't build source (or add an argument
5499     #    to stop it building source by default).
5500     #
5501     #  - add -nc to stop dpkg-source cleaning the source tree,
5502     #    unless we're not doing a split build and want dpkg-source
5503     #    as cleanmode, in which case we can do nothing
5504     #
5505     # return values:
5506     #    0 - source will NOT need to be built separately by caller
5507     #   +1 - source will need to be built separately by caller
5508     #   +2 - source will need to be built separately by caller AND
5509     #        dpkg-buildpackage should not in fact be run at all!
5510     debugcmd '#massaging#', @$cmd if $debuglevel>1;
5511 #print STDERR "MASS0 ",Dumper($cmd, $xargs, $need_split_build_invocation);
5512     if ($cleanmode eq 'dpkg-source' && !$need_split_build_invocation) {
5513         $clean_using_builder = 1;
5514         return 0;
5515     }
5516     # -nc has the side effect of specifying -b if nothing else specified
5517     # and some combinations of -S, -b, et al, are errors, rather than
5518     # later simply overriding earlie.  So we need to:
5519     #  - search the command line for these options
5520     #  - pick the last one
5521     #  - perhaps add our own as a default
5522     #  - perhaps adjust it to the corresponding non-source-building version
5523     my $dmode = '-F';
5524     foreach my $l ($cmd, $xargs) {
5525         next unless $l;
5526         @$l = grep { !(m/^-[SgGFABb]$/s and $dmode=$_) } @$l;
5527     }
5528     push @$cmd, '-nc';
5529 #print STDERR "MASS1 ",Dumper($cmd, $xargs, $dmode);
5530     my $r = 0;
5531     if ($need_split_build_invocation) {
5532         printdebug "massage split $dmode.\n";
5533         $r = $dmode =~ m/[S]/     ? +2 :
5534              $dmode =~ y/gGF/ABb/ ? +1 :
5535              $dmode =~ m/[ABb]/   ?  0 :
5536              die "$dmode ?";
5537     }
5538     printdebug "massage done $r $dmode.\n";
5539     push @$cmd, $dmode;
5540 #print STDERR "MASS2 ",Dumper($cmd, $xargs, $r);
5541     return $r;
5542 }
5543
5544 sub in_parent (&) {
5545     my ($fn) = @_;
5546     my $wasdir = must_getcwd();
5547     changedir "..";
5548     $fn->();
5549     changedir $wasdir;
5550 }    
5551
5552 sub postbuild_mergechanges ($) { # must run with CWD=.. (eg in in_parent)
5553     my ($msg_if_onlyone) = @_;
5554     # If there is only one .changes file, fail with $msg_if_onlyone,
5555     # or if that is undef, be a no-op.
5556     # Returns the changes file to report to the user.
5557     my $pat = changespat $version;
5558     my @changesfiles = glob $pat;
5559     @changesfiles = sort {
5560         ($b =~ m/_source\.changes$/ <=> $a =~ m/_source\.changes$/)
5561             or $a cmp $b
5562     } @changesfiles;
5563     my $result;
5564     if (@changesfiles==1) {
5565         fail <<END.$msg_if_onlyone if defined $msg_if_onlyone;
5566 only one changes file from build (@changesfiles)
5567 END
5568         $result = $changesfiles[0];
5569     } elsif (@changesfiles==2) {
5570         my $binchanges = parsecontrol($changesfiles[1], "binary changes file");
5571         foreach my $l (split /\n/, getfield $binchanges, 'Files') {
5572             fail "$l found in binaries changes file $binchanges"
5573                 if $l =~ m/\.dsc$/;
5574         }
5575         runcmd_ordryrun_local @mergechanges, @changesfiles;
5576         my $multichanges = changespat $version,'multi';
5577         if (act_local()) {
5578             stat_exists $multichanges or fail "$multichanges: $!";
5579             foreach my $cf (glob $pat) {
5580                 next if $cf eq $multichanges;
5581                 rename "$cf", "$cf.inmulti" or fail "$cf\{,.inmulti}: $!";
5582             }
5583         }
5584         $result = $multichanges;
5585     } else {
5586         fail "wrong number of different changes files (@changesfiles)";
5587     }
5588     printdone "build successful, results in $result\n" or die $!;
5589 }
5590
5591 sub midbuild_checkchanges () {
5592     my $pat = changespat $version;
5593     return if $rmchanges;
5594     my @unwanted = map { s#^\.\./##; $_; } glob "../$pat";
5595     @unwanted = grep { $_ ne changespat $version,'source' } @unwanted;
5596     fail <<END
5597 changes files other than source matching $pat already present; building would result in ambiguity about the intended results.
5598 Suggest you delete @unwanted.
5599 END
5600         if @unwanted;
5601 }
5602
5603 sub midbuild_checkchanges_vanilla ($) {
5604     my ($wantsrc) = @_;
5605     midbuild_checkchanges() if $wantsrc == 1;
5606 }
5607
5608 sub postbuild_mergechanges_vanilla ($) {
5609     my ($wantsrc) = @_;
5610     if ($wantsrc == 1) {
5611         in_parent {
5612             postbuild_mergechanges(undef);
5613         };
5614     } else {
5615         printdone "build successful\n";
5616     }
5617 }
5618
5619 sub cmd_build {
5620     my @dbp = (@dpkgbuildpackage, qw(-us -uc), changesopts_initial(), @ARGV);
5621     my $wantsrc = massage_dbp_args \@dbp;
5622     if ($wantsrc > 0) {
5623         build_source();
5624         midbuild_checkchanges_vanilla $wantsrc;
5625     } else {
5626         build_prep();
5627     }
5628     if ($wantsrc < 2) {
5629         push @dbp, changesopts_version();
5630         maybe_apply_patches_dirtily();
5631         runcmd_ordryrun_local @dbp;
5632     }
5633     maybe_unapply_patches_again();
5634     postbuild_mergechanges_vanilla $wantsrc;
5635 }
5636
5637 sub pre_gbp_build {
5638     $quilt_mode //= 'gbp';
5639 }
5640
5641 sub cmd_gbp_build {
5642     build_prep_early();
5643
5644     # gbp can make .origs out of thin air.  In my tests it does this
5645     # even for a 1.0 format package, with no origs present.  So I
5646     # guess it keys off just the version number.  We don't know
5647     # exactly what .origs ought to exist, but let's assume that we
5648     # should run gbp if: the version has an upstream part and the main
5649     # orig is absent.
5650     my $upstreamversion = upstreamversion $version;
5651     my $origfnpat = srcfn $upstreamversion, '.orig.tar.*';
5652     my $gbp_make_orig = $version =~ m/-/ && !(() = glob "../$origfnpat");
5653
5654     if ($gbp_make_orig) {
5655         clean_tree();
5656         $cleanmode = 'none'; # don't do it again
5657         $need_split_build_invocation = 1;
5658     }
5659
5660     my @dbp = @dpkgbuildpackage;
5661
5662     my $wantsrc = massage_dbp_args \@dbp, \@ARGV;
5663
5664     if (!length $gbp_build[0]) {
5665         if (length executable_on_path('git-buildpackage')) {
5666             $gbp_build[0] = qw(git-buildpackage);
5667         } else {
5668             $gbp_build[0] = 'gbp buildpackage';
5669         }
5670     }
5671     my @cmd = opts_opt_multi_cmd @gbp_build;
5672
5673     push @cmd, (qw(-us -uc --git-no-sign-tags), "--git-builder=@dbp");
5674
5675     if ($gbp_make_orig) {
5676         ensuredir '.git/dgit';
5677         my $ok = '.git/dgit/origs-gen-ok';
5678         unlink $ok or $!==&ENOENT or die $!;
5679         my @origs_cmd = @cmd;
5680         push @origs_cmd, qw(--git-cleaner=true);
5681         push @origs_cmd, "--git-prebuild=touch $ok .git/dgit/no-such-dir/ok";
5682         push @origs_cmd, @ARGV;
5683         if (act_local()) {
5684             debugcmd @origs_cmd;
5685             system @origs_cmd;
5686             do { local $!; stat_exists $ok; }
5687                 or failedcmd @origs_cmd;
5688         } else {
5689             dryrun_report @origs_cmd;
5690         }
5691     }
5692
5693     if ($wantsrc > 0) {
5694         build_source();
5695         midbuild_checkchanges_vanilla $wantsrc;
5696     } else {
5697         if (!$clean_using_builder) {
5698             push @cmd, '--git-cleaner=true';
5699         }
5700         build_prep();
5701     }
5702     maybe_unapply_patches_again();
5703     if ($wantsrc < 2) {
5704         push @cmd, changesopts();
5705         runcmd_ordryrun_local @cmd, @ARGV;
5706     }
5707     postbuild_mergechanges_vanilla $wantsrc;
5708 }
5709 sub cmd_git_build { cmd_gbp_build(); } # compatibility with <= 1.0
5710
5711 sub build_source {
5712     my $our_cleanmode = $cleanmode;
5713     if ($need_split_build_invocation) {
5714         # Pretend that clean is being done some other way.  This
5715         # forces us not to try to use dpkg-buildpackage to clean and
5716         # build source all in one go; and instead we run dpkg-source
5717         # (and build_prep() will do the clean since $clean_using_builder
5718         # is false).
5719         $our_cleanmode = 'ELSEWHERE';
5720     }
5721     if ($our_cleanmode =~ m/^dpkg-source/) {
5722         # dpkg-source invocation (below) will clean, so build_prep shouldn't
5723         $clean_using_builder = 1;
5724     }
5725     build_prep();
5726     $sourcechanges = changespat $version,'source';
5727     if (act_local()) {
5728         unlink "../$sourcechanges" or $!==ENOENT
5729             or fail "remove $sourcechanges: $!";
5730     }
5731     $dscfn = dscfn($version);
5732     if ($our_cleanmode eq 'dpkg-source') {
5733         maybe_apply_patches_dirtily();
5734         runcmd_ordryrun_local @dpkgbuildpackage, qw(-us -uc -S),
5735             changesopts();
5736     } elsif ($our_cleanmode eq 'dpkg-source-d') {
5737         maybe_apply_patches_dirtily();
5738         runcmd_ordryrun_local @dpkgbuildpackage, qw(-us -uc -S -d),
5739             changesopts();
5740     } else {
5741         my @cmd = (@dpkgsource, qw(-b --));
5742         if ($split_brain) {
5743             changedir $ud;
5744             runcmd_ordryrun_local @cmd, "work";
5745             my @udfiles = <${package}_*>;
5746             changedir "../../..";
5747             foreach my $f (@udfiles) {
5748                 printdebug "source copy, found $f\n";
5749                 next unless
5750                     $f eq $dscfn or
5751                     ($f =~ m/\.debian\.tar(?:\.\w+)$/ &&
5752                      $f eq srcfn($version, $&));
5753                 printdebug "source copy, found $f - renaming\n";
5754                 rename "$ud/$f", "../$f" or $!==ENOENT
5755                     or fail "put in place new source file ($f): $!";
5756             }
5757         } else {
5758             my $pwd = must_getcwd();
5759             my $leafdir = basename $pwd;
5760             changedir "..";
5761             runcmd_ordryrun_local @cmd, $leafdir;
5762             changedir $pwd;
5763         }
5764         runcmd_ordryrun_local qw(sh -ec),
5765             'exec >$1; shift; exec "$@"','x',
5766             "../$sourcechanges",
5767             @dpkggenchanges, qw(-S), changesopts();
5768     }
5769 }
5770
5771 sub cmd_build_source {
5772     badusage "build-source takes no additional arguments" if @ARGV;
5773     build_source();
5774     maybe_unapply_patches_again();
5775     printdone "source built, results in $dscfn and $sourcechanges";
5776 }
5777
5778 sub cmd_sbuild {
5779     build_source();
5780     midbuild_checkchanges();
5781     in_parent {
5782         if (act_local()) {
5783             stat_exists $dscfn or fail "$dscfn (in parent directory): $!";
5784             stat_exists $sourcechanges
5785                 or fail "$sourcechanges (in parent directory): $!";
5786         }
5787         runcmd_ordryrun_local @sbuild, qw(-d), $isuite, @ARGV, $dscfn;
5788     };
5789     maybe_unapply_patches_again();
5790     in_parent {
5791         postbuild_mergechanges(<<END);
5792 perhaps you need to pass -A ?  (sbuild's default is to build only
5793 arch-specific binaries; dgit 1.4 used to override that.)
5794 END
5795     };
5796 }    
5797
5798 sub cmd_quilt_fixup {
5799     badusage "incorrect arguments to dgit quilt-fixup" if @ARGV;
5800     my $clogp = parsechangelog();
5801     $version = getfield $clogp, 'Version';
5802     $package = getfield $clogp, 'Source';
5803     check_not_dirty();
5804     clean_tree();
5805     build_maybe_quilt_fixup();
5806 }
5807
5808 sub cmd_import_dsc {
5809     my $needsig = 0;
5810
5811     while (@ARGV) {
5812         last unless $ARGV[0] =~ m/^-/;
5813         $_ = shift @ARGV;
5814         last if m/^--?$/;
5815         if (m/^--require-valid-signature$/) {
5816             $needsig = 1;
5817         } else {
5818             badusage "unknown dgit import-dsc sub-option \`$_'";
5819         }
5820     }
5821
5822     badusage "usage: dgit import-dsc .../PATH/TO/.DSC BRANCH" unless @ARGV==2;
5823     my ($dscfn, $dstbranch) = @ARGV;
5824
5825     badusage "dry run makes no sense with import-dsc" unless act_local();
5826
5827     my $force = $dstbranch =~ s/^\+//   ? +1 :
5828                 $dstbranch =~ s/^\.\.// ? -1 :
5829                                            0;
5830     my $info = $force ? " $&" : '';
5831     $info = "$dscfn$info";
5832
5833     my $specbranch = $dstbranch;
5834     $dstbranch = "refs/heads/$dstbranch" unless $dstbranch =~ m#^refs/#;
5835     $dstbranch = cmdoutput @git, qw(check-ref-format --normalize), $dstbranch;
5836
5837     my @symcmd = (@git, qw(symbolic-ref -q HEAD));
5838     my $chead = cmdoutput_errok @symcmd;
5839     defined $chead or $?==256 or failedcmd @symcmd;
5840
5841     fail "$dstbranch is checked out - will not update it"
5842         if defined $chead and $chead eq $dstbranch;
5843
5844     my $oldhash = git_get_ref $dstbranch;
5845
5846     open D, "<", $dscfn or fail "open import .dsc ($dscfn): $!";
5847     $dscdata = do { local $/ = undef; <D>; };
5848     D->error and fail "read $dscfn: $!";
5849     close C;
5850
5851     # we don't normally need this so import it here
5852     use Dpkg::Source::Package;
5853     my $dp = new Dpkg::Source::Package filename => $dscfn,
5854         require_valid_signature => $needsig;
5855     {
5856         local $SIG{__WARN__} = sub {
5857             print STDERR $_[0];
5858             return unless $needsig;
5859             fail "import-dsc signature check failed";
5860         };
5861         if (!$dp->is_signed()) {
5862             warn "$us: warning: importing unsigned .dsc\n";
5863         } else {
5864             my $r = $dp->check_signature();
5865             die "->check_signature => $r" if $needsig && $r;
5866         }
5867     }
5868
5869     parse_dscdata();
5870
5871     my $dgit_commit = $dsc->{$ourdscfield[0]};
5872     if (defined $dgit_commit && 
5873         !forceing [qw(import-dsc-with-dgit-field)]) {
5874         $dgit_commit =~ m/\w+/ or fail "invalid hash in .dsc";
5875         progress "dgit: import-dsc of .dsc with Dgit field, using git hash";
5876         my @cmd = (qw(sh -ec),
5877                    "echo $dgit_commit | git cat-file --batch-check");
5878         my $objgot = cmdoutput @cmd;
5879         if ($objgot =~ m#^\w+ missing\b#) {
5880             fail <<END
5881 .dsc contains Dgit field referring to object $dgit_commit
5882 Your git tree does not have that object.  Try `git fetch' from a
5883 plausible server (browse.dgit.d.o? alioth?), and try the import-dsc again.
5884 END
5885         }
5886         if ($oldhash && !is_fast_fwd $oldhash, $dgit_commit) {
5887             if ($force > 0) {
5888                 progress "Not fast forward, forced update.";
5889             } else {
5890                 fail "Not fast forward to $dgit_commit";
5891             }
5892         }
5893         @cmd = (@git, qw(update-ref -m), "dgit import-dsc (Dgit): $info",
5894                 $dstbranch, $dgit_commit);
5895         runcmd @cmd;
5896         progress "dgit: import-dsc updated git ref $dstbranch";
5897         return 0;
5898     }
5899
5900     fail <<END
5901 Branch $dstbranch already exists
5902 Specify ..$specbranch for a pseudo-merge, binding in existing history
5903 Specify  +$specbranch to overwrite, discarding existing history
5904 END
5905         if $oldhash && !$force;
5906
5907     $package = getfield $dsc, 'Source';
5908     my @dfi = dsc_files_info();
5909     foreach my $fi (@dfi) {
5910         my $f = $fi->{Filename};
5911         my $here = "../$f";
5912         next if lstat $here;
5913         fail "stat $here: $!" unless $! == ENOENT;
5914         my $there = $dscfn;
5915         if ($dscfn =~ m#^(?:\./+)?\.\./+#) {
5916             $there = $';
5917         } elsif ($dscfn =~ m#^/#) {
5918             $there = $dscfn;
5919         } else {
5920             fail "cannot import $dscfn which seems to be inside working tree!";
5921         }
5922         $there =~ s#/+[^/]+$## or
5923             fail "cannot import $dscfn which seems to not have a basename";
5924         $there .= "/$f";
5925         symlink $there, $here or fail "symlink $there to $here: $!";
5926         progress "made symlink $here -> $there";
5927 #       print STDERR Dumper($fi);
5928     }
5929     my @mergeinputs = generate_commits_from_dsc();
5930     die unless @mergeinputs == 1;
5931
5932     my $newhash = $mergeinputs[0]{Commit};
5933
5934     if ($oldhash) {
5935         if ($force > 0) {
5936             progress "Import, forced update - synthetic orphan git history.";
5937         } elsif ($force < 0) {
5938             progress "Import, merging.";
5939             my $tree = cmdoutput @git, qw(rev-parse), "$newhash:";
5940             my $version = getfield $dsc, 'Version';
5941             $newhash = make_commit_text <<END;
5942 tree $tree
5943 parent $newhash
5944 parent $oldhash
5945
5946 Merge $package ($version) import into $dstbranch
5947 END
5948         } else {
5949             die; # caught earlier
5950         }
5951     }
5952
5953     my @cmd = (@git, qw(update-ref -m), "dgit import-dsc: $info",
5954                $dstbranch, $newhash);
5955     runcmd @cmd;
5956     progress "dgit: import-dsc results are in in git ref $dstbranch";
5957 }
5958
5959 sub cmd_archive_api_query {
5960     badusage "need only 1 subpath argument" unless @ARGV==1;
5961     my ($subpath) = @ARGV;
5962     my @cmd = archive_api_query_cmd($subpath);
5963     push @cmd, qw(-f);
5964     debugcmd ">",@cmd;
5965     exec @cmd or fail "exec curl: $!\n";
5966 }
5967
5968 sub cmd_clone_dgit_repos_server {
5969     badusage "need destination argument" unless @ARGV==1;
5970     my ($destdir) = @ARGV;
5971     $package = '_dgit-repos-server';
5972     my @cmd = (@git, qw(clone), access_giturl(), $destdir);
5973     debugcmd ">",@cmd;
5974     exec @cmd or fail "exec git clone: $!\n";
5975 }
5976
5977 sub cmd_setup_mergechangelogs {
5978     badusage "no arguments allowed to dgit setup-mergechangelogs" if @ARGV;
5979     setup_mergechangelogs(1);
5980 }
5981
5982 sub cmd_setup_useremail {
5983     badusage "no arguments allowed to dgit setup-mergechangelogs" if @ARGV;
5984     setup_useremail(1);
5985 }
5986
5987 sub cmd_setup_new_tree {
5988     badusage "no arguments allowed to dgit setup-tree" if @ARGV;
5989     setup_new_tree();
5990 }
5991
5992 #---------- argument parsing and main program ----------
5993
5994 sub cmd_version {
5995     print "dgit version $our_version\n" or die $!;
5996     exit 0;
5997 }
5998
5999 our (%valopts_long, %valopts_short);
6000 our @rvalopts;
6001
6002 sub defvalopt ($$$$) {
6003     my ($long,$short,$val_re,$how) = @_;
6004     my $oi = { Long => $long, Short => $short, Re => $val_re, How => $how };
6005     $valopts_long{$long} = $oi;
6006     $valopts_short{$short} = $oi;
6007     # $how subref should:
6008     #   do whatever assignemnt or thing it likes with $_[0]
6009     #   if the option should not be passed on to remote, @rvalopts=()
6010     # or $how can be a scalar ref, meaning simply assign the value
6011 }
6012
6013 defvalopt '--since-version', '-v', '[^_]+|_', \$changes_since_version;
6014 defvalopt '--distro',        '-d', '.+',      \$idistro;
6015 defvalopt '',                '-k', '.+',      \$keyid;
6016 defvalopt '--existing-package','', '.*',      \$existing_package;
6017 defvalopt '--build-products-dir','','.*',     \$buildproductsdir;
6018 defvalopt '--clean',       '', $cleanmode_re, \$cleanmode;
6019 defvalopt '--package',   '-p',   $package_re, \$package;
6020 defvalopt '--quilt',     '', $quilt_modes_re, \$quilt_mode;
6021
6022 defvalopt '', '-C', '.+', sub {
6023     ($changesfile) = (@_);
6024     if ($changesfile =~ s#^(.*)/##) {
6025         $buildproductsdir = $1;
6026     }
6027 };
6028
6029 defvalopt '--initiator-tempdir','','.*', sub {
6030     ($initiator_tempdir) = (@_);
6031     $initiator_tempdir =~ m#^/# or
6032         badusage "--initiator-tempdir must be used specify an".
6033         " absolute, not relative, directory."
6034 };
6035
6036 sub parseopts () {
6037     my $om;
6038
6039     if (defined $ENV{'DGIT_SSH'}) {
6040         @ssh = string_to_ssh $ENV{'DGIT_SSH'};
6041     } elsif (defined $ENV{'GIT_SSH'}) {
6042         @ssh = ($ENV{'GIT_SSH'});
6043     }
6044
6045     my $oi;
6046     my $val;
6047     my $valopt = sub {
6048         my ($what) = @_;
6049         @rvalopts = ($_);
6050         if (!defined $val) {
6051             badusage "$what needs a value" unless @ARGV;
6052             $val = shift @ARGV;
6053             push @rvalopts, $val;
6054         }
6055         badusage "bad value \`$val' for $what" unless
6056             $val =~ m/^$oi->{Re}$(?!\n)/s;
6057         my $how = $oi->{How};
6058         if (ref($how) eq 'SCALAR') {
6059             $$how = $val;
6060         } else {
6061             $how->($val);
6062         }
6063         push @ropts, @rvalopts;
6064     };
6065
6066     while (@ARGV) {
6067         last unless $ARGV[0] =~ m/^-/;
6068         $_ = shift @ARGV;
6069         last if m/^--?$/;
6070         if (m/^--/) {
6071             if (m/^--dry-run$/) {
6072                 push @ropts, $_;
6073                 $dryrun_level=2;
6074             } elsif (m/^--damp-run$/) {
6075                 push @ropts, $_;
6076                 $dryrun_level=1;
6077             } elsif (m/^--no-sign$/) {
6078                 push @ropts, $_;
6079                 $sign=0;
6080             } elsif (m/^--help$/) {
6081                 cmd_help();
6082             } elsif (m/^--version$/) {
6083                 cmd_version();
6084             } elsif (m/^--new$/) {
6085                 push @ropts, $_;
6086                 $new_package=1;
6087             } elsif (m/^--([-0-9a-z]+)=(.+)/s &&
6088                      ($om = $opts_opt_map{$1}) &&
6089                      length $om->[0]) {
6090                 push @ropts, $_;
6091                 $om->[0] = $2;
6092             } elsif (m/^--([-0-9a-z]+):(.*)/s &&
6093                      !$opts_opt_cmdonly{$1} &&
6094                      ($om = $opts_opt_map{$1})) {
6095                 push @ropts, $_;
6096                 push @$om, $2;
6097             } elsif (m/^--(gbp|dpm)$/s) {
6098                 push @ropts, "--quilt=$1";
6099                 $quilt_mode = $1;
6100             } elsif (m/^--ignore-dirty$/s) {
6101                 push @ropts, $_;
6102                 $ignoredirty = 1;
6103             } elsif (m/^--no-quilt-fixup$/s) {
6104                 push @ropts, $_;
6105                 $quilt_mode = 'nocheck';
6106             } elsif (m/^--no-rm-on-error$/s) {
6107                 push @ropts, $_;
6108                 $rmonerror = 0;
6109             } elsif (m/^--overwrite$/s) {
6110                 push @ropts, $_;
6111                 $overwrite_version = '';
6112             } elsif (m/^--overwrite=(.+)$/s) {
6113                 push @ropts, $_;
6114                 $overwrite_version = $1;
6115             } elsif (m/^--dep14tag$/s) {
6116                 push @ropts, $_;
6117                 $dodep14tag= 'want';
6118             } elsif (m/^--no-dep14tag$/s) {
6119                 push @ropts, $_;
6120                 $dodep14tag= 'no';
6121             } elsif (m/^--always-dep14tag$/s) {
6122                 push @ropts, $_;
6123                 $dodep14tag= 'always';
6124             } elsif (m/^--delayed=(\d+)$/s) {
6125                 push @ropts, $_;
6126                 push @dput, $_;
6127             } elsif (m/^--dgit-view-save=(.+)$/s) {
6128                 push @ropts, $_;
6129                 $split_brain_save = $1;
6130                 $split_brain_save =~ s#^(?!refs/)#refs/heads/#;
6131             } elsif (m/^--(no-)?rm-old-changes$/s) {
6132                 push @ropts, $_;
6133                 $rmchanges = !$1;
6134             } elsif (m/^--deliberately-($deliberately_re)$/s) {
6135                 push @ropts, $_;
6136                 push @deliberatelies, $&;
6137             } elsif (m/^--force-(.*)/ && defined $forceopts{$1}) {
6138                 push @ropts, $&;
6139                 $forceopts{$1} = 1;
6140                 $_='';
6141             } elsif (m/^--force-/) {
6142                 print STDERR
6143                     "$us: warning: ignoring unknown force option $_\n";
6144                 $_='';
6145             } elsif (m/^--dgit-tag-format=(old|new)$/s) {
6146                 # undocumented, for testing
6147                 push @ropts, $_;
6148                 $tagformat_want = [ $1, 'command line', 1 ];
6149                 # 1 menas overrides distro configuration
6150             } elsif (m/^--always-split-source-build$/s) {
6151                 # undocumented, for testing
6152                 push @ropts, $_;
6153                 $need_split_build_invocation = 1;
6154             } elsif (m/^(--[-0-9a-z]+)(=|$)/ && ($oi = $valopts_long{$1})) {
6155                 $val = $2 ? $' : undef; #';
6156                 $valopt->($oi->{Long});
6157             } else {
6158                 badusage "unknown long option \`$_'";
6159             }
6160         } else {
6161             while (m/^-./s) {
6162                 if (s/^-n/-/) {
6163                     push @ropts, $&;
6164                     $dryrun_level=2;
6165                 } elsif (s/^-L/-/) {
6166                     push @ropts, $&;
6167                     $dryrun_level=1;
6168                 } elsif (s/^-h/-/) {
6169                     cmd_help();
6170                 } elsif (s/^-D/-/) {
6171                     push @ropts, $&;
6172                     $debuglevel++;
6173                     enabledebug();
6174                 } elsif (s/^-N/-/) {
6175                     push @ropts, $&;
6176                     $new_package=1;
6177                 } elsif (m/^-m/) {
6178                     push @ropts, $&;
6179                     push @changesopts, $_;
6180                     $_ = '';
6181                 } elsif (s/^-wn$//s) {
6182                     push @ropts, $&;
6183                     $cleanmode = 'none';
6184                 } elsif (s/^-wg$//s) {
6185                     push @ropts, $&;
6186                     $cleanmode = 'git';
6187                 } elsif (s/^-wgf$//s) {
6188                     push @ropts, $&;
6189                     $cleanmode = 'git-ff';
6190                 } elsif (s/^-wd$//s) {
6191                     push @ropts, $&;
6192                     $cleanmode = 'dpkg-source';
6193                 } elsif (s/^-wdd$//s) {
6194                     push @ropts, $&;
6195                     $cleanmode = 'dpkg-source-d';
6196                 } elsif (s/^-wc$//s) {
6197                     push @ropts, $&;
6198                     $cleanmode = 'check';
6199                 } elsif (s/^-c([^=]*)\=(.*)$//s) {
6200                     push @git, '-c', $&;
6201                     $gitcfgs{cmdline}{$1} = [ $2 ];
6202                 } elsif (s/^-c([^=]+)$//s) {
6203                     push @git, '-c', $&;
6204                     $gitcfgs{cmdline}{$1} = [ 'true' ];
6205                 } elsif (m/^-[a-zA-Z]/ && ($oi = $valopts_short{$&})) {
6206                     $val = $'; #';
6207                     $val = undef unless length $val;
6208                     $valopt->($oi->{Short});
6209                     $_ = '';
6210                 } else {
6211                     badusage "unknown short option \`$_'";
6212                 }
6213             }
6214         }
6215     }
6216 }
6217
6218 sub check_env_sanity () {
6219     my $blocked = new POSIX::SigSet;
6220     sigprocmask SIG_UNBLOCK, $blocked, $blocked or die $!;
6221
6222     eval {
6223         foreach my $name (qw(PIPE CHLD)) {
6224             my $signame = "SIG$name";
6225             my $signum = eval "POSIX::$signame" // die;
6226             ($SIG{$name} // 'DEFAULT') eq 'DEFAULT' or
6227                 die "$signame is set to something other than SIG_DFL\n";
6228             $blocked->ismember($signum) and
6229                 die "$signame is blocked\n";
6230         }
6231     };
6232     return unless $@;
6233     chomp $@;
6234     fail <<END;
6235 On entry to dgit, $@
6236 This is a bug produced by something in in your execution environment.
6237 Giving up.
6238 END
6239 }
6240
6241
6242 sub finalise_opts_opts () {
6243     foreach my $k (keys %opts_opt_map) {
6244         my $om = $opts_opt_map{$k};
6245
6246         my $v = access_cfg("cmd-$k", 'RETURN-UNDEF');
6247         if (defined $v) {
6248             badcfg "cannot set command for $k"
6249                 unless length $om->[0];
6250             $om->[0] = $v;
6251         }
6252
6253         foreach my $c (access_cfg_cfgs("opts-$k")) {
6254             my @vl =
6255                 map { $_ ? @$_ : () }
6256                 map { $gitcfgs{$_}{$c} }
6257                 reverse @gitcfgsources;
6258             printdebug "CL $c ", (join " ", map { shellquote } @vl),
6259                 "\n" if $debuglevel >= 4;
6260             next unless @vl;
6261             badcfg "cannot configure options for $k"
6262                 if $opts_opt_cmdonly{$k};
6263             my $insertpos = $opts_cfg_insertpos{$k};
6264             @$om = ( @$om[0..$insertpos-1],
6265                      @vl,
6266                      @$om[$insertpos..$#$om] );
6267         }
6268     }
6269 }
6270
6271 if ($ENV{$fakeeditorenv}) {
6272     git_slurp_config();
6273     quilt_fixup_editor();
6274 }
6275
6276 parseopts();
6277 check_env_sanity();
6278 git_slurp_config();
6279
6280 print STDERR "DRY RUN ONLY\n" if $dryrun_level > 1;
6281 print STDERR "DAMP RUN - WILL MAKE LOCAL (UNSIGNED) CHANGES\n"
6282     if $dryrun_level == 1;
6283 if (!@ARGV) {
6284     print STDERR $helpmsg or die $!;
6285     exit 8;
6286 }
6287 my $cmd = shift @ARGV;
6288 $cmd =~ y/-/_/;
6289
6290 my $pre_fn = ${*::}{"pre_$cmd"};
6291 $pre_fn->() if $pre_fn;
6292
6293 if (!defined $rmchanges) {
6294     local $access_forpush;
6295     $rmchanges = access_cfg_bool(0, 'rm-old-changes');
6296 }
6297
6298 if (!defined $quilt_mode) {
6299     local $access_forpush;
6300     $quilt_mode = cfg('dgit.force.quilt-mode', 'RETURN-UNDEF')
6301         // access_cfg('quilt-mode', 'RETURN-UNDEF')
6302         // 'linear';
6303     $quilt_mode =~ m/^($quilt_modes_re)$/ 
6304         or badcfg "unknown quilt-mode \`$quilt_mode'";
6305     $quilt_mode = $1;
6306 }
6307
6308 if (!defined $dodep14tag) {
6309     local $access_forpush;
6310     $dodep14tag = access_cfg('dep14tag', 'RETURN-UNDEF') // 'want';
6311     $dodep14tag =~ m/^($dodep14tag_re)$/ 
6312         or badcfg "unknown dep14tag setting \`$dodep14tag'";
6313     $dodep14tag = $1;
6314 }
6315
6316 $need_split_build_invocation ||= quiltmode_splitbrain();
6317
6318 if (!defined $cleanmode) {
6319     local $access_forpush;
6320     $cleanmode = access_cfg('clean-mode', 'RETURN-UNDEF');
6321     $cleanmode //= 'dpkg-source';
6322
6323     badcfg "unknown clean-mode \`$cleanmode'" unless
6324         $cleanmode =~ m/^($cleanmode_re)$(?!\n)/s;
6325 }
6326
6327 my $fn = ${*::}{"cmd_$cmd"};
6328 $fn or badusage "unknown operation $cmd";
6329 $fn->();