1 # Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # when no endpoints match, fallback to this and serve a static file
5 # or smart HTTP. This is our wrapper for git-http-backend(1)
6 package PublicInbox::GitHTTPBackend;
10 use IO::Handle; # ->flush
11 use HTTP::Date qw(time2str);
12 use PublicInbox::Qspawn;
13 use PublicInbox::Tmpfile;
14 use PublicInbox::WwwStatic qw(r @NO_CACHE);
17 # 32 is same as the git-daemon connection limit
18 my $default_limiter = PublicInbox::Qspawn::Limiter->new(32);
20 # n.b. serving "description" and "cloneurl" should be innocuous enough to
21 # not cause problems. serving "config" might...
22 my @text = qw[HEAD info/refs info/attributes
23 objects/info/(?:http-alternates|alternates|packs)
24 cloneurl description];
27 objects/[a-f0-9]{2}/[a-f0-9]{38}
28 objects/pack/pack-[a-f0-9]{40}\.(?:pack|idx)
31 our $ANY = join('|', @binary, @text, 'git-upload-pack');
32 my $BIN = join('|', @binary);
33 my $TEXT = join('|', @text);
36 my ($env, $git, $path) = @_;
38 # Documentation/technical/http-protocol.txt in git.git
39 # requires one and exactly one query parameter:
40 if ($env->{QUERY_STRING} =~ /\Aservice=git-[A-Za-z0-9_]+-pack\z/ ||
41 $path =~ /\Agit-[A-Za-z0-9_]+-pack\z/) {
42 my $ok = serve_smart($env, $git, $path);
46 serve_dumb($env, $git, $path);
49 sub ucarp { Carp::carp(@_); undef }
55 my $t = time + 31536000;
56 push @$h, 'Expires', $t == $prev ? $exp : ($exp = time2str($prev = $t)),
57 'Cache-Control', 'public, max-age=31536000';
61 my ($env, $git, $path) = @_;
65 if ($path =~ m!\Aobjects/[a-f0-9]{2}/[a-f0-9]{38}\z!) {
66 $type = 'application/x-git-loose-object';
68 } elsif ($path =~ m!\Aobjects/pack/pack-[a-f0-9]{40}\.pack\z!) {
69 $type = 'application/x-git-packed-objects';
71 } elsif ($path =~ m!\Aobjects/pack/pack-[a-f0-9]{40}\.idx\z!) {
72 $type = 'application/x-git-packed-objects-toc';
74 } elsif ($path =~ /\A(?:$TEXT)\z/o) {
80 $path = "$git->{git_dir}/$path";
81 PublicInbox::WwwStatic::response($env, $h, $path, $type);
84 sub git_parse_hdr { # {parse_hdr} for Qspawn
85 my ($r, $bref, $dumb_args) = @_;
86 my $res = parse_cgi_headers($r, $bref) or return; # incomplete
87 $res->[0] == 403 ? serve_dumb(@$dumb_args) : $res;
90 # returns undef if 403 so it falls back to dumb HTTP
92 my ($env, $git, $path) = @_;
94 # GIT_COMMITTER_NAME, GIT_COMMITTER_EMAIL
95 # may be set in the server-process and are passed as-is
96 foreach my $name (qw(QUERY_STRING
97 REMOTE_USER REMOTE_ADDR
103 my $val = $env->{$name};
104 $env{$name} = $val if defined $val;
106 my $limiter = $git->{-httpbackend_limiter} || $default_limiter;
107 $env{GIT_HTTP_EXPORT_ALL} = '1';
108 $env{PATH_TRANSLATED} = "$git->{git_dir}/$path";
109 my $rdr = input_prepare($env) or return r(500);
110 my $qsp = PublicInbox::Qspawn->new([qw(git http-backend)], \%env, $rdr);
111 $qsp->psgi_return($env, $limiter, \&git_parse_hdr, [$env, $git, $path]);
117 my $input = $env->{'psgi.input'};
118 my $fd = eval { fileno($input) };
119 return { 0 => $fd } if (defined $fd && $fd >= 0);
120 my $id = "git-http.input.$env->{REMOTE_ADDR}:$env->{REMOTE_PORT}";
121 my $in = tmpfile($id) // return ucarp("tmpfile: $!");
124 my $r = $input->read($buf, 8192) // return ucarp("read $!");
126 print $in $buf // return ucarp("print: $!");
128 # ensure it's visible to git-http-backend(1):
129 $in->flush // return ucarp("flush: $!");
130 sysseek($in, 0, SEEK_SET) // return ucarp($env, "seek: $!");
134 sub parse_cgi_headers {
136 return r(500) unless defined $r && $r >= 0;
137 $$bref =~ s/\A(.*?)\r?\n\r?\n//s or return $r == 0 ? r(500) : undef;
141 foreach my $l (split(/\r?\n/, $h)) {
142 my ($k, $v) = split(/:\s*/, $l, 2);
143 if ($k =~ /\AStatus\z/i) {
144 ($code) = ($v =~ /\b([0-9]+)\b/);