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