=', '=', '<', '>']; const OP_STRCMP = ['!~', '~', '=', '!=']; public static $columns; private $query; private $show; /** * @var bool whether we have a SubPage from the pages/ subdir */ private $haveSubpage; /** * Do this here instead of const since we need to check for available modules while building array. */ public static function initConstants() { Page_Statistics::$columns = [ 'machineuuid' => [ 'op' => Page_Statistics::OP_NOMINAL, 'type' => 'string', 'column' => true, ], 'macaddr' => [ 'op' => Page_Statistics::OP_NOMINAL, 'type' => 'string', 'column' => true, ], 'firstseen' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'date', 'column' => true, ], 'lastseen' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'date', 'column' => true, ], 'logintime' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'date', 'column' => true, ], 'realcores' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'column' => true, ], 'systemmodel' => [ 'op' => Page_Statistics::OP_STRCMP, 'type' => 'string', 'column' => true, ], 'cpumodel' => [ 'op' => Page_Statistics::OP_STRCMP, 'type' => 'string', 'column' => true, ], 'hddgb' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'column' => false, 'map_sort' => 'id44mb' ], 'gbram' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'map_sort' => 'mbram', 'column' => false, ], 'kvmstate' => [ 'op' => Page_Statistics::OP_NOMINAL, 'type' => 'enum', 'column' => true, 'values' => ['ENABLED', 'DISABLED', 'UNSUPPORTED'] ], 'badsectors' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'column' => true ], 'clientip' => [ 'op' => Page_Statistics::OP_NOMINAL, 'type' => 'string', 'column' => true ], 'hostname' => [ 'op' => Page_Statistics::OP_STRCMP, 'type' => 'string', 'column' => true ], 'subnet' => [ 'op' => Page_Statistics::OP_NOMINAL, 'type' => 'string', 'column' => false ], 'currentuser' => [ 'op' => Page_Statistics::OP_NOMINAL, 'type' => 'string', 'column' => true ], 'state' => [ 'op' => Page_Statistics::OP_NOMINAL, 'type' => 'enum', 'column' => true, 'values' => ['occupied', 'on', 'off', 'idle', 'standby'] ], 'live_swapfree' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'column' => true ], 'live_memfree' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'column' => true ], 'live_tmpfree' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'column' => true ], 'runtime' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'int', 'column' => true ], 'lastboot' => [ 'op' => Page_Statistics::OP_ORDINAL, 'type' => 'date', 'column' => true ], ]; if (Module::isAvailable('locations')) { Page_Statistics::$columns['location'] = [ 'op' => Page_Statistics::OP_STRCMP, 'type' => 'enum', 'column' => false, 'values' => array_keys(Location::getLocationsAssoc()), ]; } } protected function doPreprocess() { User::load(); if (!User::isLoggedIn()) { Message::addError('main.no-permission'); Util::redirect('?do=Main'); } $this->show = Request::any('show', false, 'string'); if ($this->show === false) { if (User::hasPermission('view.summary')) { $this->show = 'summary'; } elseif (User::hasPermission('view.list')) { $this->show = 'list'; } else { User::assertPermission('view.summary'); } } else { $this->show = preg_replace('/[^a-z0-9_\-]/', '', $this->show); } if (file_exists('modules/statistics/pages/' . $this->show . '.inc.php')) { require_once 'modules/statistics/pages/' . $this->show . '.inc.php'; $this->haveSubpage = true; SubPage::doPreprocess(); } else { $action = Request::post('action'); if ($action === 'setnotes') { $uuid = Request::post('uuid', '', 'string'); $res = Database::queryFirst('SELECT locationid FROM machine WHERE machineuuid = :uuid', array('uuid' => $uuid)); if ($res === false) { Message::addError('unknown-machine', $uuid); Util::redirect('?do=statistics'); } User::assertPermission("machine.note.edit", (int)$res['locationid']); $text = Request::post('content', null, 'string'); if (empty($text)) { $text = null; } Database::exec('UPDATE machine SET notes = :text WHERE machineuuid = :uuid', array( 'uuid' => $uuid, 'text' => $text, )); Message::addSuccess('notes-saved'); Util::redirect('?do=statistics&uuid=' . $uuid); } elseif ($action === 'delmachines') { $this->deleteMachines(); Util::redirect('?do=statistics', true); } elseif ($action === 'rebootmachines') { $this->rebootControl(true); } elseif ($action === 'shutdownmachines') { $this->rebootControl(false); } } if (Request::isPost()) { // Make sure we don't render any content for POST requests - should be handled above and then // redirected properly Util::redirect('?do=statistics'); } } /** * @param bool $reboot true = reboot, false = shutdown */ private function rebootControl($reboot) { if (!Module::isAvailable('rebootcontrol')) return; $ids = Request::post('uuid', [], 'array'); $ids = array_values($ids); if (empty($ids)) { Message::addError('main.parameter-empty', 'uuid'); return; } $allowedLocations = User::getAllowedLocations(".rebootcontrol.action." . ($reboot ? 'reboot' : 'shutdown')); if (empty($allowedLocations)) { Message::addError('main.no-permission'); Util::redirect('?do=statistics'); } $res = Database::simpleQuery('SELECT machineuuid, clientip, locationid FROM machine WHERE machineuuid IN (:ids)', compact('ids')); $ids = array_flip($ids); $allowedMachines = []; $seenLocations = []; while ($row = $res->fetch(PDO::FETCH_ASSOC)) { unset($ids[$row['machineuuid']]); settype($row['locationid'], 'int'); if (in_array($row['locationid'], $allowedLocations)) { $allowedMachines[] = $row; } elseif (!isset($seenLocations[$row['locationid']])) { Message::addError('locations.no-permission-location', $row['locationid']); } $seenLocations[$row['locationid']] = true; } if (!empty($ids)) { Message::addWarning('unknown-machine', implode(', ', array_keys($ids))); } if (!empty($allowedMachines)) { if (count($seenLocations) === 1) { $locactionId = (int)array_keys($seenLocations)[0]; } else { $locactionId = 0; } if ($reboot && Request::post('kexec', false)) { $action = RebootControl::KEXEC_REBOOT; } elseif ($reboot) { $action = RebootControl::REBOOT; } else { $action = RebootControl::SHUTDOWN; } $task = RebootControl::execute($allowedMachines, $action, 0, $locactionId); if (Taskmanager::isTask($task)) { Util::redirect("?do=rebootcontrol&taskid=" . $task["id"]); } } } private function deleteMachines() { $ids = Request::post('uuid', [], 'array'); $ids = array_values($ids); if (empty($ids)) { Message::addError('main.parameter-empty', 'uuid'); return; } $allowedLocations = User::getAllowedLocations("machine.delete"); if (empty($allowedLocations)) { Message::addError('main.no-permission'); Util::redirect('?do=statistics'); } $res = Database::simpleQuery('SELECT machineuuid, locationid FROM machine WHERE machineuuid IN (:ids)', compact('ids')); $ids = array_flip($ids); $delete = []; while ($row = $res->fetch(PDO::FETCH_ASSOC)) { unset($ids[$row['machineuuid']]); if (in_array($row['locationid'], $allowedLocations)) { $delete[] = $row['machineuuid']; } else { Message::addError('locations.no-permission-location', $row['locationid']); } } if (!empty($delete)) { Database::exec('DELETE FROM machine WHERE machineuuid IN (:delete)', compact('delete')); Message::addSuccess('deleted-n-machines', count($delete)); } if (!empty($ids)) { Message::addWarning('unknown-machine', implode(', ', array_keys($ids))); } } protected function doRender() { if ($this->haveSubpage) { SubPage::doRender(); return; } $uuid = Request::get('uuid', false, 'string'); if ($uuid !== false) { $this->showMachine($uuid); return; } /* read filter */ $this->query = Request::any('filters', false); if ($this->query === false) { $this->query = 'lastseen > ' . gmdate('Y-m-d', strtotime('-30 day')); } $sortColumn = Request::any('sortColumn'); $sortDirection = Request::any('sortDirection'); $filters = Filter::parseQuery($this->query); $filterSet = new FilterSet($filters); $filterSet->setSort($sortColumn, $sortDirection); if (!$filterSet->setAllowedLocationsFromPermission('view.' . $this->show)) { Message::addError('main.no-permission'); Util::redirect('?do=main'); } if ($this->show === 'list') { Render::openTag('div', array('class' => 'row')); $this->showFilter('list', $filterSet); Render::closeTag('div'); $this->showMachineList($filterSet); return; } elseif ($this->show === 'summary') { $filterSet->filterNonClients(); Render::openTag('div', array('class' => 'row')); $this->showFilter('summary', $filterSet); $this->showSummary($filterSet); $this->showMemory($filterSet); $this->showId44($filterSet); $this->showKvmState($filterSet); $this->showLatestMachines($filterSet); $this->showSystemModels($filterSet); Render::closeTag('div'); } else { Message::addError('main.value-invalid', 'show', $this->show); } } /** * @param \FilterSet $filterSet */ private function showFilter($show, $filterSet) { $data = array( 'show' => $show, 'query' => $this->query, 'delimiter' => Filter::DELIMITER, 'sortDirection' => $filterSet->getSortDirection(), 'sortColumn' => $filterSet->getSortColumn(), 'columns' => json_encode(Page_Statistics::$columns), ); if ($show === 'list') { $data['listButtonClass'] = 'active'; $data['statButtonClass'] = ''; } else { $data['listButtonClass'] = ''; $data['statButtonClass'] = 'active'; } $locsFlat = array(); if (Module::isAvailable('locations')) { $allowed = $filterSet->getAllowedLocations(); foreach (Location::getLocations() as $loc) { $locsFlat['L' . $loc['locationid']] = array( 'pad' => $loc['locationpad'], 'name' => $loc['locationname'], 'disabled' => $allowed !== false && !in_array($loc['locationid'], $allowed), ); } } Permission::addGlobalTags($data['perms'], null, ['view.summary', 'view.list']); $data['locations'] = json_encode($locsFlat); Render::addTemplate('filterbox', $data); } private function capChart(&$json, &$rows, $cutoff, $minSlice = 0.015) { $total = 0; foreach ($json as $entry) { $total += $entry['value']; } if ($total === 0) { return; } $cap = ceil($total * $cutoff); $accounted = 0; $id = 0; foreach ($json as $entry) { if (($accounted >= $cap || $entry['value'] / $total < $minSlice) && $id >= 3) { break; } ++$id; $accounted += $entry['value']; } for ($i = $id; $i < count($rows); ++$i) { $rows[$i]['collapse'] = 'collapse'; } $json = array_slice($json, 0, $id); if ($accounted / $total < 0.99) { $json[] = array( 'color' => '#eee', 'label' => 'invalid', 'value' => ($total - $accounted), ); } } private function redirectFirst($where, $join, $args) { $res = Database::queryFirst("SELECT machineuuid FROM machine $join WHERE ($where) LIMIT 1", $args); if ($res !== false) { Util::redirect('?do=statistics&uuid=' . $res['machineuuid']); } } /** * @param \FilterSet $filterSet */ private function showSummary($filterSet) { $filterSet->makeFragments($where, $join, $sort, $args); $known = Database::queryFirst("SELECT Count(*) AS val FROM machine $join WHERE $where", $args); // If we only have one machine, redirect to machine details if ($known['val'] == 1) { $this->redirectFirst($where, $join, $args); } $on = Database::queryFirst("SELECT Count(*) AS val FROM machine $join WHERE state IN ('IDLE', 'OCCUPIED') AND ($where)", $args); $used = Database::queryFirst("SELECT Count(*) AS val FROM machine $join WHERE state = 'OCCUPIED' AND ($where)", $args); $hdd = Database::queryFirst("SELECT Count(*) AS val FROM machine $join WHERE badsectors >= 10 AND ($where)", $args); if ($on['val'] != 0) { $usedpercent = round($used['val'] / $on['val'] * 100); } else { $usedpercent = 0; } $data = array( 'known' => $known['val'], 'online' => $on['val'], 'used' => $used['val'], 'usedpercent' => $usedpercent, 'badhdd' => $hdd['val'], ); // Graph $cutoff = time() - 2 * 86400; $res = Database::simpleQuery("SELECT dateline, data FROM statistic WHERE typeid = '~stats' AND dateline > $cutoff ORDER BY dateline ASC"); $labels = array(); $points1 = array('data' => array(), 'label' => 'Online', 'fillColor' => '#efe', 'strokeColor' => '#aea', 'pointColor' => '#7e7', 'pointStrokeColor' => '#fff', 'pointHighlightFill' => '#fff', 'pointHighlightStroke' => '#7e7'); $points2 = array('data' => array(), 'label' => 'In use', 'fillColor' => '#fee', 'strokeColor' => '#eaa', 'pointColor' => '#e77', 'pointStrokeColor' => '#fff', 'pointHighlightFill' => '#fff', 'pointHighlightStroke' => '#e77'); $sum = 0; while ($row = $res->fetch(PDO::FETCH_ASSOC)) { $x = explode('#', $row['data']); if ($sum === 0) { $labels[] = date('H:i', $row['dateline']); } else { $x[1] = max($x[1], array_pop($points1['data'])); $x[2] = max($x[2], array_pop($points2['data'])); } $points1['data'][] = $x[1]; $points2['data'][] = $x[2]; ++$sum; if ($sum === 12) { $sum = 0; } } $data['json'] = json_encode(array('labels' => $labels, 'datasets' => array($points1, $points2))); $data['query'] = $this->query; if (Module::get('runmode') !== false) { $res = Database::queryFirst('SELECT Count(*) AS cnt FROM runmode'); $data['runmode'] = $res['cnt']; } // Draw Render::addTemplate('summary', $data); } /** * @param \FilterSet $filterSet */ private function showSystemModels($filterSet) { global $STATS_COLORS; $filterSet->makeFragments($where, $join, $sort, $args); $res = Database::simpleQuery('SELECT systemmodel, Round(AVG(realcores)) AS cores, Count(*) AS `count` FROM machine' . " $join WHERE $where GROUP BY systemmodel ORDER BY `count` DESC, systemmodel ASC", $args); $lines = array(); $json = array(); $id = 0; while ($row = $res->fetch(PDO::FETCH_ASSOC)) { if (empty($row['systemmodel'])) { continue; } settype($row['count'], 'integer'); $row['id'] = 'systemid' . $id; $row['urlsystemmodel'] = urlencode($row['systemmodel']); $lines[] = $row; $json[] = array( 'color' => $STATS_COLORS[$id % count($STATS_COLORS)], 'label' => 'systemid' . $id, 'value' => $row['count'], ); ++$id; } $this->capChart($json, $lines, 0.92); Render::addTemplate('cpumodels', array('rows' => $lines, 'query' => $this->query, 'json' => json_encode($json))); } /** * @param \FilterSet $filterSet */ private function showMemory($filterSet) { global $STATS_COLORS, $SIZE_RAM; $filterSet->makeFragments($where, $join, $sort, $args); $res = Database::simpleQuery("SELECT mbram, Count(*) AS `count` FROM machine $join WHERE $where GROUP BY mbram", $args); $lines = array(); while ($row = $res->fetch(PDO::FETCH_ASSOC)) { $gb = (int)ceil($row['mbram'] / 1024); for ($i = 1; $i < count($SIZE_RAM); ++$i) { if ($SIZE_RAM[$i] < $gb) { continue; } if ($SIZE_RAM[$i] - $gb >= $gb - $SIZE_RAM[$i - 1]) { --$i; } $gb = $SIZE_RAM[$i]; break; } if (isset($lines[$gb])) { $lines[$gb] += $row['count']; } else { $lines[$gb] = $row['count']; } } asort($lines); $data = array('rows' => array()); $json = array(); $id = 0; foreach (array_reverse($lines, true) as $k => $v) { $data['rows'][] = array('gb' => $k, 'count' => $v, 'class' => $this->ramColorClass($k * 1024)); $json[] = array( 'color' => $STATS_COLORS[$id % count($STATS_COLORS)], 'label' => (string)$k, 'value' => $v, ); ++$id; } $this->capChart($json, $data['rows'], 0.92); $data['json'] = json_encode($json); $data['query'] = $this->query; Render::addTemplate('memory', $data); } /** * @param \FilterSet $filterSet */ private function showKvmState($filterSet) { $filterSet->makeFragments($where, $join, $sort, $args); $colors = array('UNKNOWN' => '#666', 'UNSUPPORTED' => '#ea5', 'DISABLED' => '#e55', 'ENABLED' => '#6d6'); $res = Database::simpleQuery("SELECT kvmstate, Count(*) AS `count` FROM machine $join WHERE $where GROUP BY kvmstate ORDER BY `count` DESC", $args); $lines = array(); $json = array(); while ($row = $res->fetch(PDO::FETCH_ASSOC)) { $lines[] = $row; $json[] = array( 'color' => isset($colors[$row['kvmstate']]) ? $colors[$row['kvmstate']] : '#000', 'label' => $row['kvmstate'], 'value' => $row['count'], ); } Render::addTemplate('kvmstate', array('rows' => $lines, 'query' => $this->query,'json' => json_encode($json))); } /** * @param \FilterSet $filterSet */ private function showId44($filterSet) { global $STATS_COLORS, $SIZE_ID44; $filterSet->makeFragments($where, $join, $sort, $args); $res = Database::simpleQuery("SELECT id44mb, Count(*) AS `count` FROM machine $join WHERE $where GROUP BY id44mb", $args); $lines = array(); $total = 0; while ($row = $res->fetch(PDO::FETCH_ASSOC)) { $total += $row['count']; $gb = (int)ceil($row['id44mb'] / 1024); for ($i = 1; $i < count($SIZE_ID44); ++$i) { if ($SIZE_ID44[$i] < $gb) { continue; } if ($SIZE_ID44[$i] - $gb >= $gb - $SIZE_ID44[$i - 1]) { --$i; } $gb = $SIZE_ID44[$i]; break; } if (isset($lines[$gb])) { $lines[$gb] += $row['count']; } else { $lines[$gb] = $row['count']; } } asort($lines); $data = array('rows' => array()); $json = array(); $id = 0; foreach (array_reverse($lines, true) as $k => $v) { $data['rows'][] = array('gb' => $k, 'count' => $v, 'class' => $this->hddColorClass($k)); if ($k === 0) { $color = '#e55'; } else { $color = $STATS_COLORS[$id++ % count($STATS_COLORS)]; } $json[] = array( 'color' => $color, 'label' => (string)$k, 'value' => $v, ); } $this->capChart($json, $data['rows'], 0.95); $data['json'] = json_encode($json); $data['query'] = $this->query; Render::addTemplate('id44', $data); } /** * @param \FilterSet $filterSet */ private function showLatestMachines($filterSet) { $filterSet->makeFragments($where, $join, $sort, $args); $args['cutoff'] = ceil(time() / 3600) * 3600 - 86400 * 10; $res = Database::simpleQuery("SELECT machineuuid, clientip, hostname, firstseen, mbram, kvmstate, id44mb FROM machine $join" . " WHERE firstseen > :cutoff AND $where ORDER BY firstseen DESC LIMIT 32", $args); $rows = array(); $count = 0; while ($row = $res->fetch(PDO::FETCH_ASSOC)) { if (empty($row['hostname'])) { $row['hostname'] = $row['clientip']; } $row['firstseen_int'] = $row['firstseen']; $row['firstseen'] = Util::prettyTime($row['firstseen']); $row['gbram'] = round(round($row['mbram'] / 500) / 2, 1); // Trial and error until we got "expected" rounding.. $row['gbtmp'] = round($row['id44mb'] / 1024); $row['ramclass'] = $this->ramColorClass($row['mbram']); $row['kvmclass'] = $this->kvmColorClass($row['kvmstate']); $row['hddclass'] = $this->hddColorClass($row['gbtmp']); $row['kvmicon'] = $row['kvmstate'] === 'ENABLED' ? '✓' : '✗'; if (++$count > 5) { $row['collapse'] = 'collapse'; } $rows[] = $row; } Render::addTemplate('newclients', array('rows' => $rows, 'openbutton' => $count > 5)); } /** * @param \FilterSet $filterSet */ private function showMachineList($filterSet) { Module::isAvailable('js_stupidtable'); $filterSet->makeFragments($where, $join, $sort, $args); $xtra = ''; if ($filterSet->isNoId44Filter()) { $xtra .= ', data'; } if (Module::isAvailable('runmode')) { $xtra .= ', runmode.module AS rmmodule, runmode.isclient'; if (strpos($join, 'runmode') === false) { $join .= ' LEFT JOIN runmode USING (machineuuid) '; } } $res = Database::simpleQuery('SELECT machineuuid, locationid, macaddr, clientip, lastseen,' . ' logintime, state, realcores, mbram, kvmstate, cpumodel, id44mb, hostname, notes IS NOT NULL AS hasnotes,' . ' badsectors ' . $xtra . ' FROM machine' . " $join WHERE $where $sort", $args); $rows = array(); $singleMachine = 'none'; // TODO: Cannot disable checkbox for those where user has no permission, since we got multiple actions now // We should pass these lists to the output and add some JS magic // Either disable the delete/reboot/... buttons as soon as at least one "forbidden" client is selected (potentially annoying) // or add a notice to the confirmation dialog of the according action (nicer but a little more work) $deleteAllowedLocations = User::getAllowedLocations("machine.delete"); $rebootAllowedLocations = User::getAllowedLocations('.rebootcontrol.action.reboot'); $shutdownAllowedLocations = User::getAllowedLocations('.rebootcontrol.action.reboot'); // Only make client clickable if user is allowed to view details page $detailsAllowedLocations = User::getAllowedLocations("machine.view-details"); while ($row = $res->fetch(PDO::FETCH_ASSOC)) { if ($singleMachine === 'none') { $singleMachine = $row['machineuuid']; } else { $singleMachine = false; } $row['link_details'] = in_array($row['locationid'], $detailsAllowedLocations); //$row['firstseen'] = Util::prettyTime($row['firstseen']); $row['lastseen_int'] = $row['lastseen']; $row['lastseen'] = Util::prettyTime($row['lastseen']); //$row['lastboot'] = Util::prettyTime($row['lastboot']); $row['gbram'] = round(round($row['mbram'] / 500) / 2, 1); // Trial and error until we got "expected" rounding.. $row['gbtmp'] = round($row['id44mb'] / 1024); $octets = explode('.', $row['clientip']); if (count($octets) === 4) { $row['subnet'] = "$octets[0].$octets[1].$octets[2]."; $row['lastoctet'] = $octets[3]; } $row['ramclass'] = $this->ramColorClass($row['mbram']); $row['kvmclass'] = $this->kvmColorClass($row['kvmstate']); $row['hddclass'] = $this->hddColorClass($row['gbtmp']); if (empty($row['hostname'])) { $row['hostname'] = $row['clientip']; } if (isset($row['data'])) { if (!preg_match('/^(Disk.* bytes|Disk.*\d{5,} sectors)/m', $row['data'])) { $row['nohdd'] = true; } } $row['cpumodel'] = preg_replace('/\(R\)|\(TM\)|\bintel\b|\bamd\b|\bcpu\b|dual-core|\bdual\s+core\b|\bdual\b|\bprocessor\b/i', ' ', $row['cpumodel']); if (!empty($row['rmmodule'])) { $data = RunMode::getRunMode($row['machineuuid'], RunMode::DATA_STRINGS); if ($data !== false) { $row['moduleName'] = $data['moduleName']; $row['modeName'] = $data['modeName']; } if (!$row['isclient'] && $row['state'] === 'IDLE') { $row['state'] = 'OCCUPIED'; } } $row['state_' . $row['state']] = true; $row['locationname'] = Location::getName($row['locationid']); $rows[] = $row; } if ($singleMachine !== false && $singleMachine !== 'none') { Util::redirect('?do=statistics&uuid=' . $singleMachine); } $data = array( 'rowCount' => count($rows), 'rows' => $rows, 'query' => $this->query, 'delimiter' => Filter::DELIMITER, 'sortDirection' => $filterSet->getSortDirection(), 'sortColumn' => $filterSet->getSortColumn(), 'columns' => json_encode(Page_Statistics::$columns), 'showList' => 1, 'show' => 'list', 'redirect' => $_SERVER['QUERY_STRING'], 'rebootcontrol' => (Module::get('rebootcontrol') !== false), 'canReboot' => !empty($rebootAllowedLocations), 'canShutdown' => !empty($shutdownAllowedLocations), 'canDelete' => !empty($deleteAllowedLocations), ); Render::addTemplate('clientlist', $data); } private function ramColorClass($mb) { if ($mb < 1500) { return 'danger'; } if ($mb < 2500) { return 'warning'; } return ''; } private function kvmColorClass($state) { if ($state === 'DISABLED') { return 'danger'; } if ($state === 'UNKNOWN' || $state === 'UNSUPPORTED') { return 'warning'; } return ''; } private function hddColorClass($gb) { if ($gb < 7) { return 'danger'; } if ($gb < 25) { return 'warning'; } return ''; } public static function findBestValue($array, $value, $up) { $best = 0; for ($i = 0; $i < count($array); ++$i) { if (abs($array[$i] - $value) < abs($array[$best] - $value)) { $best = $i; } } if (!$up && $best === 0) { return $array[0]; } if ($up && $best + 1 === count($array)) { return $array[$best]; } if ($up) { return ($array[$best] + $array[$best + 1]) / 2; } return ($array[$best] + $array[$best - 1]) / 2; } private function fillSessionInfo(&$row) { if (!empty($row['currentuser'])) { $row['username'] = $row['currentuser']; if (strlen($row['currentsession']) === 36 && Module::isAvailable('dozmod')) { $lecture = Database::queryFirst("SELECT lectureid, displayname FROM sat.lecture WHERE lectureid = :lectureid", array('lectureid' => $row['currentsession'])); if ($lecture !== false) { $row['currentsession'] = $lecture['displayname']; $row['lectureid'] = $lecture['lectureid']; } $row['session'] = $row['currentsession']; return; } } $res = Database::simpleQuery('SELECT dateline, username, data FROM statistic' . " WHERE clientip = :ip AND typeid = '.vmchooser-session-name'" . ' AND dateline BETWEEN :start AND :end', array( 'ip' => $row['clientip'], 'start' => $row['logintime'] - 60, 'end' => $row['logintime'] + 300, )); $session = false; while ($r = $res->fetch(PDO::FETCH_ASSOC)) { if ($session === false || abs($session['dateline'] - $row['logintime']) > abs($r['dateline'] - $row['logintime'])) { $session = $r; } } if ($session !== false) { $row['session'] = $session['data']; if (empty($row['currentuser'])) { $row['username'] = $session['username']; } } } private function showMachine($uuid) { $client = Database::queryFirst('SELECT machineuuid, locationid, macaddr, clientip, firstseen, lastseen, logintime, lastboot, state, mbram, live_tmpsize, live_tmpfree, live_swapsize, live_swapfree, live_memsize, live_memfree, Length(position) AS hasroomplan, kvmstate, cpumodel, id44mb, data, hostname, currentuser, currentsession, notes FROM machine WHERE machineuuid = :uuid', array('uuid' => $uuid)); if ($client === false) { Message::addError('unknown-machine', $uuid); return; } User::assertPermission('machine.view-details', (int)$client['locationid']); // Hack: Get raw collected data if (Request::get('raw', false)) { Header('Content-Type: text/plain; charset=utf-8'); die($client['data']); } // Runmode if (Module::isAvailable('runmode')) { $data = RunMode::getRunMode($uuid, RunMode::DATA_STRINGS); if ($data !== false) { $client += $data; } } // Rebootcontrol if (Module::get('rebootcontrol') !== false) { if (User::hasPermission('.rebootcontrol.action.reboot', (int)$client['locationid'])) { $client['canReboot'] = true; } if (User::hasPermission('.rebootcontrol.action.shutdown', (int)$client['locationid'])) { $client['canShutdown'] = true; } $client['rebootcontrol'] = $client['canReboot'] || $client['canShutdown']; } if (!isset($client['isclient'])) { $client['isclient'] = true; } // Mangle fields $NOW = time(); if (!$client['isclient']) { if ($client['state'] === 'IDLE') { $client['state'] = 'OCCUPIED'; } } else { if ($client['state'] === 'OCCUPIED') { $this->fillSessionInfo($client); } } $client['state_' . $client['state']] = true; $client['firstseen_s'] = date('d.m.Y H:i', $client['firstseen']); $client['lastseen_s'] = date('d.m.Y H:i', $client['lastseen']); $client['logintime_s'] = date('d.m.Y H:i', $client['logintime']); if ($client['lastboot'] == 0) { $client['lastboot_s'] = '-'; } else { $uptime = $NOW - $client['lastboot']; $client['lastboot_s'] = date('d.m.Y H:i', $client['lastboot']); if ($client['state'] === 'IDLE' || $client['state'] === 'OCCUPIED') { $client['lastboot_s'] .= ' (Up ' . floor($uptime / 86400) . 'd ' . gmdate('H:i', $uptime) . ')'; } } $client['gbram'] = round(ceil($client['mbram'] / 512) / 2, 1); $client['gbtmp'] = round($client['id44mb'] / 1024); foreach (['tmp', 'swap', 'mem'] as $item) { if ($client['live_' . $item . 'size'] == 0) continue; $client['live_' . $item . 'percent'] = round(($client['live_' . $item . 'free'] / $client['live_' . $item . 'size']) * 100, 2); $client['live_' . $item . 'free_s'] = Util::readableFileSize($client['live_' . $item . 'free'], -1, 2); } $client['ramclass'] = $this->ramColorClass($client['mbram']); $client['kvmclass'] = $this->kvmColorClass($client['kvmstate']); $client['hddclass'] = $this->hddColorClass($client['gbtmp']); // Parse the giant blob of data if (strpos($client['data'], "\r") !== false) { $client['data'] = str_replace("\r", "\n", $client['data']); } $hdds = array(); if (preg_match_all('/##### ([^#]+) #+$(.*?)^#####/ims', $client['data'] . '########', $out, PREG_SET_ORDER)) { foreach ($out as $section) { if ($section[1] === 'CPU') { Parser::parseCpu($client, $section[2]); } if ($section[1] === 'dmidecode') { Parser::parseDmiDecode($client, $section[2]); } if ($section[1] === 'Partition tables') { Parser::parseHdd($hdds, $section[2]); } if ($section[1] === 'PCI ID') { $client['lspci1'] = $client['lspci2'] = array(); Parser::parsePci($client['lspci1'], $client['lspci2'], $section[2]); } if (isset($hdds['hdds']) && $section[1] === 'smartctl') { // This currently requires that the partition table section comes first... Parser::parseSmartctl($hdds['hdds'], $section[2]); } } } unset($client['data']); // BIOS update check if (!empty($client['biosrevision'])) { $mainboard = $client['mobomanufacturer'] . '##' . $client['mobomodel']; $system = $client['pcmanufacturer'] . '##' . $client['pcmodel']; $ret = $this->checkBios($mainboard, $system, $client['biosdate'], $client['biosrevision']); if ($ret === false) { // Not loaded, use AJAX $params = [ 'mainboard' => $mainboard, 'system' => $system, 'date' => $client['biosdate'], 'revision' => $client['biosrevision'], ]; $client['biosurl'] = '?do=statistics&action=bios&' . http_build_query($params); } elseif (!isset($ret['status']) || $ret['status'] !== 0) { $client['bioshtml'] = Render::parse('machine-bios-update', $ret); } } // Get locations if (Module::isAvailable('locations')) { $locs = Location::getLocationsAssoc(); $next = (int)$client['locationid']; $output = array(); while (isset($locs[$next])) { array_unshift($output, $locs[$next]); $next = $locs[$next]['parentlocationid']; } $client['locations'] = $output; } // Screens TODO Move everything else to hw table instead of blob parsing above // `devicetype`, `devicename`, `subid`, `machineuuid` $res = Database::simpleQuery("SELECT m.hwid, h.hwname, m.devpath AS connector, m.disconnecttime," . " p.value AS resolution, q.prop AS projector FROM machine_x_hw m" . " INNER JOIN statistic_hw h ON (m.hwid = h.hwid AND h.hwtype = :screen)" . " LEFT JOIN machine_x_hw_prop p ON (m.machinehwid = p.machinehwid AND p.prop = 'resolution')" . " LEFT JOIN statistic_hw_prop q ON (m.hwid = q.hwid AND q.prop = 'projector')" . " WHERE m.machineuuid = :uuid", array('screen' => DeviceType::SCREEN, 'uuid' => $uuid)); $client['screens'] = array(); $ports = array(); while ($row = $res->fetch(PDO::FETCH_ASSOC)) { if ($row['disconnecttime'] != 0) continue; $ports[] = $row['connector']; $client['screens'][] = $row; } array_multisort($ports, SORT_ASC, $client['screens']); Permission::addGlobalTags($client['perms'], null, ['hardware.projectors.edit', 'hardware.projectors.view']); // Throw output at user Render::addTemplate('machine-main', $client); // Sessions $NOW = time(); $cutoff = $NOW - 86400 * 7; //if ($cutoff < $client['firstseen']) $cutoff = $client['firstseen']; $scale = 100 / ($NOW - $cutoff); $res = Database::simpleQuery('SELECT dateline, typeid, data FROM statistic' . " WHERE dateline > :cutoff AND typeid IN (:sessionLength, :offlineLength) AND machineuuid = :uuid ORDER BY dateline ASC", array( 'cutoff' => $cutoff - 86400 * 14, 'uuid' => $uuid, 'sessionLength' => Statistics::SESSION_LENGTH, 'offlineLength' => Statistics::OFFLINE_LENGTH, )); $spans['rows'] = array(); $spans['graph'] = ''; $last = false; $first = true; while ($row = $res->fetch(PDO::FETCH_ASSOC)) { if (!$client['isclient'] && $row['typeid'] === Statistics::SESSION_LENGTH) continue; // Don't differentiate between session and idle for non-clients if ($first && $row['dateline'] > $cutoff && $client['lastboot'] > $cutoff) { // Special case: offline before $spans['graph'] .= '
 
