/usr/share/arc/GMJobsInfo.pm is in nordugrid-arc-arex 5.3.0~rc1-1.
This file is owned by root:root, with mode 0o644.
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 | package GMJobsInfo;
use POSIX qw(ceil);
use English;
use LogUtils;
use strict;
# The returned hash looks something like this:
our $j = { 'jobID' => {
gmuser => '*',
# from .local
lrms => '*',
queue => '',
localid => '*',
subject => '',
starttime => '*', # MDS time format
jobname => '*',
gmlog => '*',
cleanuptime => '*', # MDS time format
delegexpiretime => '*', # MDS time format
clientname => '',
clientsoftware => '*',
activityid => [ '*' ],
sessiondir => '',
diskspace => '',
failedstate => '*',
fullaccess => '*',
lifetime => '*', # seconds
jobreport => '*',
interface => '*', # added for GLUE2, the interface the job was submitted. If missing, gridftp
voms => [ '*' ], #ref array, contains all the voms attributes in the user certificate that A-REX authorization accepted
vomsvo => '*', # string, the first VO in the voms array without the slashes
# from .description
description => '', # rsl or xml
# from .grami -- not kept when the job is deleted
stdin => '*',
stdout => '*',
stderr => '*',
count => '*',
reqwalltime => '*', # units: s
reqcputime => '*', # units: s
runtimeenvironments=> [ '*' ],
# from .status
status => '',
statusmodified => '', # seconds since epoch
statusread => '', # seconds since epoch
completiontime => '*', # MDS time format
localowner => '',
# from .failed
errors => [ '*' ],
lrmsexitcode => '*',
# from .diag
exitcode => '*',
nodenames => [ '*' ],
UsedMem => '*', # units: kB; summed over all execution threads
CpuTime => '*', # units: s; summed over all execution threads
WallTime => '*' # units: s; real-world time elapsed
}
};
our $log = LogUtils->getLogger(__PACKAGE__);
#
# switch effective user if possible. This is reversible.
#
sub switchEffectiveUser {
my ($user) = @_;
return unless $UID == 0;
my ($name, $pass, $uid, $gid);
if ($user eq '.') {
($uid, $gid) = (0, 0);
} else {
($name, $pass, $uid, $gid) = getpwnam($user);
return unless defined $gid;
}
eval { $EGID = $gid;
$EUID = $uid;
};
}
sub collect {
my ($controls, $remotegmdirs, $nojobs) = @_;
my $gmjobs = {};
while (my ($user, $control) = each %$controls) {
switchEffectiveUser($user);
my $controldir = $control->{controldir};
my $newjobs = get_gmjobs($controldir, $nojobs);
$newjobs->{$_}{gmuser} = $user for keys %$newjobs;
$gmjobs->{$_} = $newjobs->{$_} for keys %$newjobs;
}
# switch to root or to gridftpd user?
switchEffectiveUser('.');
if ($remotegmdirs) {
for my $pair (@$remotegmdirs) {
my ($controldir, $sessiondir) = split ' ', $pair;
my $newjobs = get_gmjobs($controldir, $nojobs);
$gmjobs->{$_} = $newjobs->{$_} for keys %$newjobs;
}
}
# switch back to root
switchEffectiveUser('.');
return $gmjobs;
}
sub get_gmjobs {
my ($controldir, $nojobs) = @_;
my %gmjobs;
my $jobstoscan = 0;
my $jobsskipped = 0;
# read the list of jobs from the jobdir and create the @gridmanager_jobs
# the @gridmanager_jobs contains the IDs from the job.ID.status
foreach my $controlsubdir ("$controldir/accepting", "$controldir/processing", "$controldir/finished") {
unless (opendir JOBDIR, $controlsubdir ) {
$log->warning("Can't access the job control directory: $controlsubdir") and return {};
}
my @allfiles = grep /\.status/, readdir JOBDIR;
closedir JOBDIR;
my @gridmanager_jobs = map {$_=~m/job\.(.+)\.status/; $_=$1;} @allfiles;
# count job IDs to scan
$jobstoscan = $jobstoscan + @gridmanager_jobs;
$log->verbose("Found ". scalar @gridmanager_jobs. " jobs in $controlsubdir");
foreach my $ID (@gridmanager_jobs) {
my $job = $gmjobs{$ID} = {};
my $gmjob_local = $controldir."/job.".$ID.".local";
my $gmjob_status = $controlsubdir."/job.".$ID.".status";
my $gmjob_failed = $controldir."/job.".$ID.".failed";
my $gmjob_description = $controldir."/job.".$ID.".description";
my $gmjob_grami = $controldir."/job.".$ID.".grami";
my $gmjob_diag = $controldir."/job.".$ID.".diag";
unless ( open (GMJOB_LOCAL, "<$gmjob_local") ) {
$log->warning( "Job $ID: Can't read jobfile $gmjob_local, skipping job" );
delete $gmjobs{$ID};
$jobsskipped++;
next;
}
my @local_allines = <GMJOB_LOCAL>;
$job->{activityid} = [];
# parse the content of the job.ID.local into the %gmjobs hash
foreach my $line (@local_allines) {
if ($line=~m/^(\w+)=(.+)$/) {
# TODO: multiple activityid support.
# is this still used? if not, remove the code.
# looking at trunk it doesn't seem to exist anymore.
if ($1 eq "activityid") {
push @{$job->{activityid}}, $2;
} else {
# a job can belong to a user that has multiple voms roles
# for completeness all added to the datastructure
# in an array
if ($1 eq "voms") {
push @{$job->{voms}}, $2;
# vomsvo to hold the selected vo, I assume is the first in the list.
# will be used to calculate vo statistics
# must match authorizedvo (i.e. slashes are removed)
unless (defined $job->{vomsvo}) {
my $vostring = $2;
if ($vostring =~ /^\/+(\w+)/) { $vostring = $1; };
$job->{vomsvo} = $vostring;
}
} else {
$job->{$1}=$2;
}
}
}
}
close GMJOB_LOCAL;
# Extrasct jobID uri
if ($job->{globalid}) {
$job->{globalid} =~ s/.*JobSessionDir>([^<]+)<.*/$1/;
} else {
$log->debug("Job $ID: 'globalid' missing from .local file");
}
# Rename queue -> share
if (exists $job->{queue}) {
$job->{share} = $job->{queue};
delete $job->{queue};
} else {
$log->warning("Job $ID: 'queue' missing from .local file");
}
# check for interface field
if (! $job->{interface}) {
$log->warning("Job $ID: 'interface' missing from .local file, reverting to org.nordugrid.gridftpjob");
$job->{interface} = 'org.nordugrid.gridftpjob';
}
# read the job.ID.status into "status"
unless (open (GMJOB_STATUS, "<$gmjob_status")) {
$log->warning("Job $ID: Can't open status file $gmjob_status, skipping job");
delete $gmjobs{$ID};
$jobsskipped++;
next;
} else {
my @file_stat = stat GMJOB_STATUS;
my ($first_line) = <GMJOB_STATUS>;
close GMJOB_STATUS;
unless ($first_line) {
$log->warning("Job $ID: Failed to read status from file $gmjob_status, skipping job");
delete $gmjobs{$ID};
$jobsskipped++;
next;
}
chomp ($first_line);
$job->{status} = $first_line;
if (@file_stat) {
# localowner
my $uid = $file_stat[4];
my $user = (getpwuid($uid))[0];
if ($user) {
$job->{localowner} = $user;
} else {
$log->warning("Job $ID: Cannot determine user name for owner (uid $uid)");
}
$job->{"statusmodified"} = $file_stat[9];
$job->{"statusread"} = time();
# completiontime
if ($job->{"status"} eq "FINISHED") {
my ($s,$m,$h,$D,$M,$Y) = gmtime($file_stat[9]);
my $ts = sprintf("%4d%02d%02d%02d%02d%02d%1s",$Y+1900,$M+1,$D,$h,$m,$s,"Z");
$job->{"completiontime"} = $ts;
}
} else {
$log->warning("Job $ID: Cannot stat status file: $!");
}
}
# check for localid
if (! $job->{localid}) {
if ($job->{status} eq 'INLRMS') {
$log->warning("Job $ID: has no local ID but is in INLRMS state, this should not happen");
}
$job->{localid} = 'UNDEFINEDVALUE';
}
# Comes the splitting of the terminal job state
# check for job failure, (job.ID.failed ) "errors"
if (-e $gmjob_failed) {
unless (open (GMJOB_FAILED, "<$gmjob_failed")) {
$log->warning("Job $ID: Can't open $gmjob_failed");
} else {
my $chars;
read GMJOB_FAILED, $chars, 1024;
my @allines = split "\n", $chars;
close GMJOB_FAILED;
$job->{errors} = \@allines;
}
}
if ($job->{"status"} eq "FINISHED") {
#terminal job state mapping
if ( $job->{errors} ) {
if (grep /User requested to cancel the job/, @{$job->{errors}}) {
$job->{status} = "KILLED";
} elsif ( defined $job->{errors} ) {
$job->{status} = "FAILED";
}
}
}
# if jobs are not printed, it's sufficient to have jobid, status,
# subject, queue and share. Can skip the rest.
next if $nojobs;
# read the job.ID.grami file
unless ( open (GMJOB_GRAMI, "<$gmjob_grami") ) {
# this file is is kept by A-REX during the hole existence of the
# job. grid-manager from arc0, however, deletes it after the job
# has finished.
$log->debug("Job $ID: Can't open $gmjob_grami");
} else {
my $sessiondir = $job->{sessiondir} || '';
while (my $line = <GMJOB_GRAMI>) {
if ($line =~ m/^joboption_(\w+)='(.*)'$/) {
my ($param, $value) = ($1, $2);
$param =~ s/'\\''/'/g; # unescape quotes
# These parameters are quoted by A-REX
if ($param eq "stdin") {
$job->{stdin} = $value;
$job->{stdin} =~ s/^\Q$sessiondir\E\/*//;
} elsif ($param eq "stdout") {
$job->{stdout} = $value;
$job->{stdout} =~ s/^\Q$sessiondir\E\/*//;
} elsif ($param eq "stderr") {
$job->{stderr} = $value;
$job->{stderr} =~ s/^\Q$sessiondir\E\/*//;
} elsif ($param =~ m/^runtime_/) {
push @{$job->{runtimeenvironments}}, $value;
}
} elsif ($line =~ m/^joboption_(\w+)=(\w+)$/) {
my ($param, $value) = ($1, $2);
# These parameters are not quoted by A-REX
if ($param eq "count") {
$job->{count} = int($value);
} elsif ($param eq "walltime") {
$job->{reqwalltime} = int($value);
} elsif ($param eq "cputime") {
$job->{reqcputime} = int($value);
} elsif ($param eq "starttime") {
$job->{starttime} = $value;
}
}
}
close GMJOB_GRAMI;
}
#read the job.ID.description file
unless ( open (GMJOB_DESCRIPTION, "<$gmjob_description") ) {
$log->warning("Job $ID: Can't open $gmjob_description");
} else {
while (my $line = <GMJOB_DESCRIPTION>) {
chomp $line;
next unless $line;
if ($line =~ m/^\s*[&+|(]/) { $job->{description} = 'rsl'; last }
if ($line =~ m/http\:\/\/www.eu-emi.eu\/es\/2010\/12\/adl/) { $job->{description} = 'adl'; last }
if ($line =~ m/http\:\/\/schemas.ggf.org\/jsdl\/2005\/11\/jsdl/) { $job->{description} = 'jsdl'; last }
my $nextline = <GMJOB_DESCRIPTION>;
if ($nextline =~ m/http\:\/\/www.eu-emi.eu\/es\/2010\/12\/adl/) { $job->{description} = 'adl'; last }
if ($nextline =~ m/http\:\/\/schemas.ggf.org\/jsdl\/2005\/11\/jsdl/) { $job->{description} = 'jsdl'; last }
$log->warning("Job $ID: Can't identify job description language");
last;
}
close GMJOB_DESCRIPTION;
}
#read the job.ID.diag file
if (-s $gmjob_diag) {
unless ( open (GMJOB_DIAG, "<$gmjob_diag") ) {
$log->warning("Job $ID: Can't open $gmjob_diag");
} else {
my %nodenames;
my ($kerneltime, $usertime);
while (my $line = <GMJOB_DIAG>) {
$line=~m/^nodename=(\S+)/ and
$nodenames{$1} = 1;
$line=~m/^WallTime=(\d+)(\.\d*)?/ and
$job->{WallTime} = ceil($1);
$line=~m/^exitcode=(\d+)/ and
$job->{exitcode} = $1;
$line=~m/^AverageTotalMemory=(\d+)kB/ and
$job->{UsedMem} = ceil($1);
$line=~m/^KernelTime=(\d+)(\.\d*)?/ and
$kerneltime=$1;
$line=~m/^UserTime=(\d+)(\.\d*)?/ and
$usertime=$1;
}
close GMJOB_DIAG;
$job->{nodenames} = [ sort keys %nodenames ] if %nodenames;
$job->{CpuTime}= ceil($kerneltime + $usertime)
if defined $kerneltime and defined $usertime;
}
}
InfosysHelper::heartbeatBeatParam($controldir);
} # job ID loop
} # controlsubdir loop
$log->verbose("Number of jobs to scan: $jobstoscan ; Number of jobs skipped: $jobsskipped");
return \%gmjobs;
}
#### TEST ##### TEST ##### TEST ##### TEST ##### TEST ##### TEST ##### TEST ####
sub test() {
require Data::Dumper;
LogUtils::level('VERBOSE');
my $controldirs = {'*' => { 'controldir' => '/tmp/jobstatus' } };
my $results = GMJobsInfo::collect(\%$controldirs);
print Data::Dumper::Dumper($results);
}
# test;
1;
|