icingaweb2-module-director/library/Director/IcingaConfig/IcingaConfig.php

618 lines
16 KiB
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\IcingaConfig;
2016-02-17 11:49:56 +01:00
use Icinga\Application\Benchmark;
use Icinga\Application\Hook;
use Icinga\Application\Icinga;
2016-03-02 17:12:09 +01:00
use Icinga\Exception\IcingaException;
use Icinga\Exception\ProgrammingError;
2015-12-15 16:46:19 +01:00
use Icinga\Module\Director\Db;
2015-06-23 14:37:23 +02:00
use Icinga\Module\Director\Util;
use Icinga\Module\Director\Objects\IcingaHost;
use Icinga\Module\Director\Objects\IcingaZone;
use Icinga\Module\Director\Objects\IcingaEndpoint;
use Exception;
class IcingaConfig
{
protected $files = array();
protected $checksum;
protected $zoneMap = array();
protected $lastActivityChecksum;
/**
* @var \Zend_Db_Adapter_Abstract
*/
protected $db;
protected $connection;
protected $generationTime;
public static $table = 'director_generated_config';
public function __construct(Db $connection)
{
// Make sure module hooks are loaded:
Icinga::app()->getModuleManager()->loadEnabledModules();
$this->connection = $connection;
$this->db = $connection->getDbAdapter();
}
public function getSize()
{
$size = 0;
foreach ($this->getFiles() as $file) {
$size += $file->getSize();
}
return $size;
}
public function getDuration()
{
return $this->duration;
}
public function getFileCount()
{
return count($this->files);
}
public function getObjectCount()
{
$cnt = 0;
foreach ($this->getFiles() as $file) {
$cnt += $file->getObjectCount();
}
return $cnt;
}
public function getTemplateCount()
{
$cnt = 0;
foreach ($this->getFiles() as $file) {
$cnt += $file->getTemplateCount();
}
return $cnt;
}
public function getChecksum()
{
return $this->checksum;
}
public function getHexChecksum()
{
2015-06-23 14:37:23 +02:00
return Util::binary2hex($this->checksum);
}
public function getFiles()
{
return $this->files;
}
2015-07-23 15:36:08 +02:00
public function getFileContents()
{
$result = array();
foreach ($this->files as $name => $file) {
$result[$name] = $file->getContent();
}
return $result;
}
public function getFileNames()
{
return array_keys($this->files);
}
2015-12-17 10:54:38 +01:00
public function getFile($name)
{
return $this->files[$name];
}
public function getMissingFiles($missing)
{
$files = array();
foreach ($this->files as $name => $file) {
$files[] = $name . '=' . $file->getChecksum();
}
return $files;
}
2015-12-15 16:46:19 +01:00
public static function load($checksum, Db $connection)
{
$config = new static($connection);
$config->loadFromDb($checksum);
return $config;
}
public static function exists($checksum, Db $connection)
{
2016-06-16 16:04:05 +02:00
$db = $connection->getDbAdapter();
$query = $db->select()->from(
array('c' => self::$table),
array('checksum' => $connection->dbHexFunc('c.checksum'))
)->where(
'checksum = ?',
$connection->quoteBinary(Util::hex2binary($checksum))
);
return $db->fetchOne($query) === $checksum;
}
public static function loadByActivityChecksum($checksum, Db $connection)
{
$db = $connection->getDbAdapter();
$query = $db->select()->from(
array('c' => self::$table),
array('checksum' => 'c.checksum')
)->join(
array('l' => 'director_activity_log'),
'l.checksum = c.last_activity_checksum',
array()
)->where(
'last_activity_checksum = ?',
$connection->quoteBinary(Util::hex2binary($checksum))
)->order('l.id DESC')->limit(1);
return self::load($db->fetchOne($query), $connection);
}
2015-12-15 16:46:19 +01:00
public static function generate(Db $connection)
{
$config = new static($connection);
return $config->storeIfModified();
}
2015-12-15 16:46:19 +01:00
public static function wouldChange(Db $connection)
{
$config = new static($connection);
return $config->hasBeenModified();
}
public function hasBeenModified()
{
$this->generateFromDb();
$this->collectExtraFiles();
$checksum = $this->calculateChecksum();
$activity = $this->getLastActivityChecksum();
$lastActivity = $this->binFromDb(
$this->db->fetchOne(
$this->db->select()->from(
self::$table,
'last_activity_checksum'
)->where(
'checksum = ?',
$this->dbBin($checksum)
)
)
);
if ($lastActivity === false || $lastActivity === null) {
return true;
}
if ($lastActivity !== $activity) {
$this->db->update(
self::$table,
array(
'last_activity_checksum' => $this->dbBin($activity)
),
$this->db->quoteInto('checksum = ?', $this->dbBin($checksum))
);
}
return false;
}
protected function storeIfModified()
{
if ($this->hasBeenModified()) {
$this->store();
}
return $this;
}
protected function dbBin($binary)
{
2016-03-02 13:42:37 +01:00
if ($this->connection->isPgsql()) {
return Util::pgBinEscape($binary);
} else {
return $binary;
}
}
2016-02-27 18:14:21 +01:00
protected function binFromDb($value)
{
if (is_resource($value)) {
return stream_get_contents($value);
}
return $value;
2016-02-27 18:14:21 +01:00
}
protected function calculateChecksum()
{
$files = array();
$sortedFiles = $this->files;
ksort($sortedFiles);
/** @var IcingaConfigFile $file */
foreach ($sortedFiles as $name => $file) {
$files[] = $name . '=' . $file->getHexChecksum();
}
$this->checksum = sha1(implode(';', $files), true);
return $this->checksum;
}
public function getFilesChecksums()
{
$checksums = array();
/** @var IcingaConfigFile $file */
foreach ($this->files as $name => $file) {
$checksums[] = $file->getChecksum();
}
return $checksums;
}
// TODO: prepare lookup cache if empty?
public function getZoneName($id)
{
if (! array_key_exists($id, $this->zoneMap)) {
$zone = IcingaZone::loadWithAutoIncId($id, $this->connection);
$this->zoneMap[$id] = $zone->object_name;
}
return $this->zoneMap[$id];
}
public function store()
{
$fileTable = IcingaConfigFile::$table;
$fileKey = IcingaConfigFile::$keyName;
$existingQuery = $this->db->select()
->from($fileTable, 'checksum')
->where('checksum IN (?)', array_map(array($this, 'dbBin'), $this->getFilesChecksums()));
$existing = $this->db->fetchCol($existingQuery);
foreach ($existing as $key => $val) {
if (is_resource($val)) {
$existing[$key] = stream_get_contents($val);
}
}
$missing = array_diff($this->getFilesChecksums(), $existing);
$stored = array();
/** @var IcingaConfigFile $file */
foreach ($this->files as $name => $file) {
$checksum = $file->getChecksum();
if (! in_array($checksum, $missing)) {
continue;
2015-06-23 16:45:25 +02:00
}
if (array_key_exists($checksum, $stored)) {
continue;
}
$stored[$checksum] = true;
$this->db->insert(
$fileTable,
array(
$fileKey => $this->dbBin($checksum),
'content' => $file->getContent(),
'cnt_object' => $file->getObjectCount(),
'cnt_template' => $file->getTemplateCount()
)
);
}
$activity = $this->dbBin($this->getLastActivityChecksum());
$this->db->insert(
self::$table,
array(
'duration' => $this->generationTime,
'first_activity_checksum' => $activity,
'last_activity_checksum' => $activity,
'checksum' => $this->dbBin($this->getChecksum()),
)
);
/** @var IcingaConfigFile $file */
foreach ($this->files as $name => $file) {
$this->db->insert(
'director_generated_config_file',
array(
'config_checksum' => $this->dbBin($this->getChecksum()),
'file_checksum' => $this->dbBin($file->getChecksum()),
'file_path' => $name,
)
);
}
return $this;
}
protected function generateFromDb()
{
$start = microtime(true);
2016-02-19 11:34:31 +01:00
// Raise limits. TODO: do this in a failsafe way, and only if necessary
ini_set('memory_limit', '768M');
ini_set('max_execution_time', 0);
if (! $this->connection->isPgsql() && $this->db->quote("1\0") !== '\'1\\0\'') {
2016-03-02 17:12:09 +01:00
throw new IcingaException(
'Refusing to render the configuration, your DB layer corrupts binary data.'
. ' You might be affected by Zend Framework bug #655'
2016-03-02 17:12:09 +01:00
);
}
$this
->prepareGlobalBasics()
->createFileFromDb('zone')
2015-06-17 10:53:41 +02:00
->createFileFromDb('endpoint')
->createFileFromDb('command')
->createFileFromDb('timePeriod')
2015-06-17 10:53:41 +02:00
->createFileFromDb('hostGroup')
->createFileFromDb('host')
2015-06-17 10:53:41 +02:00
->createFileFromDb('serviceGroup')
->createFileFromDb('service')
2015-06-17 10:53:41 +02:00
->createFileFromDb('userGroup')
2015-06-12 13:41:38 +02:00
->createFileFromDb('user')
2016-06-03 15:24:17 +02:00
->createFileFromDb('notification')
;
2015-06-12 13:38:49 +02:00
$this->configFile('zones.d/director-global/commands')
->prepend("library \"methods\"\n\n");
$this->generationTime = (int) ((microtime(true) - $start) * 1000);
return $this;
}
protected function prepareGlobalBasics()
{
$this->configFile(
sprintf(
'zones.d/%s/001-director-basics',
$this->connection->getDefaultGlobalZoneName()
)
)->prepend(
"\nconst DirectorStageDir = dirname(dirname(current_filename))\n"
. $this->renderMagicApplyFor()
);
return $this;
}
protected function renderMagicApplyFor()
{
if (! $this->usesMagicApplyFor()) {
return '';
}
$varname = $this->getMagicApplyVarName();
return sprintf(
'
apply Service for (title => params in host.vars["%s"]) {
var override = host.vars["%s_vars"][title]
if (typeof(params["templates"]) in [Array, String]) {
import params["templates"]
} else {
import title
}
if (typeof(params.vars) == Dictionary) {
vars += params
}
if (typeof(override.vars) == Dictionary) {
vars += override.vars
}
if (typeof(params["host_name"]) == String) {
host_name = params["host_name"]
}
}
',
$varname,
$varname
);
}
protected function getMagicApplyVarName()
{
return $this->connection->getSetting(
'magic_apply_for',
'_director_apply_for'
);
}
protected function usesMagicApplyFor()
{
$db = $this->db;
$query = $db->select()->from(
array('hv' => 'icinga_host_var'),
array('c' => 'COUNT(*)')
)->where(
'hv.varname = ?',
$this->getMagicApplyVarName()
);
return $db->fetchOne($query);
}
protected function loadFromDb($checksum)
{
$query = $this->db->select()->from(
self::$table,
array('checksum', 'last_activity_checksum', 'duration')
)->where('checksum = ?', $this->dbBin($checksum));
$result = $this->db->fetchRow($query);
if (empty($result)) {
throw new Exception(sprintf('Got no config for %s', Util::binary2hex($checksum)));
}
$this->checksum = $this->binFromDb($result->checksum);
$this->duration = $result->duration;
$this->lastActivityChecksum = $this->binFromDb($result->last_activity_checksum);
2015-06-23 16:10:57 +02:00
$query = $this->db->select()->from(
array('cf' => 'director_generated_config_file'),
array(
2015-12-15 17:17:32 +01:00
'file_path' => 'cf.file_path',
'checksum' => 'f.checksum',
'content' => 'f.content',
'cnt_object' => 'f.cnt_object',
'cnt_template' => 'f.cnt_template',
)
)->join(
array('f' => 'director_generated_file'),
'cf.file_checksum = f.checksum',
array()
)->where('cf.config_checksum = ?', $this->dbBin($checksum));
foreach ($this->db->fetchAll($query) as $row) {
$file = new IcingaConfigFile();
2015-12-15 17:17:32 +01:00
$this->files[$row->file_path] = $file
->setContent($row->content)
->setObjectCount($row->cnt_object)
->setTemplateCount($row->cnt_template);
}
return $this;
}
protected function createFileFromDb($type)
{
$class = 'Icinga\\Module\\Director\\Objects\\Icinga' . ucfirst($type);
2016-01-19 16:45:20 +01:00
Benchmark::measure(sprintf('Prefetching %s', $type));
$objects = $class::prefetchAll($this->connection);
return $this->createFileForObjects($type, $objects);
}
protected function createFileForObjects($type, $objects)
{
if (empty($objects)) {
return $this;
}
Benchmark::measure(sprintf('Generating %ss: %s', $type, count($objects)));
foreach ($objects as $object) {
if ($object->isExternal()) {
if ($type === 'zone') {
$this->zoneMap[$object->id] = $object->object_name;
}
}
$object->renderToConfig($this);
2015-08-28 17:52:19 +02:00
}
Benchmark::measure(sprintf('%ss done', $type, count($objects)));
return $this;
}
2015-12-17 20:33:16 +01:00
protected function typeWantsGlobalZone($type)
{
$types = array(
'command',
);
return in_array($type, $types);
}
protected function typeWantsMasterZone($type)
{
$types = array(
'host',
'hostGroup',
'service',
'serviceGroup',
'endpoint',
'user',
'userGroup',
'timePeriod',
2015-12-17 20:33:16 +01:00
'notification'
);
return in_array($type, $types);
}
public function configFile($name, $suffix = '.conf')
{
$filename = $name . $suffix;
if (! array_key_exists($filename, $this->files)) {
$this->files[$filename] = new IcingaConfigFile();
}
return $this->files[$filename];
}
protected function collectExtraFiles()
{
foreach (Hook::all('Director\\ShipConfigFiles') as $hook) {
foreach ($hook->fetchFiles() as $filename => $file) {
if (array_key_exists($filename, $this->files)) {
throw new ProgrammingError(
'Cannot ship one file twice: %s',
$filename
);
}
if ($file instanceof IcingaConfigFile) {
$this->files[$filename] = $file;
} else {
$this->configFile($filename, '')->setContent((string) $file);
}
}
}
return $this;
}
public function getLastActivityHexChecksum()
{
2015-06-23 14:37:23 +02:00
return Util::binary2hex($this->getLastActivityChecksum());
}
/**
* @return mixed
*/
public function getLastActivityChecksum()
{
if ($this->lastActivityChecksum === null) {
$query = $this->db->select()
->from('director_activity_log', 'checksum')
->order('id DESC')
->limit(1);
$this->lastActivityChecksum = $this->db->fetchOne($query);
2015-06-23 14:12:39 +02:00
// PgSQL workaround:
if (is_resource($this->lastActivityChecksum)) {
$this->lastActivityChecksum = stream_get_contents($this->lastActivityChecksum);
}
}
return $this->lastActivityChecksum;
}
}