2009-08-25 05:14:46 +02:00
|
|
|
#!/usr/bin/perl
|
2009-08-23 18:10:03 +02:00
|
|
|
|
|
|
|
use strict;
|
2009-08-25 05:14:46 +02:00
|
|
|
use warnings;
|
2009-08-23 18:10:03 +02:00
|
|
|
|
|
|
|
# === update ===
|
2009-08-26 02:47:27 +02:00
|
|
|
# this is gitolite's update hook
|
2009-08-23 18:10:03 +02:00
|
|
|
|
2009-08-26 02:47:27 +02:00
|
|
|
# part of the gitolite (GL) suite
|
2009-08-23 18:10:03 +02:00
|
|
|
|
|
|
|
# how run: via git, being copied as .git/hooks/update in every repo
|
|
|
|
# when: every push
|
|
|
|
# input:
|
|
|
|
# - see man githooks for STDIN
|
|
|
|
# - uses the compiled config file to get permissions info
|
|
|
|
# output: based on permissions etc., exit 0 or 1
|
|
|
|
# security:
|
|
|
|
# - none
|
|
|
|
|
|
|
|
# robustness:
|
|
|
|
|
|
|
|
# other notes:
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# common definitions
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2010-03-16 06:08:00 +01:00
|
|
|
our ($GL_CONF_COMPILED);
|
2009-08-23 18:10:03 +02:00
|
|
|
our %repos;
|
|
|
|
|
2009-10-25 03:59:52 +01:00
|
|
|
# we should already have the GL_RC env var set when we enter this hook
|
|
|
|
die "parse $ENV{GL_RC} failed: " . ($! or $@) unless do $ENV{GL_RC};
|
2009-12-05 18:09:56 +01:00
|
|
|
# then "do" the compiled config file, whose name we now know. Before doing
|
|
|
|
# that we setup the creater etc from environment variables so that the parse
|
|
|
|
# interpolates them. We've minimised the duplication but this *does*
|
|
|
|
# duplicate a bit of parse_acl from gitolite.pm; we don't want to include that
|
|
|
|
# file here just for that little bit
|
|
|
|
{
|
|
|
|
our $creater = $ENV{GL_CREATER};
|
|
|
|
our $readers = $ENV{GL_READERS};
|
|
|
|
our $writers = $ENV{GL_WRITERS};
|
2010-03-16 02:56:33 +01:00
|
|
|
our $gl_user = $ENV{GL_USER};
|
2009-12-05 18:09:56 +01:00
|
|
|
|
|
|
|
die "parse $GL_CONF_COMPILED failed: " . ($! or $@) unless do $GL_CONF_COMPILED;
|
|
|
|
|
|
|
|
$repos{$ENV{GL_REPO}} = $repos{$ENV{GL_REPOPATT}} if ( $ENV{GL_REPOPATT} );
|
|
|
|
}
|
|
|
|
my $reported_repo = $ENV{GL_REPO} . ( $ENV{GL_REPOPATT} ? " ($ENV{GL_REPOPATT})" : "" );
|
2009-08-23 18:10:03 +02:00
|
|
|
|
2010-01-31 18:40:12 +01:00
|
|
|
# we've started to need some common subs in what used to be a small, cute,
|
|
|
|
# little script that barely spanned a few lines :(
|
|
|
|
require "$ENV{GL_BINDIR}/gitolite.pm";
|
|
|
|
|
2009-08-23 18:10:03 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# start...
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2010-03-14 17:37:34 +01:00
|
|
|
my @saved_ARGV = @ARGV; # for chaining to another update hook at the end
|
|
|
|
|
2009-08-23 18:10:03 +02:00
|
|
|
my $ref = shift;
|
|
|
|
my $oldsha = shift;
|
|
|
|
my $newsha = shift;
|
|
|
|
my $merge_base = '0' x 40;
|
2009-08-25 03:08:05 +02:00
|
|
|
# compute a merge-base if both SHAs are non-0, else leave it as '0'x40
|
|
|
|
# (i.e., for branch create or delete, merge_base == '0'x40)
|
2009-08-23 18:10:03 +02:00
|
|
|
chomp($merge_base = `git merge-base $oldsha $newsha`)
|
2009-08-25 03:08:05 +02:00
|
|
|
unless $oldsha eq '0' x 40
|
|
|
|
or $newsha eq '0' x 40;
|
2009-08-23 18:10:03 +02:00
|
|
|
|
|
|
|
# what are you trying to do? (is it 'W' or '+'?)
|
|
|
|
my $perm = 'W';
|
2009-08-25 03:08:05 +02:00
|
|
|
# rewriting a tag is considered a rewind, in terms of permissions
|
2009-08-23 18:10:03 +02:00
|
|
|
$perm = '+' if $ref =~ m(refs/tags/) and $oldsha ne ('0' x 40);
|
2009-08-28 17:11:21 +02:00
|
|
|
# non-ff push to ref
|
|
|
|
# notice that ref delete looks like a rewind, as it should
|
|
|
|
$perm = '+' if $oldsha ne $merge_base;
|
2009-08-23 18:10:03 +02:00
|
|
|
|
2010-03-30 16:31:49 +02:00
|
|
|
# were any 'D' perms specified? If they were, it means we have to separate
|
|
|
|
# deletes from rewinds, so if the new sha is all 0's, change the '+' to a 'D'
|
2010-03-31 03:15:29 +02:00
|
|
|
$perm = 'D' if ( $repos{$ENV{GL_REPO}}{DELETE_IS_D} or $repos{'@all'}{DELETE_IS_D} ) and $newsha eq '0' x 40;
|
2010-03-30 16:31:49 +02:00
|
|
|
|
2009-08-27 09:44:47 +02:00
|
|
|
my @allowed_refs;
|
2010-03-23 17:50:34 +01:00
|
|
|
# @all repos: see comments in similar code in check_access
|
2009-09-18 14:30:14 +02:00
|
|
|
push @allowed_refs, @ { $repos{$ENV{GL_REPO}}{$ENV{GL_USER}} || [] };
|
2010-03-23 17:50:34 +01:00
|
|
|
push @allowed_refs, @ { $repos{'@all'} {$ENV{GL_USER}} || [] };
|
2009-09-18 14:30:14 +02:00
|
|
|
push @allowed_refs, @ { $repos{$ENV{GL_REPO}}{'@all'} || [] };
|
2009-11-16 14:55:34 +01:00
|
|
|
|
2009-11-16 17:15:55 +01:00
|
|
|
# prepare the list of refs to be checked
|
|
|
|
|
|
|
|
# previously, we just checked $ref -- the ref being updated, which is passed
|
2010-01-07 13:29:34 +01:00
|
|
|
# to us by git (see man githooks). Now we also have to treat each NAME being
|
|
|
|
# updated as a potential "ref" and check that, if NAME-based restrictions have
|
2009-11-16 17:15:55 +01:00
|
|
|
# been specified
|
|
|
|
|
|
|
|
my @refs = ($ref); # the first ref to check is the real one
|
2010-03-23 17:50:34 +01:00
|
|
|
# because making it work screws up efficiency like no tomorrow...
|
2010-01-07 13:29:34 +01:00
|
|
|
if (exists $repos{$ENV{GL_REPO}}{NAME_LIMITS}) {
|
2009-11-16 17:15:55 +01:00
|
|
|
# this is special to git -- the hash of an empty tree
|
|
|
|
my $empty='4b825dc642cb6eb9a060e54bf8d69288fbee4904';
|
|
|
|
# well they're not really "trees" but $empty is indeed the empty tree so
|
|
|
|
# we can just pretend $oldsha/$newsha are also trees, and anyway 'git
|
|
|
|
# diff' only wants trees
|
|
|
|
my $oldtree = $oldsha eq '0' x 40 ? $empty : $oldsha;
|
|
|
|
my $newtree = $newsha eq '0' x 40 ? $empty : $newsha;
|
2010-01-07 13:29:34 +01:00
|
|
|
push @refs, map { chomp; s/^/NAME\//; $_; } `git diff --name-only $oldtree $newtree`;
|
2009-11-16 17:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# and in this version, we have many "refs" to check. The one we print in the
|
|
|
|
# log is the *first* one (which is a *real* ref, like refs/heads/master),
|
2010-01-07 13:29:34 +01:00
|
|
|
# while all the rest (if they exist) are like NAME/something. So we do the
|
2009-11-16 17:15:55 +01:00
|
|
|
# first one separately to capture it, then run the rest (if any)
|
2010-01-31 19:26:58 +01:00
|
|
|
my $log_refex = check_ref(\@allowed_refs, $ENV{GL_REPO}, (shift @refs), $perm);
|
|
|
|
&check_ref (\@allowed_refs, $ENV{GL_REPO}, $_ , $perm) for @refs;
|
2009-11-16 14:55:34 +01:00
|
|
|
|
2009-11-16 17:15:55 +01:00
|
|
|
# if we returned at all, all the checks succeeded, so we log the action and exit 0
|
2009-11-16 14:55:34 +01:00
|
|
|
|
2010-01-31 18:40:12 +01:00
|
|
|
&log_it("$ENV{GL_TS} $perm\t" .
|
2009-11-16 14:55:34 +01:00
|
|
|
substr($oldsha, 0, 14) . "\t" . substr($newsha, 0, 14) .
|
2010-02-01 06:30:24 +01:00
|
|
|
"\t$reported_repo\t$ref\t$ENV{GL_USER}\t$log_refex\n");
|
2010-03-14 17:37:34 +01:00
|
|
|
|
|
|
|
# now chain to the local admin defined update hook, if present
|
|
|
|
exec "./hooks/update.secondary", @saved_ARGV
|
|
|
|
if -f "hooks/update.secondary" or -l "hooks/update.secondary";
|
|
|
|
|
2009-11-16 14:55:34 +01:00
|
|
|
exit 0;
|