]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/Git.pm
git: drop the deleted err_c file
[public-inbox.git] / lib / PublicInbox / Git.pm
1 # Copyright (C) 2014-2018 all contributors <meta@public-inbox.org>
2 # License: GPLv2 or later <https://www.gnu.org/licenses/gpl-2.0.txt>
3 #
4 # Used to read files from a git repository without excessive forking.
5 # Used in our web interfaces as well as our -nntpd server.
6 # This is based on code in Git.pm which is GPLv2+, but modified to avoid
7 # dependence on environment variables for compatibility with mod_perl.
8 # There are also API changes to simplify our usage and data set.
9 package PublicInbox::Git;
10 use strict;
11 use warnings;
12 use POSIX qw(dup2);
13 require IO::Handle;
14 use PublicInbox::Spawn qw(spawn popen_rd);
15 use base qw(Exporter);
16 our @EXPORT_OK = qw(git_unquote git_quote);
17
18 my %GIT_ESC = (
19         a => "\a",
20         b => "\b",
21         f => "\f",
22         n => "\n",
23         r => "\r",
24         t => "\t",
25         v => "\013",
26         '"' => '"',
27         '\\' => '\\',
28 );
29 my %ESC_GIT = map { $GIT_ESC{$_} => $_ } keys %GIT_ESC;
30
31
32 # unquote pathnames used by git, see quote.c::unquote_c_style.c in git.git
33 sub git_unquote ($) {
34         return $_[0] unless ($_[0] =~ /\A"(.*)"\z/);
35         $_[0] = $1;
36         $_[0] =~ s/\\([\\"abfnrtv])/$GIT_ESC{$1}/g;
37         $_[0] =~ s/\\([0-7]{1,3})/chr(oct($1))/ge;
38         $_[0];
39 }
40
41 sub git_quote ($) {
42         if ($_[0] =~ s/([\\"\a\b\f\n\r\t\013]|[^[:print:]])/
43                       '\\'.($ESC_GIT{$1}||sprintf("%0o",ord($1)))/egs) {
44                 return qq{"$_[0]"};
45         }
46         $_[0];
47 }
48
49 sub new {
50         my ($class, $git_dir) = @_;
51         my @st;
52         $st[7] = $st[10] = 0;
53         # may contain {-tmp} field for File::Temp::Dir
54         bless { git_dir => $git_dir, st => \@st, -git_path => {} }, $class
55 }
56
57 sub git_path ($$) {
58         my ($self, $path) = @_;
59         $self->{-git_path}->{$path} ||= do {
60                 local $/ = "\n";
61                 chomp(my $str = $self->qx(qw(rev-parse --git-path), $path));
62
63                 # git prior to 2.5.0 did not understand --git-path
64                 if ($str eq "--git-path\n$path") {
65                         $str = "$self->{git_dir}/$path";
66                 }
67                 $str;
68         };
69 }
70
71 sub alternates_changed {
72         my ($self) = @_;
73         my $alt = git_path($self, 'objects/info/alternates');
74         my @st = stat($alt) or return 0;
75         my $old_st = $self->{st};
76         # 10 - ctime, 7 - size
77         return 0 if ($st[10] == $old_st->[10] && $st[7] == $old_st->[7]);
78         $self->{st} = \@st;
79 }
80
81 sub last_check_err {
82         my ($self) = @_;
83         my $fh = $self->{err_c} or return;
84         sysseek($fh, 0, 0) or fail($self, "sysseek failed: $!");
85         defined(sysread($fh, my $buf, -s $fh)) or
86                         fail($self, "sysread failed: $!");
87         $buf;
88 }
89
90 sub _bidi_pipe {
91         my ($self, $batch, $in, $out, $pid, $err) = @_;
92         if ($self->{$pid}) {
93                 if (defined $err) { # "err_c"
94                         my $fh = $self->{$err};
95                         sysseek($fh, 0, 0) or fail($self, "sysseek failed: $!");
96                         truncate($fh, 0) or fail($self, "truncate failed: $!");
97                 }
98                 return;
99         }
100         my ($in_r, $in_w, $out_r, $out_w);
101
102         pipe($in_r, $in_w) or fail($self, "pipe failed: $!");
103         pipe($out_r, $out_w) or fail($self, "pipe failed: $!");
104         if ($^O eq 'linux') { # 1031: F_SETPIPE_SZ
105                 fcntl($out_w, 1031, 4096);
106                 fcntl($in_w, 1031, 4096) if $batch eq '--batch-check';
107         }
108
109         my @cmd = (qw(git), "--git-dir=$self->{git_dir}",
110                         qw(-c core.abbrev=40 cat-file), $batch);
111         my $redir = { 0 => fileno($out_r), 1 => fileno($in_w) };
112         if ($err) {
113                 open(my $fh, '+>', undef) or fail($self, "open.err failed: $!");
114                 $self->{$err} = $fh;
115                 $redir->{2} = fileno($fh);
116         }
117         my $p = spawn(\@cmd, undef, $redir);
118         defined $p or fail($self, "spawn failed: $!");
119         $self->{$pid} = $p;
120         $out_w->autoflush(1);
121         $self->{$out} = $out_w;
122         $self->{$in} = $in_r;
123 }
124
125 sub cat_file {
126         my ($self, $obj, $ref) = @_;
127         my ($retried, $in, $head);
128
129 again:
130         batch_prepare($self);
131         $self->{out}->print($obj, "\n") or fail($self, "write error: $!");
132
133         $in = $self->{in};
134         local $/ = "\n";
135         $head = $in->getline;
136         if ($head =~ / missing$/) {
137                 if (!$retried && alternates_changed($self)) {
138                         $retried = 1;
139                         cleanup($self);
140                         goto again;
141                 }
142                 return;
143         }
144         $head =~ /^[0-9a-f]{40} \S+ (\d+)$/ or
145                 fail($self, "Unexpected result from git cat-file: $head");
146
147         my $size = $1;
148         my $ref_type = $ref ? ref($ref) : '';
149
150         my $rv;
151         my $left = $size;
152         $$ref = $size if ($ref_type eq 'SCALAR');
153         my $cb_err;
154
155         if ($ref_type eq 'CODE') {
156                 $rv = eval { $ref->($in, \$left) };
157                 $cb_err = $@;
158                 # drain the rest
159                 my $max = 8192;
160                 while ($left > 0) {
161                         my $r = read($in, my $x, $left > $max ? $max : $left);
162                         defined($r) or fail($self, "read failed: $!");
163                         $r == 0 and fail($self, 'exited unexpectedly');
164                         $left -= $r;
165                 }
166         } else {
167                 my $offset = 0;
168                 my $buf = '';
169                 while ($left > 0) {
170                         my $r = read($in, $buf, $left, $offset);
171                         defined($r) or fail($self, "read failed: $!");
172                         $r == 0 and fail($self, 'exited unexpectedly');
173                         $left -= $r;
174                         $offset += $r;
175                 }
176                 $rv = \$buf;
177         }
178
179         my $r = read($in, my $buf, 1);
180         defined($r) or fail($self, "read failed: $!");
181         fail($self, 'newline missing after blob') if ($r != 1 || $buf ne "\n");
182         die $cb_err if $cb_err;
183
184         $rv;
185 }
186
187 sub batch_prepare ($) { _bidi_pipe($_[0], qw(--batch in out pid)) }
188
189 sub check {
190         my ($self, $obj) = @_;
191         _bidi_pipe($self, qw(--batch-check in_c out_c pid_c err_c));
192         $self->{out_c}->print($obj, "\n") or fail($self, "write error: $!");
193         local $/ = "\n";
194         chomp(my $line = $self->{in_c}->getline);
195         my ($hex, $type, $size) = split(' ', $line);
196
197         # Future versions of git.git may show 'ambiguous', but for now,
198         # we must handle 'dangling' below (and maybe some other oddball
199         # stuff):
200         # https://public-inbox.org/git/20190118033845.s2vlrb3wd3m2jfzu@dcvr/T/
201         return if $type eq 'missing' || $type eq 'ambiguous';
202
203         if ($hex eq 'dangling' || $hex eq 'notdir' || $hex eq 'loop') {
204                 $size = $type + length("\n");
205                 my $r = read($self->{in_c}, my $buf, $size);
206                 defined($r) or fail($self, "read failed: $!");
207                 return;
208         }
209
210         ($hex, $type, $size);
211 }
212
213 sub _destroy {
214         my ($self, $in, $out, $pid, $err) = @_;
215         my $p = delete $self->{$pid} or return;
216         delete @$self{($in, $out)};
217         delete $self->{$err} if $err; # `err_c'
218         waitpid $p, 0;
219 }
220
221 sub fail {
222         my ($self, $msg) = @_;
223         cleanup($self);
224         die $msg;
225 }
226
227 sub popen {
228         my ($self, @cmd) = @_;
229         @cmd = ('git', "--git-dir=$self->{git_dir}", @cmd);
230         popen_rd(\@cmd);
231 }
232
233 sub qx {
234         my ($self, @cmd) = @_;
235         my $fh = $self->popen(@cmd);
236         defined $fh or return;
237         local $/ = "\n";
238         return <$fh> if wantarray;
239         local $/;
240         <$fh>
241 }
242
243 # returns true if there are pending "git cat-file" processes
244 sub cleanup {
245         my ($self) = @_;
246         _destroy($self, qw(in out pid));
247         _destroy($self, qw(in_c out_c pid_c err_c));
248         !!($self->{pid} || $self->{pid_c});
249 }
250
251 # assuming a well-maintained repo, this should be a somewhat
252 # accurate estimation of its size
253 # TODO: show this in the WWW UI as a hint to potential cloners
254 sub packed_bytes {
255         my ($self) = @_;
256         my $n = 0;
257         my $pack_dir = git_path($self, 'objects/pack');
258         foreach my $p (glob("$pack_dir/*.pack")) {
259                 $n += -s $p;
260         }
261         $n
262 }
263
264 sub DESTROY { cleanup(@_) }
265
266 sub local_nick ($) {
267         my ($self) = @_;
268         my $ret = '???';
269         # don't show full FS path, basename should be OK:
270         if ($self->{git_dir} =~ m!/([^/]+)(?:/\.git)?\z!) {
271                 $ret = "/path/to/$1";
272         }
273         wantarray ? ($ret) : $ret;
274 }
275
276 # show the blob URL for cgit/gitweb/whatever
277 sub src_blob_url {
278         my ($self, $oid) = @_;
279         # blob_url_format = "https://example.com/foo.git/blob/%s"
280         if (my $bfu = $self->{blob_url_format}) {
281                 return map { sprintf($_, $oid) } @$bfu if wantarray;
282                 return sprintf($bfu->[0], $oid);
283         }
284         local_nick($self);
285 }
286
287 sub host_prefix_url ($$) {
288         my ($env, $url) = @_;
289         return $url if index($url, '//') >= 0;
290         my $scheme = $env->{'psgi.url_scheme'};
291         my $host_port = $env->{HTTP_HOST} ||
292                 "$env->{SERVER_NAME}:$env->{SERVER_PORT}";
293         "$scheme://$host_port". ($env->{SCRIPT_NAME} || '/') . $url;
294 }
295
296 sub pub_urls {
297         my ($self, $env) = @_;
298         if (my $urls = $self->{cgit_url}) {
299                 return map { host_prefix_url($env, $_) } @$urls;
300         }
301         local_nick($self);
302 }
303
304 sub commit_title ($$) {
305         my ($self, $oid) = @_; # PublicInbox::Git, $sha1hex
306         my $buf = cat_file($self, $oid) or return;
307         utf8::decode($$buf);
308         ($$buf =~ /\r?\n\r?\n([^\r\n]+)\r?\n?/)[0]
309 }
310
311 # returns the modified time of a git repo, same as the "modified" field
312 # of a grokmirror manifest
313 sub modified ($) {
314         my ($self) = @_;
315         my $modified = 0;
316         my $fh = popen($self, qw(rev-parse --branches));
317         defined $fh or return $modified;
318         local $/ = "\n";
319         foreach my $oid (<$fh>) {
320                 chomp $oid;
321                 my $buf = cat_file($self, $oid) or next;
322                 $$buf =~ /^committer .*?> (\d+) [\+\-]?\d+/sm or next;
323                 my $cmt_time = $1;
324                 $modified = $cmt_time if $cmt_time > $modified;
325         }
326         $modified || time;
327 }
328
329 1;
330 __END__
331 =pod
332
333 =head1 NAME
334
335 PublicInbox::Git - git wrapper
336
337 =head1 VERSION
338
339 version 1.0
340
341 =head1 SYNOPSIS
342
343         use PublicInbox::Git;
344         chomp(my $git_dir = `git rev-parse --git-dir`);
345         $git_dir or die "GIT_DIR= must be specified\n";
346         my $git = PublicInbox::Git->new($git_dir);
347
348 =head1 DESCRIPTION
349
350 Unstable API outside of the L</new> method.
351 It requires L<git(1)> to be installed.
352
353 =head1 METHODS
354
355 =cut
356
357 =head2 new
358
359         my $git = PublicInbox::Git->new($git_dir);
360
361 Initialize a new PublicInbox::Git object for use with L<PublicInbox::Import>
362 This is the only public API method we support.  Everything else
363 in this module is subject to change.
364
365 =head1 SEE ALSO
366
367 L<Git>, L<PublicInbox::Import>
368
369 =head1 CONTACT
370
371 All feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
372
373 The mail archives are hosted at L<https://public-inbox.org/meta/>
374
375 =head1 COPYRIGHT
376
377 Copyright (C) 2016 all contributors L<mailto:meta@public-inbox.org>
378
379 License: AGPL-3.0+ L<http://www.gnu.org/licenses/agpl-3.0.txt>
380
381 =cut