/usr/share/otrs/bin/otrs.Scheduler.pl is in otrs2 3.3.5-1.
This file is owned by root:root, with mode 0o755.
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 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 | #!/usr/bin/perl
# --
# otrs.Scheduler.pl - provides Scheduler Daemon control on Unix like OS
# Copyright (C) 2001-2014 OTRS AG, http://otrs.com/
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU AFFERO General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# 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 Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# or see http://www.gnu.org/licenses/agpl.txt.
# --
use strict;
use warnings;
use File::Basename;
use FindBin qw($RealBin);
use lib dirname($RealBin);
use lib dirname($RealBin) . '/Kernel/cpan-lib';
use lib dirname($RealBin) . '/Custom';
use Getopt::Std;
use Proc::Daemon;
use Kernel::Config;
use Kernel::System::Encode;
use Kernel::System::Log;
use Kernel::System::Main;
use Kernel::System::Time;
use Kernel::System::DB;
use Kernel::System::PID;
use Kernel::Scheduler;
# defie PID name
my $PIDName = 'otrs.Scheduler';
# get options
my %Opts = ();
getopt( 'hfap', \%Opts );
# check if is running on windows
if ( $^O eq "MSWin32" ) {
print "This program cannot run on Microsoft Windows. Use otrs.Scheduler4win.pl instead.\n";
exit 1;
}
# help option
if ( $Opts{h} ) {
_Help();
exit 1;
}
# check if a stop request is sent
if ( $Opts{a} && $Opts{a} eq "stop" ) {
# create common objects
my %CommonObject = _CommonObjects();
# get the process ID
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
# no process ID means that is not running
if ( !%PID ) {
print "Can't stop OTRS Scheduler because is not running!\n";
exit 1;
}
# send interrupt signal to the process ID to stop it
kill( 2, $PID{PID} );
$CommonObject{LogObject}->Log(
Priority => 'notice',
Message => "Scheduler Daemon Stop! PID $PID{PID}",
);
# force stop: remove PID from database, might be necessary if
# the process died but is still registered.
if ( exists $Opts{f} ) {
# delete process ID lock
my $PIDDelSuccess = $CommonObject{PIDObject}->PIDDelete(
Name => $PID{Name},
Force => 1,
);
# log daemon stop
if ( !$PIDDelSuccess ) {
$CommonObject{LogObject}->Log(
Priority => 'error',
Message => "Process could not be deleted from process table! PID $PID{PID}",
);
exit 1;
}
# delete PID file
my $Home = $CommonObject{ConfigObject}->Get('Home');
my $PIDFile = $Home . '/var/run/scheduler.pid';
if ( unlink($PIDFile) == 0 ) {
# log PID file cannot be deleted
$CommonObject{LogObject}->Log(
Priority => 'error',
Message => "Scheduler could not delete PID file:'$PIDFile'! $!",
);
}
}
exit 0;
}
# check if a status request is sent
if ( $Opts{a} && $Opts{a} eq "status" ) {
# create common objects
my %CommonObject = _CommonObjects();
# get the process ID
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
# no process ID means that is not running
if ( !%PID ) {
# print 0 if PID option is required
if ( $Opts{p} ) {
print "0\n";
}
# otherwise print a human meaningful message
else {
print "Not Running!\n";
}
exit 1;
}
# log daemon stop
$CommonObject{LogObject}->Log(
Priority => 'notice',
Message => "Scheduler Daemon status request! PID $PID{PID}",
);
# create a new Daemon object
my $Daemon = Proc::Daemon->new();
# Get the process status
if ( $Daemon->Status( $PID{PID} ) ) {
# print only the PID if PID option is required
if ( $Opts{p} ) {
print "$PID{PID}\n";
}
# otherwise print a human meaningful message
else {
print "Running $PID{PID}\n";
}
}
else {
# print -1 only id PID option is required, this will differentiate from a correct stop
# message
if ( $Opts{p} ) {
print "-1\n";
}
# otherwise print an error message
else {
print
"Not Running, but PID is still registered! Use '-a stop --force' to unregister "
. "the PID from the database.\n";
exit 1;
}
}
exit 0;
}
# check if a reload request is sent
if ( $Opts{a} && $Opts{a} eq "reload" ) {
# create common objects
my %CommonObject = _CommonObjects();
# get the process ID
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
# no process ID means that is not running
if ( !%PID ) {
print "Can't get OTRS Scheduler status because it is not running!\n";
exit 1;
}
# send interrupt signal to the process ID to stop it
kill( 1, $PID{PID} );
# log daemon stop
$CommonObject{LogObject}->Log(
Priority => 'notice',
Message => "Scheduler Daemon reload request! PID $PID{PID}",
);
exit 0;
}
# check if start request is sent
elsif ( $Opts{a} && $Opts{a} eq "start" ) {
{
# create common objects
my %CommonObject = _CommonObjects();
# check if PID is already there
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
if (%PID) {
# get the PID update time
my $PIDUpdateTime =
$CommonObject{ConfigObject}->Get('Scheduler::PIDUpdateTime') || 60.0;
# get current time
my $Time = time();
# calculate time difference
my $DeltaTime = $Time - $PID{Changed};
# remove PID if changed time is greater than
if ( $DeltaTime > $PIDUpdateTime ) {
# _AutoStop returns an exit code for the OS, we need the opposite value
my $PIDDeleteSuccess = !_AutoStop(
Message => 'NOTICE: otrs.Scheduler.pl is registered on the DB, but the '
. 'registry has not been updated in ' . $DeltaTime . ' seconds!. '
. 'The register will be deleted so Scheduler can start again without '
. 'forcing',
DeletePID => 1,
);
if ($PIDDeleteSuccess) {
%PID = ();
}
}
}
# check for force to start option
if (%PID) {
if ( !exists $Opts{f} ) {
print
"NOTICE: otrs.Scheduler.pl is already running (use '-f' if you want to start it forced)!\n";
# log daemon already running
$CommonObject{LogObject}->Log(
Priority => 'error',
Message =>
"Scheduler Daemon tries to start but found an already running service!\n",
);
exit 1;
}
print
"NOTICE: otrs.Scheduler.pl was already running but is starting again (force was used)!\n";
# log daemon forced start
$CommonObject{LogObject}->Log(
Priority => 'notice',
Message => "Scheduler Daemon is forced to start!",
);
}
# get default log path from configuration
my $LogPath = $CommonObject{ConfigObject}->Get('Scheduler::LogPath')
|| '<OTRS_CONFIG_Home>/var/log';
# backup old log files
my $FileExt = '.log';
my $FileStdOut = $LogPath . '/SchedulerOUT.log';
my $FileStdErr = $LogPath . '/SchedulerERR.log';
use File::Copy;
my $SystemTime = $CommonObject{TimeObject}->SystemTime();
if ( -e $FileStdOut ) {
move( "$FileStdOut", "$LogPath/SchedulerOUT-$SystemTime.log" );
}
if ( -e $FileStdErr ) {
move( "$FileStdErr", "$LogPath/SchedulerERR-$SystemTime.log" );
}
# delete old log files
my $DaysToKeep = $CommonObject{ConfigObject}->Get('Scheduler::Log::DaysToKeep') || 10;
my $DaysToKeepSystemTime
= $CommonObject{TimeObject}->SystemTime() - $DaysToKeep * 24 * 60 * 60;
my @LogFiles = glob("$LogPath/*.log");
LOGFILE:
for my $LogFile (@LogFiles) {
# skip if is not a backup file
next LOGFILE if ( $LogFile !~ m{(?: .* /)* Scheduler (?: OUT|ERR ) - (\d+) \.log}igmx );
# skip if is not older than the maximum allowed
next LOGFILE if ( $1 > $DaysToKeepSystemTime );
#delete file
if ( unlink($LogFile) == 0 ) {
# log old backup file cannot be deleted
$CommonObject{LogObject}->Log(
Priority => 'error',
Message => "Scheduler could not delete old backup file $LogFile! $!",
);
}
else {
# log old backup file deleted
$CommonObject{LogObject}->Log(
Priority => 'notice',
Message => "Scheduler deleted old backup file $LogFile!",
);
}
}
# create a new daemon object
my $Daemon = Proc::Daemon->new();
# demonize itself
$Daemon->Init(
{
child_STDOUT => $FileStdOut,
child_STDERR => $FileStdErr,
}
);
}
# create common objects
my %CommonObject = _CommonObjects();
# if start is forced, be sure to remove any PID from any host
my $Force = $Opts{f} ? 1 : '';
# create new PID on the Database
$CommonObject{PIDObject}->PIDCreate(
Name => $PIDName,
Force => $Force,
);
# get the process ID
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
# set run directory for PID File
my $Home = $CommonObject{ConfigObject}->Get('Home');
my $RunDir = $Home . '/var/run';
my $PIDFile = "$RunDir/scheduler.pid";
# check if RunDir exists, otherwise create it
if ( !-d "$RunDir" ) {
my $Success = mkdir "$RunDir", 0755;
# stop if can't create the PID file
if ( !$Success ) {
my $ExitCode = _AutoStop(
Message => "Could not create the directory $RunDir! Scheduler is stopping...!",
DeletePID => 1,
);
exit $ExitCode;
}
}
# write PID to the PID file (if possible)
my $PIDFH;
if ( open $PIDFH, ">", $PIDFile ) { ## no critic
print $PIDFH $PID{PID};
close $PIDFH;
}
# otherwise stop if we can't write the PID on the PID file
else {
my $ExitCode = _AutoStop(
Message => "Can not write into the PID file:'$PIDFile'! $!",
DeletePID => 1,
);
exit $ExitCode;
}
# Log daemon start up
$CommonObject{LogObject}->Log(
Priority => 'notice',
Message => "Scheduler Daemon start! PID $PID{PID}",
);
my $Interrupt;
my $Terminate;
my $Hangup;
# when we get a INT signal, set the exit flag
$SIG{INT} = sub { $Interrupt = 1 };
# when we get a TERM signal, set the exit flag
$SIG{TERM} = sub { $Terminate = 1 };
# when get a HUP signal, set HUP flag
$SIG{HUP} = sub { $Hangup = 1 };
my $SleepTime = $CommonObject{ConfigObject}->Get('Scheduler::SleepTime') || 1;
my $RestartAfterSeconds = $CommonObject{ConfigObject}->Get('Scheduler::RestartAfterSeconds')
|| ( 60 * 60 * 24 ); # default 1 day
my $StartTime = $CommonObject{TimeObject}->SystemTime();
# get config checksum
my $InitConfigMD5 = $CommonObject{ConfigObject}->ConfigChecksum();
# main loop
while (1) {
# get the process ID
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
# check if process ID was deleted from DB
if ( !%PID ) {
my $ExitCode = _AutoStop(
Message => "Process could not be found in the process table!\n"
. "Scheduler is stopping...!\n",
);
exit $ExitCode;
}
# check if Framework.xml file exists, otherwise quit because the otrs installation
# might not be OK. for example UnitTest machines during change scenario process
my $FrameworkConfigFile = $Home . '/Kernel/Config/Files/Framework.xml';
if ( !-e $FrameworkConfigFile ) {
my $ExitCode = _AutoStop(
Message => "$FrameworkConfigFile file is part of the OTRS file set and "
. "is not present! \n"
. "Scheduler is stopping...!\n",
DeletePID => 1,
);
exit $ExitCode;
}
# get config checksum
my $CurrConfigMD5 = $CommonObject{ConfigObject}->ConfigChecksum();
# check if checksum changed and restart
if ( $InitConfigMD5 ne $CurrConfigMD5 ) {
my $ExitCode = _AutoRestart(
Message => "Config.pm changed, unsafe to continue! \n"
. "Scheduler is restarting...!\n",
);
exit $ExitCode;
}
# check for stop signal (again)
if ( $Interrupt || $Terminate ) {
my $ExitCode = _AutoStop(
DeletePID => 1,
);
exit $ExitCode;
}
# check for hangup signal, requesting a config reload
if ($Hangup) {
my $ExitCode = _AutoRestart(
Message => "Reload requested, scheduler daemon restarts itself (PID $PID{PID})."
);
exit $ExitCode;
}
# Call Scheduler
my $SchedulerObject = Kernel::Scheduler->new(%CommonObject);
$SchedulerObject->Run();
my $CurrentTime = $CommonObject{TimeObject}->SystemTime();
# The Scheduler needs to be restarted from time to time because
# of memory leaks in some external perl modules.
if ( ( $CurrentTime - $StartTime ) > $RestartAfterSeconds ) {
my $ExitCode = _AutoRestart(
Message => "Scheduler Daemon restarts itself (PID $PID{PID})."
);
exit $ExitCode;
}
# sleep to avoid overloading the processor
sleep $SleepTime;
}
# this will never be reached because of the while (1)
exit 1;
}
# invalid option, show help
else {
_Help();
exit 1;
}
exit 1;
# Internal
sub _Help {
print "otrs.Scheduler.pl - OTRS Scheduler Daemon\n";
print "Copyright (C) 2001-2014 OTRS AG, http://otrs.com/\n";
print "Usage: otrs.Scheduler.pl -a <ACTION> (start|stop|status) [-f (force)]\n";
# Not documented!
# otrs.Scheduler.pl -a status [-p PID]
# 0 if scheduler is stopped
# -1 if scheduler is registered in the DB but is not running
# <PID> if scheduler is running where <PID> is the process number of the scheduler process
}
sub _CommonObjects {
my %CommonObject;
$CommonObject{ConfigObject} = Kernel::Config->new();
$CommonObject{EncodeObject} = Kernel::System::Encode->new(%CommonObject);
$CommonObject{LogObject} = Kernel::System::Log->new(
LogPrefix => 'OTRS-otrs.Scheduler',
%CommonObject,
);
$CommonObject{MainObject} = Kernel::System::Main->new(%CommonObject);
$CommonObject{TimeObject} = Kernel::System::Time->new(%CommonObject);
$CommonObject{DBObject} = Kernel::System::DB->new(%CommonObject);
$CommonObject{PIDObject} = Kernel::System::PID->new(%CommonObject);
return %CommonObject;
}
sub _AutoRestart {
my (%Param) = @_;
# create common objects
my %CommonObject = _CommonObjects();
# get the process ID
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
# Log daemon start up
$CommonObject{LogObject}->Log(
Priority => 'notice',
Message => $Param{Message} || 'Unknown reason to restart',
);
# delete PID lock
my $PIDDelSuccess = $CommonObject{PIDObject}->PIDDelete( Name => $PID{Name} );
my $ExitCode;
if ( !$PIDDelSuccess ) {
$CommonObject{LogObject}->Log(
Priority => 'error',
Message =>
"Could not remove Scheduler PID $PID{PID} from database to prepare Scheduler restart, exiting.",
);
$ExitCode = 1;
return $ExitCode;
}
my $Home = $CommonObject{ConfigObject}->Get('Home');
my $Scheduler = $Home . '/bin/otrs.Scheduler.pl';
my $StartExitCode = system("$Scheduler -a start");
if ($StartExitCode) {
$CommonObject{LogObject}->Log(
Priority => 'error',
Message => "Could not start-up new Scheduler instance.",
);
$ExitCode = 1;
return $ExitCode;
}
$ExitCode = 0;
return $ExitCode;
}
sub _AutoStop {
my (%Param) = @_;
# create common objects
my %CommonObject = _CommonObjects();
if ( $Param{Message} ) {
# log error
$CommonObject{LogObject}->Log(
Priority => 'error',
Message => $Param{Message},
);
}
my $ExitCode;
if ( $Param{DeletePID} ) {
# get the process ID
my %PID = $CommonObject{PIDObject}->PIDGet( Name => $PIDName );
# delete process ID lock
my $PIDDelSuccess = $CommonObject{PIDObject}->PIDDelete( Name => $PID{Name} );
# log daemon stop
if ( !$PIDDelSuccess ) {
$CommonObject{LogObject}->Log(
Priority => 'error',
Message => "Process could not be deleted from process table! PID $PID{PID}",
);
$ExitCode = 1;
return $ExitCode;
}
#delete PID file
my $Home = $CommonObject{ConfigObject}->Get('Home');
my $PIDFile = $Home . '/var/run/scheduler.pid';
# check if the PID file exists
# on some linux ditributions if the init.d script is called with the method "restart"
# the PID file is deleted (e.g start-stop-daemon based init scripts)
if ( -e $PIDFile ) {
# if the PID file exists check if is possible to delete or send an error
if ( unlink($PIDFile) == 0 ) {
# log PID file cannot be deleted
$CommonObject{LogObject}->Log(
Priority => 'error',
Message => "Scheduler could not delete PID file:'$PIDFile'! $!",
);
$ExitCode = 1;
return $ExitCode;
}
}
$ExitCode = 0;
return $ExitCode;
}
$ExitCode = 1;
return $ExitCode;
}
|