chiark / gitweb /
b9cef978d1f0fed5970f2da7231e1e6162d8aa84
[dgit.git] / git-debrebase
1 #!/usr/bin/perl -w
2 # git-debrebase
3 # Script helping make fast-forwarding histories while still rebasing
4 # upstream deltas when working on Debian packaging
5 #
6 # Copyright (C)2017 Ian Jackson
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 #    git-debrebase new-upstreams-v0 \
22 #             NEW-VERSION ORIG-COMMITISH
23 #            [EXTRA-ORIG-NAME EXTRA-ORIG-COMMITISH ...]
24
25 # usages:
26 #    git-debrebase status
27 #    git-debrebase start       # like ffqrebase start + debrebase launder
28 #    git-debrebase new-upstream [stuff]  # see below
29 #    git-debrebase <git-rebase options>  # does debrebase start if necessary
30 #
31 #    git-debrebase analyse
32 #    git-debrebase launder     # prints breakwater tip
33 #    git-debrebase create-new-upstream-breakwater [-f] <upstreaminfo>...
34 #
35 # <upstreaminfo> is
36 #    [,][<subdir>:][+]<commitid>[,...]
37 #
38 # if initial comma is supplied, entries are not positional.  Unspecified
39 # <subdir> means root (and there may be only one).
40 # xxx want auto branch names
41 # xxx too complicated
42 # how about for now
43 #    [+]<commit> [<subdir/> [+]<commit>...]
44 # ?  plus options
45 #     --new-upstream-different-subtrees
46 #
47 #  automatic case
48 #       git-debrebase new-upstream
49 #             - previous breakwater merge must be gdr-generated
50 #             - orig set is the same as before
51 #             - implicitly uses upstream branches according to orig set
52 #             - not all upstream branches need be updated
53 #             - insists on fast-forward of each branch, unless
54 #                  --force (or --force=<subdir>[/])
55 #  branch set adjustments
56 #       git-debrebase new-upstream --add <subdir>/
57 #       git-debrebase new-upstream --rm <subdir>/
58 #       git-debrebase new-upstream / [<subdir>/ ...]
59 #             - orig set is adjusted
60 #             - otherwise like auto (--add is not checked for ffness, obv)
61 #             - multiple --add and --rm may be specified
62 #             - --add makes new upstream the last contributor
63 #  explicit
64 #       git-debrebase / [<rootcommitid>] [<subdir>/ [<commitid>] ...]
65 #             - orig set is precisely as specified now
66 #             - previous breakwater merge is irrelevant
67 #             - no fast forward checks
68 #  for now only explicit with commitids
69
70 #         implicitly uses `upstream'
71 #                                     # (or multiple other branches)
72 #       git-debrebase new-upstream \
73 #             [<subdir>/]=<commitid>
74
75 #    UPSTREAM[,[[SUBDIR:]SUBUPSTREAM]
76 #    default for SUBDIR: is from previous upstream merge[xxx terminology]
77 #    
78 #
79 #xxx
80 # when starting must record original start (for ff)
81 # and new rebase basis
82 #
83 #    git-ffqrebase start [BASE]
84 #                # records previous HEAD so it can be overwritten
85 #                # records base for future git-ffqrebase
86 #    git-ffqrebase set-base BASE
87 #    git-ffqrebase <git-rebase options>
88 #    git-ffqrebase finish
89 #    git-ffqrebase status [BRANCH]
90 #
91 #  refs/ffqrebase-prev/BRANCH    BRANCH may be refs/...; if not it means
92 #  refs/ffqrebase-base/BRANCH      refs/heads/BRANCH
93 #                               zero, one, or both of these may exist
94 #
95 # git-debrebase without start, if already started, is willing
96 # to strip pseudomerges provided that they overwrite exactly
97 # the previous HEAD
98 #  xxxx is this right ?  what matters is have we pushed
99 #    I think in fact the right answer is:
100 #       git-debrebase always strips out pseudomerges from its branch
101 #       a pseudomerge is put in at the time we want to push
102 #       at that time, we make a pseudomerge of the remote tracking
103 #           branch (if raw git) or the dgit view (if dgit)
104 #       for raw git git-ffqrebase, do want preciseley to record
105 #           value of remote tracking branch or our branch, on start, so we
106 #           overwrite only things we intend to
107 #  the previous pseudomerge    check for tags and remote branches ?
108
109 use strict;
110
111 use Debian::Dgit qw(:DEFAULT :playground);
112 setup_sigwarn();
113
114 use Memoize;
115 use Carp;
116 use POSIX;
117 use Data::Dumper;
118 use Getopt::Long qw(:config posix_default gnu_compat bundling);
119 use Dpkg::Version;
120
121 our ($opt_force);
122
123 sub badusage ($) {
124     my ($m) = @_;
125     die "bad usage: $m\n";
126 }
127
128 sub cfg ($) {
129     my ($k) = @_;
130     $/ = "\0";
131     my @cmd = qw(git config -z);
132     push @cmd, qw(--get-all) if wantarray;
133     push @cmd, $k;
134     my $out = cmdoutput @cmd;
135     return split /\0/, $out;
136 }
137
138 memoize('cfg');
139
140 sub get_commit ($) {
141     my ($objid) = @_;
142     my $data = git_cat_file $objid, 'commit';
143     $data =~ m/(?<=\n)\n/ or die "$objid ($data) ?";
144     return ($`,$');
145 }
146
147 sub D_UPS ()      { 0x02; } # upstream files
148 sub D_PAT_ADD ()  { 0x04; } # debian/patches/ extra patches at end
149 sub D_PAT_OTH ()  { 0x08; } # debian/patches other changes
150 sub D_DEB_CLOG () { 0x10; } # debian/ (not patches/ or changelog)
151 sub D_DEB_OTH ()  { 0x20; } # debian/changelog
152 sub DS_DEB ()     { D_DEB_CLOG | D_DEB_OTH; } # debian/ (not patches/)
153
154 our $playprefix = 'debrebase';
155 our $rd;
156 our $workarea;
157
158 our @git = qw(git);
159
160 sub in_workarea ($) {
161     my ($sub) = @_;
162     changedir $workarea;
163     my $r = eval { $sub->(); };
164     { local $@; changedir $maindir; }
165     die $@ if $@;
166 }
167
168 sub fresh_workarea () {
169     $workarea = fresh_playground "$playprefix/work";
170     in_workarea sub { playtree_setup };
171 }
172
173 sub get_differs ($$) {
174     my ($x,$y) = @_;
175     # This resembles quiltify_trees_differ, in dgit, a bit.
176     # But we don't care about modes, or dpkg-source-unrepresentable
177     # changes, and we don't need the plethora of different modes.
178     # Conversely we need to distinguish different kinds of changes to
179     # debian/ and debian/patches/.
180
181     my $differs = 0;
182
183     my $rundiff = sub {
184         my ($opts, $limits, $fn) = @_;
185         my @cmd = (@git, qw(diff-tree -z --no-renames));
186         push @cmd, @$opts;
187         push @cmd, "$_:" foreach $x, $y;
188         push @cmd, @$limits;
189         my $diffs = cmdoutput @cmd;
190         foreach (split /\0/, $diffs) { $fn->(); }
191     };
192
193     $rundiff->([qw(--name-only)], [], sub {
194         $differs |= $_ eq 'debian' ? DS_DEB : D_UPS;
195     });
196
197     if ($differs & DS_DEB) {
198         $differs &= ~DS_DEB;
199         $rundiff->([qw(--name-only -r)], [qw(debian)], sub {
200             $differs |=
201                 m{^debian/patches/}      ? D_PAT_OTH  :
202                 $_ eq 'debian/changelog' ? D_DEB_CLOG :
203                                            D_DEB_OTH;
204         });
205         die "mysterious debian changes $x..$y"
206             unless $differs & (D_PAT_OTH|DS_DEB);
207     }
208
209     if ($differs & D_PAT_OTH) {
210         my $mode;
211         $differs &= ~D_PAT_OTH;
212         my $pat_oth = sub {
213             $differs |= D_PAT_OTH;
214             no warnings qw(exiting);  last;
215         };
216         $rundiff->([qw(--name-status -r)], [qw(debian/patches/)], sub {
217             no warnings qw(exiting);
218             if (!defined $mode) {
219                 $mode = $_;  next;
220             }
221             die unless s{^debian/patches/}{};
222             my $ok;
223             if ($mode eq 'A' && !m/\.series$/s) {
224                 $ok = 1;
225             } elsif ($mode eq 'M' && $_ eq 'series') {
226                 my $x_s = git_cat_file "$x:debian/patches/series", 'blob';
227                 my $y_s = git_cat_file "$y:debian/patches/series", 'blob';
228                 chomp $x_s;  $x_s .= "\n";
229                 $ok = $x_s eq substr($y_s, 0, length $x_s);
230             } else {
231                 # nope
232             }
233             $mode = undef;
234             $differs |= $ok ? D_PAT_ADD : D_PAT_OTH;
235         });
236         die "mysterious debian/patches changes $x..$y"
237             unless $differs & (D_PAT_ADD|D_PAT_OTH);
238     }
239
240     printdebug sprintf "get_differs %s, %s = %#x\n", $x, $y, $differs;
241
242     return $differs;
243 }
244
245 sub commit_pr_info ($) {
246     my ($r) = @_;
247     return Data::Dumper->dump([$r], [qw(commit)]);
248 }
249
250 sub calculate_committer_authline () {
251     my $c = cmdoutput @git, qw(commit-tree --no-gpg-sign -m),
252         'DUMMY COMMIT (git-debrebase)', "HEAD:";
253     my ($h,$m) = get_commit $c;
254     $h =~ m/^committer .*$/m or confess "($h) ?";
255     return $&;
256 }
257
258 sub rm_subdir_cached ($) {
259     my ($subdir) = @_;
260     runcmd @git, qw(rm --quiet -rf --cached --ignore-unmatch), $subdir;
261 }
262
263 sub read_tree_subdir ($$) {
264     my ($subdir, $new_tree_object) = @_;
265     rm_subdir_cached $subdir;
266     runcmd @git, qw(read-tree), "--prefix=$subdir/", $new_tree_object;
267 }
268
269 # classify returns an info hash like this
270 #   CommitId => $objid
271 #   Hdr => # commit headers, including 1 final newline
272 #   Msg => # commit message (so one newline is dropped)
273 #   Tree => $treeobjid
274 #   Type => (see below)
275 #   Parents = [ {
276 #       Ix => $index # ie 0, 1, 2, ...
277 #       CommitId
278 #       Differs => return value from get_differs
279 #       IsOrigin
280 #       IsDggitImport => 'orig' 'tarball' 'unpatched' 'package' (as from dgit)
281 #     } ...]
282 #   NewMsg => # commit message, but with any [dgit import ...] edited
283 #             # to say "[was: ...]"
284 #
285 # Types:
286 #   Packaging
287 #   Changelog
288 #   Upstream
289 #   AddPatches
290 #   Mixed
291 #   Unknown
292 #
293 #   Pseudomerge
294 #     has additional entres in classification result
295 #       Overwritten = [ subset of Parents ]
296 #       Contributor = $the_remaining_Parent
297 #
298 #   DgitImportUnpatched
299 #     has additional entry in classification result
300 #       OrigParents = [ subset of Parents ]
301 #
302 #   BreakwaterUpstreamMerge
303 #     has additional entry in classification result
304 #       OrigParents = [ subset of Parents ]  # singleton list
305
306 sub parsecommit ($;$) {
307     my ($objid, $p_ref) = @_;
308     # => hash with                   CommitId Hdr Msg Tree Parents
309     #    Parents entries have only   Ix CommitId
310     #    $p_ref, if provided, must be [] and is used as a base for Parents
311
312     $p_ref //= [];
313     die if @$p_ref;
314
315     my ($h,$m) = get_commit $objid;
316
317     my ($t) = $h =~ m/^tree (\w+)$/m or die $objid;
318     my (@ph) = $h =~ m/^parent (\w+)$/mg;
319
320     my $r = {
321         CommitId => $objid,
322         Hdr => $h,
323         Msg => $m,
324         Tree => $t,
325         Parents => $p_ref,
326     };
327
328     foreach my $ph (@ph) {
329         push @$p_ref, {
330             Ix => $#$p_ref,
331             CommitId => $ph,
332         };
333     }
334
335     return $r;
336 }    
337
338 sub classify ($) {
339     my ($objid) = @_;
340
341     my @p;
342     my $r = parsecommit($objid, \@p);
343     my $t = $r->{Tree};
344
345     foreach my $p (@p) {
346         $p->{Differs} = (get_differs $p->{CommitId}, $t),
347     }
348
349     printdebug "classify $objid \$t=$t \@p",
350         (map { sprintf " %s/%#x", $_->{CommitId}, $_->{Differs} } @p),
351         "\n";
352
353     my $classify = sub {
354         my ($type, @rest) = @_;
355         $r = { %$r, Type => $type, @rest };
356         if ($debuglevel) {
357             my $dd = new Data::Dumper [ $r ];
358             Terse $dd 1; Indent $dd 0; Useqq $dd 1;
359             printdebug " = $type ".(Dump $dd)."\n";
360         }
361         return $r;
362     };
363     my $unknown = sub {
364         my ($why) = @_;
365         $r = { %$r, Type => qw(Unknown) };
366         printdebug " ** Unknown\n";
367         return $r;
368     };
369
370     if (@p == 1) {
371         my $d = $r->{Parents}[0]{Differs};
372         if ($d == D_PAT_ADD) {
373             return $classify->(qw(AddPatches));
374         } elsif ($d & (D_PAT_ADD|D_PAT_OTH)) {
375             return $unknown->("edits debian/patches");
376         } elsif ($d & DS_DEB and !($d & ~DS_DEB)) {
377             my ($ty,$dummy) = git_cat_file "$p[0]{CommitId}:debian";
378             if ($ty eq 'tree') {
379                 if ($d == D_DEB_CLOG) {
380                     return $classify->(qw(Changelog));
381                 } else {
382                     return $classify->(qw(Packaging));
383                 }
384             } elsif ($ty eq 'missing') {
385                 return $classify->(qw(BreakwaterStart));
386             } else {
387                 return $unknown->("parent's debian is not a directory");
388             }
389         } elsif ($d == D_UPS) {
390             return $classify->(qw(Upstream));
391         } elsif ($d & DS_DEB and $d & D_UPS and !($d & ~(DS_DEB|D_UPS))) {
392             return $classify->(qw(Mixed));
393         } elsif ($d == 0) {
394             return $unknown->("no changes");
395         } else {
396             confess "internal error $objid ?";
397         }
398     }
399     if (!@p) {
400         return $unknown->("origin commit");
401     }
402
403     my @identical = grep { !$_->{Differs} } @p;
404     if (@p == 2 && @identical == 1) {
405         my @overwritten = grep { $_->{Differs} } @p;
406         confess "internal error $objid ?" unless @overwritten==1;
407         return $classify->(qw(Pseudomerge),
408                            Overwritten => $overwritten[0],
409                            Contributor => $identical[0]);
410     }
411     if (@p == 2 && @identical == 2) {
412         my @bytime = nsort_by {
413             my ($ph,$pm) = get_commit $_->{CommitId};
414             $ph =~ m/^committer .* (\d+) [-+]\d+$/m or die "$_->{CommitId} ?";
415             $1;
416         } @p;
417         return $classify->(qw(Pseudomerge),
418                            SubType => qw(Ambiguous),
419                            Overwritten => $bytime[0],
420                            Contributor => $bytime[1]);
421     }
422     foreach my $p (@p) {
423         my ($p_h, $p_m) = get_commit $p->{CommitId};
424         $p->{IsOrigin} = $p_h !~ m/^parent \w+$/m;
425         ($p->{IsDgitImport},) = $p_m =~ m/^\[dgit import ([0-9a-z]+) .*\]$/m;
426     }
427     my @orig_ps = grep { ($_->{IsDgitImport}//'X') eq 'orig' } @p;
428     my $m2 = $r->{Msg};
429     if (!(grep { !$_->{IsOrigin} } @p) and
430         (@orig_ps >= @p - 1) and
431         $m2 =~ s{^\[(dgit import unpatched .*)\]$}{[was: $1]}m) {
432         $r->{NewMsg} = $m2;
433         return $classify->(qw(DgitImportUnpatched),
434                            OrigParents => \@orig_ps);
435     }
436
437     my ($stype, $series) = git_cat_file "$t:debian/patches/series";
438     my $haspatches = $stype ne 'missing' && $series =~ m/^\s*[^#\n\t ]/m;
439
440     # How to decide about l/r ordering of breakwater merges ?  git
441     # --topo-order prefers to expand 2nd parent first.  There's
442     # already an easy rune to look for debian/ history anyway (git log
443     # debian/) so debian breakwater branch should be 1st parent; that
444     # way also there's also an easy rune to look for the upstream
445     # patches (--topo-order).
446
447     # The above tells us which way *we* will generate them.  But we
448     # might encounter ad-hoc breakwater merges generated manually,
449     # which might be the other way around.  In principle, in some odd
450     # situations, a breakwater merge might have two identical parents.
451     # In that case we guess which way round it is (ie, which parent
452     # has the upstream history).  The order of the 2-iteration loop
453     # controls which guess we make.
454
455     foreach my $prevbrw (qw(0 1)) {
456         if (@p == 2 &&
457             !$haspatches &&
458             !$p[$prevbrw]{IsOrigin} && # breakwater never starts with an origin
459             !($p[$prevbrw]{Differs} & ~DS_DEB) &&
460             !($p[!$prevbrw]{Differs} & ~D_UPS)) {
461             return $classify->(qw(BreakwaterUpstreamMerge),
462                                OrigParents => [ $p[!$prevbrw] ]);
463         }
464     }
465
466     # multi-orig upstreams are represented with a breakwater merge
467     # from a single upstream commit which combines the orig tarballs
468
469     return $unknown->("complex merge");
470 }
471
472 sub walk ($;$$);
473 sub walk ($;$$) {
474     my ($input,
475         $nogenerate,$report) = @_;
476     # => ($tip, $breakwater_tip, $last_upstream_merge_in_breakwater)
477     # (or nothing, if $nogenerate)
478
479     # go through commits backwards
480     # we generate two lists of commits to apply:
481     # breakwater branch and upstream patches
482     my (@brw_cl, @upp_cl, @processed);
483     my %found;
484     my $upp_limit;
485     my @pseudomerges;
486
487     my $cl;
488     my $xmsg = sub {
489         my ($appendinfo) = @_;
490         my $ms = $cl->{Msg};
491         chomp $ms;
492         $ms .= "\n\n[git-debrebase $appendinfo]\n";
493         return (Msg => $ms);
494     };
495     my $rewrite_from_here = sub {
496         my $sp_cl = { SpecialMethod => 'StartRewrite' };
497         push @brw_cl, $sp_cl;
498         push @processed, $sp_cl;
499     };
500     my $cur = $input;
501
502     my $prdelim = "";
503     my $prprdelim = sub { print $report $prdelim if $report; $prdelim=""; };
504
505     my $prline = sub {
506         return unless $report;
507         print $report $prdelim, @_;
508         $prdelim = "\n";
509     };
510
511     my $bomb = sub { # usage: return $bomb->();
512         print $report " Unprocessable" if $report;
513         $prprdelim->();
514         if ($nogenerate) {
515             return (undef,undef);
516         }
517         die "commit $cur: Cannot cope with this commit (d.".
518             (join ' ', map { sprintf "%#x", $_->{Differs} }
519              @{ $cl->{Parents} }). ")";
520     };
521
522     my $build;
523     my $breakwater;
524
525     my $build_start = sub {
526         my ($msg, $parent) = @_;
527         $prline->(" $msg");
528         $build = $parent;
529         no warnings qw(exiting); last;
530     };
531
532     my $last_upstream_update;
533
534     for (;;) {
535         $cl = classify $cur;
536         my $ty = $cl->{Type};
537         my $st = $cl->{SubType};
538         $prline->("$cl->{CommitId} $cl->{Type}");
539         $found{$ty. ( defined($st) ? "-$st" : '' )}++;
540         push @processed, $cl;
541         my $p0 = @{ $cl->{Parents} }==1 ? $cl->{Parents}[0]{CommitId} : undef;
542         if ($ty eq 'AddPatches') {
543             $cur = $p0;
544             $rewrite_from_here->();
545             next;
546         } elsif ($ty eq 'Packaging' or $ty eq 'Changelog') {
547             push @brw_cl, $cl;
548             $cur = $p0;
549             next;
550         } elsif ($ty eq 'BreakwaterStart') {
551             $last_upstream_update = $cur;
552             $build_start->('FirstPackaging', $cur);
553         } elsif ($ty eq 'Upstream') {
554             push @upp_cl, $cl;
555             $cur = $p0;
556             next;
557         } elsif ($ty eq 'Mixed') {
558             my $queue = sub {
559                 my ($q, $wh) = @_;
560                 my $cls = { %$cl, $xmsg->("split mixed commit: $wh part") };
561                 push @$q, $cls;
562             };
563             $queue->(\@brw_cl, "debian");
564             $queue->(\@upp_cl, "upstream");
565             $rewrite_from_here->();
566             $cur = $p0;
567             next;
568         } elsif ($ty eq 'Pseudomerge') {
569             my $contrib = $cl->{Contributor}{CommitId};
570             print $report " Contributor=$contrib" if $report;
571             push @pseudomerges, $cl;
572             $rewrite_from_here->();
573             $cur = $contrib;
574             next;
575         } elsif ($ty eq 'BreakwaterUpstreamMerge') {
576             $last_upstream_update = $cur;
577             $build_start->("PreviousBreakwater", $cur);
578         } elsif ($ty eq 'DgitImportUnpatched') {
579             my $pm = $pseudomerges[-1];
580             if (defined $pm) {
581                 # To an extent, this is heuristic.  Imports don't have
582                 # a useful history of the debian/ branch.  We assume
583                 # that the first pseudomerge after an import has a
584                 # useful history of debian/, and ignore the histories
585                 # from later pseudomerges.  Often the first pseudomerge
586                 # will be the dgit import of the upload to the actual
587                 # suite intended by the non-dgit NMUer, and later
588                 # pseudomerges may represent in-archive copies.
589                 my $ovwrs = $pm->{Overwritten};
590                 printf $report " PM=%s \@Overwr:%d", $pm, (scalar @$ovwrs)
591                     if $report;
592                 if (@$ovwrs != 1) {
593                     return $bomb->();
594                 }
595                 my $ovwr = $ovwrs->[0]{CommitId};
596                 printf $report " Overwr=%s", $ovwr if $report;
597                 # This import has a tree which is just like a
598                 # breakwater tree, but it has the wrong history.  It
599                 # ought to have the previous breakwater (which the
600                 # pseudomerge overwrote) as an ancestor.  That will
601                 # make the history of the debian/ files correct.  As
602                 # for the upstream version: either it's the same as
603                 # was ovewritten (ie, same as the previous
604                 # breakwater), in which case that history is precisely
605                 # right; or, otherwise, it was a non-gitish upload of a
606                 # new upstream version.  We can tell these apart by
607                 # looking at the tree of the supposed upstream.
608                 push @brw_cl, {
609                     %$cl,
610                     SpecialMethod => 'DgitImportDebianUpdate',
611                     $xmsg->("convert dgit import: debian changes")
612                 };
613                 my $differs = (get_differs $ovwr, $cl->{Tree});
614                 printf $report " Differs=%#x", $differs if $report;
615                 if ($differs & D_UPS) {
616                     printf $report " D_UPS" if $report;
617                     # This will also trigger if a non-dgit git-based NMU
618                     # deleted .gitignore (which is a thing that some of
619                     # the existing git tools do if the user doesn't
620                     # somehow tell them not to).  Ah well.
621                     push @brw_cl, {
622                         %$cl,
623                         SpecialMethod => 'DgitImportUpstreamUpdate',
624                         $xmsg->("convert dgit import: upstream changes")
625                     };
626                 }
627                 $prline->(" Import");
628                 $rewrite_from_here->();
629                 $upp_limit //= $#upp_cl; # further, deeper, patches discarded
630                 die 'BUG $upp_limit is not used anywhere?';
631                 $cur = $ovwr;
632                 next;
633             } else {
634                 # Everything is from this import.  This kind of import
635                 # is already in valid breakwater format, with the
636                 # patches as commits.
637                 printf $report " NoPM" if $report;
638                 # last thing we processed will have been the first patch,
639                 # if there is one; which is fine, so no need to rewrite
640                 # on account of this import
641                 $build_start->("ImportOrigin", $cur);
642             }
643             die "$ty ?";
644         } else {
645             return $bomb->();
646         }
647     }
648     $prprdelim->();
649     return if $nogenerate;
650
651     # Now we build it back up again
652
653     fresh_workarea();
654
655     my $rewriting = 0;
656
657     my $read_tree_debian = sub {
658         my ($treeish) = @_;
659         read_tree_subdir 'debian', "$treeish:debian";
660         rm_subdir_cached 'debian/patches';
661     };
662     my $read_tree_upstream = sub {
663         my ($treeish) = @_;
664         runcmd @git, qw(read-tree), $treeish;
665         $read_tree_debian->($build);
666     };
667  
668     my $committer_authline = calculate_committer_authline();
669
670     printdebug "WALK REBUILD $build ".(scalar @processed)."\n";
671
672     confess "internal error" unless $build eq (pop @processed)->{CommitId};
673
674     in_workarea sub {
675         mkdir $rd or $!==EEXIST or die $!;
676         my $current_method;
677         runcmd @git, qw(read-tree), $build;
678         foreach my $cl (qw(Debian), (reverse @brw_cl),
679                         { SpecialMethod => 'RecordBreakwaterTip' },
680                         qw(Upstream), (reverse @upp_cl)) {
681             if (!ref $cl) {
682                 $current_method = $cl;
683                 next;
684             }
685             my $method = $cl->{SpecialMethod} // $current_method;
686             my @parents = ($build);
687             my $cltree = $cl->{CommitId};
688             printdebug "WALK BUILD ".($cltree//'undef').
689                 " $method (rewriting=$rewriting)\n";
690             if ($method eq 'Debian') {
691                 $read_tree_debian->($cltree);
692             } elsif ($method eq 'Upstream') {
693                 $read_tree_upstream->($cltree);
694             } elsif ($method eq 'StartRewrite') {
695                 $rewriting = 1;
696                 next;
697             } elsif ($method eq 'RecordBreakwaterTip') {
698                 $breakwater = $build;
699                 next;
700             } elsif ($method eq 'DgitImportDebianUpdate') {
701                 $read_tree_debian->($cltree);
702                 rm_subdir_cached qw(debian/patches);
703             } elsif ($method eq 'DgitImportUpstreamUpdate') {
704                 $read_tree_upstream->($cltree);
705                 push @parents, map { $_->{CommitId} } @{ $cl->{OrigParents} };
706             } else {
707                 confess "$method ?";
708             }
709             if (!$rewriting) {
710                 my $procd = (pop @processed) // 'UNDEF';
711                 if ($cl ne $procd) {
712                     $rewriting = 1;
713                     printdebug "WALK REWRITING NOW cl=$cl procd=$procd\n";
714                 }
715             }
716             my $newtree = cmdoutput @git, qw(write-tree);
717             my $ch = $cl->{Hdr};
718             $ch =~ s{^tree .*}{tree $newtree}m or confess "$ch ?";
719             $ch =~ s{^parent .*\n}{}m;
720             $ch =~ s{(?=^author)}{
721                 join '', map { "parent $_\n" } @parents
722             }me or confess "$ch ?";
723             if ($rewriting) {
724                 $ch =~ s{^committer .*$}{$committer_authline}m
725                     or confess "$ch ?";
726             }
727             my $cf = "$rd/m$rewriting";
728             open CD, ">", $cf or die $!;
729             print CD $ch, "\n", $cl->{Msg} or die $!;
730             close CD or die $!;
731             my @cmd = (@git, qw(hash-object));
732             push @cmd, qw(-w) if $rewriting;
733             push @cmd, qw(-t commit), $cf;
734             my $newcommit = cmdoutput @cmd;
735             confess "$ch ?" unless $rewriting or $newcommit eq $cl->{CommitId};
736             $build = $newcommit;
737             if (grep { $method eq $_ } qw(DgitImportUpstreamUpdate)) {
738                 $last_upstream_update = $cur;
739             }
740         }
741     };
742
743     my $final_check = get_differs $build, $input;
744     die sprintf "internal error %#x %s %s", $final_check, $build, $input
745         if $final_check & ~D_PAT_ADD;
746
747     return ($build, $breakwater, $last_upstream_update);
748 }
749
750 sub get_head () { return git_rev_parse qw(HEAD); }
751
752 sub update_head ($$$) {
753     my ($old, $new, $mrest) = @_;
754     runcmd @git, qw(update-ref -m), "debrebase: $mrest", 'HEAD', $new, $old;
755 }
756
757 sub update_head_checkout ($$$) {
758     my ($old, $new, $mrest) = @_;
759     my $symref = git_get_symref();
760     runcmd @git, qw(checkout), $new, qw(.);
761     update_head $old, $new, $mrest;
762 }
763
764 sub cmd_launder () {
765     badusage "no arguments to launder allowed" if @ARGV;
766     my $old = get_head();
767     my ($tip,$breakwater,$last_upstream_merge) = walk $old;
768     update_head $old, $tip, 'launder';
769     # no tree changes except debian/patches
770     runcmd @git, qw(rm --quiet --ignore-unmatch -rf debian/patches);
771     printf "# breakwater tip\n%s\n", $breakwater;
772     printf "# working tip\n%s\n", $tip;
773     printf "# last upstream merge\n%s\n", $last_upstream_merge;
774 }
775
776 sub cmd_analyse () {
777     die if ($ARGV[0]//'') =~ m/^-/;
778     badusage "too many arguments to analyse" if @ARGV>1;
779     my ($old) = @ARGV;
780     if (defined $old) {
781         $old = git_rev_parse $old;
782     } else {
783         $old = get_head();
784     }
785     my ($dummy,$breakwater) = walk $old, 1,*STDOUT;
786     STDOUT->error and die $!;
787 }
788
789 sub cmd_new_upstream_v0 () {
790     # xxx would like to support more git-rebase options
791     badusage
792  "need NEW-VERSION UPS-COMMITISH [EXTRA-UPS-NAME EXTRA-UPS-COMMITISH...]"
793         unless @ARGV % 2 == 0 and @ARGV >= 2;
794     # tree should be clean and this is not checked
795     # automatically and unconditionally launders before rebasing
796     # if rebase --abort is used, laundering has still been done
797
798     my %pieces;
799
800     # parse args - low commitment
801     my $new_version = (new Dpkg::Version scalar(shift @ARGV), check => 1);
802     my $new_upstream_version = $new_version->version();
803
804     my $new_upstream = git_rev_parse shift @ARGV;
805
806     my $piece = sub {
807         my ($n, @x) = @_; # may be ''
808         my $pc = $pieces{$n} //= {
809             Name => $n,
810             Desc => ($n ? "upstream piece $n" : "upstream (main piece"),
811         };
812         while (my $k = shift @x) { $pc->{$k} = shift @x; }
813     };
814
815     my @newpieces;
816     my $newpiece = sub {
817         my ($n, @x) = @_; # may be ''
818         my $pc = $piece->($n, @x, NewIx => (scalar @newpieces));
819         push @newpieces, $pc;
820     };
821
822     $newpiece->('',
823         OldIx => 0,
824         New => $new_upstream,
825     );
826     while (@ARGV) {
827         my $n = shift @ARGV;
828         my $c = git_rev_parse shift @ARGV;
829         die unless $n =~ m/^$extra_orig_namepart_re$/;
830         $newpiece->($n, New => $c);
831     }
832
833     # now we need to investigate the branch this generates the
834     # laundered version but we don't switch to it yet
835     my $old_head = get_head();
836     my ($old_laundered_tip,$old_bw,$old_upstream_update) = walk $old_head;
837
838     my $old_bw_cl = classify $old_bw;
839     my $old_upstream_update_cl = classify $old_upstream_update;
840     confess unless $old_upstream_update_cl->{OrigParents};
841     my $old_upstream = parsecommit
842         $old_upstream_update_cl->{OrigParents}[0]{CommitId};
843
844     my $problems = 0;
845     my $problem = sub {
846         my ($msg) = @_;
847         $problems++;
848         print STDERR "preflight check failed: $msg\n";
849     };
850
851     $piece->('', Old => $old_upstream);
852
853     if ($old_upstream->{Msg} =~ m{^\[git-debrebase }m) {
854         if ($old_upstream->{Msg} =~
855  m{^\[git-debrebase new-upstream combine \.((?: $extra_orig_namepart_re)+)\]}
856            ) {
857             my @oldpieces = ('', split / /, $1);
858             my $parentix = -1 + scalar @{ $old_upstream->{Parents} };
859             foreach my $i (0..$#oldpieces) {
860                 my $n = $oldpieces[$i];
861                 $piece->($n, Old => $old_upstream->{CommitId}.'^'.$parentix);
862             }
863         } else {
864             $problem->("previous upstream $old_upstream->{CommitId} is from".
865                  " git-debrebase but not a \`new-upstream combine' commit");
866         }
867     }
868
869     foreach my $pc (values %pieces) {
870         if (!$pc->{Old}) {
871             $problem->("introducing upstream piece $pc->{Name}");
872         } elsif (!$pc->{New}) {
873             $problem->("dropping upstream piece $pc->{Name}");
874         } elsif (!is_fast_fwd $pc->{Old}, $pc->{New}) {
875             $problem->("not fast forward: $pc->{Name} $pc->{Old}..$pc->{New}");
876         }
877     }
878
879     if ($problems) {
880         if ($opt_force) {
881             printf STDERR
882                 "preflight check failures (%d) overriden by --force\n",
883                 $problems;
884         } else {
885             fail sprintf
886                 "preflight check failures (%d) (you could --force)",
887                 $problems;
888         }
889     }
890
891     my $new_bw;
892
893     fresh_workarea();
894     in_workarea sub {
895         my @upstream_merge_parents;
896
897         if (!$problems) {
898             push @upstream_merge_parents, $old_upstream->{CommitId};
899         }
900
901         foreach my $pc (@newpieces) { # always has '' first
902             if ($pc->{Name}) {
903                 read_tree_subdir $pc->{Name}, $pc->{New};
904             } else {
905                 runcmd @git, qw(read-tree), $pc->{New};
906             }
907             push @upstream_merge_parents, $pc->{New};
908         }
909
910         # index now contains the new upstream
911
912         if (@newpieces > 1) {
913             # need to make the upstream subtree merge commit
914             my $us_tree = cmdoutput @git, qw(write-tree);
915             my @cmd = (@git, qw(commit-tree), $us_tree);
916             push @cmd, qw(-p), $_ foreach @upstream_merge_parents;
917             push @cmd, qw(-m), "Combine upstreams for $new_upstream_version";
918             push @cmd, qw(-m),
919                 "[git-debrebase new-upstream combine . ".
920                 (join " ", map { $_->{Name} } @newpieces[1..$#newpieces]).
921                  "]";
922             $new_upstream = cmdoutput @cmd;
923         }
924
925         # $new_upstream is either the single upstream commit, or the
926         # combined commit we just made.  Either way it will be the
927         # "upstream" parent of the breakwater special merge.
928
929         read_tree_subdir 'debian', "$old_bw:debian";
930
931         # index now contains the breakwater merge contents
932
933         my $bw_tree = cmdoutput @git, qw(write_tree);
934         my @cmd = (@git, qw(commit-tree), $bw_tree);
935         push @cmd, qw(-p), $old_bw, qw(-p), $new_upstream;
936         push @cmd, qw(-m), "Update to upstream $new_upstream_version";
937         push @cmd, qw(-m),
938             "[git-debrebase new-upstream breakwater $new_upstream_version]";
939         $new_bw = cmdoutput @git;
940
941         # Now we have to add a changelog stanza so the Debian version
942         # is right.
943
944         die if unlink "debian";
945         die unless $!==ENOTEMPTY;
946         unlink "debian/changelog" or die $!;
947         open CN, ">", "debian/changelog" or die $!;
948         my $oldclog = git_cat_file ":debian/changelog";
949         $oldclog =~ m/^($package_re) \(\S+\) / or
950             fail "cannot parse old changelog to get package name";
951         my $p = $1;
952         print CN <<END, $oldclog or die $!;
953 $p ($new_version) UNRELEASED; urgency=medium
954
955   * Update to new upstream version $new_upstream_version.
956
957  -- 
958
959 END
960         close CN or die $!;
961         runcmd @git, qw(update-index --add --replace), 'debian/changelog';
962
963         # Now we have the final new breakwater branch in the index
964
965         $bw_tree = cmdoutput @git, qw(write_tree);
966         @cmd = (@git, qw(commit-tree), $bw_tree);
967         push @cmd, qw(-p), $new_bw;
968         push @cmd, qw(-m),
969             "Update changelog for new upstream $new_upstream_version";
970         push @cmd, qw(-m),
971             "[git-debrebase new-upstream changelog $new_upstream_version]";
972         $new_bw = cmdoutput @git;
973     };
974
975     # we have constructed the new breakwater. we now need to commit to
976     # the laundering output, because git-rebase can't easily be made
977     # to make a replay list which is based on some other branch
978
979     update_head $old_head, $old_laundered_tip, 'launder for new upstream';
980
981     my @cmd = (@git, qw(rebase --onto), $new_bw, $old_bw);
982     runcmd @cmd;
983     # now it's for the user to sort out
984 }
985
986 sub cmd_downstream_rebase_launder_v0 () {
987     badusage "needs 1 argument, the baseline" unless @ARGV==1;
988     my ($base) = @ARGV;
989     $base = git_rev_parse $base;
990     my $old_head = get_head();
991     my $current = $old_head;
992     my $topmost_keep;
993     for (;;) {
994         if ($current eq $base) {
995             $topmost_keep //= $current;
996             print " $current BASE stop\n";
997             last;
998         }
999         my $cl = classify $current;
1000         print " $current $cl->{Type}";
1001         my $keep = 0;
1002         my $p0 = $cl->{Parents}[0]{CommitId};
1003         my $next;
1004         if ($cl->{Type} eq 'Pseudomerge') {
1005             print " ^".($cl->{Contributor}{Ix}+1);
1006             $next = $cl->{Contributor}{CommitId};
1007         } elsif ($cl->{Type} eq 'AddPatches' or
1008                  $cl->{Type} eq 'Changelog') {
1009             print " strip";
1010             $next = $p0;
1011         } else {
1012             print " keep";
1013             $next = $p0;
1014             $keep = 1;
1015         }
1016         print "\n";
1017         if ($keep) {
1018             $topmost_keep //= $current;
1019         } else {
1020             die "to-be stripped changes not on top of the branch\n"
1021                 if $topmost_keep;
1022         }
1023         $current = $next;
1024     }
1025     if ($topmost_keep eq $old_head) {
1026         print "unchanged\n";
1027     } else {
1028         print "updating to $topmost_keep\n";
1029         update_head_checkout
1030             $old_head, $topmost_keep,
1031             'downstream-rebase-launder-v0';
1032     }
1033 }
1034
1035 GetOptions("D+" => \$debuglevel,
1036            'force!') or die badusage "bad options\n";
1037 initdebug('git-debrebase ');
1038 enabledebug if $debuglevel;
1039
1040 my $toplevel = cmdoutput @git, qw(rev-parse --show-toplevel);
1041 chdir $toplevel or die "chdir $toplevel: $!";
1042
1043 $rd = fresh_playground "$playprefix/misc";
1044
1045 my $cmd = shift @ARGV;
1046 my $cmdfn = $cmd;
1047 $cmdfn =~ y/-/_/;
1048 $cmdfn = ${*::}{"cmd_$cmdfn"};
1049
1050 $cmdfn or badusage "unknown git-debrebase sub-operation $cmd";
1051 $cmdfn->();