This file is indexed.

/usr/share/arc/ldap-monitor/quelist.php is in nordugrid-arc-ldap-monitor 5.0.5-1ubuntu1.

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
<?php

// Author: oxana.smirnova@hep.lu.se
/**
 * Retrieves the queue job list information from a given NorduGrid domain
 * Uses LDAP functions of PHP
 * 
 * Author: O.Smirnova (June 2002)
 * inspired by the LDAPExplorer by T.Miao
 * 
 * input:
 * host (default: grid.quark.lu.se)
 * port (default: 2135)
 * qname (default: "default")
 * 
 * output:
 * an HTML table, containing the list of the jobs in the queue
 */

set_include_path(get_include_path().":".getcwd()."/includes".":".getcwd()."/lang");

require_once('headfoot.inc');
require_once('lmtable.inc');
require_once('comfun.inc');
require_once('cnvtime.inc');
require_once('cnvname.inc');
require_once('toreload.inc');
require_once('ldap_nice_dump.inc');

// getting parameters

$host   = ( $_GET["host"] )  ? $_GET["host"]  : "quark.hep.lu.se";
$port   = ( $_GET["port"] )  ? $_GET["port"]  : 2135;
$qname  = $_GET["qname"];
$schema = ( $_GET["schema"] )  ? $_GET["schema"]  : "";
$debug  = ( $_GET["debug"] ) ? $_GET["debug"] : 0;
$lang   = @$_GET["lang"];
if ( !$lang )    $lang    = "default"; // browser language
define("FORCE_LANG",$lang);

// Setting up the page itself

$toppage  = new LmDoc("quelist",$qname." (".$host.")");
$toptitle = $toppage->title;
$module   = &$toppage->module;
$strings  = &$toppage->strings;
$errors   = &$toppage->errors;

$clstring = popup("clusdes.php?host=$host&port=$port&schema=$schema",700,620,1,$lang,$debug);

// Header table

$toppage->tabletop("","<b><i>".$toptitle." ".$qname." (<a href=\"$clstring\">".$host."</a>)</i></b>");

$lim = array( "dn", JOB_NAME, JOB_GOWN, JOB_SUBM, JOB_STAT, JOB_COMP, JOB_USET, JOB_USEM, JOB_ERRS, JOB_CPUS, JOB_EQUE );
if ( $schema == "GLUE2") {
  $lim = array( "dn", GJOB_NAME, GJOB_GOWN, GJOB_SUBM, GJOB_STAT, GJOB_COMP, GJOB_USET, GJOB_USEM, GJOB_ERRS, GJOB_CPUS, GJOB_EQUE );
}
  
if ( $debug ) {
  ob_end_flush();
  ob_implicit_flush();
}

$tlim = 15;
$tout = 20;
if( $debug ) dbgmsg("<div align=\"left\"><i>:::&gt; ".$errors["101"].$tlim.$errors["102"].$tout.$errors["103"]." &lt;:::</div><br>");

// ldapsearch filter strings for cluster and queues
  
$filstr = "(objectclass=".OBJ_AJOB.")";
$dn     = DN_LOCAL;
$topdn  = DN_GLOBL;
if ( $schema == "GLUE2") {
  $filstr = "(objectclass=".GOBJ_AJOB.")";
  $dn     = "GLUE2GroupID=services,".DN_GLUE;
}
  
// Establish connection to the requested LDAP server
  