'; } $first = false; if ($row['dateline'] + $row['data'] < $cutoff || $row['data'] > 864000) { continue; } if ($last !== false && abs($last['dateline'] - $row['dateline']) < 30 && abs($last['data'] - $row['data']) < 30 ) { continue; } if ($last !== false && $last['dateline'] + $last['data'] > $row['dateline']) { $point = $last['dateline'] + $last['data']; $row['data'] -= ($point - $row['dateline']); $row['dateline'] = $point; } if ($row['dateline'] < $cutoff) { $row['data'] -= ($cutoff - $row['dateline']); $row['dateline'] = $cutoff; } $row['from'] = Util::prettyTime($row['dateline']); $row['duration'] = floor($row['data'] / 86400) . 'd ' . gmdate('H:i', $row['data']); if ($row['typeid'] === Statistics::OFFLINE_LENGTH) { $row['glyph'] = 'off'; $color = '#444'; } elseif ($row['typeid'] === Statistics::SUSPEND_LENGTH) { $row['glyph'] = 'pause'; $color = '#686'; } else { $row['glyph'] = 'user'; $color = '#e77'; } $spans['graph'] .= '
 
'; if ($client['isclient']) { $spans['rows'][] = $row; } $last = $row; } if ($first && $client['lastboot'] > $cutoff) { // Special case: offline before $spans['graph'] .= '
 
