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