/usr/share/perl5/Apache2/AuthCASSimple.pm is in libapache2-authcassimple-perl 0.10-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | package Apache2::AuthCASSimple;
use strict;
use warnings;
use Apache2::Const qw( OK AUTH_REQUIRED DECLINED REDIRECT SERVER_ERROR M_GET);
use Apache2::RequestUtil ();
use Apache2::RequestRec ();
use Apache2::Log;
use Apache::Session::Wrapper;
use Authen::CAS::Client;
use Apache2::Connection;
use Apache2::RequestIO;
use URI::Escape;
use vars qw($VERSION);
$VERSION = '0.10';
#
# handler()
#
# Called by apache/mod_perl
#
sub handler ($) {
my $r = shift;
my $log = $r->log();
# does it need to do something ?
#return DECLINED unless($r->ap_auth_type() eq __PACKAGE__);
$log->info(__PACKAGE__.": == Entering into authentification process.:" );
$log->info(__PACKAGE__.": == ".$r->method.' '.$r->uri() .' '.$r->args() );
$log->info(__PACKAGE__.": == ".$r->connection->remote_ip() );
# Get module config (Apache Perl SetVAR values)
my $cas_session_timeout = $r->dir_config('CASSessionTimeout') || 60;
my $cas_ssl = $r->dir_config('CASServerNoSSL')?0:1;
my $cas_name = $r->dir_config('CASServerName') || 'my.casserver.com';
my $cas_port = $r->dir_config('CASServerPort') ? ':'.$r->dir_config('CASServerPort') : ':443' ;
$cas_port = '' if ( $cas_port eq ':443' && $cas_ssl );
my $cas_path = $r->dir_config('CASServerPath') || '/' ;
$cas_path = '' if ($cas_path eq '/');
my $mod_proxy = $r->dir_config('ModProxy');
# Check for internal session
my $user;
if($cas_session_timeout >= 0 && ($user = _get_user_from_session($r))) {
$log->info(__PACKAGE__.": Session found for user $user.");
$r->user($user);
return OK;
}
elsif($cas_session_timeout >= 0) {
$log->info(__PACKAGE__.": No session found.");
}
else {
$log->info(__PACKAGE__.": Session disabled.");
}
# instance CAS object
my ($cas, %options);
$options{casUrl} = ($cas_ssl ? 'https://' : 'http://').$cas_name.$cas_port.$cas_path;
# $log->info('==casUrl==='.$options{casUrl}.'____');
# $options{CAFile} = $cfg->{_ca_file} if ($cfg->{_cas_ssl});
unless($cas = Authen::CAS::Client->new($options{casUrl}, fatal => 1)) {
$log->error(__PACKAGE__.": Unable to create CAS instance.");
return SERVER_ERROR;
}
my $requested_url = _get_requested_url($r,$mod_proxy);
my $login_url = uri_escape $requested_url;
$login_url = $cas->login_url().$login_url;
#$log->info( '==login_url==='.$login_url.'____');
my %args = map { split '=', $_ } split '&', $r->args();
my $ticket = $args{'ticket'};
# redirect to CAS server unless ticket parameter
unless ($ticket) {
$log->info(__PACKAGE__.": No ticket, client redirected to CAS server. ".$login_url);
$r->headers_out->add("Location" => $login_url);
return REDIRECT;
}
# Validate the ticket we received
if ($ticket=~/^PT/) {
my $r = $cas->proxy_validate( $requested_url, $ticket );
if( $r->is_success() ) {
$user=$r->user();
$log->info(__PACKAGE__.": Validate PT on CAS Proxy server. ".join ",", $r->proxies());
};
}
else {
$log->info(__PACKAGE__.": Validate ST $ticket on CAS Proxy server : $requested_url");
my $r = $cas->service_validate( $requested_url, $ticket );
if ( $r->is_success() ) {
$user = $r->user();
}
}
unless ($user) {
$log->info(__PACKAGE__.": Unable to validate ticket ".$ticket." on CAS server.");
$r->err_headers_out->add("Location" => $r->uri._str_args($r)); # remove ticket
return REDIRECT;
}
$log->info(__PACKAGE__.": Ticket ".$ticket." succesfully validated for $user");
if ( $user ) {
$r->user($user);
my $str_args = _str_args($r); # remove ticket
$log->info(__PACKAGE__.": New session ".$r->uri() ."--".$r->args());
# if we are there (and timeout is set), we can create session data and cookie
_create_user_session($r) if($cas_session_timeout >= 0);
$log->debug("Location => ".$r->uri . ($str_args ? '?' . $str_args : ''));
$r->err_headers_out->add("Location" => $r->uri . ($str_args ? '?' . $str_args : '') );
# if session, redirect remove ticket in url
return ($cas_session_timeout >= 0)?REDIRECT:OK;
}
return DECLINED;
}
#
# _get_args
#
# Stringify args
#
sub _str_args ($;$) {
my $r = shift;
my $keep_ticket = shift;
my %args = map { split '=', $_ } split '&', $r->args();
my @qs = ();
foreach (sort {$a cmp $b} keys(%args)) {
next if ($_ eq 'ticket' && !$keep_ticket);
my $str = $args{$_};
push(@qs, $_."=".$str);
}
my $str_args = join("\&", @qs);
return $str_args;
}
#
# _get_requested_url()
#
# Return the URL requested by client (with args)
#
sub _get_requested_url ($$) {
my $r = shift;
my $mod_proxy = shift;
my $is_https = $r->dir_config('HTTPSServer') || 0;
my $port = $r->get_server_port();
my $url = $is_https ? 'https://' : 'http://';
$url .= $r->hostname();
$url .= ':'.$port if (!$mod_proxy && ( ($is_https && $port != 443) || (!$is_https && $port != 80) ));
$url .= $r->uri()._get_query_string($r);
return $url;
}
#
# _get_query_string()
#
# Return the query string
#
sub _get_query_string ($) {
my $r = shift;
_post_to_get($r) if ($r->method eq 'POST');
my $str_args = _str_args($r);
return ($str_args)?"?".$str_args:'';
}
#
# _post_to_get()
#
# Convert POST data to GET
#
sub _post_to_get ($) {
my $r = shift;
my $content;
$r->read($content,$r->headers_in->{'Content-length'});
$r->log()->info('POST to GET: '.$content);
$r->method("GET");
$r->method_number(M_GET);
$r->headers_in->unset("Content-length");
$r->args($content);
}
#
# _remove_ticket
#
# Remove ticket from query string arguments
#
sub _remove_ticket ($) {
my $r = shift;
$r->args( _str_args($r));
}
#
# _get_user_from_session()
#
# Retrieve username if a session exist ans is correctly filled
#
sub _get_user_from_session ($) {
my $r = shift;
my $s;
my $mod_proxy = $r->dir_config('ModProxy');
my $cas_session_dir = $r->dir_config('CASSessionDirectory') || '/tmp';
my $cas_cookie_path = $r->dir_config('CASFixDirectory') || '/';
my $cas_session_timeout = $r->dir_config('CASSessionTimeout') || 60;
my $is_https = $r->dir_config('HTTPSServer') || 0;
$r->log()->info(__PACKAGE__.": Checking session.");
eval { $s = Apache::Session::Wrapper->new(
class => 'File',
directory => $cas_session_dir,
lock_directory => $cas_session_dir,
use_cookie => 1,
cookie_secure => $is_https,
cookie_resend => 1,
cookie_expires => 'session',
cookie_path => $cas_cookie_path
);
$r->log()->info(__PACKAGE__.": Session id ".$s->{session_id});
};
return "" unless(defined $s);
my $ip = ($mod_proxy)?$r->headers_in->{'X-Forwarded-For'}:$r->connection->remote_ip();
my $user = $s->session->{'CASUser'} || 'empty cookie';
my $session_time = $s->session->{'time'} || 0;
if ($cas_session_timeout && $session_time + $cas_session_timeout < time) {
$r->log()->warn(__PACKAGE__.': Session TimeOut, for '.$s->{session_id}.' / '.$ip );
$s->delete_session();
return "";
};
if($s->session->{'CASIP'} ne $ip) {
$r->log()->info(__PACKAGE__.": Remote IP Address changed along requests !");
$s->delete_session();
return "";
}
elsif( $user ) {
return $user;
}
else {
$r->log()->info(__PACKAGE__.": Session found, but no data inside it.");
$s->delete_session();
return "";
}
}
#
# _create_user_session()
#
# Create a user session and send cookie
#
sub _create_user_session ($) {
my $r = shift;
my $mod_proxy = $r->dir_config('ModProxy');
my $cas_session_dir = $r->dir_config('CASSessionDirectory') || '/tmp';
my $cas_cookie_path = $r->dir_config('CASFixDirectory') || '/';
my $is_https = $r->dir_config('HTTPSServer') || 0;
$r->log()->info(__PACKAGE__.": Creating session for ".$r->user());
my $s = Apache::Session::Wrapper->new(
class => 'File',
directory => $cas_session_dir,
lock_directory => $cas_session_dir,
use_cookie => 1,
cookie_secure => $is_https,
cookie_resend => 1,
cookie_expires => 'session',
cookie_path => $cas_cookie_path
);
unless ($s) {
$r->log()->info(__PACKAGE__.": Unable to create session for ".$r->connection->user().".");
return;
}
$r->log()->info(__PACKAGE__.": Session id ".$s->{session_id});
$s->session->{'CASUser'} = $r->user();
my $ip = ($mod_proxy)?$r->headers_in->{'X-Forwarded-For'}:$r->connection->remote_ip();
$s->session->{'CASIP'} = $ip;
$s->session->{'time'} = time();
};
1;
__END__
=head1 NAME
Apache2::AuthCASSimple - Apache2 module to authentificate through a CAS server
=head1 DESCRIPTION
Apache2::AuthCASSimple is an authentication module for Apache2/mod_perl2. It allow you to authentificate users through a Yale CAS server. It means you don't need to give login/password if you've already be authentificate by the CAS server, only tickets are exchanged between Web client, Apache2 server and CAS server. If you not're authentificate yet, you'll be redirect on the CAS server login form.
This module allow the use of simple text files for sessions.
=head1 SYNOPSIS
PerlOptions +GlobalRequest
<Location /protected>
AuthType Apache2::AuthCASSimple
PerlAuthenHandler Apache2::AuthCASSimple
PerlSetVar CASServerName my.casserver.com
PerlSetVar CASServerPath /
# PerlSetVar CASServerPort 443
# PerlSetVar CASServerNoSSL 1
PerlSetVar CASSessionTimeout 3660
PerlSetVar CASSessionDirectory /tmp
# PerlSetVar CASFixDirectory /
# PerlSetVar ModProxy 1
# PerlSetVar HTTPSServer 1
require valid-user
</Location>
or
order deny,allow
deny from all
require user xxx yyyy
satisfy any
=head1 CONFIGURATION
=over 4
=item CASServerName
Name of the CAS server. It can be a numeric IP address.
=item CASServerPort
Port of the CAS server. Default is 443.
=item CASServerPath
Path (URI) of the CAS server. Default is "/cas".
=item CASServerNoSSL
Disable SSL transaction wih CAS server (HTTPS). Default is off.
=item CASCaFile
CAS server public key. This file is used to allow secure connection
between the webserver using Apache2::AuthCASSimple and the CAS server.
DEPRECATED : L<Authen::CAS::Client> use L<LWP::UserAgent> to make https requests
=item CASSessionTimeout
Timeout (in second) for session create by Apache2::AuthCASSimple (to avoid CAS server overloading). Default is 60.
-1 means disable.
0 mean infinite (until the user close browser).
=item CASSessionDirectory
Directory where session data are stored. Default is /tmp.
=item CASFixDirectory
Force the path of the session cookie for same policy in all subdirectories else current directory is used.
=item ModProxy
Apache2 mod_perl2 don't be use with mod_proxy. Default is off.
=item HTTPSServer
If you want to keep a HTTPS server for all data. Default is 0.
=item OK AUTH_REQUIRED DECLINED REDIRECT SERVER_ERROR M_GET
Apache constants to make pod coverage happy
=back
=head1 METHOD
=head2 handler
call by apache2
=head1 VERSION
This documentation describes Apache2::AuthCASSimple version 0.10
=head1 BUGS AND TROUBLESHOOTING
=over 4
=item *
Old expired sessions files must be deleted with an example provided script : C<delete_session_data.pl>
=item *
L<Apache::Session::Wrapper> certainly need L<Apache2::Cookie>
=item *
C<$r> must be global for sessions with L<Apache::Session::Wrapper>, add
PerlOptions +GlobalRequest
in your virtualhost conf
=item *
Apreq module must be enable in debian
a2enmod apreq
or add
LoadModule apreq_module /usr/lib/apache2/modules/mod_apreq2.so
in your apache configuration file
=back
Please submit any bug reports to agostini@univ-metz.fr.
=head1 NOTES
Requires C<mod_perl 2> version 2.02 or later
Requires L<Authen::CAS::Client>
Requires L<Apache::Session::Wrapper>
=head1 AUTHOR
Yves Agostini
CPAN ID: YVESAGO
Univ Metz
agostini@univ-metz.fr
http://www.crium.univ-metz.fr
=head1 COPYRIGHT
Copyright (c) 2009 by Yves Agostini
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included with this module.
|