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
|
# Methods run at configuration reload
package Lemonldap::NG::Handler::Reload;
#use Lemonldap::NG::Handler::Main qw(:all);
use Lemonldap::NG::Common::Safelib; #link protected safe Safe object
use constant UNPROTECT => 1;
use constant SKIP => 2;
use Lemonldap::NG::Handler::Main::Jail;
use Lemonldap::NG::Handler::Main::Logger;
use Lemonldap::NG::Handler::API qw(:httpCodes);
use Lemonldap::NG::Common::Crypto;
our $VERSION = '1.9.6';
## @imethod void configReload(hashRef conf, hashRef tsv)
# Given a Lemonldap::NG configuration $conf, computes values used to
# handle requests and store them in a thread shared object called $tsv
#
# methods called by configReload, and thread shared values computed, are:
# - jailInit():
# - jail
# - defaultValuesInit():
# (scalars for global options)
# - cda
# - cookieExpiration # warning: absent from default Conf
# - cookieName
# - securedCookie,
# - httpOnly
# - whatToTrace
# - customFunctions
# - timeoutActivity
# - timeoutActivityInterval
# - useRedirectOnError
# - useRedirectOnForbidden
# - useSafeJail
# (objects)
# - cipher # Lemonldap::NG::Common::Crypto object
# (hashrefs for vhost options)
# - https
# - port
# - maintenance
# - portalInit():
# - portal (functions that returns portal URL)
# - locationRulesInit():
# - locationCount
# - defaultCondition
# - defaultProtection
# - locationCondition
# - locationProtection
# - locationRegexp
# - locationConditionText
# - sessionStorageInit():
# - sessionStorageModule
# - sessionStorageOptions
# - sessionCacheModule
# - sessionCacheOptions
# - headersInit():
# - headerList
# - forgeHeaders
# - postUrlInit():
# - inputPostData
# - outputPostData
# - aliasInit():
# - vhostAlias
#
# The *Init() methods can be run in any order,
# but jailInit must be run first because $tsv->{jail}
# is used by locationRulesInit, headersInit and postUrlInit.
# @param $conf reference to the configuration hash
# @param $tsv reference to the thread-shared parameters conf
sub configReload {
my ( $class, $conf, $tsv ) = @_;
Lemonldap::NG::Handler::Main::Logger->lmLog(
"Loading configuration $conf->{cfgNum} for process $$", "info" );
foreach my $sub (
qw( jailInit defaultValuesInit portalInit locationRulesInit
sessionStorageInit headersInit postUrlInit aliasInit )
)
{
Lemonldap::NG::Handler::Main::Logger->lmLog( "Process $$ calls $sub",
"debug" );
$class->$sub( $conf, $tsv );
}
return 1;
}
## @imethod protected void jailInit(hashRef args)
# Set default values for non-customized variables
# @param $args reference to the configuration hash
sub jailInit {
my ( $class, $conf, $tsv ) = @_;
$tsv->{jail} = Lemonldap::NG::Handler::Main::Jail->new(
'jail' => $tsv->{jail},
'useSafeJail' => $conf->{useSafeJail},
'customFunctions' => $conf->{customFunctions}
);
$tsv->{jail}->build_jail();
}
## @imethod protected void defaultValuesInit(hashRef args)
# Set default values for non-customized variables
# @param $args reference to the configuration hash
sub defaultValuesInit {
my ( $class, $conf, $tsv ) = @_;
$tsv->{$_} = $conf->{$_} foreach (
qw(
cda cookieExpiration cookieName
customFunctions httpOnly securedCookie
timeout timeoutActivity timeoutActivityInterval
useRedirectOnError useRedirectOnForbidden useSafeJail
whatToTrace
)
);
$tsv->{cipher} = Lemonldap::NG::Common::Crypto->new( $conf->{key} );
foreach my $opt (qw(https port maintenance)) {
if ( defined $conf->{$opt} ) {
# Record default value in key '_'
$tsv->{$opt} = { _ => $conf->{$opt} };
}
# Override with vhost options
if ( $conf->{vhostOptions} ) {
my $name = 'vhost' . ucfirst($opt);
foreach my $vhost ( keys %{ $conf->{vhostOptions} } ) {
my $val = $conf->{vhostOptions}->{$vhost}->{$name};
Lemonldap::NG::Handler::Main::Logger->lmLog(
"Options $opt for vhost $vhost: $val", 'debug' );
$tsv->{$opt}->{$vhost} = $val
if ( $val >= 0 ); # Keep default value if $val is negative
}
}
}
return 1;
}
## @imethod protected void portalInit(hashRef args)
# Verify that portal variable exists. Die unless
# @param $args reference to the configuration hash
sub portalInit {
my ( $class, $conf, $tsv ) = @_;
unless ( $conf->{portal} ) {
Lemonldap::NG::Handler::Main::Logger->lmLog(
"portal parameter required", 'error' );
return 0;
}
if ( $conf->{portal} =~ /[\$\(&\|"']/ ) {
( $tsv->{portal} ) = $class->conditionSub( $conf->{portal}, $tsv );
}
else {
$tsv->{portal} = sub { return $conf->{portal} };
}
return 1;
}
## @imethod void locationRulesInit(hashRef args)
# Compile rules.
# Rules are stored in $args->{locationRules}->{<virtualhost>} that contains
# regexp=>test expressions where :
# - regexp is used to test URIs
# - test contains an expression used to grant the user
#
# This function creates 2 hashRef containing :
# - one list of the compiled regular expressions for each virtual host
# - one list of the compiled functions (compiled with conditionSub()) for each
# virtual host
# @param $args reference to the configuration hash
sub locationRulesInit {
my ( $class, $conf, $tsv ) = @_;
foreach my $vhost ( keys %{ $conf->{locationRules} } ) {
my $rules = $conf->{locationRules}->{$vhost};
foreach my $url ( sort keys %{$rules} ) {
my ( $cond, $prot ) = $class->conditionSub( $rules->{$url}, $tsv );
unless ($cond) {
$tsv->{maintenance}->{$vhost} = 1;
Lemonldap::NG::Handler::Main::Logger->lmLog(
"Unable to build rule '$rules->{$url}': "
. $tsv->{jail}->error,
'error'
);
next;
}
if ( $url eq 'default' ) {
$tsv->{defaultCondition}->{$vhost} = $cond;
$tsv->{defaultProtection}->{$vhost} = $prot;
}
else {
push @{ $tsv->{locationCondition}->{$vhost} }, $cond;
push @{ $tsv->{locationProtection}->{$vhost} }, $prot;
push @{ $tsv->{locationRegexp}->{$vhost} }, qr/$url/;
push @{ $tsv->{locationConditionText}->{$vhost} },
$cond =~ /^\(\?#(.*?)\)/ ? $1
: $cond =~ /^(.*?)##(.+)$/ ? $2
: $url;
$tsv->{locationCount}->{$vhost}++;
}
}
# Default policy set to 'accept'
unless ( $tsv->{defaultCondition}->{$vhost} ) {
$tsv->{defaultCondition}->{$vhost} = sub { 1 };
$tsv->{defaultProtection}->{$vhost} = 0;
}
}
return 1;
}
## @imethod protected void sessionStorageInit(hashRef args)
# Initialize the Apache::Session::* module choosed to share user's variables
# and the Cache::Cache module choosed to cache sessions
# @param $args reference to the configuration hash
sub sessionStorageInit {
my ( $class, $conf, $tsv ) = @_;
unless ( $tsv->{sessionStorageModule} = $conf->{globalStorage} ) {
Lemonldap::NG::Handler::Main::Logger->lmLog( "globalStorage required",
'error' );
return 0;
}
eval "use $tsv->{sessionStorageModule}";
die($@) if ($@);
$tsv->{sessionStorageOptions} = $conf->{globalStorageOptions};
if ( $conf->{localSessionStorage} ) {
$tsv->{sessionCacheModule} = $conf->{localSessionStorage};
$tsv->{sessionCacheOptions} = $conf->{localSessionStorageOptions};
$tsv->{sessionCacheOptions}->{default_expires_in} ||= 600;
if ( $conf->{status} ) {
my $params = "";
if ( $tsv->{sessionCacheModule} ) {
require Data::Dumper;
$params =
" $tsv->{sessionCacheModule},"
. Data::Dumper->new( [ $tsv->{sessionCacheOptions} ] )
->Terse(1)->Indent(0)->Dump; # To send params on one line
}
print { $tsv->{statusPipe} } "RELOADCACHE$params";
}
}
return 1;
}
## @imethod void headersInit(hashRef args)
# Create the subroutines used to insert headers into the HTTP request.
# @param $args reference to the configuration hash
sub headersInit {
my ( $class, $conf, $tsv ) = @_;
# Creation of the subroutine which will generate headers
foreach my $vhost ( keys %{ $conf->{exportedHeaders} } ) {
my %headers = %{ $conf->{exportedHeaders}->{$vhost} };
$tsv->{headerList}->{$vhost} = [ keys %headers ];
my $sub;
foreach ( keys %headers ) {
my $val = $class->substitute( $headers{$_} );
$sub .= "'$_' => $val,";
}
unless ( $tsv->{forgeHeaders}->{$vhost} =
$tsv->{jail}->jail_reval("sub{return($sub)}") )
{
$tsv->{maintenance}->{$vhost} = 1;
Lemonldap::NG::Handler::Main::Logger->lmLog(
"$self: Unable to forge headers: " . $tsv->{jail}->error,
'error' );
}
}
return 1;
}
## @imethod protected void postUrlInit()
# Prepare methods to post form attributes
sub postUrlInit {
my ( $class, $conf, $tsv ) = @_;
return unless ( $conf->{post} );
# Browse all vhost
foreach my $vhost ( keys %{ $conf->{post} } ) {
# Browse all POST URI
foreach my $url ( keys %{ $conf->{post}->{$vhost} } ) {
my $d = $conf->{post}->{$vhost}->{$url};
Lemonldap::NG::Handler::Main::Logger->lmLog(
"Compiling POST data for $url", 'debug' );
# Where to POST
$d->{target} ||= $url;
my $sub;
$d->{vars} ||= [];
foreach my $input ( @{ delete $d->{vars} } ) {
$sub .=
"'$input->[0]' => " . $class->substitute( $input->[1] ) . ",";
}
unless ( $tsv->{inputPostData}->{$vhost}->{ delete $d->{target} } =
$tsv->{outputPostData}->{$vhost}->{$url} =
$tsv->{jail}->jail_reval("sub{$sub}") )
{
$tsv->{maintenance}->{$vhost} = 1;
Lemonldap::NG::Handler::Main::Logger->lmLog(
"$self: Unable to build post datas: " . $tsv->{jail}->error,
'error'
);
}
$tsv->{postFormParams}->{$vhost}->{$url} = $d;
}
}
return 1;
}
## @imethod protected codeRef conditionSub(string cond)
# Returns a compiled function used to grant users (used by
# locationRulesInit(). The second value returned is a non null
# constant if URL is not protected (by "unprotect" or "skip"), 0 else.
# @param $cond The boolean expression to use
# @param $mainClass optional
# @return array (ref(sub), int)
sub conditionSub {
my ( $class, $cond, $tsv ) = @_;
my ( $OK, $NOK ) = ( sub { 1 }, sub { 0 } );
# Simple cases : accept and deny
return ( $OK, 0 )
if ( $cond =~ /^accept$/i );
return ( $NOK, 0 )
if ( $cond =~ /^deny$/i );
# Cases unprotect and skip : 2nd value is 1 or 2
return ( $OK, UNPROTECT )
if ( $cond =~ /^unprotect$/i );
return ( $OK, SKIP )
if ( $cond =~ /^skip$/i );
# Case logout
if ( $cond =~ /^logout(?:_sso)?(?:\s+(.*))?$/i ) {
my $url = $1;
return (
$url
? (
sub {
$Lemonldap::NG::Handler::Main::datas->{_logout} = $url;
return 0;
},
0
)
: (
sub {
$Lemonldap::NG::Handler::Main::datas->{_logout} =
&{ $tsv->{portal} }();
return 0;
},
0
)
);
}
# Since filter exists only with Apache>=2, logout_app and logout_app_sso
# targets are available only for it.
# This error can also appear with Manager configured as CGI script
if ( $cond =~ /^logout_app/i and MP() < 2 ) {
Lemonldap::NG::Handler::Main::Logger->lmLog(
"Rules logout_app and logout_app_sso require Apache>=2", 'warn' );
return ( sub { 1 }, 0 );
}
# logout_app
if ( $cond =~ /^logout_app(?:\s+(.*))?$/i ) {
my $u = $1 || &{ $tsv->{portal} }();
eval 'use Apache2::Filter' unless ( $INC{"Apache2/Filter.pm"} );
return (
sub {
$Lemonldap::NG::Handler::API::ApacheMP2::request
->add_output_filter(
sub {
return Lemonldap::NG::Handler::Main->redirectFilter( $u,
@_ );
}
);
1;
},
0
);
}
elsif ( $cond =~ /^logout_app_sso(?:\s+(.*))?$/i ) {
my $u = $1 || &{ $tsv->{portal} }();
eval 'use Apache2::Filter' unless ( $INC{"Apache2/Filter.pm"} );
return (
sub {
Lemonldap::NG::Handler::Main->localUnlog;
$Lemonldap::NG::Handler::API::ApacheMP2::request
->add_output_filter(
sub {
my $r = $_[0]->r;
return Lemonldap::NG::Handler::Main->redirectFilter(
&{ $tsv->{portal} }() . "?url="
. Lemonldap::NG::Handler::Main->encodeUrl($u)
. "&logout=1",
@_
);
}
);
1;
},
0
);
}
# Replace some strings in condition
$cond = $class->substitute($cond);
my $sub;
unless ( $sub = $tsv->{jail}->jail_reval("sub{return($cond)}") ) {
Lemonldap::NG::Handler::Main::Logger->lmLog(
"$self: Unable to build condition ($cond): " . $tsv->{jail}->error,
'error'
);
}
# Return sub and protected flag
return ( $sub, 0 );
}
## @method arrayref aliasInit
# @param options vhostOptions configuration item
# @return arrayref of vhost and aliases
sub aliasInit {
my ( $class, $conf, $tsv ) = @_;
foreach my $vhost ( keys %{ $conf->{vhostOptions} } ) {
if ( my $aliases = $conf->{vhostOptions}->{$vhost}->{vhostAliases} ) {
foreach ( split /\s+/, $aliases ) {
$tsv->{vhostAlias}->{$_} = $vhost;
Lemonldap::NG::Handler::Main::Logger->lmLog(
"Registering $_ as alias of $vhost", 'debug' );
}
}
}
return 1;
}
# TODO: support wildcards in aliases
sub substitute {
my ( $class, $expr ) = @_;
# substitute special vars, just for retro-compatibility
$expr =~ s/\$date\b/&date/sg;
$expr =~ s/\$vhost\b/&hostname/sg;
$expr =~ s/\$ip\b/&remote_ip/sg;
# substitute vars with session datas, excepts special vars $_ and $\d+
$expr =~ s/\$(?!ENV)(_*[a-zA-Z]\w*)/\$datas->{$1}/sg;
return $expr;
}
1;
|