Apache-AuthPAM
view release on metacpan or search on metacpan
# load apache config vars
my $service = $r->dir_config('PAMservice');
unless($service) {
$log->alert("$MODNAME: no PAM service name supplied", $r->uri);
return SERVER_ERROR;
}
# DAMN! I shouldn't use globals this way!
$pw{$$}=$pw;
# start PAM dialog
my $pamh;
my $result = pam_start($service, $username, \&my_conv_func, $pamh);
unless ($result == PAM_SUCCESS) {
$r->note_basic_auth_failure;
$log->crit("$MODNAME: <$service> not started ($result) ", $r->uri);
pam_end($pamh, 0);
return SERVER_ERROR;
}
$result = pam_authenticate($pamh, 0);
unless ($result == PAM_SUCCESS) {
$r->note_basic_auth_failure;
$log->info("$MODNAME: <$username> not authenticated by $service ($result) ", $r->uri);
pam_end($pamh, 0);
return AUTH_REQUIRED;
}
$result = pam_acct_mgmt($pamh, 0);
unless ($result == PAM_SUCCESS) {
$r->note_basic_auth_failure;
$log->info("$MODNAME: <$username> no acct mgmt by $service ($result) ", $r->uri);
pam_end($pamh, 0);
return AUTH_REQUIRED;
}
# Authenticated
pam_end($pamh, 0);
$log->info("$MODNAME: <$username> authenticated by $service", $r->uri);
return OK;
}
#
# Conversation Function
#
sub my_conv_func {
my @res;
while(@_) {
my $msg_type = shift;
my $msg = shift;
push @res, (0, $pw{$$});
}
push @res, 0;
return @res;
}
1;
__END__
# Below is stub documentation for your module. You better edit it!
=head1 NAME
Apache::AuthPAM - Authenticate apache request using PAM services
=head1 SYNOPSIS
# /etc/httpd.conf
<Directory /var/www/https/secured-area/>
AuthType Basic
AuthName "your server account"
PerlAuthHandler Apache::AuthPAM
PerlSetVar PAMservice check_user
require valid-user
</Directory>
# /etc/pam.d/check_user
#%PAM-1.0
auth required /lib/security/pam_pwdb.so nodelay
account required /lib/security/pam_pwdb.so
=head1 DESCRIPTION
This perl module is designed to work with mod_perl and the
Authen::PAM module.
You can select the PAM service setting the perl var PAMservice
PerlSetVar PAMservice the-pam-service-you-want
You can select different PAM services for different directories
or locations in your web server filesystem space.
Apache::AuthPAM works as follows:
First, it calls C<pam_start> with the selected service.
Second, it calls C<pam_authenticate> with the browser/apache supplied username and password.
Later, it calls C<pam_acct_mgmt>.
And finally it calls C<pam_end>.
If any of the PAM functions fail, Apache::AuthPAM logs an info level message and returns C<AUTH_REQUIRED>.
If all PAM functions are succesfull, Apache::AuthPAM logs an info level message and returns C<OK>.
If you are going to use your system password database, you
B<MUST> also use B<mod_ssl>.
=head1 BUGS
I'am using a global symbol.
Apache::AuthPAM is running as the same user mod_perl is running
(on RedHat Linux it is apache). It is running without privileges.
=head1 AUTHOR
Héctor Daniel Cortés González E<lt>hdcg@cie.unam.mxE<gt>
=head1 CREDITS
Apache::AuthPAM is a direct adaptation of Demetrios E. Paneras'
E<lt>dep@media.mit.eduE<gt> Apache::AuthenNISplus.
( run in 0.615 second using v1.01-cache-2.11-cpan-39bf76dae61 )