forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snmpagent_persist.php
214 lines (190 loc) · 6.49 KB
/
snmpagent_persist.php
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
203
204
205
206
207
208
209
210
211
212
213
#!/usr/bin/php
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2016 The Cacti Group |
| |
| 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 snmpagent 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDTool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
/* do NOT run this script through a web browser */
if (!isset($_SERVER['argv'][0]) || isset($_SERVER['REQUEST_METHOD']) || isset($_SERVER['REMOTE_ADDR'])) {
die('<br><strong>This script is only meant to run at the command line.</strong>');
}
/* we are not talking to the browser */
$no_http_headers = true;
/* let's report all errors */
error_reporting(E_ALL);
/* allow the script to hang around waiting for connections. */
set_time_limit(0);
chdir(dirname(__FILE__));
include_once('./include/global.php');
/* translate well-known textual conventions and SNMP base types to net-snmp */
$smi_base_datatypes = array(
'integer' => 'INTEGER',
'integer32' => 'Integer32',
'unsigned32' => 'Unsigned32',
'gauge' => 'Gauge',
'gauge32' => 'Gauge32',
'counter' => 'Counter',
'counter32' => 'Counter32',
'counter64' => 'Counter64',
'timeticks' => 'TimeTicks',
'octect string' => 'OCTET STRING',
'opaque' => 'Opaque',
'object identifier' => 'OBJECT IDENTIFIER',
'ipaddress' => 'IpAddress',
'networkaddress' => 'IpAddress',
'bits' => 'OCTET STRING',
'displaystring' => 'STRING',
'physaddress' => 'OCTET STRING',
'macaddress' => 'OCTET STRING',
'truthvalue' => 'INTEGER',
'testandincr' => 'Integer32',
'autonomoustype' => 'OBJECT IDENTIFIER',
'variablepointer' => 'OBJECT IDENTIFIER',
'rowpointer' => 'OBJECT IDENTIFIER',
'rowstatus' => 'INTEGER',
'timestamp' => 'TimeTicks',
'timeinterval' => 'Integer32',
'dateandtime' => 'STRING',
'storagetype' => 'INTEGER',
'tdomain' => 'OBJECT IDENTIFIER',
'taddress' => 'OCTET STRING'
);
$data = false;
$eol = "\n";
$cache = array();
$cache_keys = array();
$cache_last_refresh = 0;
while(1) {
cache_status();
$input = trim(fgets(STDIN));
switch($input) {
case '':
exit(0);
case 'PING':
fwrite(STDOUT, 'PONG' . $eol);
break;
case 'get':
$oid = trim(fgets(STDIN));
if($data = cache_read($oid)) {
fwrite(STDOUT, $data['oid'] . $eol . (isset($smi_base_datatypes[$data['type']]) ? $smi_base_datatypes[$data['type']] : 'INTEGER') . $eol . $data['value'] . $eol);
}else {
fwrite(STDOUT, 'NONE' . $eol);
}
break;
case 'getnext':
$oid = trim(fgets(STDIN));
if($data = cache_read_next($oid)) {
fwrite(STDOUT, $data['oid'] . $eol . (isset($smi_base_datatypes[$data['type']]) ? $smi_base_datatypes[$data['type']] : 'INTEGER') . $eol . $data['value'] . $eol);
}else {
fwrite(STDOUT, 'NONE' . $eol);
}
break;
case 'debug':
fwrite(STDOUT, print_r($cache, TRUE));
break;
case 'shutdown':
fwrite(STDOUT, 'BYE' . $eol);
exit(0);
}
}
function cache_read($object) {
global $cache;
if(isset($cache[$object])) {
if( $cache[$object]['otype'] == 'DATA' ) {
if( $cache[$object]['max-access'] == 'read-only' || $cache[$object]['max-access'] == 'read-write' ) {
return $cache[$object];
}
return $cache[$object];
}else {
return false;
}
}
}
function cache_read_next($object) {
global $cache, $cache_keys;
if(isset($cache[$object])) {
$rest = array_slice($cache_keys, array_search($object, $cache_keys)+1, 10);
foreach($rest as $option) {
if($cache[$option]['otype'] == 'DATA') {
if( $cache[$option]['max-access'] == 'read-only' || $cache[$option]['max-access'] == 'read-write' ) {
return $cache[$option];
}
}
}
return false;
}else {
return cache_read($object . '.0');
}
}
function cache_status() {
global $cache_last_refresh;
if(time()-$cache_last_refresh >= 60 ) {
cache_refresh();
}
}
function cache_refresh() {
global $cache, $cache_keys, $cache_last_refresh;
if(!cache_db_connection()){
/* unable to read data */
if( !cache_db_reconnect() ) {
/* unabled to establish a new connection to the Cacti DB */
$cache = array();
$cache_keys = array();
$cache_last_refresh = time();
return;
}
}
$data = db_fetch_assoc('SELECT `oid`, LOWER(type) AS type, `otype`, `max-access`, `value` FROM snmpagent_cache');
if($data && sizeof($data)>0) {
$oids = array();
$objects = array();
foreach($data as $object) {
$oids[] = $object['oid'];
$object_data[] = $object;
}
natsort($oids);
foreach($oids as $key => $oid) {
$objects[$oid]= $object_data[$key];
}
$cache = $objects;
$cache_keys = array_keys($cache);
}else {
$cache = array();
$cache_keys = array();
}
$cache_last_refresh = time();
}
function cache_db_connection(){
global $database_sessions;
if($database_sessions) {
$cacti_version = db_fetch_cell('SELECT cacti FROM version');
return is_null($cacti_version) ? FALSE : TRUE;
}
return FALSE;
}
function cache_db_reconnect(){
chdir(dirname(__FILE__));
/* include custom config again - probably settings have been changed in the meantime */
include_once('./include/config.php');
/* connect to the database server */
$cnn_id = db_connect_real($database_hostname, $database_username, $database_password, $database_default, $database_type, $database_port, $database_ssl);
return ($cnn_id) ? TRUE : FALSE;
}