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