/usr/lib/oar/Almighty is in oar-server 2.5.7-3.
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 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 | #!/usr/bin/perl
use strict;
use Data::Dumper;
use IO::Socket::INET;
use OAR::Modules::Judas qw(oar_debug oar_warn oar_error send_log_by_email set_current_log_category);
use OAR::Conf qw(init_conf dump_conf get_conf is_conf get_conf_with_default_param);
use OAR::Tools;
use OAR::Modules::Hulot;
use POSIX qw(:signal_h :errno_h :sys_wait_h);
# Log category
set_current_log_category('main');
my $Old_umask = sprintf("%lo",umask());
umask(oct("022"));
my $oldfh = select(STDERR); $| = 1; select($oldfh);
$oldfh = select(STDOUT); $| = 1; select($oldfh);
#Everything is run by oar user
$ENV{OARDO_UID}=$<;
my $Redirect_STD_process = OAR::Modules::Judas::redirect_everything();
oar_warn("[Almighty] Start Almighty\n");
send_log_by_email("Start OAR server","[Almighty] Start Almighty");
# Signal handle system
my $finishTag = 0;
sub signalHandler(){
$finishTag = 1;
}
#To avoid zombie processes
$SIG{CHLD} = 'IGNORE';
$SIG{USR1} = \&signalHandler;
$SIG{INT} = \&signalHandler;
$SIG{TERM} = \&signalHandler;
init_conf($ENV{OARCONFFILE});
my $binpath;
if (defined($ENV{OARDIR})){
$binpath = $ENV{OARDIR}."/";
}else{
oar_error("[Almighty] OARDIR env variable must be defined\n");
exit(1);
}
my $meta_sched_command = get_conf_with_default_param("META_SCHED_CMD", "oar_meta_sched");
my $scheduler_command = (($meta_sched_command =~ /^\//)?"":$binpath).$meta_sched_command;
my $check_for_villains_command = $binpath."sarko";
my $check_for_node_changes = $binpath."finaud";
my $leon_command = $binpath."Leon";
my $nodeChangeState_command = $binpath."NodeChangeState";
my $bipbip_command = $binpath."bipbip";
my $server;
my $serverport;
if (is_conf("SERVER_PORT")){
$serverport = get_conf("SERVER_PORT");
}else{
oar_error("[Almighty] You must have a oar.conf file with a valid SERVER_PORT tag\n");
exit(1);
}
my $servermaxconnect=100;
# This timeout is used by appendice to prevent a client to block
# reception by letting a connection opened
# should be left at a positive value
my $appendice_connection_timeout = 5;
# This timeout is used to slowdown the main automaton when the
# command queue is empty, it correspond to a blocking read of
# new commands. A High value is likely to reduce the CPU usage of
# the Almighty.
# Setting it to 0 or a low value is not likely to improve performance
# dramatically (because it blocks only when nothing else is to be done).
# Nevertheless it is closely related to the precision at which the
# internal counters are checked
my $read_commands_timeout = 10;
# This parameter sets the number of pending commands read from
# appendice before proceeding with internal work
# should not be set at a too high value as this would make the
# Almighty weak against flooding
my $max_successive_read = 100;
# Max waiting time before new scheduling attempt (in the case of
# no notification)
my $schedulertimeout = 60;
# Min waiting time before 2 scheduling attempts
my $scheduler_min_time_between_2_calls = get_conf_with_default_param("SCHEDULER_MIN_TIME_BETWEEN_2_CALLS", 5);
my $scheduler_wanted = 0; # 1 if the scheduler must be run next time update
# Max waiting time before check for jobs whose time allowed has elapsed
my $villainstimeout = 10;
# Max waiting time before check node states
my $checknodestimeout = get_conf_with_default_param("FINAUD_FREQUENCY", 300);
# Max number of concurrent bipbip processes
my $Max_bipbip_processes = get_conf_with_default_param("MAX_CONCURRENT_JOBS_STARTING_OR_TERMINATING", 25);
my $Detach_oarexec = get_conf_with_default_param("DETACH_JOB_FROM_SERVER",0);
# Maximum duration a a bipbip process (after that time the process is killed)
my $Max_bipbip_process_duration = 30*60;
my $Log_file = get_conf_with_default_param("LOG_FILE", "/var/log/oar.log");
# Regexp of the notification received from oarexec processes
# $1: job id
# $2: oarexec exit code
# $3: job script exit code
# $4: secret string that identifies the oarexec process (for security)
my $OAREXEC_REGEXP = 'OAREXEC_(\d+)_(\d+)_(\d+|N)_(\d+)';
# Regexp of the notification received when a job must be launched
# $1: job id
my $OARRUNJOB_REGEXP = 'OARRUNJOB_(\d+)';
# Regexp of the notification received when a job must be exterminate
# $1: job id
my $LEONEXTERMINATE_REGEXP = 'LEONEXTERMINATE_(\d+)';
# Internal stuff, not relevant for average user
my $lastscheduler;
my $lastvillains;
my $lastchecknodes;
my @internal_command_file;
my $appendice_pid;
my $energy_pid;
# launch the command line passed in parameter
sub launch_command($){
my $command = shift;
oar_debug("[Almighty] Launching command : [$command]\n");
#$ENV{PATH}="/bin:/usr/bin:/usr/local/bin";
####### THE LINE BELOW SHOULD NOT BE COMMENTED IN NORMAL USE #####
$SIG{CHLD} = 'DEFAULT';
#system $command;
my $pid=0;
$pid=fork;
if($pid==0){
#CHILD
$SIG{USR1} = 'IGNORE';
$SIG{INT} = 'IGNORE';
$SIG{TERM} = 'IGNORE';
$0="Almighty: $command";
exec($command);
}
my $kid;
while ($kid != $pid){
#release zombie and check the end of $command
$kid = wait();
}
$SIG{CHLD} = 'IGNORE';
my $exit_value = $? >> 8;
my $signal_num = $? & 127;
my $dumped_core = $? & 128;
oar_debug("[Almighty] $command terminated :\n");
oar_debug("[Almighty] Exit value : $exit_value\n");
oar_debug("[Almighty] Signal num : $signal_num\n");
oar_debug("[Almighty] Core dumped : $dumped_core\n");
if ($signal_num || $dumped_core){
oar_error("[Almighty] Something wrong occured (signal or core dumped) when trying to call [$command] command\n");
$finishTag = 1;
#exit(2);
}
return $exit_value;
}
# listening procedure used by the appendice, a forked process dedicated
# to the listening of commands
sub qget_appendice(){
my $answer;
my $rin = '';
my $res;
my $carac;
my $client=$server->accept();
oar_debug("[Almighty] Appendice received a connection\n");
if (!defined($client)){
oar_error("[Almighty] End of appendice listening : the socket disappeared\n");
exit(16);
}
# non-blocking read
$rin = '';
my $rinTmp = '';
vec($rin,fileno($client),1) = 1;
$res = select($rinTmp = $rin, undef, undef, $appendice_connection_timeout);
$carac="A";
while (($res > 0) && ($carac ne "\n")){
if (!defined(sysread($client, $carac, 1))){
oar_warn("[Almighty] End of appendice listening for the current client, client socket is undef; MAYBE SOMEONE USE NMAP ON THE SERVER SOCKET !!!\n");
#exit(3);
$res = 0;
}elsif ($carac eq ""){
#something wrong occured, we quit this loop. socket was closed
$res = 0;
}elsif ($carac ne "\n"){
$answer = $answer.$carac;
$res = select($rinTmp = $rin, undef, undef, $appendice_connection_timeout);
}
}
# cleans the answer of all unwanted trailing characters
$carac=chop $answer;
while ($answer && $carac !~ '[a-zA-Z0-9]'){
$carac=chop $answer;
}
$answer = $answer.$carac;
# with nmap these lines crash the appendice
#print $client "Your request [$answer] was received\n";
close($client);
return $answer;
}
# main body of the appendice, a forked process dedicated
# to the listening of commands
# the interest of such a forked process is to ensure that clients get their
# notification as soon as possible (i.e. reactivity) even if the almighty is
# performing some other internal task in the meantime
sub comportement_appendice(){
close READ;
# Initialize bipbip process handler
## pipe to communicate with the "Almighty: bipbip" process that launches
## and manages bipbip processes
pipe(pipe_bipbip_read,pipe_bipbip_write);
autoflush pipe_bipbip_write 1;
autoflush pipe_bipbip_read 1;
my $bipbip_launcher_pid=0;
$bipbip_launcher_pid=fork();
if ($bipbip_launcher_pid==0){
#CHILD
oar_debug("[Almighty][bipbip_launcher] Start bipbip handler process\n");
close(pipe_bipbip_write);
$SIG{USR1} = 'IGNORE';
$SIG{INT} = 'IGNORE';
$SIG{TERM} = 'IGNORE';
$0="Almighty: bipbip";
# Pipe to handle children ending
pipe(pipe_bipbip_children_read,pipe_bipbip_children_write);
autoflush pipe_bipbip_children_write 1;
autoflush pipe_bipbip_children_read 1;
# Handle finished bipbip processes
sub bipbip_child_signal_handler {
$SIG{CHLD} = \&bipbip_child_signal_handler;
my $wait_pid_ret ;
while (($wait_pid_ret = waitpid(-1,WNOHANG)) > 0){
my $exit_value = $? >> 8;
print(pipe_bipbip_children_write "$wait_pid_ret $exit_value\n");
}
}
$SIG{CHLD} = \&bipbip_child_signal_handler;
my $rin_pipe = '';
vec($rin_pipe,fileno(pipe_bipbip_read),1) = 1;
my $rin_sig = '';
vec($rin_sig,fileno(pipe_bipbip_children_read),1) = 1;
my $rin = $rin_pipe | $rin_sig;
my $rin_tmp;
my $stop = 0;
my %bipbip_children = (); my %bipbip_current_processing_jobs = ();
my @bipbip_processes_to_run = ();
while ($stop == 0){
select($rin_tmp = $rin, undef, undef, undef);
my $current_time = time();
if (vec($rin_tmp, fileno(pipe_bipbip_children_read), 1)){
my ($res_read,$line_read) = OAR::Tools::read_socket_line(\*pipe_bipbip_children_read,1);
if ($line_read =~ m/(\d+) (\d+)/m){
my $process_duration = $current_time - $bipbip_current_processing_jobs{$bipbip_children{$1}}->[1];
oar_debug("[Almighty][bipbip_launcher] Process $1 for the job $bipbip_children{$1} ends with exit_code=$2, duration=${process_duration}s\n");
delete($bipbip_current_processing_jobs{$bipbip_children{$1}});
delete($bipbip_children{$1});
}else{
oar_warn("[Almighty][bipbip_launcher] Read a malformed string in pipe_bipbip_children_read: $line_read\n");
}
}elsif (vec($rin_tmp, fileno(pipe_bipbip_read), 1)){
my ($res_read,$line_read) = OAR::Tools::read_socket_line(\*pipe_bipbip_read,1);
if (($res_read == 1) and ($line_read eq "")){
$stop = 1;
oar_warn("[Almighty][bipbip_launcher] Father pipe closed so we stop the process\n");
}elsif (($line_read =~ m/$OAREXEC_REGEXP/m) or
($line_read =~ m/$OARRUNJOB_REGEXP/m) or
($line_read =~ m/$LEONEXTERMINATE_REGEXP/m)){
if (!grep(/^$line_read$/,@bipbip_processes_to_run)){
oar_debug("[Almighty][bipbip_launcher] Read on pipe: $line_read\n");
push(@bipbip_processes_to_run, $line_read);
}
}else{
oar_warn("[Almighty][bipbip_launcher] Read a bad string: $line_read\n");
}
}
my @bipbip_processes_to_requeue = ();
while(($stop == 0) and ($#bipbip_processes_to_run >= 0) and (keys(%bipbip_children) < $Max_bipbip_processes)){
my $str = shift(@bipbip_processes_to_run);
my $cmd_to_run;
my $bipbip_job_id = 0;
if ($str =~ m/$OAREXEC_REGEXP/m){
$cmd_to_run = "$bipbip_command $1 $2 $3 $4";
$bipbip_job_id = $1;
}elsif ($str =~ m/$OARRUNJOB_REGEXP/m){
$cmd_to_run = "$bipbip_command $1";
$bipbip_job_id = $1;
}elsif ($str =~ m/$LEONEXTERMINATE_REGEXP/m){
$cmd_to_run = "$leon_command $1";
$bipbip_job_id = $1;
}
if ($bipbip_job_id > 0){
if (defined($bipbip_current_processing_jobs{$bipbip_job_id})){
if (!grep(/^$str$/,@bipbip_processes_to_run)){
oar_debug("[Almighty][bipbip_launcher] A process is already running for the job $bipbip_job_id. We requeue: $str\n");
push(@bipbip_processes_to_requeue, $str);
}
}else{
my $pid=0;
$pid=fork;
if (!defined($pid)){
oar_error("[Almighty][bipbip_launcher] Fork failed, I kill myself\n");
exit(2);
}
if($pid==0){
#CHILD
$SIG{USR1} = 'IGNORE';
$SIG{INT} = 'IGNORE';
$SIG{TERM} = 'IGNORE';
$SIG{CHLD} = 'DEFAULT';
open (STDIN, "</dev/null");
open (STDOUT, ">> $Log_file");
open (STDERR, ">&STDOUT");
exec("$cmd_to_run");
oar_error("[Almighty][bipbip_launcher] failed exec: $cmd_to_run\n");
exit(1);
}
$bipbip_current_processing_jobs{$bipbip_job_id} = [$pid, $current_time];
$bipbip_children{$pid} = $bipbip_job_id;
oar_debug("[Almighty][bipbip_launcher] Run process: $cmd_to_run\n");
}
}else{
oar_warn("[Almighty][bipbip_launcher] Bad string read in the bipbip queue: $str\n");
}
}
push(@bipbip_processes_to_run, @bipbip_processes_to_requeue);
oar_debug("[Almighty][bipbip_launcher] Nb running bipbip: ".keys(%bipbip_children)."/$Max_bipbip_processes; Waiting processes(".($#bipbip_processes_to_run + 1)."): @bipbip_processes_to_run\n");
# Check if some bipbip processes are blocked; this must never happen
if ($Detach_oarexec != 0){
foreach my $b (keys(%bipbip_current_processing_jobs)){
my $process_duration = $current_time - $bipbip_current_processing_jobs{$b}->[1];
oar_debug("[Almighty][bipbip_launcher] Check bipbip process duration: job=$b, pid=$bipbip_current_processing_jobs{$b}->[0], time=$bipbip_current_processing_jobs{$b}->[1], current_time=$current_time, duration=${process_duration}s\n");
if ($bipbip_current_processing_jobs{$b}->[1] < ($current_time - $Max_bipbip_process_duration)){
oar_warn("[Almighty][bipbip_launcher] Max duration for the bipbip process $bipbip_current_processing_jobs{$b}->[0] reached (${Max_bipbip_process_duration}s); job $b\n");
kill(9, $bipbip_current_processing_jobs{$b}->[0]);
}
}
}
}
oar_warn("[Almighty][bipbip_launcher] End of process\n");
exit(1);
}
close(pipe_bipbip_read);
while (1){
my $answer = qget_appendice();
oar_debug("[Almighty] Appendice has read on the socket : $answer\n");
if (($answer =~ m/$OAREXEC_REGEXP/m) or
($answer =~ m/$OARRUNJOB_REGEXP/m) or
($answer =~ m/$LEONEXTERMINATE_REGEXP/m)){
if (! print pipe_bipbip_write "$answer\n"){
oar_error("[Almighty] Appendice cannot communicate with bipbip_launcher process, I kill myself\n");
exit(2);
}
flush pipe_bipbip_write;
}elsif ($answer ne ""){
print WRITE "$answer\n";
flush WRITE;
}else{
oar_debug("[Almighty] A connection was opened but nothing was written in the socket\n");
#sleep(1);
}
}
}
# hulot module forking
sub start_hulot(){
$energy_pid = fork();
if(!defined($energy_pid)){
oar_error("[Almighty] Cannot fork Hulot, the energy saving module\n");
exit(6);
}
if (!$energy_pid){
$SIG{CHLD} = 'DEFAULT';
$SIG{USR1} = 'IGNORE';
$SIG{INT} = 'IGNORE';
$SIG{TERM} = 'IGNORE';
$0="Almighty: hulot";
OAR::Modules::Hulot::start_energy_loop();
oar_error("[Almighty] Energy saving loop (hulot) exited. This should not happen.\n");
exit(7);
}
}
# check the hulot process
sub check_hulot(){
return kill 0, $energy_pid;
}
# Clean ipcs
sub ipc_clean(){
open(IPCS,"/proc/sysvipc/msg");
my @oar = getpwnam('oar');
while (<IPCS>) {
my @ipcs=split;
if ($ipcs[7] eq $oar[2]) {
my $ipc=$ipcs[1];
oar_debug("[Almighty] cleaning ipc $ipc\n");
`/usr/bin/ipcrm -q $ipc`;
}
}
close(IPCS);
}
# initial stuff that has to be done
sub init(){
if(!(pipe (READ, WRITE))){
oar_error("[Almighty] Cannot open pipe !!!\n");
exit(5);
}
autoflush READ 1;
autoflush WRITE 1;
$server = IO::Socket::INET->new(LocalPort=> $serverport,
Type => SOCK_STREAM,
Reuse => 1,
Listen => $servermaxconnect);
#or die "ARG.... Can't open server socket\n";
if (!defined($server)){
warn("ARG.... Cannot open server socket, an Almighty process must be already started\n");
oar_error("[Almighty] ARG.... Cannot open server socket, an Almighty process must be already started\n");
exit(4);
}
$SIG{PIPE} = 'IGNORE'; #Must be catch otherwise the appendice can finish abnormally
$appendice_pid = fork();
if(!defined($appendice_pid)){
oar_error("[Almighty] Cannot fork appendice (fork process dedicated to the listening of commands from clients)\n");
exit(6);
}
if (!$appendice_pid){
$SIG{USR1} = 'IGNORE';
$SIG{INT} = 'IGNORE';
$SIG{TERM} = 'IGNORE';
$0="Almighty: appendice";
comportement_appendice();
oar_error("[Almighty] Returned from comportement_appendice, this should not happen (infinite loop for listening messages on the server socket)\n");
exit(7);
}
close WRITE;
close $server;
# Starting of Hulot, the Energy saving module
if (get_conf_with_default_param("ENERGY_SAVING_INTERNAL", "no") eq "yes") {
start_hulot();
}
$lastscheduler= 0;
$lastvillains= 0;
$lastchecknodes= 0;
@internal_command_file = ();
oar_debug("[Almighty] Init done\n");
}
# function used by the main automaton to get notifications pending
# inside the appendice
sub qget($){
my $timeout = shift;
my $answer="";
my $rin = '';
my $rinTmp = '';
my $carac;
vec($rin,fileno(READ),1) = 1;
my $res = select($rinTmp = $rin, undef, undef, $timeout);
if ($res > 0){
$carac="OAR";
while ($carac ne "\n"){
if ((!defined(sysread(READ, $carac, 1))) || ($carac eq "")){
oar_error("[Almighty] Error while reading in pipe : I guess Appendice has died\n");
exit(8);
}
if ($carac ne "\n"){
$answer = $answer.$carac;
}
}
}elsif ($res < 0){
if ($finishTag == 1){
oar_debug("[Almighty] Premature end of select cmd. res = $res. It is normal, Almighty is stopping\n");
$answer = "Time";
}else{
oar_error("[Almighty] Error while reading in pipe : I guess Appendice has died, the result code of select = $res\n");
exit(15);
}
}else{
$answer = "Time";
}
return $answer;
}
# functions for managing the file of commands pending
sub add_command($){
my $command = shift;
# as commands are just notifications that will
# handle all the modifications in the base up to now, we should
# avoid duplication in the command file
if (!grep(/^$command$/,@internal_command_file)){
push @internal_command_file, $command;
}
}
# read commands until reaching the maximal successive read value or
# having read all of the pending commands
sub read_commands($){
my $timeout = shift;
my $command = "";
my $remaining = $max_successive_read;
while (($command ne "Time") && $remaining){
if ($remaining != $max_successive_read){
$timeout = 0;
}
$command = qget($timeout);
add_command($command);
$remaining--;
oar_debug("[Almighty] Got command $command, $remaining remaining\n");
}
# The special case of the Time command
# semantic : the queue is empty so the Almighty should go
# directly to the state of updating of its internal counters
push @internal_command_file,"Time"
unless scalar @internal_command_file;
}
# functions associated with each state of the automaton
sub scheduler(){
return launch_command $scheduler_command;
}
sub time_update(){
my $current = time;
oar_debug("[Almighty] Timeouts check : $current\n");
# check timeout for scheduler
if (($current>=($lastscheduler+$schedulertimeout))
or (($scheduler_wanted >= 1) and ($current>=($lastscheduler+$scheduler_min_time_between_2_calls)))
){
oar_debug("[Almighty] Scheduling timeout\n");
#$lastscheduler = $current + $schedulertimeout;
add_command("Scheduling");
}
if ($current>=($lastvillains+$villainstimeout)){
oar_debug("[Almighty] Villains check timeout\n");
#$lastvillains = $current + $villainstimeout;
add_command("Villains");
}
if (($current>=($lastchecknodes+$checknodestimeout)) and ($checknodestimeout > 0)){
oar_debug("[Almighty] Node check timeout\n");
#$lastchecknodes = $current + $checknodestimeout;
add_command("Finaud");
}
}
sub check_for_villains(){
return launch_command $check_for_villains_command;
}
sub check_nodes(){
return launch_command $check_for_node_changes;
}
sub leon(){
return launch_command "$leon_command";
}
sub nodeChangeState(){
return launch_command $nodeChangeState_command;
}
# MAIN PROGRAM : Almighty AUTOMATON
my $state= "Init";
my $command;
my $id;
my $node;
my $pid;
while (1){
oar_debug("[Almighty] Current state [$state]\n");
#We stop Almighty and its child
if ($finishTag == 1){
if (defined($energy_pid)) {
oar_debug("[Almighty] kill child process $energy_pid\n");
kill(9,$energy_pid);
}
oar_debug("[Almighty] kill child process $appendice_pid\n");
kill(9,$appendice_pid);
kill(9,$Redirect_STD_process) if ($Redirect_STD_process > 0);
ipc_clean();
oar_warn("[Almighty] Stop Almighty\n");
send_log_by_email("Stop OAR server","[Almighty] Stop Almighty");
exit(10);
}
# We check Hulot
if (defined($energy_pid) && !check_hulot()) {
oar_warn("[Almighty] Energy saving module (hulot) died. Restarting it.\n");
sleep 5;
ipc_clean();
start_hulot();
}
# INIT
if($state eq "Init"){
init();
$state="Qget";
}
# QGET
elsif($state eq "Qget"){
if (scalar @internal_command_file){
read_commands(0);
}else{
read_commands($read_commands_timeout);
}
oar_debug("[Almighty] Command queue : @internal_command_file\n");
my $current_command = shift(@internal_command_file);
my ($command,$arg1,$arg2,$arg3) = split(/ /,$current_command);
oar_debug("[Almighty] Qtype = [$command]\n");
if (($command eq "Qsub") ||
($command eq "Term") ||
($command eq "BipBip") ||
($command eq "Scheduling") ||
($command eq "Qresume")
){
$state="Scheduler";
}elsif( $command eq "Qdel"){
$state="Leon";
}elsif($command eq "Villains"){
$state="Check for villains";
}elsif($command eq "Finaud"){
$state="Check node states";
}elsif ($command eq "Time"){
$state="Time update";
}elsif ($command eq "ChState"){
$state="Change node state";
}else{
oar_debug("[Almighty] Unknown command found in queue : $command\n");
}
}
# SCHEDULER
elsif($state eq "Scheduler"){
my $current_time = time();
if ($current_time >= ($lastscheduler+$scheduler_min_time_between_2_calls)){
$scheduler_wanted = 0;
# First, check pending events
my $check_result=nodeChangeState();
if ($check_result == 2){
$state="Leon";
add_command("Term");
}elsif ($check_result == 1){
$state="Scheduler";
}elsif ($check_result == 0){
#Launch the scheduler
# We check Hulot just before starting the scheduler
# because if the pipe is not read, it may freeze oar
if (defined($energy_pid) && !check_hulot()) {
oar_warn("[Almighty] Energy saving module (hulot) died. Restarting it.\n");
sleep 5;
ipc_clean();
start_hulot();
}
my $scheduler_result=scheduler();
$lastscheduler = time();
if ($scheduler_result == 0){
$state="Time update";
}elsif ($scheduler_result == 1){
$state="Scheduler";
}elsif ($scheduler_result == 2){
$state="Leon";
}else{
oar_error("[Almighty] Scheduler returned an unknown value : $scheduler_result\n");
$finishTag = 1;
}
}else{
oar_error("[Almighty] $nodeChangeState_command returned an unknown value\n");
$finishTag = 1;
}
}else{
$scheduler_wanted = 1;
$state="Time update";
oar_debug("[Almighty] Scheduler call too early, waiting... ($current_time >= ($lastscheduler + $scheduler_min_time_between_2_calls)\n");
}
}
# TIME UPDATE
elsif($state eq "Time update"){
time_update();
$state="Qget";
}
# CHECK FOR VILLAINS
elsif($state eq "Check for villains"){
my $check_result=check_for_villains();
$lastvillains = time();
if ($check_result == 1){
$state="Leon";
}elsif ($check_result == 0){
$state="Time update";
}else{
oar_error("[Almighty] $check_for_villains_command returned an unknown value : $check_result\n");
$finishTag = 1;
}
}
# CHECK NODE STATES
elsif($state eq "Check node states"){
my $check_result=check_nodes();
$lastchecknodes = time();
if ($check_result == 1){
$state="Change node state";
}elsif ($check_result == 0){
$state="Time update";
}else{
oar_error("[Almighty] $check_for_node_changes returned an unknown value\n");
$finishTag = 1;
}
}
# LEON
elsif($state eq "Leon"){
my $check_result = leon();
$state="Time update";
if ($check_result == 1){
add_command("Term");
}
}
# Change state for dynamic nodes
elsif($state eq "Change node state"){
my $check_result=nodeChangeState();
if ($check_result == 2){
$state="Leon";
add_command("Term");
}elsif ($check_result == 1){
$state="Scheduler";
}elsif ($check_result == 0){
$state="Time update";
}else{
oar_error("[Almighty] $nodeChangeState_command returned an unknown value\n");
$finishTag = 1;
}
}else{
oar_warn("[Almighty] Critical bug !!!!\n");
oar_error("[Almighty] Almighty just falled into an unknown state !!!\n");
$finishTag = 1;
}
}
|