2009-08-25 05:14:46 +02:00
|
|
|
#!/usr/bin/perl
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2010-09-05 15:13:21 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# ssh mode
|
|
|
|
# - started by sshd
|
2011-01-15 16:39:56 +01:00
|
|
|
# - one optional flag, "-s", for "shell allowed" people
|
2010-09-05 15:13:21 +02:00
|
|
|
# - one argument, the "user" name
|
|
|
|
# - one env var, SSH_ORIGINAL_COMMAND, containing the command
|
|
|
|
# - command typically: git-(receive|upload)-pack 'reponame(.git)?'
|
|
|
|
# - special gitolite commands: info, expand, (get|set)(perms|desc)
|
|
|
|
# - special non-gitolite commands: rsync, svnserve, htpasswd
|
|
|
|
# - other commands: anything in $GL_ADC_PATH if defined (see rc file)
|
|
|
|
#
|
|
|
|
# (smart) http mode
|
|
|
|
# - started by apache (httpd)
|
|
|
|
# - no arguments
|
|
|
|
# - REQUEST_URI contains verb and repo, REMOTE_USER contains username
|
|
|
|
# - REQUEST_URI looks like /path/reponame.git/(info/refs\?service=)?git-(receive|upload)-pack
|
|
|
|
# - no special processing commands currently handled
|
|
|
|
# ----------------------------------------------------------------------------
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2009-08-23 14:54:37 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
2011-01-15 16:39:56 +01:00
|
|
|
# find the rc file, then pull the libraries in
|
2009-08-23 14:54:37 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# this (gl-auth-command) is one of the two valid starting points for all of
|
|
|
|
# gitolite for normal operations (the other being gl-time). All other
|
|
|
|
# programs are invoked either from this, or from something else (typically
|
|
|
|
# git-*-pack) in between). They thus get the benefit of the environment
|
|
|
|
# variables that this code sets up.
|
|
|
|
BEGIN {
|
|
|
|
# find and set bin dir
|
|
|
|
$0 =~ m|^(/)?(.*)/| and $ENV{GL_BINDIR} = ($1 || "$ENV{PWD}/") . $2;
|
|
|
|
}
|
2010-06-22 13:30:48 +02:00
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# our libraries are either in the same place the scripts are, or, as with
|
|
|
|
# RPM/DEB install, in some 'system' location that is already in perl's @INC
|
|
|
|
# anyway
|
|
|
|
use lib $ENV{GL_BINDIR};
|
2009-12-15 11:41:21 +01:00
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
use gitolite_rc; # this does a "do" of the rc file
|
|
|
|
use gitolite_env;
|
|
|
|
use gitolite;
|
2010-02-04 10:12:10 +01:00
|
|
|
|
2009-08-23 14:54:37 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# start...
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# these two options are mutually exclusive. And this program is not supposed
|
|
|
|
# to be called manually anyway
|
|
|
|
my $shell_allowed = (@ARGV and $ARGV[0] eq '-s' and shift);
|
|
|
|
my $program = (@ARGV and $ARGV[0] eq '-e' and shift);
|
|
|
|
|
|
|
|
# setup the environment for the kids so they don't need to embark on the
|
|
|
|
# voyage of self-discovery above ;-) [environment also means things like
|
|
|
|
# nice, umask, etc., not just the environment *variables*]
|
|
|
|
setup_environment();
|
|
|
|
|
|
|
|
# if one of the other programs is being invoked (see doc/hacking.mkd), exec it
|
|
|
|
exec(@ARGV) if $program;
|
2009-12-19 16:22:30 +01:00
|
|
|
|
2010-09-05 15:13:21 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
2011-01-15 16:39:56 +01:00
|
|
|
# set up GL_USER and (if reqd) SSH_ORIGINAL_COMMAND and SSH_CONNECTION
|
2010-09-05 15:13:21 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
2010-07-21 02:57:43 +02:00
|
|
|
|
2010-09-05 15:13:21 +02:00
|
|
|
my $user;
|
|
|
|
if ($ENV{REQUEST_URI}) {
|
2010-09-05 16:28:31 +02:00
|
|
|
die "fallback to DAV not supported\n" if $ENV{REQUEST_METHOD} eq 'PROPFIND';
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# fake out SSH_ORIGINAL_COMMAND and SSH_CONNECTION when called via http,
|
|
|
|
# so the rest of the code stays the same (except the exec at the end).
|
|
|
|
simulate_ssh_connection();
|
|
|
|
|
2011-01-17 15:06:26 +01:00
|
|
|
$ENV{REMOTE_USER} ||= $GL_HTTP_ANON_USER; # see doc/http-backend.mkd
|
2010-09-05 15:13:21 +02:00
|
|
|
$user = $ENV{GL_USER} = $ENV{REMOTE_USER};
|
|
|
|
} else {
|
|
|
|
# no (more) arguments given in ssh mode? default user is $USER
|
|
|
|
# (fedorahosted works like this, and it is harmless for others)
|
|
|
|
@ARGV = ($ENV{USER}) unless @ARGV;
|
2011-01-15 16:39:56 +01:00
|
|
|
$user = $ENV{GL_USER} = shift;
|
2010-09-05 15:13:21 +02:00
|
|
|
}
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2010-02-01 12:24:39 +01:00
|
|
|
# ----------------------------------------------------------------------------
|
2011-01-15 16:39:56 +01:00
|
|
|
# SSH_ORIGINAL_COMMAND
|
2010-02-01 12:24:39 +01:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# no SSH_ORIGINAL_COMMAND given: shell out or default to 'info'
|
2009-10-28 09:03:24 +01:00
|
|
|
unless ($ENV{SSH_ORIGINAL_COMMAND}) {
|
2011-01-15 16:39:56 +01:00
|
|
|
shell_out() if $shell_allowed; # doesn't return ('exec's out)
|
2010-02-01 07:06:24 +01:00
|
|
|
$ENV{SSH_ORIGINAL_COMMAND} = 'info';
|
2009-10-28 09:03:24 +01:00
|
|
|
}
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# slave mode should not do much
|
2010-08-10 10:12:52 +02:00
|
|
|
die "server is in slave mode; you can only fetch\n"
|
|
|
|
if ($GL_SLAVE_MODE and $ENV{SSH_ORIGINAL_COMMAND} !~ /^(info|expand|get|git-upload-)/);
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# admin defined commands; please see doc/admin-defined-commands.mkd
|
2010-04-24 14:46:13 +02:00
|
|
|
if ($GL_ADC_PATH and -d $GL_ADC_PATH) {
|
2011-01-15 16:39:56 +01:00
|
|
|
try_adc(); # if it succeeds, this also 'exec's out
|
2010-04-24 14:46:13 +02:00
|
|
|
}
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# get/set perms/desc for wild repos; also the 'expand' command
|
2010-02-18 14:50:46 +01:00
|
|
|
my $CUSTOM_COMMANDS=qr/^\s*(expand|(get|set)(perms|desc))\b/;
|
2009-12-06 10:09:40 +01:00
|
|
|
# note that all the subs called here chdir somewhere else and do not come
|
|
|
|
# back; they all blithely take advantage of the fact that processing custom
|
|
|
|
# commands is sort of a dead end for normal (git) processing
|
2010-02-04 10:12:10 +01:00
|
|
|
if ($ENV{SSH_ORIGINAL_COMMAND} =~ $CUSTOM_COMMANDS) {
|
2010-02-05 11:30:47 +01:00
|
|
|
die "wildrepos disabled, sorry\n" unless $GL_WILDREPOS;
|
2011-01-15 16:39:56 +01:00
|
|
|
run_custom_command($user);
|
2010-01-08 13:05:11 +01:00
|
|
|
exit 0;
|
2009-12-06 10:09:40 +01:00
|
|
|
}
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# non-git commands: if the command does NOT fit the pattern of a normal git
|
|
|
|
# command, send it off somewhere else...
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2010-02-01 11:07:35 +01:00
|
|
|
# side notes on detecting a normal git command: the pattern we check allows
|
|
|
|
# old style as well as new style ("git-subcommand arg" or "git subcommand
|
2010-05-21 18:02:33 +02:00
|
|
|
# arg"). Currently, this is how git sends across the command (including the
|
|
|
|
# single quotes):
|
2010-02-01 11:07:35 +01:00
|
|
|
# git-receive-pack 'reponame.git'
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2010-02-01 11:07:35 +01:00
|
|
|
my ($verb, $repo) = ($ENV{SSH_ORIGINAL_COMMAND} =~ /^\s*(git\s+\S+|\S+)\s+'\/?(.*?)(?:\.git)?'/);
|
2010-04-25 01:25:43 +02:00
|
|
|
unless ( $verb and ( $verb eq 'git-init' or $verb =~ $R_COMMANDS or $verb =~ $W_COMMANDS ) and $repo and $repo =~ $REPONAME_PATT ) {
|
2011-01-15 16:39:56 +01:00
|
|
|
special_cmd ($shell_allowed);
|
|
|
|
exit 0;
|
2009-12-19 16:22:30 +01:00
|
|
|
}
|
2011-01-15 16:39:56 +01:00
|
|
|
|
|
|
|
# some final sanity checks
|
2009-12-11 17:07:33 +01:00
|
|
|
die "$repo ends with a slash; I don't like that\n" if $repo =~ /\/$/;
|
2009-12-13 08:13:44 +01:00
|
|
|
die "$repo has two consecutive periods; I don't like that\n" if $repo =~ /\.\./;
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# save the reponame; too many things need this
|
2010-02-04 10:12:10 +01:00
|
|
|
$ENV{GL_REPO}=$repo;
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2010-02-01 11:07:35 +01:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# the real git commands (git-receive-pack, etc...)
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# first level permissions check
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2011-01-01 15:18:18 +01:00
|
|
|
my ($perm, $creator, $wild);
|
|
|
|
if ( $GL_ALL_READ_ALL and $verb =~ $R_COMMANDS and -d "$ENV{GL_REPO_BASE_ABS}/$repo.git") {
|
|
|
|
$perm = 'R';
|
|
|
|
} else {
|
2011-01-15 16:39:56 +01:00
|
|
|
($perm, $creator, $wild) = repo_rights($repo);
|
2009-12-05 18:09:56 +01:00
|
|
|
}
|
2011-01-15 16:39:56 +01:00
|
|
|
# it was missing, and you have create perms, so create it
|
|
|
|
new_wild_repo($repo, $user) if ($perm =~ /C/);
|
2009-12-04 05:21:22 +01:00
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# we know the user and repo; we just need to know what perm he's trying for
|
|
|
|
# (aa == attempted access)
|
2010-04-24 09:44:16 +02:00
|
|
|
my $aa = ($verb =~ $R_COMMANDS ? 'R' : 'W');
|
2010-10-08 01:38:13 +02:00
|
|
|
die "$aa access for $repo DENIED to $user
|
|
|
|
(Or there may be no repository at the given path. Did you spell it correctly?)\n" unless $perm =~ /$aa/;
|
2009-08-23 14:54:37 +02:00
|
|
|
|
2010-11-16 15:39:45 +01:00
|
|
|
# check if repo is write-enabled
|
2011-01-15 16:39:56 +01:00
|
|
|
check_repo_write_enabled($repo) if $aa eq 'W';
|
2010-11-16 15:39:45 +01:00
|
|
|
|
2009-08-23 14:54:37 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
2010-02-01 12:24:39 +01:00
|
|
|
# over to git now
|
2009-08-23 14:54:37 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2010-09-05 15:13:21 +02:00
|
|
|
if ($ENV{REQUEST_URI}) {
|
2011-01-15 16:39:56 +01:00
|
|
|
log_it($ENV{REQUEST_URI});
|
2010-09-05 15:13:21 +02:00
|
|
|
exec $ENV{GIT_HTTP_BACKEND};
|
|
|
|
# the GIT_HTTP_BACKEND env var should be set either by the rc file, or as
|
|
|
|
# a SetEnv in the apache config somewhere
|
|
|
|
}
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
log_it();
|
2009-08-23 14:54:37 +02:00
|
|
|
|
|
|
|
$repo = "'$REPO_BASE/$repo.git'";
|
2010-04-25 01:25:43 +02:00
|
|
|
exec("git", "shell", "-c", "$verb $repo") unless $verb eq 'git-init';
|