/usr/share/cacti/site/script_server.php is in cacti 0.8.7i-2ubuntu1.
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 | <?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2011 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDTool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
/* do NOT run this script through a web browser */
if (!isset($_SERVER["argv"][0]) || isset($_SERVER['REQUEST_METHOD']) || isset($_SERVER['REMOTE_ADDR'])) {
die("<br><strong>This script is only meant to run at the command line.</strong>");
}
$no_http_headers = true;
declare(ticks = 1);
/* need to capture signals from users */
function sig_handler($signo) {
global $include_file, $function, $parameters;
switch ($signo) {
case SIGTERM:
case SIGINT:
case SIGABRT:
case SIGQUIT:
case SIGSEGV:
cacti_log("WARNING: Script Server terminated with signal 'SIGSEGV' in file:'" . basename($include_file) . "', function:'$function', params:'$parameters'", FALSE, "PHPSVR");
exit;
break;
default:
cacti_log("WARNING: Script Server received signal '$signo' in file:'$include_file', function:'$function', params:'$parameters'", FALSE, "PHPSVR");
break;
}
}
/* used for includes */
/* install signal handlers for UNIX only */
if (function_exists("pcntl_signal")) {
pcntl_signal(SIGTERM, "sig_handler");
pcntl_signal(SIGINT, "sig_handler");
pcntl_signal(SIGABRT, "sig_handler");
pcntl_signal(SIGQUIT, "sig_handler");
pcntl_signal(SIGSEGV, "sig_handler");
}
error_reporting(0);
include_once(dirname(__FILE__) . "/include/global.php");
/* define STDOUT/STDIN file descriptors if not running under CLI */
if (php_sapi_name() != "cli") {
define("STDIN", fopen('php://stdin', 'r'));
define("STDOUT", fopen('php://stdout', 'w'));
}
/* record the script start time */
list($micro,$seconds) = explode(" ", microtime());
$start = $seconds + $micro;
/* some debugging */
$pid = getmypid();
$ctr = 0;
/* if multiple polling intervals are defined, compensate for them */
$polling_interval = read_config_option("poller_interval");
if (!empty($polling_interval)) {
$num_polling_items = db_fetch_cell("select count(*) from poller_item where rrd_next_step<=0");
define("MAX_POLLER_RUNTIME", $polling_interval);
}else{
$num_polling_items = db_fetch_cell("select count(*) from poller_item");
define("MAX_POLLER_RUNTIME", 300);
}
/* Let PHP only run 1 second longer than the max runtime */
ini_set("max_execution_time", MAX_POLLER_RUNTIME + 1);
/* Record the calling environment */
if ($_SERVER["argc"] >= 2) {
if ($_SERVER["argv"][1] == "spine")
$environ = "spine";
else
if (($_SERVER["argv"][1] == "cmd.php") || ($_SERVER["argv"][1] == "cmd"))
$environ = "cmd";
else
$environ = "other";
if ($_SERVER["argc"] == 3)
$poller_id = $_SERVER["argv"][2];
else
$poller_id = 0;
} else {
$environ = "cmd";
$poller_id = 0;
}
if(read_config_option("log_verbosity") >= POLLER_VERBOSITY_DEBUG) {
cacti_log("DEBUG: SERVER: " . $environ, false, "PHPSVR");
if ($config["cacti_server_os"] == "win32") {
cacti_log("DEBUG: GETCWD: " . strtolower(strtr(getcwd(),"\\","/")), false, "PHPSVR");
cacti_log("DEBUG: DIRNAM: " . strtolower(strtr(dirname(__FILE__),"\\","/")), false, "PHPSVR");
}else{
cacti_log("DEBUG: GETCWD: " . strtr(getcwd(),"\\","/"), false, "PHPSVR");
cacti_log("DEBUG: DIRNAM: " . strtr(dirname(__FILE__),"\\","/"), false, "PHPSVR");
}
cacti_log("DEBUG: FILENM: " . __FILE__, false, "PHPSVR");
}
/* send status back to the server */
if (read_config_option("log_verbosity") >= POLLER_VERBOSITY_HIGH) {
cacti_log("PHP Script Server has Started - Parent is " . $environ, false, "PHPSVR");
}
fputs(STDOUT, "PHP Script Server has Started - Parent is " . $environ . "\n");
fflush(STDOUT);
/* process waits for input and then calls functions as required */
while (1) {
$result = "";
$input_string = fgets(STDIN, 1024);
$function = '';
$parameters = "";
$parameter_array = array();
if ($input_string !== FALSE) {
$input_string = trim($input_string);
if (substr($input_string,0,4) == "quit") {
fputs(STDOUT, "PHP Script Server Shutdown request received, exiting\n");
if (read_config_option("log_verbosity") >= POLLER_VERBOSITY_DEBUG) {
cacti_log("DEBUG: PHP Script Server Shutdown request received, exiting", false, "PHPSVR");
}
exit(1);
}
if (strlen($input_string)) {
/* pull off the parameters */
$i = 0;
while ( true ) {
$pos = strpos($input_string, " ");
if ($pos > 0) {
switch ($i) {
case 0:
/* cut off include file as first part of input string and keep rest for further parsing */
$include_file = trim(substr($input_string,0,$pos));
$input_string = trim(strchr($input_string, " ")) . " ";
break;
case 1:
/* cut off function as second part of input string and keep rest for further parsing */
$function = trim(substr($input_string,0,$pos));
$input_string = trim(strchr($input_string, " ")) . " ";
break;
case 2:
/* take the rest as parameter(s) to the function stripped off previously */
$parameters = trim($input_string);
break 2;
}
}else{
break;
}
$i++;
}
if (!parseArgs($parameters, $parameter_array)) {
cacti_log("WARNING: Script Server count not parse '$parameters' for $function", false, "PHPSVR");
fputs(STDOUT, "U\n");
continue;
}
if (read_config_option("log_verbosity") >= POLLER_VERBOSITY_DEBUG) {
cacti_log("DEBUG: PID[$pid] CTR[$ctr] INC: '". basename($include_file) . "' FUNC: '" .$function . "' PARMS: '" . $parameters . "'", false, "PHPSVR");
}
/* validate the existance of the function, and include if applicable */
if (!function_exists($function)) {
if (file_exists($include_file)) {
/* quirk in php on Windows, believe it or not.... */
/* path must be lower case */
if ($config["cacti_server_os"] == "win32") {
$include_file = strtolower($include_file);
}
/* set this variable so the calling script can determine if it was called
* by the script server or stand-alone */
$called_by_script_server = true;
/* turn on output buffering to avoid problems with nasty scripts */
ob_start();
include_once($include_file);
ob_end_clean();
} else {
cacti_log("WARNING: PHP Script File to be included, does not exist", false, "PHPSVR");
}
}
if (function_exists($function)) {
if ($parameters == "") {
$result = call_user_func($function);
} else {
$result = call_user_func_array($function, $parameter_array);
}
fputs(STDOUT, trim($result) . "\n");
fflush(STDOUT);
if (read_config_option("log_verbosity") >= POLLER_VERBOSITY_DEBUG) {
cacti_log("DEBUG: PID[$pid] CTR[$ctr] RESPONSE:'$result'", false, "PHPSVR");
}
$ctr++;
} else {
cacti_log("WARNING: Function does not exist INC: '". basename($include_file) . "' FUNC: '" .$function . "' PARMS: '" . $parameters . "'", false, "PHPSVR");
fputs(STDOUT, "U\n");
}
}
}else{
cacti_log("ERROR: Input Expected, Script Server Terminating", false, "PHPSVR");
fputs(STDOUT, "ERROR: Input Expected, Script Server Terminating\n");
exit (-1);
}
/* end the process if the runtime exceeds MAX_POLLER_RUNTIME */
if (($start + MAX_POLLER_RUNTIME) < time()) {
cacti_log("Maximum runtime of " . MAX_POLLER_RUNTIME . " seconds exceeded for the Script Server. Exiting.", true, "PHPSVR");
exit (-1);
}
}
function parseArgs($string, &$str_list, $debug = false) {
$delimiters = array("'",'"');
$delimited = false;
$str_list = array();
if ($debug) echo "String: '" . $string . "'\n";
foreach($delimiters as $delimiter) {
if (strpos($string, $delimiter) !== false) {
$delimited = true;
break;
}
}
/* process the simple case */
if (!$delimited) {
$str_list = explode(" ", $string);
if ($debug) echo "Output: '" . implode(",", $str_list) . "'\n";
return true;
}
/* Break str down into an array of characters and process */
$char_array = str_split($string);
$escaping = false;
$indelim = false;
$parse_ok = true;
$curstr = '';
foreach($char_array as $char) {
switch ($char) {
case '\'':
case '"':
if (!$indelim) {
if (!$escaping) {
$indelim = true;
}else{
$curstr .= $char;
$escaping = false;
}
}elseif (!$escaping) {
$str_list[] = $curstr;
$curstr = '';
$indelim = false;
}elseif ($escaping) {
$curstr .= $char;
$escaping = false;
}
break;
case '\\':
if ($escaping) {
$curstr .= $char;
$escaping = false;
}else{
$escaping = true;
}
break;
case ' ':
if ($escaping) {
$parse_ok = false;
$msg = 'Parse error attempting to parse string';
}elseif ($indelim) {
$curstr .= $char;
}elseif (strlen($curstr)) {
$str_list[] = $curstr;
$curstr = '';
}
break;
case '`':
$parse_ok = false;
$msg = 'Backtic (`) characters not allowed';
break;
default:
if ($escaping) {
$parse_ok = false;
$msg = 'Parse error attempting to parse string';
}else{
$curstr .= $char;
}
break;
}
if (!$parse_ok) {
break;
}
}
/* Add the last str to the string array */
if ($indelim || $escaping) {
$parse_ok = false;
$msg = 'Parse error attempting to parse string';
}
if (!$parse_ok) {
echo "ERROR: " . $msg . " '" . $string . "'\n";
}elseif (strlen($curstr)) {
$str_list[] = $curstr;
}
if ($debug) echo "Output: '" . implode(",", $str_list) . "'\n";
return $parse_ok;
}
|