4 use vars qw( $FREESIDE_LOG $FREESIDE_LOCK );
5 use vars qw( $Debug %kids $kids $max_kids $ssh_pid %old_ssh_pid $keepalives );
6 use subs qw( lock_write unlock_write myshutdown usage );
8 use POSIX qw(:sys_wait_h);
12 use Storable 2.09 qw(nstore_fd fd_retrieve);
13 use Net::SSH qw(sshopen2);
14 use FS::Daemon qw(daemonize1 drop_root logfile daemonize2 sigint sigterm);
15 use FS::UID qw(adminsuidsetup forksuidsetup);
16 use FS::ClientAPI qw( load_clientapi_modules );
17 use FS::ClientAPI_SessionCache;
18 use FS::Record qw( qsearch qsearchs );
24 $FREESIDE_LOG = "%%%FREESIDE_LOG%%%";
25 $FREESIDE_LOCK = "%%%FREESIDE_LOCK%%%";
27 $Debug = 1; # 2 will turn on more logging
28 # 3 will log packet contents, including passwords
31 $keepalives = 0; #let clientd turn it on, so we don't barf on old ones
34 my $user = shift or die &usage;
35 my $machine = shift or die &usage;
36 my $tag = scalar(@ARGV) ? shift : '';
38 my $lock_file = "$FREESIDE_LOCK/selfservice.$machine.writelock";
40 # to keep pid files unique w/multi machines (and installs!)
41 # $FS::UID::datasrc not posible
42 daemonize1("freeside-selfservice-server","$user.$machine");
44 #false laziness w/Daemon::drop_root
45 my $freeside_gid = scalar(getgrnam('freeside'))
46 or die "can't find freeside group\n";
48 open(LOCKFILE,">$lock_file") or die "can't open $lock_file: $!";
49 chown $FS::UID::freeside_uid, $freeside_gid, $lock_file;
53 $ENV{HOME} = (getpwuid($>))[7]; #for ssh
55 load_clientapi_modules;
59 #logfile("/usr/local/etc/freeside/selfservice.". $FS::UID::datasrc); #MACHINE
60 logfile("$FREESIDE_LOG/selfservice.$machine.log");
64 my $conf = new FS::Conf;
65 if ( $conf->exists('selfservice-ignore_quantity') ) {
66 $FS::cust_svc::ignore_quantity = 1;
67 $FS::cust_svc::ignore_quantity = 1; #now it is used twice.
70 #clear the signup info cache so an "/etc/init.d/freeside restart" will pick
71 #up new info... (better as a callback in Signup.pm?)
72 my $cache = new FS::ClientAPI_SessionCache( {
73 'namespace' => 'FS::ClientAPI::Signup',
75 $cache->remove('signup_info_cache');
77 #and also clear the selfservice skin info cache, for the same reason
78 my $ss_cache = new FS::ClientAPI_SessionCache( {
79 'namespace' => 'FS::ClientAPI::MyAccount',
82 foreach grep /^skin_info_cache_agent/, $ss_cache->get_keys();
84 my $clientd = "/usr/local/sbin/freeside-selfservice-clientd"; #better name?
88 my($writer,$reader,$error) = (new IO::Handle, new IO::Handle, new IO::Handle);
89 warn "connecting to $machine\n" if $Debug;
91 $ssh_pid = sshopen2($machine,$reader,$writer,$clientd,$tag);
93 # nstore_fd(\*writer, {'hi'=>'there'});
95 warn "entering main loop\n" if $Debug;
97 my $keepalive_count = 0;
98 my $s = IO::Select->new( $reader );
103 warn "waiting for packet from client\n" if $Debug && !$undisp;
105 my @handles = $s->can_read(5);
106 unless ( @handles ) {
107 myshutdown() if sigint() || sigterm();
108 if ( $keepalives && $keepalive_count++ > 10 ) {
109 $keepalive_count = 0;
112 nstore_fd( { _token => '_keepalive' }, $writer );
114 #commenting izoom stuff out until we can move it to a branch (or just remove)
115 # foreach my $agent ( qsearch( 'agent', { disabled => '' } ) ) {
116 # my $config = qsearchs( 'conf', { name => 'selfservice-bulk_ftp_dir',
117 # agentnum => $agent->agentnum,
122 # FS::ClientAPI->dispatch( 'Agent/agent_login',
123 # { username => $agent->username,
124 # password => $agent->_password,
128 # nstore_fd( { _token => '_ftp_scan',
129 # dir => $config->value,
130 # session_id => $session->{session_id},
143 warn "receiving packet from client\n" if $Debug;
145 my $packet = eval { fd_retrieve($reader); };
147 warn "Storable error receiving packet from client".
148 " (assuming lost connection): $@\n"
151 warn "sending TERM signal to ssh process $ssh_pid\n" if $Debug;
152 kill 'TERM', $ssh_pid;
153 $old_ssh_pid{$ssh_pid} = 1;
158 warn "packet received\n".
159 join('', map { " $_=>$packet->{$_}\n" } keys %$packet )
162 if ( $packet->{_packet} eq '_enable_keepalive' ) {
163 warn "enabling keep alives\n" if $Debug;
168 #prevent runaway forking
170 while ( $kids >= $max_kids ) {
171 warn "WARNING: maximum $kids children reached\n" unless $warnkids++;
176 warn "forking child\n" if $Debug;
177 defined( my $pid = fork ) or die "can't fork: $!";
181 warn "child $pid spawned\n" if $Debug;
185 $FS::UID::dbh->{InactiveDestroy} = 1;
186 forksuidsetup($user);
189 #adminsuidsetup($user);
191 my $type = $packet->{_packet};
192 warn "calling $type handler\n" if $Debug;
193 my $rv = eval { FS::ClientAPI->dispatch($type, $packet); };
195 warn my $error = "WARNING: error dispatching $type: $@";
196 $rv = { _error => $error };
198 $rv->{_token} = $packet->{_token}; #identifier
200 open(LOCKFILE,">$lock_file") or die "can't open $lock_file: $!";
202 warn "sending response\n" if $Debug;
203 nstore_fd($rv, $writer) or die "FATAL: can't send response: $!";
204 $writer->flush or die "FATAL: can't flush: $!";
207 warn "child exiting\n" if $Debug;
213 myshutdown if sigint() || sigterm();
214 warn "connection lost, reconnecting\n" if $Debug;
220 # utility subroutines
224 #warn "reaping kids\n";
225 foreach my $pid ( keys %kids ) {
226 my $kid = waitpid($pid, WNOHANG);
233 foreach my $pid ( keys %old_ssh_pid ) {
234 waitpid($pid, WNOHANG) and delete $old_ssh_pid{$pid};
236 #warn "done reaping\n";
241 my $wait = 12; #wait up to 1 minute
242 while ( $kids > 0 && $wait-- ) {
243 warn "waiting for $kids children to terminate";
247 warn "abandoning $kids children" if $kids;
248 kill 'TERM', $ssh_pid if $ssh_pid;
253 warn "locking $lock_file mutex for write to write stream\n" if $Debug > 1;
256 #flock($writer, LOCK_EX) or die "FATAL: can't lock write stream: $!";
258 flock(LOCKFILE, LOCK_EX) or die "FATAL: can't lock $lock_file: $!";
263 warn "unlocking $lock_file mutex\n" if $Debug > 1;
266 #flock($writer, LOCK_UN) or die "WARNING: can't release write lock: $!";
268 flock(LOCKFILE, LOCK_UN) or die "FATAL: can't unlock $lock_file: $!";
273 die "Usage:\n\n freeside-selfservice-server user machine\n";