'; } elseif ($first) { // Not seen in last two weeks $spans['graph'] .= '
 
'; } if ($client['state'] === 'OCCUPIED') { $spans['graph'] .= '
 
'; $spans['rows'][] = [ 'from' => Util::prettyTime($client['logintime']), 'duration' => '-', 'glyph' => 'user', ]; $row['duration'] = floor($row['data'] / 86400) . 'd ' . gmdate('H:i', $row['data']); } elseif ($client['state'] === 'OFFLINE') { $spans['graph'] .= '
 
'; $spans['rows'][] = [ 'from' => Util::prettyTime($client['lastseen']), 'duration' => '-', 'glyph' => 'off', ]; } elseif ($client['state'] === 'STANDBY') { $spans['graph'] .= '
 
'; $spans['rows'][] = [ 'from' => Util::prettyTime($client['lastseen']), 'duration' => '-', 'glyph' => 'pause', ]; } $t = explode('-', date('Y-n-j-G', $cutoff)); if ($t[3] >= 8 && $t[3] <= 22) { $start = mktime(22, 0, 0, $t[1], $t[2], $t[0]); } else { $start = mktime(22, 0, 0, $t[1], $t[2] - 1, $t[0]); } for ($i = $start; $i < $NOW; $i += 86400) { $spans['graph'] .= '
 