$ds = ldap_connect($host,$port);
if ($ds) {
    
  // If contact OK, search for NorduGrid clusters
    
  $basedn = QUE_NAME."=".$qname.",".CLU_NAME."=".$host.",";
  $locdn  = $basedn.$dn;
  if ( $schema == "GLUE2") {
    $basedn = GQUE_NAME."=".$qname.",".GCLU_NAME."=".$host.",";
    $basedn = "GLUE2ShareID=urn:ogf:ComputingShare:".$host.":".$qname.",GLUE2ServiceID=urn:ogf:ComputingService:".$host.":arex,";
    $locdn  = $basedn.$dn;
  }

  $aaa = ldap_nice_dump($strings,$ds,$locdn);
  echo "<br>";    
    
  $ts1 = time();
  $sr  = ldap_search($ds,$dn,$filstr,$lim,0,0,$tlim,LDAP_DEREF_NEVER);
  $ts2 = time(); if($debug) dbgmsg("<br><b>".$errors["110"]." (".($ts2-$ts1).$errors["104"].")</b><br>");
  // Fall back to conventional LDAP
  //    if (!$sr) $sr = ldap_search($ds,$dn,$filstr,$lim,0,0,$tlim,LDAP_DEREF_NEVER);

  if ($sr) {
    $nmatch = ldap_count_entries($ds,$sr);
    if ($nmatch > 0) {
      $entries = ldap_get_entries($ds,$sr);
      $njobs   = $entries["count"];
        
      define("CMPKEY",JOB_SUBM);
      if ( $schema == "GLUE2") define("CMPKEY",GJOB_SUBM);
      usort($entries,"ldap_entry_comp");
        
      // HTML table initialisation
        
      $ltable = new LmTable($module,$toppage->$module);
        
      // loop on jobs
        
      $nj = 0;
      for ($i=1; $i<$njobs+1; $i++) {
        if ( $schema == "GLUE2") {
	  $equeue  = $entries[$i][GJOB_EQUE][0];
	  if ( $equeue !== $qname ) {
	    if ( $debug == 2 ) dbgmsg($equeue." != ".$qname);
	    continue;
	  }
	  $jobdn   = rawurlencode($entries[$i]["dn"]);
	  $curstat = $entries[$i][GJOB_STAT][0];
	  $stahead = substr($curstat,0,12);
	  $ftime = "";
	  if ($stahead=="FINISHED at:") {
	    $ftime = substr(strrchr($curstat, " "), 1);
          } elseif ($curstat=="FINISHED") {
	    $ftime = $entries[$i][GJOB_COMP][0];
	  }
	  if ( $ftime ) {
	    $ftime   = cnvtime($ftime);
	    $curstat = "FINISHED at: ".$ftime;
	  }
	  $uname    = $entries[$i][GJOB_GOWN][0];
	  $encuname = rawurlencode($uname);
	  $family   = cnvname($uname, 2);
          
	  $jname   = htmlentities($entries[$i][GJOB_NAME][0]);
	  $jobname = ($entries[$i][GJOB_NAME][0]) ? $jname : "<font color=\"red\">N/A</font>";
	  $time    = ($entries[$i][GJOB_USET][0]) ? $entries[$i][GJOB_USET][0] : "";
	  $memory  = ($entries[$i][GJOB_USEM][0]) ? $entries[$i][GJOB_USEM][0] : "";
	  $ncpus   = ($entries[$i][GJOB_CPUS][0]) ? $entries[$i][GJOB_CPUS][0] : "";
	  $error   = ($entries[$i][GJOB_ERRS][0]);
	  if ( $error ) $error = ( preg_match("/user/i",$error) ) ? "X" : "!";
	  $status  = "All";
	  $newwin  = popup("jobstat.php?host=$host&port=$port&status=$status&jobdn=$jobdn&schema=$schema",750,430,4,$lang,$debug);
	  $usrwin  = popup("userlist.php?bdn=$topdn&owner=$encuname&schema=$schema",700,500,5,$lang,$debug);
        } else {
          //NG schema parse
          $equeue  = $entries[$i][JOB_EQUE][0];
          if ( $equeue !== $qname ) {
            if ( $debug == 2 ) dbgmsg($equeue." != ".$qname);
            continue;
          }
          $jobdn   = rawurlencode($entries[$i]["dn"]);
          $curstat = $entries[$i][JOB_STAT][0];
          $stahead = substr($curstat,0,12);
          $ftime = "";
          if ($stahead=="FINISHED at:") {
            $ftime = substr(strrchr($curstat, " "), 1);
          } elseif ($curstat=="FINISHED") {
            $ftime = $entries[$i][JOB_COMP][0];
          }
          if ( $ftime ) {
            $ftime   = cnvtime($ftime);
            $curstat = "FINISHED at: ".$ftime;
          }
          $uname    = $entries[$i][JOB_GOWN][0];
          $encuname = rawurlencode($uname);
          $family   = cnvname($uname, 2);

          $jname   = htmlentities($entries[$i][JOB_NAME][0]);
          $jobname = ($entries[$i][JOB_NAME][0]) ? $jname : "<font color=\"red\">N/A</font>";
          $time    = ($entries[$i][JOB_USET][0]) ? $entries[$i][JOB_USET][0] : "";
          $memory  = ($entries[$i][JOB_USEM][0]) ? $entries[$i][JOB_USEM][0] : "";
          $ncpus   = ($entries[$i][JOB_CPUS][0]) ? $entries[$i][JOB_CPUS][0] : "";
          $error   = ($entries[$i][JOB_ERRS][0]);
          if ( $error ) $error = ( preg_match("/user/i",$error) ) ? "X" : "!";
          $status  = "All";
          $newwin  = popup("jobstat.php?host=$host&port=$port&status=$status&jobdn=$jobdn",750,430,4,$lang,$debug);
          $usrwin  = popup("userlist.php?bdn=$topdn&owner=$encuname",700,500,5,$lang,$debug);
        }
          
	// filling the table
          
	$nj++;
	$lrowcont[] = "$nj&nbsp;<b><font color=\"red\">$error</font></b>";
	$lrowcont[] = "<a href=\"$newwin\">$jobname</a>";
	$lrowcont[] = "<a href=\"$usrwin\">$family</a>";
	$lrowcont[] = "$curstat";
	$lrowcont[] = "$time";
	$lrowcont[] = "$memory";
	$lrowcont[] = "$ncpus";
	$ltable->addrow($lrowcont);
	$lrowcont = array ();
      }
      $ltable->close();
    } else {
      $errno = "4";
      echo "<br><font color=\"red\"><b>".$errors[$errno]."</b></font>\n";
      return $errno;
    }
  } else {
    $errno = "5";
    echo "<br><font color=\"red\"><b>".$errors[$errno]."</b></font>\n";
    return $errno;
  }
  ldap_free_result($sr);
  ldap_close($ds);
  return 0;
}
else {
  $errno = "6";
  echo "<br><font color=\"red\"><b>".$errors[$errno]."</b></font>\n";
  return $errno;
}

// Done

$toppage->close();

?>