2009-10-26 17:35:34 +01:00
|
|
|
<?php
|
2019-10-22 20:48:45 +02:00
|
|
|
/**
|
|
|
|
* Pandora FMS integration API.
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package Pandora FMS
|
|
|
|
* @subpackage Console
|
|
|
|
* @version 1.0.0
|
|
|
|
* @license See below
|
|
|
|
*
|
|
|
|
* ______ ___ _______ _______ ________
|
|
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
|
|
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
|
|
*
|
|
|
|
* ============================================================================
|
|
|
|
* Copyright (c) 2005-2019 Artica Soluciones Tecnologicas
|
|
|
|
* Please see http://pandorafms.org for full contribution list
|
|
|
|
* 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 for version 2.
|
|
|
|
* 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.
|
|
|
|
* ============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Begin.
|
2019-01-30 16:18:44 +01:00
|
|
|
require_once 'config.php';
|
|
|
|
require_once 'functions_api.php';
|
2020-07-07 10:19:49 +02:00
|
|
|
require '../vendor/autoload.php';
|
2011-09-25 19:26:36 +02:00
|
|
|
global $config;
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
define('DEBUG', 0);
|
|
|
|
define('VERBOSE', 0);
|
2012-04-25 20:09:05 +02:00
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
// TESTING THE UPDATE MANAGER.
|
2019-01-30 16:18:44 +01:00
|
|
|
enterprise_include_once('include/functions_enterprise_api.php');
|
2009-10-26 17:35:34 +01:00
|
|
|
|
|
|
|
$ipOrigin = $_SERVER['REMOTE_ADDR'];
|
2010-05-27 17:23:46 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
// Get the parameters and parse if necesary.
|
2009-10-26 17:35:34 +01:00
|
|
|
$op = get_parameter('op');
|
|
|
|
$op2 = get_parameter('op2');
|
2012-06-14 17:07:40 +02:00
|
|
|
$ext_name = get_parameter('ext_name');
|
|
|
|
$ext_function = get_parameter('ext_function');
|
2009-10-26 17:35:34 +01:00
|
|
|
$id = get_parameter('id');
|
|
|
|
$id2 = get_parameter('id2');
|
2010-05-27 17:23:46 +02:00
|
|
|
$otherSerialize = get_parameter('other');
|
|
|
|
$otherMode = get_parameter('other_mode', 'url_encode');
|
2009-10-26 17:35:34 +01:00
|
|
|
$returnType = get_parameter('return_type', 'string');
|
2012-06-14 13:59:10 +02:00
|
|
|
$api_password = get_parameter('apipass', '');
|
2011-02-14 17:56:17 +01:00
|
|
|
$password = get_parameter('pass', '');
|
2011-09-12 13:28:32 +02:00
|
|
|
$user = get_parameter('user', '');
|
2013-11-05 18:23:13 +01:00
|
|
|
$info = get_parameter('info', '');
|
2019-04-23 15:37:54 +02:00
|
|
|
|
2010-05-27 17:23:46 +02:00
|
|
|
$other = parseOtherParameter($otherSerialize, $otherMode);
|
2019-04-23 15:37:54 +02:00
|
|
|
|
2010-05-27 17:23:46 +02:00
|
|
|
$other = parseOtherParameter($otherSerialize, $otherMode);
|
2019-10-22 20:48:45 +02:00
|
|
|
$apiPassword = io_output_password(
|
|
|
|
db_get_value_filter(
|
|
|
|
'value',
|
|
|
|
'tconfig',
|
|
|
|
['token' => 'api_password']
|
|
|
|
)
|
|
|
|
);
|
2011-02-14 17:56:17 +01:00
|
|
|
|
|
|
|
$correctLogin = false;
|
2019-01-30 16:18:44 +01:00
|
|
|
$no_login_msg = '';
|
2012-06-14 13:59:10 +02:00
|
|
|
|
2019-10-21 21:09:03 +02:00
|
|
|
// Clean unwanted output.
|
2018-03-07 16:50:12 +01:00
|
|
|
ob_clean();
|
|
|
|
|
2018-08-07 13:03:53 +02:00
|
|
|
// READ THIS:
|
2013-11-05 18:23:13 +01:00
|
|
|
// Special call without checks to retrieve version and build of the Pandora FMS
|
|
|
|
// This info is avalable from the web console without login
|
2019-10-22 20:48:45 +02:00
|
|
|
// Don't change the format, it is parsed by applications.
|
2019-10-21 21:09:03 +02:00
|
|
|
if ($info == 'version') {
|
|
|
|
if (!$config['MR']) {
|
|
|
|
$config['MR'] = 0;
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2019-10-21 21:09:03 +02:00
|
|
|
echo 'Pandora FMS '.$pandora_version.' - '.$build_version.' MR'.$config['MR'];
|
2019-01-30 16:18:44 +01:00
|
|
|
exit;
|
2013-11-05 18:23:13 +01:00
|
|
|
}
|
|
|
|
|
2012-06-14 13:59:10 +02:00
|
|
|
if (isInACL($ipOrigin)) {
|
2019-01-30 16:18:44 +01:00
|
|
|
if (empty($apiPassword) || (!empty($apiPassword) && $api_password === $apiPassword)) {
|
|
|
|
$user_in_db = process_user_login($user, $password, true);
|
|
|
|
if ($user_in_db !== false) {
|
2019-10-21 21:09:03 +02:00
|
|
|
$config['id_usuario'] = $user_in_db;
|
|
|
|
// Compat.
|
2019-01-30 16:18:44 +01:00
|
|
|
$config['id_user'] = $user_in_db;
|
|
|
|
$correctLogin = true;
|
|
|
|
|
|
|
|
if (session_status() === PHP_SESSION_NONE) {
|
|
|
|
session_start();
|
2019-10-22 20:48:45 +02:00
|
|
|
$_SESSION = [];
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$_SESSION['id_usuario'] = $user;
|
2019-10-21 21:09:03 +02:00
|
|
|
|
|
|
|
config_prepare_session();
|
2019-01-30 16:18:44 +01:00
|
|
|
session_write_close();
|
|
|
|
} else {
|
|
|
|
$no_login_msg = 'Incorrect user credentials';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$no_login_msg = 'Incorrect given API password';
|
|
|
|
}
|
|
|
|
} else {
|
2019-10-22 20:48:45 +02:00
|
|
|
$no_login_msg = 'IP '.$ipOrigin.' is not in ACL list';
|
2011-02-14 17:56:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($correctLogin) {
|
2019-01-30 16:18:44 +01:00
|
|
|
if (($op !== 'get') && ($op !== 'set') && ($op !== 'help')) {
|
|
|
|
returnError('no_set_no_get_no_help', $returnType);
|
|
|
|
} else {
|
|
|
|
$function_name = '';
|
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
// Check if is an extension function and get the function name.
|
2019-01-30 16:18:44 +01:00
|
|
|
if ($op2 == 'extension') {
|
2019-10-22 20:48:45 +02:00
|
|
|
$extension_api_url = $config['homedir'].'/'.EXTENSIONS_DIR.'/'.$ext_name.'/'.$ext_name.'.api.php';
|
|
|
|
// The extension API file must exist and the extension must be
|
|
|
|
// enabled.
|
|
|
|
if (file_exists($extension_api_url)
|
|
|
|
&& !in_array($ext_name, extensions_get_disabled_extensions())
|
|
|
|
) {
|
2019-01-30 16:18:44 +01:00
|
|
|
include_once $extension_api_url;
|
|
|
|
$function_name = 'apiextension_'.$op.'_'.$ext_function;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$function_name = 'api_'.$op.'_'.$op2;
|
2019-04-16 16:10:25 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
if ($op == 'set' && $id) {
|
|
|
|
switch ($op2) {
|
|
|
|
case 'update_agent':
|
|
|
|
case 'add_module_in_conf':
|
|
|
|
case 'update_module_in_conf':
|
|
|
|
case 'delete_module_in_conf':
|
2019-10-22 20:48:45 +02:00
|
|
|
$agent = agents_locate_agent($id);
|
|
|
|
if ($agent !== false) {
|
|
|
|
$id_os = $agent['id_os'];
|
|
|
|
if ($id_os == 100) {
|
|
|
|
returnError(
|
|
|
|
'not_allowed_operation_cluster',
|
|
|
|
$returnType
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'create_network_module':
|
|
|
|
case 'create_plugin_module':
|
|
|
|
case 'create_data_module':
|
|
|
|
case 'create_synthetic_module':
|
|
|
|
case 'create_snmp_module':
|
|
|
|
case 'delete_module':
|
|
|
|
case 'delete_agent':
|
2019-10-22 20:48:45 +02:00
|
|
|
$agent = agents_locate_agent($id);
|
|
|
|
if ($agent !== false) {
|
|
|
|
$id_os = $agent['id_os'];
|
|
|
|
if ($id_os == 100) {
|
|
|
|
returnError(
|
|
|
|
'not_allowed_operation_cluster',
|
|
|
|
$returnType
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'update_network_module':
|
|
|
|
case 'update_plugin_module':
|
|
|
|
case 'update_data_module':
|
|
|
|
case 'update_snmp_module':
|
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
$id_os = db_get_value_sql(
|
|
|
|
sprintf(
|
|
|
|
'SELECT id_os
|
|
|
|
FROM tagente
|
|
|
|
WHERE id_agente = (
|
|
|
|
SELECT id_agente
|
|
|
|
FROM tagente_modulo
|
|
|
|
WHERE id_agente_modulo = %d
|
|
|
|
)',
|
|
|
|
$id
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2019-04-15 15:51:01 +02:00
|
|
|
if ($id_os == 100) {
|
2019-10-22 20:48:45 +02:00
|
|
|
returnError(
|
|
|
|
'not_allowed_operation_cluster',
|
|
|
|
$returnType
|
|
|
|
);
|
2019-01-30 16:18:44 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2019-04-24 12:01:04 +02:00
|
|
|
case 'delete_user_permission':
|
2019-04-16 16:06:17 +02:00
|
|
|
if ($user_db === '') {
|
2019-10-22 20:48:45 +02:00
|
|
|
returnError(
|
|
|
|
__('User or group not specified'),
|
|
|
|
__('User, group not specified')
|
|
|
|
);
|
2019-04-16 16:06:17 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
$id_os = api_set_delete_user_profiles(
|
|
|
|
$thrash1,
|
|
|
|
$thrash2,
|
|
|
|
$other,
|
|
|
|
$returnType
|
|
|
|
);
|
2019-04-16 16:06:17 +02:00
|
|
|
|
|
|
|
if ($id_os != 100) {
|
|
|
|
return;
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2019-04-16 09:24:11 +02:00
|
|
|
if ($id_os == false) {
|
2019-10-22 20:48:45 +02:00
|
|
|
returnError(
|
|
|
|
'not_allowed_operation_cluster',
|
|
|
|
$returnType
|
|
|
|
);
|
2019-03-25 17:59:12 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'add_permission_user_to_group':
|
2019-10-22 20:48:45 +02:00
|
|
|
if ($user_db == null
|
|
|
|
|| $group_db == null
|
|
|
|
|| $id_up == null
|
|
|
|
) {
|
|
|
|
returnError(
|
|
|
|
__('User, group or profile not specified'),
|
|
|
|
__('User, group or profile status not specified')
|
|
|
|
);
|
2019-04-16 16:06:17 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
$id_os = api_set_add_permission_user_to_group(
|
|
|
|
$thrash1,
|
|
|
|
$thrash2,
|
|
|
|
$other,
|
|
|
|
$returnType
|
|
|
|
);
|
2019-04-16 16:06:17 +02:00
|
|
|
|
|
|
|
if ($id_os != 100) {
|
|
|
|
return;
|
|
|
|
}
|
2019-03-25 17:59:12 +01:00
|
|
|
|
2019-04-16 09:24:11 +02:00
|
|
|
if ($id_os == false) {
|
2019-10-22 20:48:45 +02:00
|
|
|
returnError(
|
|
|
|
'not_allowed_operation_cluster',
|
|
|
|
$returnType
|
|
|
|
);
|
2019-03-25 17:59:12 +01:00
|
|
|
return false;
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2020-06-12 14:11:41 +02:00
|
|
|
case 'event':
|
|
|
|
// Preventive check for users if not available write events
|
|
|
|
if (! check_acl($config['id_user'], $event['id_grupo'], 'EW')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2019-03-25 17:59:12 +01:00
|
|
|
default:
|
2019-10-22 20:48:45 +02:00
|
|
|
// Ignore.
|
|
|
|
break;
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
// Check if the function exists.
|
2019-01-30 16:18:44 +01:00
|
|
|
if (function_exists($function_name)) {
|
|
|
|
if (!DEBUG) {
|
|
|
|
error_reporting(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (VERBOSE) {
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
}
|
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
call_user_func(
|
|
|
|
$function_name,
|
|
|
|
$id,
|
|
|
|
$id2,
|
|
|
|
$other,
|
|
|
|
$returnType,
|
|
|
|
$user_in_db
|
|
|
|
);
|
2019-01-30 16:18:44 +01:00
|
|
|
} else {
|
|
|
|
returnError('no_exist_operation', $returnType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2019-10-22 20:48:45 +02:00
|
|
|
/*
|
|
|
|
* //TODO: Implement a new switch in config to enable / disable
|
|
|
|
* ACL auth failure: if enabled and have lots of traffic can produce
|
|
|
|
* millions of records and a considerable OVERHEAD in the system :(
|
|
|
|
* db_pandora_audit("API access Failed", $no_login_msg, $user, $ipOrigin);
|
|
|
|
*/
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
sleep(15);
|
|
|
|
|
2019-10-22 20:48:45 +02:00
|
|
|
// Protection on DoS attacks.
|
2019-01-30 16:18:44 +01:00
|
|
|
echo 'auth error';
|
2009-10-26 17:35:34 +01:00
|
|
|
}
|
2019-10-21 21:09:03 +02:00
|
|
|
|
|
|
|
// Logout.
|
2019-10-22 20:48:45 +02:00
|
|
|
if (session_status() === PHP_SESSION_ACTIVE) {
|
|
|
|
$_SESSION = [];
|
|
|
|
// Could give a warning if no session file is created. Ignore.
|
|
|
|
@session_destroy();
|
|
|
|
header_remove('Set-Cookie');
|
|
|
|
setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/');
|
|
|
|
}
|