]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LeiMirror.pm
lei_mirror: allow `git show-ref' failures
[public-inbox.git] / lib / PublicInbox / LeiMirror.pm
1 # Copyright (C) all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # "lei add-external --mirror" support (also "public-inbox-clone");
5 package PublicInbox::LeiMirror;
6 use v5.12;
7 use parent qw(PublicInbox::IPC);
8 use IO::Uncompress::Gunzip qw(gunzip $GunzipError);
9 use IO::Compress::Gzip qw(gzip $GzipError);
10 use PublicInbox::Spawn qw(popen_rd spawn run_die);
11 use File::Path ();
12 use File::Temp ();
13 use File::Spec ();
14 use Fcntl qw(SEEK_SET O_CREAT O_EXCL O_WRONLY);
15 use Carp qw(croak);
16 use URI;
17 use PublicInbox::Config;
18 use PublicInbox::Inbox;
19 use PublicInbox::LeiCurl;
20 use PublicInbox::OnDestroy;
21 use Digest::SHA qw(sha256_hex sha1_hex);
22 use POSIX qw(strftime);
23
24 our $LIVE; # pid => callback
25 our $FGRP_TODO; # objstore -> [ fgrp mirror objects ]
26 our $TODO; # reference => [ non-fgrp mirror objects ]
27
28 sub keep_going ($) {
29         $LIVE && (!$_[0]->{lei}->{child_error} ||
30                 $_[0]->{lei}->{opt}->{'keep-going'});
31 }
32
33 sub _wq_done_wait { # dwaitpid callback (via wq_eof)
34         my ($arg, $pid) = @_;
35         my ($mrr, $lei) = @$arg;
36         if ($?) {
37                 $lei->child_error($?);
38         } elsif (!$lei->{child_error}) {
39                 if (!$mrr->{dry_run} && $lei->{cmd} ne 'public-inbox-clone') {
40                         require PublicInbox::LeiAddExternal;
41                         PublicInbox::LeiAddExternal::_finish_add_external(
42                                                         $lei, $mrr->{dst});
43                 }
44                 $lei->qerr("# mirrored $mrr->{src} => $mrr->{dst}");
45         }
46         $lei->dclose;
47 }
48
49 # for old installations without manifest.js.gz
50 sub try_scrape {
51         my ($self, $fallback_manifest) = @_;
52         my $uri = URI->new($self->{src});
53         my $lei = $self->{lei};
54         my $curl = $self->{curl} //= PublicInbox::LeiCurl->new($lei) or return;
55         my $cmd = $curl->for_uri($lei, $uri, '--compressed');
56         my $opt = { 0 => $lei->{0}, 2 => $lei->{2} };
57         my $fh = popen_rd($cmd, undef, $opt);
58         my $html = do { local $/; <$fh> } // die "read(curl $uri): $!";
59         close($fh) or return $lei->child_error($?, "@$cmd failed");
60
61         # we grep with URL below, we don't want Subject/From headers
62         # making us clone random URLs.  This assumes remote instances
63         # prior to public-inbox 1.7.0
64         # 5b96edcb1e0d8252 (www: move mirror instructions to /text/, 2021-08-28)
65         my @html = split(/<hr>/, $html);
66         my @urls = ($html[-1] =~ m!\bgit clone --mirror ([a-z\+]+://\S+)!g);
67         if (!@urls && $fallback_manifest) {
68                 warn <<EOM;
69 W: failed to extract URLs from $uri, trying manifest.js.gz...
70 EOM
71                 return start_clone_url($self);
72         }
73         my $url = $uri->as_string;
74         chop($url) eq '/' or die "BUG: $uri not canonicalized";
75
76         # since this is for old instances w/o manifest.js.gz, try v1 first
77         return clone_v1($self) if grep(m!\A\Q$url\E/*\z!, @urls);
78         if (my @v2_urls = grep(m!\A\Q$url\E/[0-9]+\z!, @urls)) {
79                 my %v2_epochs = map {
80                         my ($n) = (m!/([0-9]+)\z!);
81                         $n => [ URI->new($_), '' ]
82                 } @v2_urls; # uniq
83                 clone_v2_prep($self, \%v2_epochs);
84                 delete local $lei->{opt}->{epoch};
85                 clone_all($self);
86                 return;
87         }
88
89         # filter out common URLs served by WWW (e.g /$MSGID/T/)
90         if (@urls && $url =~ s!/+[^/]+\@[^/]+/.*\z!! &&
91                         grep(m!\A\Q$url\E/*\z!, @urls)) {
92                 die <<"";
93 E: confused by scraping <$uri>, did you mean <$url>?
94
95         }
96         @urls and die <<"";
97 E: confused by scraping <$uri>, got ambiguous results:
98 @urls
99
100         die "E: scraping <$uri> revealed nothing\n";
101 }
102
103 sub clone_cmd {
104         my ($lei, $opt) = @_;
105         my @cmd = qw(git);
106         $opt->{$_} = $lei->{$_} for (0..2);
107         # we support "-c $key=$val" for arbitrary git config options
108         # e.g.: git -c http.proxy=socks5h://127.0.0.1:9050
109         push(@cmd, '-c', $_) for @{$lei->{opt}->{c} // []};
110         push @cmd, qw(clone --mirror);
111         push @cmd, '-q' if $lei->{opt}->{quiet} ||
112                         ($lei->{opt}->{jobs} // 1) > 1;
113         push @cmd, '-v' if $lei->{opt}->{verbose};
114         # XXX any other options to support?
115         # --reference is tricky with multiple epochs, but handled
116         # automatically if using manifest.js.gz
117         @cmd;
118 }
119
120 sub ft_rename ($$$;$) {
121         my ($ft, $dst, $open_mode, $fh) = @_;
122         my @st = stat($fh // $dst);
123         my $mode = @st ? ($st[2] & 07777) : ($open_mode & ~umask);
124         chmod($mode, $ft) or croak "E: chmod($ft): $!";
125         require File::Copy;
126         File::Copy::mv($ft->filename, $dst) or croak "E: mv($ft => $dst): $!";
127         $ft->unlink_on_destroy(0);
128 }
129
130 sub do_reap ($;$) {
131         my ($self, $jobs) = @_;
132         $jobs //= $self->{-jobs} //= $self->{lei}->{opt}->{jobs} // 1;
133         $jobs = 1 if $jobs < 1;
134         while (keys(%$LIVE) >= $jobs) {
135                 my $pid = waitpid(-1, 0) // die "waitpid(-1): $!";
136                 if (my $x = delete $LIVE->{$pid}) {
137                         my $cb = shift @$x;
138                         $cb->(@$x) if $cb;
139                 } else {
140                         warn "reaped unknown PID=$pid ($?)\n";
141                 }
142         }
143 }
144
145 sub _get_txt_start { # non-fatal
146         my ($self, $endpoint, $fini) = @_;
147         my $uri = URI->new($self->{cur_src} // $self->{src});
148         my $lei = $self->{lei};
149         my $path = $uri->path;
150         chop($path) eq '/' or die "BUG: $uri not canonicalized";
151         $uri->path("$path/$endpoint");
152         my $f = (split(m!/!, $endpoint))[-1];
153         my $ft = File::Temp->new(TEMPLATE => "$f-XXXX", TMPDIR => 1);
154         my $opt = { 0 => $lei->{0}, 1 => $lei->{1}, 2 => $lei->{2} };
155         my $cmd = $self->{curl}->for_uri($lei, $uri, qw(--compressed -R -o),
156                                         $ft->filename);
157         do_reap($self);
158         $lei->qerr("# @$cmd");
159         return if $self->{dry_run};
160         $self->{"-get_txt.$endpoint"} = [ $ft, $cmd, $uri ];
161         $LIVE->{spawn($cmd, undef, $opt)} =
162                         [ \&_get_txt_done, $self, $endpoint, $fini ];
163 }
164
165 sub _get_txt_done { # returns true on error (non-fatal), undef on success
166         my ($self, $endpoint) = @_;
167         my ($fh, $cmd, $uri) = @{delete $self->{"-get_txt.$endpoint"}};
168         my $cerr = $?;
169         $? = 0; # don't influence normal lei exit
170         return warn("$uri missing\n") if ($cerr >> 8) == 22;
171         return warn("# @$cmd failed (non-fatal)\n") if $cerr;
172         seek($fh, SEEK_SET, 0) or die "seek: $!";
173         $self->{"mtime.$endpoint"} = (stat($fh))[9];
174         local $/;
175         $self->{"txt.$endpoint"} = <$fh>;
176         undef; # success
177 }
178
179 sub _write_inbox_config {
180         my ($self) = @_;
181         my $buf = delete($self->{'txt._/text/config/raw'}) // return;
182         my $dst = $self->{cur_dst} // $self->{dst};
183         my $f = "$dst/inbox.config.example";
184         my $mtime = delete $self->{'mtime._/text/config/raw'};
185         if (sysopen(my $fh, $f, O_CREAT|O_EXCL|O_WRONLY)) {
186                 print $fh $buf or die "print: $!";
187                 chmod(0444 & ~umask, $fh) or die "chmod($f): $!";
188                 $fh->flush or die "flush($f): $!";
189                 if (defined $mtime) {
190                         utime($mtime, $mtime, $fh) or die "utime($f): $!";
191                 }
192         } elsif (!$!{EEXIST}) {
193                 die "open($f): $!";
194         }
195         my $cfg = PublicInbox::Config->git_config_dump($f, $self->{lei}->{2});
196         my $ibx = $self->{ibx} = {};
197         for my $sec (grep(/\Apublicinbox\./, @{$cfg->{-section_order}})) {
198                 for (qw(address newsgroup nntpmirror)) {
199                         $ibx->{$_} = $cfg->{"$sec.$_"};
200                 }
201         }
202 }
203
204 sub set_description ($) {
205         my ($self) = @_;
206         my $dst = $self->{cur_dst} // $self->{dst};
207         chomp(my $orig = PublicInbox::Git::try_cat("$dst/description"));
208         my $d = $orig;
209         while (defined($d) && ($d =~ m!^\(\$INBOX_DIR/description missing\)! ||
210                         $d =~ /^Unnamed repository/ || $d !~ /\S/)) {
211                 $d = delete($self->{'txt.description'});
212         }
213         $d //= 'mirror of '.($self->{cur_src} // $self->{src});
214         atomic_write($dst, 'description', $d."\n") if $d ne $orig;
215 }
216
217 sub index_cloned_inbox {
218         my ($self, $iv) = @_;
219         my $lei = $self->{lei};
220
221         # n.b. public-inbox-clone works w/o (SQLite || Xapian)
222         # lei is useless without Xapian + SQLite
223         if ($lei->{cmd} ne 'public-inbox-clone') {
224                 require PublicInbox::InboxWritable;
225                 require PublicInbox::Admin;
226                 my $ibx = delete($self->{ibx}) // {
227                         address => [ 'lei@example.com' ],
228                         version => $iv,
229                 };
230                 $ibx->{inboxdir} = $self->{cur_dst} // $self->{dst};
231                 PublicInbox::Inbox->new($ibx);
232                 PublicInbox::InboxWritable->new($ibx);
233                 my $opt = {};
234                 for my $sw ($lei->index_opt) {
235                         my ($k) = ($sw =~ /\A([\w-]+)/);
236                         $opt->{$k} = $lei->{opt}->{$k};
237                 }
238                 # force synchronous dwaitpid for v2:
239                 local $PublicInbox::DS::in_loop = 0;
240                 my $cfg = PublicInbox::Config->new(undef, $lei->{2});
241                 my $env = PublicInbox::Admin::index_prepare($opt, $cfg);
242                 local %ENV = (%ENV, %$env) if $env;
243                 PublicInbox::Admin::progress_prepare($opt, $lei->{2});
244                 PublicInbox::Admin::index_inbox($ibx, undef, $opt);
245         }
246         return if defined $self->{cur_dst}; # one of many repos to clone
247 }
248
249 sub run_reap {
250         my ($lei, $cmd, $opt) = @_;
251         $lei->qerr("# @$cmd");
252         waitpid(spawn($cmd, undef, $opt), 0) // die "waitpid: $!";
253         my $ret = $?;
254         $? = 0; # don't let it influence normal exit
255         $ret;
256 }
257
258 sub start_cmd {
259         my ($self, $cmd, $opt, $fini) = @_;
260         do_reap($self);
261         $self->{lei}->qerr("# @$cmd");
262         return if $self->{dry_run};
263         $LIVE->{spawn($cmd, undef, $opt)} = [ \&reap_cmd, $self, $cmd, $fini ]
264 }
265
266 sub fetch_args ($$) {
267         my ($lei, $opt) = @_;
268         my @cmd; # (git --git-dir=...) to be added by caller
269         $opt->{$_} = $lei->{$_} for (0..2);
270         # we support "-c $key=$val" for arbitrary git config options
271         # e.g.: git -c http.proxy=socks5h://127.0.0.1:9050
272         push(@cmd, '-c', $_) for @{$lei->{opt}->{c} // []};
273         push @cmd, 'fetch';
274         push @cmd, '-q' if $lei->{opt}->{quiet} ||
275                         ($lei->{opt}->{jobs} // 1) > 1;
276         push @cmd, '-v' if $lei->{opt}->{verbose};
277         push(@cmd, '-p') if $lei->{opt}->{prune};
278         @cmd;
279 }
280
281 sub upr { # feed `git update-ref --stdin -z' verbosely
282         my ($lei, $w, $op, @rest) = @_; # ($ref, $oid) = @rest
283         $lei->qerr("# $op @rest") if $lei->{opt}->{verbose};
284         print $w "$op ", join("\0", @rest, '') or die "print(w): $!";
285 }
286
287 sub fgrp_update {
288         my ($fgrp) = @_;
289         return if !keep_going($fgrp);
290         my $srcfh = delete $fgrp->{srcfh} or return;
291         my $dstfh = delete $fgrp->{dstfh} or return;
292         seek($srcfh, SEEK_SET, 0) or die "seek(src): $!";
293         seek($dstfh, SEEK_SET, 0) or die "seek(dst): $!";
294         my %src = map { chomp; split(/\0/) } (<$srcfh>);
295         close $srcfh;
296         my %dst = map { chomp; split(/\0/) } (<$dstfh>);
297         close $dstfh;
298         pipe(my ($r, $w)) or die "pipe: $!";
299         my $cmd = [ 'git', "--git-dir=$fgrp->{cur_dst}",
300                 qw(update-ref --stdin -z) ];
301         my $lei = $fgrp->{lei};
302         my $pack = PublicInbox::OnDestroy->new($$, \&pack_dst, $fgrp);
303         start_cmd($fgrp, $cmd, { 0 => $r, 2 => $lei->{2} }, $pack);
304         close $r or die "close(r): $!";
305         return if $fgrp->{dry_run};
306         for my $ref (keys %dst) {
307                 my $new = delete $src{$ref};
308                 my $old = $dst{$ref};
309                 if (defined $new) {
310                         $new eq $old or
311                                 upr($lei, $w, 'update', $ref, $new, $old);
312                 } else {
313                         upr($lei, $w, 'delete', $ref, $old);
314                 }
315         }
316         while (my ($ref, $oid) = each %src) {
317                 upr($lei, $w, 'create', $ref, $oid);
318         }
319         close($w) or warn "E: close(update-ref --stdin): $! (need git 1.8.5+)\n";
320 }
321
322 sub pack_dst { # packs lightweight satellite repos
323         my ($fgrp) = @_;
324         pack_refs($fgrp, $fgrp->{cur_dst});
325 }
326
327 sub pack_refs {
328         my ($self, $git_dir) = @_;
329         my $cmd = [ 'git', "--git-dir=$git_dir", qw(pack-refs --all --prune) ];
330         start_cmd($self, $cmd, { 2 => $self->{lei}->{2} });
331 }
332
333 sub fgrpv_done {
334         my ($fgrpv) = @_;
335         return if !$LIVE;
336         my $first = $fgrpv->[0] // die 'BUG: no fgrpv->[0]';
337         return if !keep_going($first);
338         pack_refs($first, $first->{-osdir}); # objstore refs always packed
339         for my $fgrp (@$fgrpv) {
340                 my $rn = $fgrp->{-remote};
341                 my %opt = ( 2 => $fgrp->{lei}->{2} );
342
343                 my $update_ref = PublicInbox::OnDestroy->new($$,
344                                                         \&fgrp_update, $fgrp);
345
346                 my $src = [ 'git', "--git-dir=$fgrp->{-osdir}", 'for-each-ref',
347                         "--format=refs/%(refname:lstrip=3)%00%(objectname)",
348                         "refs/remotes/$rn/" ];
349                 open(my $sfh, '+>', undef) or die "open(src): $!";
350                 $fgrp->{srcfh} = $sfh;
351                 start_cmd($fgrp, $src, { %opt, 1 => $sfh }, $update_ref);
352                 my $dst = [ 'git', "--git-dir=$fgrp->{cur_dst}", 'for-each-ref',
353                         '--format=%(refname)%00%(objectname)' ];
354                 open(my $dfh, '+>', undef) or die "open(dst): $!";
355                 $fgrp->{dstfh} = $dfh;
356                 start_cmd($fgrp, $dst, { %opt, 1 => $dfh }, $update_ref);
357         }
358 }
359
360 sub fgrp_fetch_all {
361         my ($self) = @_;
362         my $todo = $FGRP_TODO;
363         $FGRP_TODO = \'BUG on further use';
364         keys(%$todo) or return;
365
366         # Rely on the fgrptmp remote groups in the config file rather
367         # than listing all remotes since the remote name list may exceed
368         # system argv limits:
369         my $grp = 'fgrptmp';
370
371         my @git = (@{$self->{-torsocks}}, 'git');
372         my $j = $self->{lei}->{opt}->{jobs};
373         my $opt = {};
374         my @fetch = do {
375                 local $self->{lei}->{opt}->{jobs} = 1;
376                 (fetch_args($self->{lei}, $opt),
377                         qw(--no-tags --multiple));
378         };
379         push(@fetch, "-j$j") if $j;
380         while (my ($osdir, $fgrpv) = each %$todo) {
381                 my $f = "$osdir/config";
382                 return if !keep_going($self);
383
384                 # clobber group from previous run atomically
385                 my $cmd = ['git', "--git-dir=$osdir", qw(config -f),
386                                 $f, '--unset-all', "remotes.$grp"];
387                 $self->{lei}->qerr("# @$cmd");
388                 if (!$self->{dry_run}) {
389                         my $pid = spawn($cmd, undef, { 2 => $self->{lei}->{2} });
390                         waitpid($pid, 0) // die "waitpid: $!";
391                         die "E: @$cmd: \$?=$?" if ($? && ($? >> 8) != 5);
392
393                         # update the config atomically via O_APPEND while
394                         # respecting git-config locking
395                         sysopen(my $lk, "$f.lock", O_CREAT|O_EXCL|O_WRONLY)
396                                 or die "open($f.lock): $!";
397                         open my $fh, '>>', $f or die "open(>>$f): $!";
398                         $fh->autoflush(1);
399                         my $buf = join('', "[remotes]\n",
400                                 map { "\t$grp = $_->{-remote}\n" } @$fgrpv);
401                         print $fh $buf or die "print($f): $!";
402                         close $fh or die "close($f): $!";
403                         unlink("$f.lock") or die "unlink($f.lock): $!";
404                 }
405
406                 $cmd = [ @git, "--git-dir=$osdir", @fetch, $grp ];
407                 my $end = PublicInbox::OnDestroy->new($$, \&fgrpv_done, $fgrpv);
408                 start_cmd($self, $cmd, $opt, $end);
409         }
410 }
411
412 # keep this idempotent for future use by public-inbox-fetch
413 sub forkgroup_prep {
414         my ($self, $uri) = @_;
415         $self->{-ent} // return;
416         my $os = $self->{-objstore} // return;
417         my $fg = $self->{-ent}->{forkgroup} // return;
418         my $dir = "$os/$fg.git";
419         if (!-d $dir && !$self->{dry_run}) {
420                 PublicInbox::Import::init_bare($dir);
421                 my @cmd = ('git', "--git-dir=$dir", 'config');
422                 my $opt = { 2 => $self->{lei}->{2} };
423                 for ('repack.useDeltaIslands=true',
424                                 'pack.island=refs/remotes/([^/]+)/') {
425                         run_die([@cmd, split(/=/, $_, 2)], undef, $opt);
426                 }
427         }
428         my $key = $self->{-key} // die 'BUG: no -key';
429         my $rn = substr(sha256_hex($key), 0, 16);
430         if (!-d $self->{cur_dst} && !$self->{dry_run}) {
431                 PublicInbox::Import::init_bare($self->{cur_dst});
432                 my $f = "$self->{cur_dst}/config";
433                 open my $fh, '+>>', $f or die "open:($f): $!";
434                 print $fh <<EOM or die "print($f): $!";
435 ; rely on the "$rn" remote in the
436 ; $fg fork group for fetches
437 ; only uncomment the following iff you detach from fork groups
438 ; [remote "origin"]
439 ;       url = $uri
440 ;       fetch = +refs/*:refs/*
441 ;       mirror = true
442 EOM
443                 close $fh or die "close($f): $!";
444         }
445         if (!$self->{dry_run}) {
446                 my $alt = File::Spec->rel2abs("$dir/objects");
447                 my $o = "$self->{cur_dst}/objects";
448                 my $f = "$o/info/alternates";
449                 my $l = File::Spec->abs2rel($alt, File::Spec->rel2abs($o));
450                 open my $fh, '+>>', $f or die "open($f): $!";
451                 seek($fh, SEEK_SET, 0) or die "seek($f): $!";
452                 chomp(my @cur = <$fh>);
453                 if (!grep(/\A\Q$l\E\z/, @cur)) {
454                         say $fh $l or die "say($f): $!";
455                 }
456                 close $fh or die "close($f): $!";
457         }
458         bless {
459                 %$self, -osdir => $dir, -remote => $rn, -uri => $uri
460         }, __PACKAGE__;
461 }
462
463 sub fp_done {
464         my ($self, $cmd, $cb, @arg) = @_;
465         if ($?) {
466                 $self->{lei}->err("@$cmd failed (\$?=$?) (non-fatal)");
467                 $? = 0; # don't let it influence normal exit
468         }
469         return if !keep_going($self);
470         my $fh = delete $self->{-show_ref} // die 'BUG: no show-ref output';
471         seek($fh, SEEK_SET, 0) or die "seek(show_ref): $!";
472         $self->{-ent} // die 'BUG: no -ent';
473         my $A = $self->{-ent}->{fingerprint} // die 'BUG: no fingerprint';
474         my $B = sha1_hex(do { local $/; <$fh> } // die("read(show_ref): $!"));
475         return $cb->($self, @arg) if $A ne $B;
476         $self->{lei}->qerr("# $self->{-key} up-to-date");
477 }
478
479 sub cmp_fp_do {
480         my ($self, $cb, @arg) = @_;
481         # $cb is either resume_fetch or fgrp_enqueue
482         $self->{-ent} // return $cb->($self, @arg);
483         my $new = $self->{-ent}->{fingerprint} // return $cb->($self, @arg);
484         my $key = $self->{-key} // die 'BUG: no -key';
485         if (my $cur_ent = $self->{-local_manifest}->{$key}) {
486                 # runs go_fetch->DESTROY run if eq
487                 return if $cur_ent->{fingerprint} eq $new;
488         }
489         my $dst = $self->{cur_dst} // $self->{dst};
490         my $cmd = ['git', "--git-dir=$dst", 'show-ref'];
491         my $opt = { 2 => $self->{lei}->{2} };
492         open($opt->{1}, '+>', undef) or die "open(tmp): $!";
493         $self->{-show_ref} = $opt->{1};
494         do_reap($self);
495         $self->{lei}->qerr("# @$cmd");
496         return if $self->{dry_run};
497         $LIVE->{spawn($cmd, undef, $opt)} = [ \&fp_done, $self, $cmd,
498                                                 $cb, @arg ];
499 }
500
501 sub resume_fetch {
502         my ($self, $uri, $fini) = @_;
503         return if !keep_going($self);
504         my $dst = $self->{cur_dst} // $self->{dst};
505         my @git = ('git', "--git-dir=$dst");
506         my $opt = { 2 => $self->{lei}->{2} };
507         my $rn = 'origin'; # configurable?
508         for ("url=$uri", "fetch=+refs/*:refs/*", 'mirror=true') {
509                 my @kv = split(/=/, $_, 2);
510                 $kv[0] = "remote.$rn.$kv[0]";
511                 next if $self->{dry_run};
512                 run_die([@git, 'config', @kv], undef, $opt);
513         }
514         my $cmd = [ @{$self->{-torsocks}}, @git,
515                         fetch_args($self->{lei}, $opt), $rn ];
516         push @$cmd, '-P' if $self->{lei}->{prune}; # --prune-tags implied
517         start_cmd($self, $cmd, $opt, $fini);
518 }
519
520 sub fgrp_enqueue {
521         my ($fgrp, $end) = @_; # $end calls fgrp_fetch_all
522         return if !keep_going($fgrp);
523         my $opt = { 2 => $fgrp->{lei}->{2} };
524         # --no-tags is required to avoid conflicts
525         my $u = $fgrp->{-uri} // die 'BUG: no {-uri}';
526         my $rn = $fgrp->{-remote} // die 'BUG: no {-remote}';
527         my @cmd = ('git', "--git-dir=$fgrp->{-osdir}", 'config');
528         for ("url=$u", "fetch=+refs/*:refs/remotes/$rn/*", 'tagopt=--no-tags') {
529                 my @kv = split(/=/, $_, 2);
530                 $kv[0] = "remote.$rn.$kv[0]";
531                 $fgrp->{dry_run} ? $fgrp->{lei}->qerr("# @cmd @kv") :
532                                 run_die([@cmd, @kv], undef, $opt);
533         }
534         push @{$FGRP_TODO->{$fgrp->{-osdir}}}, $fgrp;
535 }
536
537 sub clone_v1 {
538         my ($self, $end) = @_;
539         my $lei = $self->{lei};
540         my $curl = $self->{curl} //= PublicInbox::LeiCurl->new($lei) or return;
541         my $uri = URI->new($self->{cur_src} // $self->{src});
542         my $path = $uri->path;
543         $path =~ s!/*\z!! and $uri->path($path);
544         defined($lei->{opt}->{epoch}) and
545                 die "$uri is a v1 inbox, --epoch is not supported\n";
546         $self->{-torsocks} //= $curl->torsocks($lei, $uri) or return;
547         my $dst = $self->{cur_dst} // $self->{dst};
548         my $fini = PublicInbox::OnDestroy->new($$, \&v1_done, $self);
549         my $resume = -d $dst;
550         if (my $fgrp = forkgroup_prep($self, $uri)) {
551                 $fgrp->{-fini} = $fini;
552                 $resume ? cmp_fp_do($fgrp, \&fgrp_enqueue, $end)
553                         : fgrp_enqueue($fgrp, $end);
554         } elsif ($resume) {
555                 cmp_fp_do($self, \&resume_fetch, $uri, $fini);
556         } else { # normal clone
557                 my $cmd = [ @{$self->{-torsocks}},
558                                 clone_cmd($lei, my $opt = {}), "$uri", $dst ];
559                 if (defined($self->{-ent})) {
560                         if (defined(my $ref = $self->{-ent}->{reference})) {
561                                 -e "$self->{dst}$ref" and
562                                         push @$cmd, '--reference',
563                                                 "$self->{dst}$ref";
564                         }
565                 }
566                 start_cmd($self, $cmd, $opt, $fini);
567         }
568         if (!$self->{-is_epoch} && $lei->{opt}->{'inbox-config'} =~
569                                 /\A(?:always|v1)\z/s) {
570                 _get_txt_start($self, '_/text/config/raw', $fini);
571         }
572
573         my $d = $self->{-ent} ? $self->{-ent}->{description} : undef;
574         $self->{'txt.description'} = $d if defined $d;
575         (!defined($d) && !$end) and
576                 _get_txt_start($self, 'description', $fini);
577
578         $end or do_reap($self, 1); # for non-manifest clone
579 }
580
581 sub parse_epochs ($$) {
582         my ($opt_epochs, $v2_epochs) = @_; # $epochs "LOW..HIGH"
583         $opt_epochs // return; # undef => all epochs
584         my ($lo, $dotdot, $hi, @extra) = split(/(\.\.)/, $opt_epochs);
585         undef($lo) if ($lo // '') eq '';
586         my $re = qr/\A~?[0-9]+\z/;
587         if (@extra || (($lo // '0') !~ $re) ||
588                         (($hi // '0') !~ $re) ||
589                         !(grep(defined, $lo, $hi))) {
590                 die <<EOM;
591 --epoch=$opt_epochs not in the form of `LOW..HIGH', `LOW..', nor `..HIGH'
592 EOM
593         }
594         my @n = sort { $a <=> $b } keys %$v2_epochs;
595         for (grep(defined, $lo, $hi)) {
596                 if (/\A[0-9]+\z/) {
597                         $_ > $n[-1] and die
598 "`$_' exceeds maximum available epoch ($n[-1])\n";
599                         $_ < $n[0] and die
600 "`$_' is lower than minimum available epoch ($n[0])\n";
601                 } elsif (/\A~([0-9]+)/) {
602                         my $off = -$1 - 1;
603                         $n[$off] // die "`$_' is out of range\n";
604                         $_ = $n[$off];
605                 } else { die "`$_' not understood\n" }
606         }
607         defined($lo) && defined($hi) && $lo > $hi and die
608 "low value (`$lo') exceeds high (`$hi')\n";
609         $lo //= $n[0] if $dotdot;
610         $hi //= $n[-1] if $dotdot;
611         $hi //= $lo;
612         my $want = {};
613         for ($lo..$hi) {
614                 if (defined $v2_epochs->{$_}) {
615                         $want->{$_} = 1;
616                 } else {
617                         warn
618 "# epoch $_ is not available (non-fatal, $lo..$hi)\n";
619                 }
620         }
621         $want
622 }
623
624 sub init_placeholder ($$$) {
625         my ($src, $edst, $ent) = @_;
626         PublicInbox::Import::init_bare($edst);
627         my $f = "$edst/config";
628         open my $fh, '>>', $f or die "open($f): $!";
629         print $fh <<EOM or die "print($f): $!";
630 [remote "origin"]
631         url = $src
632         fetch = +refs/*:refs/*
633         mirror = true
634
635 ; This git epoch was created read-only and "public-inbox-fetch"
636 ; will not fetch updates for it unless write permission is added.
637 ; Hint: chmod +w $edst
638 EOM
639         if (defined($ent->{owner})) {
640                 print $fh <<EOM or die "print($f): $!";
641 [gitweb]
642         owner = $ent->{owner}
643 EOM
644         }
645         close $fh or die "close($f): $!";
646         my %map = (head => 'HEAD', description => undef);
647         while (my ($key, $fn) = each %map) {
648                 my $val = $ent->{$key} // next;
649                 $fn //= $key;
650                 $fn = "$edst/$fn";
651                 open $fh, '>', $fn or die "open($fn): $!";
652                 print $fh $val, "\n" or die "print($fn): $!";
653                 close $fh or die "close($fn): $!";
654         }
655 }
656
657 sub reap_cmd { # async, called via SIGCHLD
658         my ($self, $cmd) = @_;
659         my $cerr = $?;
660         $? = 0; # don't let it influence normal exit
661         $self->{lei}->child_error($cerr, "@$cmd failed (\$?=$cerr)") if $cerr;
662 }
663
664 sub up_fp_done {
665         my ($self) = @_;
666         return if !keep_going($self);
667         my $fh = delete $self->{-show_ref_up} // die 'BUG: no show-ref output';
668         seek($fh, SEEK_SET, 0) or die "seek(show_ref): $!";
669         $self->{-ent} // die 'BUG: no -ent';
670         my $A = $self->{-ent}->{fingerprint} // die 'BUG: no fingerprint';
671         my $B = sha1_hex(do { local $/; <$fh> } // die("read(show_ref): $!"));
672         return if $A eq $B;
673         $self->{-ent}->{fingerprint} = $B;
674         push @{$self->{chg}->{fp_mismatch}}, $self->{-key};
675 }
676
677 sub atomic_write ($$$) {
678         my ($dn, $bn, $raw) = @_;
679         my $ft = File::Temp->new(DIR => $dn, TEMPLATE => "$bn-XXXX");
680         print $ft $raw or die "print($ft): $!";
681         $ft->flush or die "flush($ft): $!";
682         ft_rename($ft, "$dn/$bn", 0666);
683 }
684
685 # modifies the to-be-written manifest entry, and sets values from it, too
686 sub update_ent {
687         my ($self) = @_;
688         my $key = $self->{-key} // die 'BUG: no -key';
689         my $new = $self->{-ent}->{fingerprint};
690         my $cur = $self->{-local_manifest}->{$key}->{fingerprint} // "\0";
691         my $dst = $self->{cur_dst} // $self->{dst};
692         if (defined($new) && $new ne $cur) {
693                 my $cmd = ['git', "--git-dir=$dst", 'show-ref'];
694                 my $opt = { 2 => $self->{lei}->{2} };
695                 open($opt->{1}, '+>', undef) or die "open(tmp): $!";
696                 $self->{-show_ref_up} = $opt->{1};
697                 my $done = PublicInbox::OnDestroy->new($$, \&up_fp_done, $self);
698                 start_cmd($self, $cmd, $opt, $done);
699         }
700         $new = $self->{-ent}->{head};
701         $cur = $self->{-local_manifest}->{$key}->{head} // "\0";
702         if (defined($new) && $new ne $cur) {
703                 # n.b. grokmirror writes raw contents to $dst/HEAD w/o locking
704                 my $cmd = [ 'git', "--git-dir=$dst" ];
705                 if ($new =~ s/\Aref: //) {
706                         push @$cmd, qw(symbolic-ref HEAD), $new;
707                 } elsif ($new =~ /\A[a-f0-9]{40,}\z/) {
708                         push @$cmd, qw(update-ref --no-deref HEAD), $new;
709                 } else {
710                         undef $cmd;
711                         warn "W: $key: {head} => `$new' not understood\n";
712                 }
713                 start_cmd($self, $cmd, { 2 => $self->{lei}->{2} }) if $cmd;
714         }
715         if (my $symlinks = $self->{-ent}->{symlinks}) {
716                 my $top = File::Spec->rel2abs($self->{dst});
717                 push @{$self->{-new_symlinks}}, @$symlinks;
718                 for my $p (@$symlinks) {
719                         my $ln = "$top/$p";
720                         $ln =~ tr!/!/!s;
721                         my (undef, $dn, $bn) = File::Spec->splitpath($ln);
722                         File::Path::mkpath($dn);
723                         my $tgt = "$top/$key";
724                         $tgt = File::Spec->abs2rel($tgt, $dn);
725                         if (lstat($ln)) {
726                                 if (-l _) {
727                                         next if readlink($ln) eq $tgt;
728                                         unlink($ln) or die "unlink($ln): $!";
729                                 } else {
730                                         push @{$self->{chg}->{badlink}}, $p;
731                                 }
732                         }
733                         symlink($tgt, $ln) or die "symlink($tgt, $ln): $!";
734                 }
735         }
736         if (defined(my $t = $self->{-ent}->{modified})) {
737                 my ($dn, $bn) = ("$dst/info/web", 'last-modified');
738                 my $orig = PublicInbox::Git::try_cat("$dn/$bn");
739                 $t = strftime('%F %T', gmtime($t))." +0000\n";
740                 File::Path::mkpath($dn);
741                 atomic_write($dn, $bn, $t) if $orig ne $t;
742         }
743
744         $new = $self->{-ent}->{owner} // return;
745         $cur = $self->{-local_manifest}->{$key}->{owner} // "\0";
746         return if $cur eq $new;
747         my $cmd = [ qw(git config -f), "$dst/config", 'gitweb.owner', $new ];
748         start_cmd($self, $cmd, { 2 => $self->{lei}->{2} });
749 }
750
751 sub v1_done { # called via OnDestroy
752         my ($self) = @_;
753         return if $self->{dry_run} || !keep_going($self);
754         _write_inbox_config($self);
755         my $dst = $self->{cur_dst} // $self->{dst};
756         update_ent($self) if $self->{-ent};
757         my $o = "$dst/objects";
758         if (open(my $fh, '<', my $fn = "$o/info/alternates")) {;
759                 my $base = File::Spec->rel2abs($o);
760                 my @l = <$fh>;
761                 my $ft;
762                 for (@l) {
763                         next unless m!\A/!;
764                         $_ = File::Spec->abs2rel($_, $base);
765                         $ft //= File::Temp->new(TEMPLATE => '.XXXX',
766                                                 DIR => "$o/info");
767                 }
768                 if ($ft) {
769                         print $ft @l or die "print($ft): $!";
770                         $ft->flush or die "flush($ft): $!";
771                         ft_rename($ft, $fn, 0666, $fh);
772                 }
773         }
774         eval { set_description($self) };
775         warn $@ if $@;
776         return if ($self->{-is_epoch} ||
777                 $self->{lei}->{opt}->{'inbox-config'} ne 'always');
778         write_makefile($dst, 1);
779         index_cloned_inbox($self, 1);
780 }
781
782 sub v2_done { # called via OnDestroy
783         my ($self) = @_;
784         return if $self->{dry_run} || !keep_going($self);
785         my $dst = $self->{cur_dst} // $self->{dst};
786         require PublicInbox::Lock;
787         my $lk = bless { lock_path => "$dst/inbox.lock" }, 'PublicInbox::Lock';
788         my $lck = $lk->lock_for_scope($$);
789         _write_inbox_config($self);
790         require PublicInbox::MultiGit;
791         my $mg = PublicInbox::MultiGit->new($dst, 'all.git', 'git');
792         $mg->fill_alternates;
793         for my $i ($mg->git_epochs) { $mg->epoch_cfg_set($i) }
794         for my $edst (@{delete($self->{-read_only}) // []}) {
795                 my @st = stat($edst) or die "stat($edst): $!";
796                 chmod($st[2] & 0555, $edst) or die "chmod(a-w, $edst): $!";
797         }
798         write_makefile($dst, 2);
799         undef $lck; # unlock
800         eval { set_description($self) };
801         warn $@ if $@;
802         index_cloned_inbox($self, 2);
803 }
804
805 sub clone_v2_prep ($$;$) {
806         my ($self, $v2_epochs, $m) = @_; # $m => manifest.js.gz hashref
807         my $lei = $self->{lei};
808         my $curl = $self->{curl} //= PublicInbox::LeiCurl->new($lei) or return;
809         my $first_uri = (map { $_->[0] } values %$v2_epochs)[0];
810         $self->{-torsocks} //= $curl->torsocks($lei, $first_uri) or return;
811         my $dst = $self->{cur_dst} // $self->{dst};
812         my $want = parse_epochs($lei->{opt}->{epoch}, $v2_epochs);
813         my $task = $m ? bless { %$self }, __PACKAGE__ : $self;
814         my (@skip, $desc);
815         my $fini = PublicInbox::OnDestroy->new($$, \&v2_done, $task);
816         for my $nr (sort { $a <=> $b } keys %$v2_epochs) {
817                 my ($uri, $key) = @{$v2_epochs->{$nr}};
818                 my $src = $uri->as_string;
819                 my $edst = $dst;
820                 $src =~ m!/([0-9]+)(?:\.git)?\z! or die <<"";
821 failed to extract epoch number from $src
822
823                 $1 + 0 == $nr or die "BUG: <$uri> miskeyed $1 != $nr";
824                 $edst .= "/git/$nr.git";
825                 my $ent;
826                 if ($m) {
827                         $ent = $m->{$key} //
828                                 die("BUG: `$key' not in manifest.js.gz");
829                         if (defined(my $d = $ent->{description})) {
830                                 $d =~ s/ \[epoch [0-9]+\]\z//s;
831                                 $desc = $d;
832                         }
833                 }
834                 if (!$want || $want->{$nr}) {
835                         my $etask = bless { %$task, -key => $key }, __PACKAGE__;
836                         $etask->{-ent} = $ent; # may have {reference}
837                         $etask->{cur_src} = $src;
838                         $etask->{cur_dst} = $edst;
839                         $etask->{-is_epoch} = $fini;
840                         my $ref = $ent->{reference} // '';
841                         push @{$TODO->{$ref}}, $etask;
842                         $self->{any_want}->{$key} = 1;
843                 } else { # create a placeholder so users only need to chmod +w
844                         init_placeholder($src, $edst, $ent);
845                         push @{$task->{-read_only}}, $edst;
846                         push @skip, $key;
847                 }
848         }
849         # filter out the epochs we skipped
850         $self->{chg}->{manifest} = 1 if $m && delete(@$m{@skip});
851
852         (!$self->{dry_run} && !-d $dst) and File::Path::mkpath($dst);
853
854         $lei->{opt}->{'inbox-config'} =~ /\A(?:always|v2)\z/s and
855                 _get_txt_start($task, '_/text/config/raw', $fini);
856
857         defined($desc) ? ($task->{'txt.description'} = $desc) :
858                 _get_txt_start($task, 'description', $fini);
859 }
860
861 sub decode_manifest ($$$) {
862         my ($fh, $fn, $uri) = @_;
863         my $js;
864         my $gz = do { local $/; <$fh> } // die "slurp($fn): $!";
865         gunzip(\$gz => \$js, MultiStream => 1) or
866                 die "gunzip($uri): $GunzipError\n";
867         my $m = eval { PublicInbox::Config->json->decode($js) };
868         die "$uri: error decoding `$js': $@\n" if $@;
869         ref($m) eq 'HASH' or die "$uri unknown type: ".ref($m);
870         $m;
871 }
872
873 sub load_current_manifest ($) {
874         my ($self) = @_;
875         my $fn = $self->{-manifest} // return;
876         if (open(my $fh, '<', $fn)) {
877                 decode_manifest($fh, $fn, $fn);
878         } elsif ($!{ENOENT}) { # non-fatal, we can just do it slowly
879                 warn "open($fn): $!\n" if !$self->{-initial_clone};
880                 undef;
881         } else {
882                 die "open($fn): $!\n";
883         }
884 }
885
886 sub multi_inbox ($$$) {
887         my ($self, $path, $m) = @_;
888         my $incl = $self->{lei}->{opt}->{include};
889         my $excl = $self->{lei}->{opt}->{exclude};
890
891         # assuming everything not v2 is v1, for now
892         my @v1 = sort grep(!m!.+/git/[0-9]+\.git\z!, keys %$m);
893         my @v2_epochs = sort grep(m!.+/git/[0-9]+\.git\z!, keys %$m);
894         my $v2 = {};
895
896         for (@v2_epochs) {
897                 m!\A(/.+)/git/[0-9]+\.git\z! or die "BUG: $_";
898                 push @{$v2->{$1}}, $_;
899         }
900         my $n = scalar(keys %$v2) + scalar(@v1);
901         my @orig = defined($incl // $excl) ? (keys %$v2, @v1) : ();
902         if (defined $incl) {
903                 my $re = '(?:'.join('\\z|', map {
904                                 $self->{lei}->glob2re($_) // qr/\A\Q$_\E/
905                         } @$incl).'\\z)';
906                 my @gone = delete @$v2{grep(!/$re/, keys %$v2)};
907                 delete @$m{map { @$_ } @gone} and $self->{chg}->{manifest} = 1;
908                 delete @$m{grep(!/$re/, @v1)} and $self->{chg}->{manifest} = 1;
909                 @v1 = grep(/$re/, @v1);
910         }
911         if (defined $excl) {
912                 my $re = '(?:'.join('\\z|', map {
913                                 $self->{lei}->glob2re($_) // qr/\A\Q$_\E/
914                         } @$excl).'\\z)';
915                 my @gone = delete @$v2{grep(/$re/, keys %$v2)};
916                 delete @$m{map { @$_ } @gone} and $self->{chg}->{manifest} = 1;
917                 delete @$m{grep(/$re/, @v1)} and $self->{chg}->{manifest} = 1;
918                 @v1 = grep(!/$re/, @v1);
919         }
920         my $ret; # { v1 => [ ... ], v2 => { "/$inbox_name" => [ epochs ] }}
921         $ret->{v1} = \@v1 if @v1;
922         $ret->{v2} = $v2 if keys %$v2;
923         $ret //= @orig ? "Nothing to clone, available repositories:\n\t".
924                                 join("\n\t", sort @orig)
925                         : "Nothing available to clone\n";
926         my $path_pfx = '';
927
928         # PSGI mount prefixes and manifest.js.gz prefixes don't always align...
929         if (@v2_epochs) {
930                 until (grep(m!\A\Q$$path\E/git/[0-9]+\.git\z!,
931                                 @v2_epochs) == @v2_epochs) {
932                         $$path =~ s!\A(/[^/]+)/!/! or last;
933                         $path_pfx .= $1;
934                 }
935         } elsif (@v1) {
936                 while (!defined($m->{$$path}) && $$path =~ s!\A(/[^/]+)/!/!) {
937                         $path_pfx .= $1;
938                 }
939         }
940         ($path_pfx, $n, $ret);
941 }
942
943 sub clone_all {
944         my ($self, $m) = @_;
945         my $todo = $TODO;
946         $TODO = \'BUG on further use';
947         my $end = PublicInbox::OnDestroy->new($$, \&fgrp_fetch_all, $self);
948         {
949                 my $nodep = delete $todo->{''};
950
951                 # do not download unwanted deps
952                 my $any_want = delete $self->{any_want};
953                 my @unwanted = grep { !$any_want->{$_} } keys %$todo;
954                 my @nodep = delete(@$todo{@unwanted});
955                 push(@$nodep, @$_) for @nodep;
956
957                 # handle no-dependency repos, first
958                 for (@$nodep) {
959                         clone_v1($_, $end);
960                         return if !keep_going($self);
961                 }
962         }
963         # resolve references, deepest, first:
964         while (scalar keys %$todo) {
965                 for my $x (keys %$todo) {
966                         my ($nr, $nxt);
967                         # resolve multi-level references
968                         while ($m && defined($nxt = $m->{$x}->{reference})) {
969                                 exists($todo->{$nxt}) or last;
970                                 if (++$nr > 1000) {
971                                         $m->{$x}->{reference} = undef;
972                                         $m->{$nxt}->{reference} = undef;
973                                         warn <<EOM
974 E: dependency loop detected (`$x' => `$nxt'), breaking
975 EOM
976                                 }
977                                 $x = $nxt;
978                         }
979                         my $y = delete $todo->{$x} // next; # already done
980                         for (@$y) {
981                                 clone_v1($_, $end);
982                                 return if !keep_going($self);
983                         }
984                         last; # restart %$todo iteration
985                 }
986         }
987
988         # $end->DESTROY will call fgrp_fetch_all once all references
989         # in $LIVE are gone, and do_reap will eventually drain $LIVE
990         $end = undef;
991         do_reap($self, 1);
992 }
993
994 sub dump_manifest ($$) {
995         my ($m, $ft) = @_;
996         # write the smaller manifest if epochs were skipped so
997         # users won't have to delete manifest if they +w an
998         # epoch they no longer want to skip
999         my $json = PublicInbox::Config->json->encode($m);
1000         my $mtime = (stat($ft))[9];
1001         seek($ft, SEEK_SET, 0) or die "seek($ft): $!";
1002         truncate($ft, 0) or die "truncate($ft): $!";
1003         gzip(\$json => $ft) or die "gzip($ft): $GzipError";
1004         $ft->flush or die "flush($ft): $!";
1005         utime($mtime, $mtime, "$ft") or die "utime(..., $ft): $!";
1006 }
1007
1008 sub dump_project_list ($$) {
1009         my ($self, $m) = @_;
1010         my $f = $self->{'-project-list'} // return;
1011         my $old = PublicInbox::Git::try_cat($f);
1012         my %new;
1013
1014         open my $dh, '<', '.' or die "open(.): $!";
1015         chdir($self->{dst}) or die "chdir($self->{dst}): $!";
1016         my @local = grep { -e $_ ? ($new{$_} = undef) : 1 } split(/\n/s, $old);
1017         chdir($dh) or die "chdir(restore): $!";
1018
1019         $new{substr($_, 1)} = 1 for keys %$m; # drop leading '/'
1020         my @list = sort keys %new;
1021         my @remote = grep { !defined($new{$_}) } @list;
1022         my %lnk = map { substr($_, 1) => undef } @{$self->{-new_symlinks}};
1023         @remote = grep { !exists($lnk{$_}) } @remote;
1024
1025         warn <<EOM if @remote;
1026 The following local repositories are ignored/gone from $self->{src}:
1027 EOM
1028         warn "\t", $_, "\n" for @remote;
1029         warn <<EOM if @local;
1030 The following repos in $f no longer exist on the filesystem:
1031 EOM
1032         warn "\t", $_, "\n" for @local;
1033
1034         my (undef, $dn, $bn) = File::Spec->splitpath($f);
1035         atomic_write($dn, $bn, join("\n", @list, ''));
1036 }
1037
1038 # FIXME: this gets confused by single inbox instance w/ global manifest.js.gz
1039 sub try_manifest {
1040         my ($self) = @_;
1041         my $uri = URI->new($self->{src});
1042         my $lei = $self->{lei};
1043         my $curl = $self->{curl} //= PublicInbox::LeiCurl->new($lei) or return;
1044         $self->{-torsocks} //= $curl->torsocks($lei, $uri) or return;
1045         my $path = $uri->path;
1046         chop($path) eq '/' or die "BUG: $uri not canonicalized";
1047         $uri->path($path . '/manifest.js.gz');
1048         my $manifest = $self->{-manifest} // "$self->{dst}/manifest.js.gz";
1049         my %opt = (UNLINK => 1, SUFFIX => '.tmp', TMPDIR => 1);
1050         if (!$self->{dry_run} && $manifest =~ m!\A(.+?)/[^/]+\z! and -d $1) {
1051                 $opt{DIR} = $1; # allows fast rename(2) w/o EXDEV
1052                 delete $opt{TMPDIR};
1053         }
1054         my $ft = File::Temp->new(TEMPLATE => '.manifest-XXXX', %opt);
1055         my $cmd = $curl->for_uri($lei, $uri, qw(-R -o), $ft->filename);
1056         push(@$cmd, '-z', $manifest) if -f $manifest;
1057         my $mf_url = "$uri";
1058         %opt = map { $_ => $lei->{$_} } (0..2);
1059         my $cerr = run_reap($lei, $cmd, \%opt);
1060         if ($cerr) {
1061                 return try_scrape($self) if ($cerr >> 8) == 22; # 404 missing
1062                 return $lei->child_error($cerr, "@$cmd failed");
1063         }
1064
1065         # bail out if curl -z/--timecond hit 304 Not Modified, $ft will be empty
1066         return $lei->qerr("# $manifest unchanged") if -f $manifest && !-s $ft;
1067
1068         my $m = eval { decode_manifest($ft, $ft, $uri) };
1069         if ($@) {
1070                 warn $@;
1071                 return try_scrape($self);
1072         }
1073         local $self->{chg} = {};
1074         local $self->{-local_manifest} = load_current_manifest($self);
1075         local $self->{-new_symlinks} = [];
1076         my ($path_pfx, $n, $multi) = multi_inbox($self, \$path, $m);
1077         return $lei->child_error(1, $multi) if !ref($multi);
1078         my $v2 = delete $multi->{v2};
1079         if ($v2) {
1080                 for my $name (sort keys %$v2) {
1081                         my $epochs = delete $v2->{$name};
1082                         my %v2_epochs = map {
1083                                 $uri->path($n > 1 ? $path_pfx.$path.$_
1084                                                 : $path_pfx.$_);
1085                                 my ($e) = ("$uri" =~ m!/([0-9]+)\.git\z!);
1086                                 $e // die "no [0-9]+\.git in `$uri'";
1087                                 $e => [ $uri->clone, $_ ];
1088                         } @$epochs;
1089                         ("$uri" =~ m!\A(.+/)git/[0-9]+\.git\z!) or
1090                                 die "BUG: `$uri' !~ m!/git/[0-9]+.git!";
1091                         local $self->{cur_src} = $1;
1092                         local $self->{cur_dst} = $self->{dst};
1093                         if ($n > 1 && $uri->path =~ m!\A\Q$path_pfx$path\E/(.+)/
1094                                                         git/[0-9]+\.git\z!x) {
1095                                 $self->{cur_dst} .= "/$1";
1096                         }
1097                         index($self->{cur_dst}, "\n") >= 0 and die <<EOM;
1098 E: `$self->{cur_dst}' must not contain newline
1099 EOM
1100                         clone_v2_prep($self, \%v2_epochs, $m);
1101                         return if !keep_going($self);
1102                 }
1103         }
1104         if (my $v1 = delete $multi->{v1}) {
1105                 my $p = $path_pfx.$path;
1106                 chop($p) if substr($p, -1, 1) eq '/';
1107                 $uri->path($p);
1108                 for my $name (@$v1) {
1109                         my $task = bless { %$self }, __PACKAGE__;
1110                         $task->{-ent} = $m->{$name} //
1111                                         die("BUG: no `$name' in manifest");
1112                         $task->{cur_src} = "$uri";
1113                         $task->{cur_dst} = $task->{dst};
1114                         $task->{-key} = $name;
1115                         if ($n > 1) {
1116                                 $task->{cur_dst} .= $name;
1117                                 $task->{cur_src} .= $name;
1118                         }
1119                         index($task->{cur_dst}, "\n") >= 0 and die <<EOM;
1120 E: `$task->{cur_dst}' must not contain newline
1121 EOM
1122                         $task->{cur_src} .= '/';
1123                         my $dep = $task->{-ent}->{reference} // '';
1124                         push @{$TODO->{$dep}}, $task; # for clone_all
1125                         $self->{any_want}->{$name} = 1;
1126                 }
1127         }
1128         delete local $lei->{opt}->{epoch} if defined($v2);
1129         clone_all($self, $m);
1130         return if $self->{dry_run} || !keep_going($self);
1131
1132         # set by clone_v2_prep/-I/--exclude
1133         my $mis = delete $self->{chg}->{fp_mismatch};
1134         if ($mis) {
1135                 my $t = (stat($ft))[9];
1136                 $t = strftime('%F %k:%M:%S %z', localtime($t));
1137                 warn <<EOM;
1138 W: Fingerprints for the following repositories do not match
1139 W: $mf_url @ $t:
1140 W: These repositories may have updated since $t:
1141 EOM
1142                 warn "\t", $_, "\n" for @$mis;
1143                 warn <<EOM if !$self->{lei}->{opt}->{prune};
1144 W: The above fingerprints may never match without --prune
1145 EOM
1146         }
1147         dump_manifest($m => $ft) if delete($self->{chg}->{manifest}) || $mis;
1148         my $bad = delete $self->{chg}->{badlink};
1149         warn(<<EOM, map { ("\t", $_, "\n") } @$bad) if $bad;
1150 W: The following exist and have not been converted to symlinks
1151 EOM
1152         dump_project_list($self, $m);
1153         ft_rename($ft, $manifest, 0666);
1154 }
1155
1156 sub start_clone_url {
1157         my ($self) = @_;
1158         return try_manifest($self) if $self->{src} =~ m!\Ahttps?://!;
1159         die "TODO: non-HTTP/HTTPS clone of $self->{src} not supported, yet";
1160 }
1161
1162 sub do_mirror { # via wq_io_do or public-inbox-clone
1163         my ($self) = @_;
1164         my $lei = $self->{lei};
1165         $self->{dry_run} = 1 if $lei->{opt}->{'dry-run'};
1166         umask($lei->{client_umask}) if defined $lei->{client_umask};
1167         $self->{-initial_clone} = 1 if !-d $self->{dst};
1168         eval {
1169                 my $ic = $lei->{opt}->{'inbox-config'} //= 'always';
1170                 $ic =~ /\A(?:v1|v2|always|never)\z/s or die <<"";
1171 --inbox-config must be one of `always', `v2', `v1', or `never'
1172
1173                 # we support these switches with '' (empty string).
1174                 # defaults match example conf distributed with grokmirror
1175                 my @pairs = qw(objstore objstore manifest manifest.js.gz
1176                                 project-list projects.list);
1177                 while (@pairs) {
1178                         my ($k, $default) = splice(@pairs, 0, 2);
1179                         my $v = $lei->{opt}->{$k} // next;
1180                         $v = $default if $v eq '';
1181                         $v = "$self->{dst}/$v" if $v !~ m!\A\.{0,2}/!;
1182                         $self->{"-$k"} = $v;
1183                 }
1184
1185                 local $LIVE = {};
1186                 local $TODO = {};
1187                 local $FGRP_TODO = {};
1188                 my $iv = $lei->{opt}->{'inbox-version'} //
1189                         return start_clone_url($self);
1190                 return clone_v1($self) if $iv == 1;
1191                 die "bad --inbox-version=$iv\n" if $iv != 2;
1192                 die <<EOM if $self->{src} !~ m!://!;
1193 cloning local v2 inboxes not supported
1194 EOM
1195                 try_scrape($self, 1);
1196         };
1197         $lei->fail($@) if $@;
1198 }
1199
1200 sub start {
1201         my ($cls, $lei, $src, $dst) = @_;
1202         my $self = bless { src => $src, dst => $dst }, $cls;
1203         $lei->request_umask;
1204         my ($op_c, $ops) = $lei->workers_start($self, 1);
1205         $lei->{wq1} = $self;
1206         $self->wq_io_do('do_mirror', []);
1207         $self->wq_close;
1208         $lei->wait_wq_events($op_c, $ops);
1209 }
1210
1211 sub ipc_atfork_child {
1212         my ($self) = @_;
1213         $self->{lei}->_lei_atfork_child;
1214         $self->SUPER::ipc_atfork_child;
1215 }
1216
1217 sub write_makefile {
1218         my ($dir, $ibx_ver) = @_;
1219         my $f = "$dir/Makefile";
1220         if (sysopen my $fh, $f, O_CREAT|O_EXCL|O_WRONLY) {
1221                 print $fh <<EOM or die "print($f) $!";
1222 # This is a v$ibx_ver public-inbox, see the public-inbox-v$ibx_ver-format(5)
1223 # manpage for more information on the format.  This Makefile is
1224 # intended as a familiar wrapper for users unfamiliar with
1225 # public-inbox-* commands.
1226 #
1227 # See the respective manpages for public-inbox-fetch(1),
1228 # public-inbox-index(1), etc for more information on
1229 # some of the commands used by this Makefile.
1230 #
1231 # This Makefile will not be modified nor read by public-inbox,
1232 # so you may edit it freely with your own convenience targets
1233 # and notes.  public-inbox-fetch will recreate it if removed.
1234 EOM
1235                 print $fh <<'EOM' or die "print($f): $!";
1236 # the default target:
1237 help :
1238         @echo Common targets:
1239         @echo '    make fetch        - fetch from remote git repostorie(s)'
1240         @echo '    make update       - fetch and update index '
1241         @echo
1242         @echo Rarely needed targets:
1243         @echo '    make reindex      - may be needed for new features/bugfixes'
1244         @echo '    make compact      - rewrite Xapian storage to save space'
1245         @echo '    make index        - initial index after clone
1246
1247 fetch :
1248         public-inbox-fetch
1249 update :
1250         @if ! public-inbox-fetch --exit-code; \
1251         then \
1252                 c=$$?; \
1253                 test $$c -eq 127 && exit 0; \
1254                 exit $$c; \
1255         elif test -f msgmap.sqlite3 || test -f public-inbox/msgmap.sqlite3; \
1256         then \
1257                 public-inbox-index; \
1258         else \
1259                 echo 'public-inbox index not initialized'; \
1260                 echo 'see public-inbox-index(1) man page'; \
1261         fi
1262 index :
1263         public-inbox-index
1264 reindex :
1265         public-inbox-index --reindex
1266 compact :
1267         public-inbox-compact
1268
1269 .PHONY : help fetch update index reindex compact
1270 EOM
1271                 close $fh or die "close($f): $!";
1272         } else {
1273                 die "open($f): $!" unless $!{EEXIST};
1274         }
1275 }
1276
1277 1;