'; } if (count($spans['rows']) > 10) { $spans['hasrows2'] = true; $spans['rows2'] = array_slice($spans['rows'], ceil(count($spans['rows']) / 2)); $spans['rows'] = array_slice($spans['rows'], 0, ceil(count($spans['rows']) / 2)); } $spans['isclient'] = $client['isclient']; Render::addTemplate('machine-usage', $spans); // Any hdds? if (!empty($hdds['hdds'])) { Render::addTemplate('machine-hdds', $hdds); } // Client log if (Module::get('syslog') !== false) { $lres = Database::simpleQuery('SELECT logid, dateline, logtypeid, clientip, description, extra FROM clientlog' . ' WHERE machineuuid = :uuid ORDER BY logid DESC LIMIT 25', array('uuid' => $client['machineuuid'])); $count = 0; $log = array(); while ($row = $lres->fetch(PDO::FETCH_ASSOC)) { if (substr($row['description'], -5) === 'on :0' && strpos($row['description'], 'root logged') === false) { continue; } $row['date'] = Util::prettyTime($row['dateline']); $row['icon'] = $this->eventToIconName($row['logtypeid']); $log[] = $row; if (++$count === 10) { break; } } Render::addTemplate('syslog', array( 'machineuuid' => $client['machineuuid'], 'list' => $log, )); } // Notes if (User::hasPermission('machine.note.*', (int)$client['locationid'])) { Permission::addGlobalTags($client['perms'], (int)$client['locationid'], ['machine.note.edit']); Render::addTemplate('machine-notes', $client); } } private function eventToIconName($event) { switch ($event) { case 'session-open': return 'glyphicon-log-in'; case 'session-close': return 'glyphicon-log-out'; case 'partition-swap': return 'glyphicon-info-sign'; case 'partition-temp': case 'smartctl-realloc': return 'glyphicon-exclamation-sign'; default: return 'glyphicon-minus'; } } protected function doAjax() { if (!User::load()) return; if (Request::any('action') === 'bios') { $this->ajaxCheckBios(); return; } $param = Request::any('lookup', false, 'string'); if ($param === false) { die('No lookup given'); } $add = ''; if (preg_match('/^([a-f0-9]{4}):([a-f0-9]{4})$/', $param, $out)) { $cat = 'DEVICE'; $host = $out[2] . '.' . $out[1]; $add = ' (' . $param . ')'; } elseif (preg_match('/^([a-f0-9]{4})$/', $param, $out)) { $cat = 'VENDOR'; $host = $out[1]; } elseif (preg_match('/^c\.([a-f0-9]{2})([a-f0-9]{2})$/', $param, $out)) { $cat = 'CLASS'; $host = $out[2] . '.' . $out[1] . '.c'; } else { die('Invalid format requested'); } $cached = Page_Statistics::getPciId($cat, $param); if ($cached !== false && $cached['dateline'] > time()) { echo $cached['value'], $add; exit; } $res = dns_get_record($host . '.pci.id.ucw.cz', DNS_TXT); if (is_array($res)) { foreach ($res as $entry) { if (isset($entry['txt']) && substr($entry['txt'], 0, 2) === 'i=') { $string = substr($entry['txt'], 2); Page_Statistics::setPciId($cat, $param, $string); echo $string, $add; exit; } } } if ($cached !== false) { echo $cached['value'], $add; exit; } die('Not found'); } public static function getPciId($cat, $id) { static $cache = []; $key = $cat . '-' . $id; if (isset($cache[$key])) return $cache[$key]; return $cache[$key] = Database::queryFirst('SELECT value, dateline FROM pciid WHERE category = :cat AND id = :id LIMIT 1', array('cat' => $cat, 'id' => $id)); } private static function setPciId($cat, $id, $value) { Database::exec('INSERT INTO pciid (category, id, value, dateline) VALUES (:cat, :id, :value, :timeout)' . ' ON DUPLICATE KEY UPDATE value = VALUES(value), dateline = VALUES(dateline)', array( 'cat' => $cat, 'id' => $id, 'value' => $value, 'timeout' => time() + mt_rand(10, 30) * 86400, ), true); } const BIOS_CACHE = '/tmp/bwlp-bios.json'; private function ajaxCheckBios() { $mainboard = Request::any('mainboard', false, 'string'); $system = Request::any('system', false, 'string'); $date = Request::any('date', false, 'string'); $revision = Request::any('revision', false, 'string'); $reply = $this->checkBios($mainboard, $system, $date, $revision); if ($reply === false) { $data = Download::asString(CONFIG_BIOS_URL, 3, $err); if ($err < 200 || $err >= 300) { $reply = ['error' => 'HTTP: ' . $err]; } else { file_put_contents(self::BIOS_CACHE, $data); $data = json_decode($data, true); $reply = $this->checkBios($mainboard, $system, $date, $revision, $data); } } if ($reply === false) { $reply = ['error' => 'Internal Error']; } if (isset($reply['status']) && $reply['status'] === 0) exit; // Show nothing, 0 means OK die(Render::parse('machine-bios-update', $reply)); } private function checkBios($mainboard, $system, $date, $revision, $json = null) { if ($json === null) { if (!file_exists(self::BIOS_CACHE) || filemtime(self::BIOS_CACHE) + 3600 < time()) return false; $json = json_decode(file_get_contents(self::BIOS_CACHE), true); } if (!is_array($json) || !isset($json['system'])) return ['error' => 'Malformed JSON, no system key']; if (isset($json['system'][$system]) && isset($json['system'][$system]['fixes']) && isset($json['system'][$system]['match'])) { $match =& $json['system'][$system]; } elseif (isset($json['mainboard'][$mainboard]) && isset($json['mainboard'][$mainboard]['fixes']) && isset($json['mainboard'][$mainboard]['match'])) { $match =& $json['mainboard'][$mainboard]; } else { return ['status' => 0]; } $key = $match['match']; if ($key === 'revision') { $cmp = function ($item) { $s = explode('.', $item); return $s[0] * 0x10000 + $s[1]; }; $reference = $cmp($revision); } elseif ($key === 'date') { $cmp = function ($item) { $s = explode('.', $item); return $s[2] * 10000 + $s[1] * 100 + $s[0]; }; $reference = $cmp($date); } else { return ['error' => 'Invalid comparison key: ' . $key]; } $retval = ['fixes' => []]; $level = 0; foreach ($match['fixes'] as $fix) { if ($cmp($fix[$key]) > $reference) { class_exists('Dictionary'); // Trigger setup of lang stuff $lang = isset($fix['text'][LANG]) ? LANG : 'en'; $fix['text'] = $fix['text'][$lang]; $retval['fixes'][] = $fix; $level = max($level, $fix['level']); } } $retval['url'] = $match['url']; $retval['status'] = $level; if ($level > 5) { $retval['class'] = 'danger'; } elseif ($level > 3) { $retval['class'] = 'warning'; } else { $retval['class'] = 'info'; } return $retval; } } Page_Statistics::initConstants();