aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2014-07-29 20:07:44 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2014-07-29 20:07:44 +0300
commitb73431421025660d28198955c15356c086f5223f (patch)
tree8115c2a20986b61fac58dd0d3fc302c896262fee /lib
parentd745c522f462e01aa576c6f93b94cbad6c631f73 (diff)
downloadgitaclhook-b73431421025660d28198955c15356c086f5223f.tar.gz
gitaclhook-b73431421025660d28198955c15356c086f5223f.tar.bz2
Separate rules for the same user name coming from different IP addresses.
* Makefile.PL: Add Net::CIDR to the list of prerequisites. * gitaclhook: Document user@CIDRLIST syntax and the hooks.acl.ip-env-var variable. * lib/GitACL.pm: Use Net::CIDR (match_host): New sub. (match_user): Check IP against cidr part (if defined). (new): Get remote IP address from environment.
Diffstat (limited to 'lib')
-rw-r--r--lib/GitACL.pm18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/GitACL.pm b/lib/GitACL.pm
index cde9624..4214b3f 100644
--- a/lib/GitACL.pm
+++ b/lib/GitACL.pm
@@ -18,6 +18,7 @@ package GitACL;
18 18
19use strict; 19use strict;
20use File::Spec; 20use File::Spec;
21use Net::CIDR qw (cidrlookup);
21 22
22my %opstr = ('C' => 'create', 23my %opstr = ('C' => 'create',
23 'D' => 'delete', 24 'D' => 'delete',
@@ -116,10 +117,20 @@ sub match_primary_group($$) {
116 return 0; 117 return 0;
117} 118}
118 119
120sub match_host($$) {
121 my ($ip,$iplist) = @_;
122 return 0 unless defined($ip);
123 return cidrlookup($ip, split /,/, $iplist);
124}
125
119sub match_user($$) { 126sub match_user($$) {
120 my ($self, $expr) = @_; 127 my ($self, $expr) = @_;
121 return 1 if ($expr eq 'all'); 128 return 1 if ($expr eq 'all');
122 return 0 if ($expr eq 'none'); 129 return 0 if ($expr eq 'none');
130 if ($expr =~ /(.+)@(.+)/) {
131 return 0 unless match_host($self->{ip}, $2);
132 $expr = $1;
133 }
123 if ($expr =~ /^%(.+)/) { 134 if ($expr =~ /^%(.+)/) {
124 return 1 if match_primary_group($self->{user_name}, $1); 135 return 1 if match_primary_group($self->{user_name}, $1);
125 my ($name,$passwd,$gid,$members) = getgrnam($1) or return 0; 136 my ($name,$passwd,$gid,$members) = getgrnam($1) or return 0;
@@ -220,6 +231,13 @@ sub new {
220 if (defined($httpdusr) and $obj->{user_name} eq $httpdusr) { 231 if (defined($httpdusr) and $obj->{user_name} eq $httpdusr) {
221 $obj->deny("need authenticated user") unless $ENV{AUTH_TYPE}; 232 $obj->deny("need authenticated user") unless $ENV{AUTH_TYPE};
222 $obj->{user_name} = $ENV{REMOTE_USER}; 233 $obj->{user_name} = $ENV{REMOTE_USER};
234 $obj->{ip} = $ENV{REMOTE_ADDR};
235 } else {
236 my $ipvar = git_value('config', 'hooks.acl.ip-env-var') or 'SSH_CLIENT';
237 if (defined($ENV{$ipvar})) {
238 my @a = split /\S/, $ENV{$ipvar}, 2;
239 $obj->{ip} = $a[0];
240 }
223 } 241 }
224 242
225 $obj->{project_name} = get_project_name($obj->{git_dir}); 243 $obj->{project_name} = get_project_name($obj->{git_dir});

Return to:

Send suggestions and report system problems to the System administrator.