lemonldap-ng/fastcgi-server/sbin/llng-fastcgi-server

249 lines
6.5 KiB
Plaintext
Raw Normal View History

2016-02-04 23:10:17 +01:00
#!/usr/bin/env perl
use Plack::Runner;
use strict;
use warnings;
use POSIX;
2016-12-29 21:34:40 +01:00
use Getopt::Long;
2017-01-09 22:54:06 +01:00
use Lemonldap::NG::Handler::Main::Reload;
2016-02-04 23:10:17 +01:00
2016-12-29 21:34:40 +01:00
our $VERSION = '2.0.0';
2016-02-04 23:10:17 +01:00
2016-12-29 21:34:40 +01:00
our (
$foreground, $engine, $nproc,
$pidFile, $socket, $user,
$group, $customFunctionsFile, %plackOptions
);
my %_apps;
2016-02-04 23:10:17 +01:00
2016-06-09 13:45:08 +02:00
$SIG{'PIPE'} = 'IGNORE';
$ENV{LLNG_DEFAULTLOGGER} ||= 'Lemonldap::NG::Common::Logger::Syslog';
2016-06-09 13:45:08 +02:00
2016-12-29 21:34:40 +01:00
$foreground = 0;
$engine ||= $ENV{ENGINE} || 'FCGI';
$nproc ||= $ENV{NPROC} || 7;
$pidFile ||= $ENV{PID} || '__FASTCGISOCKDIR__/llng-fastcgi.pid';
$socket ||= $ENV{SOCKET} || '__FASTCGISOCKDIR__/llng-fastcgi.sock';
$user ||= $ENV{USER};
$group ||= $ENV{GROUP};
$customFunctionsFile ||= $ENV{CUSTOM_FUNCTIONS_FILE};
#Getopt::Long::Configure ("bundling_values");
GetOptions(
'foreground' => \$foreground,
'engine|e=s' => \$engine,
'proc|n=s' => \$nproc,
'pid|p=s' => \$pidFile,
'socket|s=s' => \$socket,
'user|u=s' => \$user,
'group|g=s' => \$group,
'customFunctionsFile|f=s' => \$customFunctionsFile,
'plackOptions=s' => \%plackOptions,
);
2016-02-04 23:10:17 +01:00
2016-12-29 21:34:40 +01:00
if ($group) {
my $grp = getgrnam($group) or warn "Can't change uid to $group";
2016-02-16 09:21:34 +01:00
POSIX::setgid($grp);
2016-02-04 23:10:17 +01:00
}
2016-12-29 21:34:40 +01:00
if ($user) {
my $uid = getpwnam($user) or warn "Can't change uid to $user";
2016-02-04 23:10:17 +01:00
POSIX::setuid($uid);
}
2016-12-29 21:34:40 +01:00
if ($customFunctionsFile) {
eval { require $customFunctionsFile };
2016-06-09 13:45:08 +02:00
die $@ if ($@);
}
2016-02-04 23:10:17 +01:00
my %builder = (
handler => sub {
2017-02-11 08:47:22 +01:00
require Lemonldap::NG::Handler::Server::Nginx;
return Lemonldap::NG::Handler::Server::Nginx->run( {} );
2016-12-29 21:34:40 +01:00
},
2016-07-16 08:05:36 +02:00
reload => sub {
2017-02-11 08:47:22 +01:00
require Lemonldap::NG::Handler::Server::Nginx;
return Lemonldap::NG::Handler::Server::Nginx->reload();
2016-07-16 08:05:36 +02:00
},
2016-02-11 13:09:53 +01:00
status => sub {
2017-02-11 08:47:22 +01:00
require Lemonldap::NG::Handler::Server::Nginx;
return Lemonldap::NG::Handler::Server::Nginx->status();
2016-02-11 13:09:53 +01:00
},
2016-02-04 23:10:17 +01:00
manager => sub {
require Lemonldap::NG::Manager;
return Lemonldap::NG::Manager->run( {} );
},
cgi => sub {
2016-02-04 23:10:17 +01:00
require CGI::Emulate::PSGI;
require CGI::Compile;
return sub {
my $script = $_[0]->{SCRIPT_FILENAME};
return $_apps{$script}->(@_) if ( $_apps{$script} );
$_apps{$script} =
CGI::Emulate::PSGI->handler( CGI::Compile->compile($script) );
return $_apps{$script}->(@_);
};
2016-02-04 23:10:17 +01:00
},
2017-01-09 22:54:06 +01:00
psgi => sub {
return sub {
my $script = $_[0]->{SCRIPT_FILENAME};
return $_apps{$script}->(@_) if ( $_apps{$script} );
$_apps{$script} = do $script;
return $_apps{$script}->(@_);
}
},
2016-02-04 23:10:17 +01:00
);
unless ($>) {
die "Refuse to run as root. Aborting";
}
my $app = sub {
my $type = $_[0]->{LLTYPE} || 'handler';
return $_apps{$type}->(@_) if ( defined $_apps{$type} );
if ( defined $builder{$type} ) {
$_apps{$type} = $builder{$type}->();
return $_apps{$type}->(@_);
}
die "Unknown PSGI type $type";
};
# Hook for customFunctions initialization
2017-02-10 12:05:42 +01:00
Lemonldap::NG::Handler::Main->onReload(
2017-01-09 22:54:06 +01:00
bless( {}, 'Lemonldap::NG::Handler::FastCGI::Loader' ),
'loadCustomLogins' );
my $server = Plack::Runner->new();
$server->parse_options(
'-s' => $engine,
'-E' => 'deployment',
'--pid' => $pidFile,
'--nproc' => $nproc,
'--socket' => $socket,
'--proc-title' => 'llng-fastcgi-server',
( $foreground ? () : '--daemonize' ),
'--no-default-middleware',
%plackOptions,
);
$server->run($app);
package Lemonldap::NG::Handler::FastCGI::Loader;
2016-12-29 21:34:40 +01:00
# Load configuration and look if custom handlers have been defined
2017-01-09 22:54:06 +01:00
sub loadCustomLogins {
my ( $obj, $conf ) = @_;
2016-12-29 21:34:40 +01:00
foreach my $lltype ( keys %{ $conf->{nginxCustomHandlers} // {} } ) {
my $v = $conf->{nginxCustomHandlers}->{$lltype};
2017-01-02 07:06:26 +01:00
if ( $v =~ m#[/\\\.]# ) {
2016-12-29 21:34:40 +01:00
eval { require $v; };
2017-01-02 07:06:26 +01:00
}
else {
eval "use $v";
}
if ($@) {
print STDERR "Unable to load $v, skipping: $@\n";
next;
2016-12-29 21:34:40 +01:00
}
$builder{$lltype} = sub {
require $v;
return $v->run( {} );
};
}
}
2016-02-07 09:32:40 +01:00
__END__
2016-02-04 23:10:17 +01:00
2016-02-07 09:32:40 +01:00
=head1 NAME
=encoding utf8
llng-fastcgi-server - FastCGI server used to provide Lemonldap::NG services to
Nginx
=head1 SYNOPSIS
# Start server listening to /run/llng.sock with 10 process
llng-fastcgi-server -u nobody -g nobody -s /run/llng.sock -n 10
=head1 DESCRIPTION
llng-fastcgi-server has been designed provides Lemonldap::NG services to Nginx.
Portal, manager and handler will be compiled only is used. So this FastCGI
server can be used on every Lemonldap::NG server even if it needs only some
parts (isolated handlers, portal,...).
2016-06-09 13:45:08 +02:00
=head1 PARAMETERS
Each parameter can be set by an option or a environment variable.
=over
2016-12-29 21:34:40 +01:00
=item --pid -p ($ENV{PID}): pid file
=item --user -u ($ENV{USER}): user
2016-06-09 13:45:08 +02:00
2016-12-29 21:34:40 +01:00
=item --group -g ($ENV{GROUP}): group
2016-06-09 13:45:08 +02:00
2016-12-29 21:34:40 +01:00
=item --proc -n ($ENV{NPROC}): Number of processus for FCGI
2016-06-09 13:45:08 +02:00
2016-12-29 21:34:40 +01:00
=item --engine -e ($ENV{ENGINE}): Plack::Handler engine, default to FCGI
2016-06-09 13:45:08 +02:00
2016-12-29 21:34:40 +01:00
=item --socket -s ($ENV{SOCKET}): Unix socket
2016-06-09 13:45:08 +02:00
2016-12-29 21:34:40 +01:00
=item --customFunctionsFile -f ($ENV{CUSTOM_FUNCTIONS_FILE}): file to load for
custom functions
2016-06-09 13:45:08 +02:00
2016-12-29 21:34:40 +01:00
=item --plackOptions: other options to pass to Plack. This multi-valued
parameter must have "key=value" values.
2016-06-09 13:45:08 +02:00
=back
2016-02-07 09:32:40 +01:00
=head1 SEE ALSO
L<http://lemonldap-ng.org/>
=head1 AUTHORS
=over
=item Clement Oudot, E<lt>clem.oudot@gmail.comE<gt>
=item Xavier Guimard, E<lt>x.guimard@free.frE<gt>
=back
=head1 BUG REPORT
Use OW2 system to report bug or ask for features:
L<http://jira.ow2.org>
=head1 DOWNLOAD
Lemonldap::NG is available at
L<http://forge.objectweb.org/project/showfiles.php?group_id=274>
=head1 COPYRIGHT AND LICENSE
=over
=item Copyright (C) 2008-2016 by Xavier Guimard, E<lt>x.guimard@free.frE<gt>
=item Copyright (C) 2008-2016 by Clément Oudot, E<lt>clem.oudot@gmail.comE<gt>
=back
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see L<http://www.gnu.org/licenses/>.
=cut