summaryrefslogtreecommitdiff
path: root/git-daemon/git-daemon-service.pl
blob: f848db8b8bf35e2f5bf1a2c5b7457f35ede2f5de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/perl
#
# userv-git-daemon service script
#
# This was written by Tony Finch <dot@dotat.at>
# You may do anything with it, at your own risk.
# http://creativecommons.org/publicdomain/zero/1.0/

use strict;
use warnings;

use Sys::Syslog;

${$::{$_}} = $ENV{"USERV_U_$_"}
       for grep s|^USERV_U_([a-z_]+)$|$1|, keys %ENV;

our ($client,$service,$path,$host);

openlog "userv-$service", 'pid', 'daemon';
sub fail { syslog 'err', "$client @_"; exit }

our ($check_repo,$check_export,$dir,$repo) = (1,0);
our $uri = $_ = "git://$host/$path";
for my $cf (@ARGV) { do $cf }

my $home = (getpwuid $<)[7];
$dir = "$home/$dir" if $dir =~ m|^[^/]|
                    or $dir =~ s|^~/||;
fail "Bad filename $repo" if $check_repo
               and $repo !~ m|^\w[\w.=+-]*\.git$|;
$dir = "$dir/$repo" if defined $repo;
$path = $check_export ? "$dir/git-daemon-export-ok" : $dir;
fail "$! $path" unless -e $path;
syslog 'notice', "$client $dir";

my @cmd = ($service, '--strict', '--timeout=30', $dir);
no warnings; # suppress errors to stderr
exec @cmd or fail "exec $service: $!";

# end