This file is indexed.

/usr/share/zabbix/api/rpc/class.cjsonrpc.php is in zabbix-frontend-php 1:1.8.11-1.

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
<?php
/*
** ZABBIX
** Copyright (C) 2000-2009 SIA Zabbix
**
** 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., 675 Mass Ave, Cambridge, MA 02139, USA.
**/
?>
<?php
// @author: Artem Suharev <aly@zabbix.com>

class CJSONrpc{
public $json;


private $version='2.0';
private $multicall;
private $error;
private $response;
private $error_list;
private $zbx2json_error_list;

	public function __construct(){
		$this->json = new CJSON();

		$this->error = false;
		$this->response = array();
		$this->multicall = false;
		$this->initErrors();

	}

	public function process($json_call){
		$json_decoded = $this->json->decode($json_call, true);
		if(!$json_decoded){
			$this->json_error(null, '-32700', null ,true);
			return;
		}

		if(!isset($json_decoded['jsonrpc']))
			$this->multicall = true;
		else
			$json_decoded = array($json_decoded);

		foreach($json_decoded as $num => $call){
			$this->execute($call);
		}
	}

	public function validate($call){
		if(!isset($call['jsonrpc'])){
			$this->json_error($call['id'], '-32600', 'JSON-rpc version is not specified.',true);
			return false;
		}

		if($call['jsonrpc'] != $this->version){
			$this->json_error($call['id'], '-32600', 'Expacting JSON-rpc version 2.0, '.$call['jsonrpc'].' is given .',true);
			return false;
		}

		if(!isset($call['method'])){
			$this->json_error($call['id'], '-32600', 'JSON-rpc method is not defined.');
			return false;
		}

		if(isset($call['params']) && !is_array($call['params'])){
			$this->json_error($call['id'], '-32602', 'JSON-rpc params is not an Array.');
			return false;
		}

	return true;
	}

	public function result($encoded=true){
		if(!$encoded) return $this->response;
		else return $this->json->encode($this->response);
	}

	public function is_error(){
		return $this->error;
	}

// NOT Public methods
//------------------------------------------------------------------------------

	private function execute($call){
		if(!isset($call['id'])) $call['id'] = null;  // Notification

		if($this->validate($call)){
			$method = $call['method'];
			$params = isset($call['params'])?$call['params']:null;
			$auth = isset($call['auth'])?$call['auth']:null;

			$result = czbxrpc::call($method, $params, $auth);
			if(isset($result['result'])){
				$this->json_success($call['id'], $result['result']);
			}
			else{
				$result['data'] = isset($result['data'])?$result['data']:null;
				$errno = $this->zbx2json_error($result['error']);
				$this->json_error($call['id'], $errno, $result['data']);
			}
		}
	}

	private function json_success($id, $result){
		if(is_null($id)) return;	// Notifications MUST NOT be answered

		$formed_resp = array('jsonrpc'=>'2.0', 'result'=> $result, 'id'=>$id);

		if($this->multicall)
			$this->response[] = $formed_resp;
		else
			$this->response = $formed_resp;
	}

	private function json_error($id, $errno, $data=null, $force_err=false){
// Notifications MUST NOT be answered, but error MUST be generated on JSON parse error
		if(is_null($id) && !$force_err) return;

		$this->error = true;

		if(!isset($this->error_list[$errno])){
			$data = 'JSON-rpc error generation failed. No such error: '.$errno;
			$errno = '-32400';
		}

		$error = $this->error_list[$errno];

		if(!is_null($data))
			$error['data'] = $data;

		$formed_error = array('jsonrpc'=>'2.0', 'error'=> $error, 'id'=>$id);

		if($this->multicall)
			$this->response[] = $formed_error;
		else
			$this->response = $formed_error;
	}

	private function initErrors(){
		$this->error_list = array(
			'-32700' => array(
					'code' => -32700,
					'message'=>'Parse error',
					'data' => 'Invalid JSON. An error occurred on the server while parsing the JSON text.'),
			'-32600' => array(
					'code' => -32600,
					'message'=>'Invalid Request.',
					'data' => 'The received JSON is not a valid JSON-RPC Request.'),
			'-32601' => array(
					'code' => -32601,
					'message'=>'Method not found.',
					'data' => 'The requested remote-procedure does not exist / is not available'),
			'-32602' => array(
					'code' => -32602,
					'message'=>'Invalid params.',
					'data' => 'Invalid method parameters.'),
			'-32603' => array(
					'code' => -32603,
					'message'=>'Internal error.',
					'data' => 'Internal JSON-RPC error.'),
			'-32500' => array(
					'code' => -32500,
					'message'=>'Application error.',
					'data' => 'No details'),
			'-32400' => array(
					'code' => -32400,
					'message'=>'System error.',
					'data' => 'No details'),
			'-32300' => array(
					'code' => -32300,
					'message'=>'Transport error.',
					'data' => 'No details'));

		$this->zbx2json_errors = array(
			'-32601' => array(ZBX_API_ERROR_NO_METHOD),
			'-32602' => array(ZBX_API_ERROR_PARAMETERS, ZBX_API_ERROR_NO_AUTH),
			'-32500' => array(ZBX_API_ERROR_PERMISSIONS, ZBX_API_ERROR_INTERNAL)
		);
	}

	private function zbx2json_error($error){
		foreach($this->zbx2json_errors as $json_error => $zbx_errors){
			if(str_in_array($error, $zbx_errors))
				return $json_error;
		}
	}
}
?>