mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-04 05:05:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			125 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			125 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
/**
 | 
						|
 * This file is part of Icinga 2 Web.
 | 
						|
 *
 | 
						|
 * Icinga 2 Web - Head for multiple monitoring backends.
 | 
						|
 * Copyright (C) 2013 Icinga Development Team
 | 
						|
 *
 | 
						|
 * 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.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU General Public License
 | 
						|
 * along with this program; if not, write to the Free Software
 | 
						|
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 | 
						|
 *
 | 
						|
 * @copyright 2013 Icinga Development Team <info@icinga.org>
 | 
						|
 * @license   http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2
 | 
						|
 * @author    Icinga Development Team <info@icinga.org>
 | 
						|
 */
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
 | 
						|
namespace Icinga\Protocol\Commandpipe\Transport;
 | 
						|
 | 
						|
use Icinga\Application\Logger;
 | 
						|
 | 
						|
/**
 | 
						|
 *  Command pipe transport class that uses ssh for connecting to a remote filesystem with the icinga.cmd pipe
 | 
						|
 *  The remote host must have KeyAuth enabled for this user
 | 
						|
 *
 | 
						|
 */
 | 
						|
class SecureShell implements Transport
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The remote host to connect to
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    private $host = 'localhost';
 | 
						|
 | 
						|
    /**
 | 
						|
     * The location of the icinga pipe on the remote host
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    private $path = "/usr/local/icinga/var/rw/icinga.cmd";
 | 
						|
 | 
						|
    /**
 | 
						|
     * The SSH port of the remote host
 | 
						|
     *
 | 
						|
     * @var int
 | 
						|
     */
 | 
						|
    private $port = 22;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The user to authenticate with on the remote host
 | 
						|
     *
 | 
						|
     * @var String
 | 
						|
     */
 | 
						|
    private $user = null;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @see Transport::setEndpoint()
 | 
						|
     *
 | 
						|
     */
 | 
						|
    public function setEndpoint(\Zend_Config $config)
 | 
						|
    {
 | 
						|
        $this->host = isset($config->host) ? $config->host : "localhost";
 | 
						|
        $this->port = isset($config->port) ? $config->port : 22;
 | 
						|
        $this->user = isset($config->user) ? $config->user : null;
 | 
						|
        $this->password = isset($config->password) ? $config->password : null;
 | 
						|
        $this->path = isset($config->path) ? $config->path : "/usr/local/icinga/var/rw/icinga.cmd";
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @see Transport::send()
 | 
						|
     *
 | 
						|
     */
 | 
						|
    public function send($command)
 | 
						|
    {
 | 
						|
        $retCode = 0;
 | 
						|
        $output = array();
 | 
						|
        Logger::debug(
 | 
						|
            'Icinga instance is on different host, attempting to send command %s via ssh to %s:%s/%s',
 | 
						|
            $command,
 | 
						|
            $this->host,
 | 
						|
            $this->port,
 | 
						|
            $this->path
 | 
						|
        );
 | 
						|
        $hostConnector = $this->user ? $this->user . "@" . $this->host : $this->host;
 | 
						|
        exec(
 | 
						|
            'ssh -o BatchMode=yes -o KbdInteractiveAuthentication=no'
 | 
						|
            . $hostConnector.' -p'.$this->port.' "echo \'['. time() .'] '
 | 
						|
            . escapeshellcmd(
 | 
						|
                $command
 | 
						|
            )
 | 
						|
            . '\' > '.$this->path.'" > /dev/null 2> /dev/null & ',
 | 
						|
            $output,
 | 
						|
            $retCode
 | 
						|
        );
 | 
						|
        Logger::debug(
 | 
						|
            'ssh '.$hostConnector.' -p'.$this->port.' "echo \'['. time() .'] '
 | 
						|
            . escapeshellcmd(
 | 
						|
                $command
 | 
						|
            )
 | 
						|
            . '\' > '.$this->path.'"'
 | 
						|
        );
 | 
						|
        Logger::debug("Return code %s: %s ", $retCode, $output);
 | 
						|
 | 
						|
        if ($retCode != 0) {
 | 
						|
            $msg =  'Could not send command to remote icinga host: '
 | 
						|
                . implode(PHP_EOL, $output)
 | 
						|
                . " (returncode $retCode)";
 | 
						|
            Logger::error($msg);
 | 
						|
            throw new \RuntimeException($msg);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |