forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poller_maintenance.php
executable file
·832 lines (667 loc) · 22.9 KB
/
poller_maintenance.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
#!/usr/bin/env php
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2023 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 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. |
+-------------------------------------------------------------------------+
| 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/ |
+-------------------------------------------------------------------------+
*/
require(__DIR__ . '/include/cli_check.php');
require_once(CACTI_PATH_LIBRARY . '/api_data_source.php');
require_once(CACTI_PATH_LIBRARY . '/api_device.php');
require_once(CACTI_PATH_LIBRARY . '/api_graph.php');
include_once(CACTI_PATH_LIBRARY . '/poller.php');
require_once(CACTI_PATH_LIBRARY . '/rrd.php');
require_once(CACTI_PATH_LIBRARY . '/utility.php');
/* let PHP run just as long as it has to */
ini_set('max_execution_time', '0');
error_reporting(E_ALL);
$dir = __DIR__;
chdir($dir);
global $config, $database_default, $archived, $purged, $disable_log_rotation, $poller_start;
/* record the start time */
$poller_start = microtime(true);
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
$debug = false;
$force = false;
$archived = 0;
$purged = 0;
$start = microtime(true);
if (cacti_sizeof($parms)) {
foreach ($parms as $parameter) {
if (strpos($parameter, '=')) {
list($arg, $value) = explode('=', $parameter);
} else {
$arg = $parameter;
$value = '';
}
switch ($arg) {
case '--version':
case '-V':
case '-v':
display_version();
exit(0);
case '--help':
case '-H':
case '-h':
display_help();
exit(0);
case '--force':
$force = true;
break;
case '--debug':
$debug = true;
break;
default:
print 'ERROR: Invalid Parameter ' . $parameter . "\n\n";
display_help();
exit(1);
}
}
}
maint_debug('Checking for Purge Actions');
/* silently end if the registered process is still running, or process table missing */
if (!register_process_start('maintenance', 'master', $config['poller_id'], read_config_option('maintenance_timeout'))) {
cacti_log('INFO: Another maintenance session is already running', false, 'MAINTENANCE', POLLER_VERBOSITY_LOW);
exit(0);
}
if ($config['poller_id'] == 1) {
rrdfile_purge($force);
authcache_purge();
secpass_check_expired();
reindex_devices();
}
// Check the realtime cache and poller
realtime_purge_cache();
// Remove deleted devices
api_device_purge_deleted_devices();
// Rotate Cacti Logs
logrotate_check($force);
// Remove deleted devices
remove_aged_row_cache();
// Remove expired host value cache
purge_host_value_cache();
if ($config['poller_id'] > 1) {
api_plugin_hook('poller_remote_maint');
}
phpversion_check($force);
$end = microtime(true);
cacti_log(sprintf('MAINT STATS: Time:%0.2f', $end - $start), false, 'SYSTEM');
unregister_process('maintenance', 'master', $config['poller_id']);
exit(0);
function purge_host_value_cache() {
if (db_table_exists('host_value_cache')) {
db_execute('DELETE FROM host_value_cache
WHERE time_to_live > 0
AND UNIX_TIMESTAMP() - UNIX_TIMESTAMP(last_updated) > time_to_live');
}
}
function reindex_devices() {
global $config;
$schedule = read_config_option('automatic_reindex');
// 0 - Disabled
// 1 - Daily at Midnight
// 2 - Weekly on Sunday
// 3 - Monthly on Sunday
$command_string = cacti_escapeshellcmd(read_config_option('path_php_binary'));
$extra_args = CACTI_PATH_CLI . '/poller_reindex_hosts.php --id=all --qid=all';
if ($schedule == 0) {
return;
}
$last_run = read_config_option('periodic_reindex_lastrun');
$now = time();
if (empty($last_run)) {
set_config_option('periodic_reindex_lastrun', time());
return;
} else {
if ($schedule == 1) {
if (date('z', $now) != date('z', $last_run)) {
set_config_option('periodic_reindex_lastrun', $now);
exec_background($command_string, $extra_args);
}
} elseif ($schedule == 2) {
if (date('z', $now) != date('z', $last_run) && date('w', $now) == 0) {
exec_background($command_string, $extra_args);
}
} elseif ($schedule == 3) {
if (date('z', $now) != date('z', $last_run)) {
if (date('w', $now) == 0 && date('n', $now) != date('n', $last_run)) {
exec_background($command_string, $extra_args);
}
}
}
}
}
function remove_aged_row_cache() {
$classes = array_rekey(
db_fetch_assoc('SELECT REPLACE(name, "time_last_change_", "") AS name, value
FROM settings
WHERE name LIKE "time_last_change%"'),
'name', 'value'
);
if (cacti_sizeof($classes)) {
foreach ($classes as $name => $ts) {
db_execute_prepared('DELETE FROM user_auth_row_cache
WHERE class = ? AND UNIX_TIMESTAMP(time) < ?',
array($name, $ts));
}
}
}
function logrotate_check($force) {
global $disable_log_rotation;
// Check whether the cacti log. Rotations takes place around midnight
if (isset($disable_log_rotation) && $disable_log_rotation == true) {
// Skip log rotation as it's handled by logrotate.d
} elseif (read_config_option('logrotate_enabled') == 'on') {
$frequency = read_config_option('logrotate_frequency');
if (empty($frequency)) {
$frequency = 1;
}
$last = read_config_option('logrotate_lastrun');
$now = time();
if (empty($last)) {
$last = time();
set_config_option('logrotate_lastrun', $last);
}
$date_now = new DateTime();
$date_now->setTimestamp($now);
// Take the last date/time, set the time to 59 seconds past midnight
// then remove one minute to make it the previous evening
$date_orig = new DateTime();
$date_orig->setTimestamp($last);
$date_last = new DateTime();
$date_last->setTimestamp($last)->setTime(0,0,59)->modify('-1 minute');
// Make sure we clone the last date, or we end up modifying the same object!
$date_next = clone $date_last;
$date_next->modify('+'.$frequency.'day');
cacti_log('Cacti Log Rotation - TIMECHECK Ran: ' . $date_orig->format('Y-m-d H:i:s')
. ', Now: ' . $date_now->format('Y-m-d H:i:s')
. ', Next: ' . $date_next->format('Y-m-d H:i:s'), true, 'MAINT', POLLER_VERBOSITY_HIGH);
if ($date_next < $date_now || $force) {
logrotate_rotatenow();
}
}
}
function authcache_purge() {
/* removing security tokens older than 90 days */
if (read_config_option('auth_cache_enabled') == 'on') {
db_execute_prepared('DELETE FROM user_auth_cache
WHERE last_update < ?',
array(date('Y-m-d H:i:s', time() - (86400 * 90))));
} else {
db_execute('TRUNCATE TABLE user_auth_cache');
}
}
function rrdfile_purge($force) {
global $archived, $purged, $poller_start;
/* are my tables already present? */
$purge = db_fetch_cell('SELECT count(*)
FROM data_source_purge_action');
/* if the table that holds the actions is present, work on it */
if ($purge) {
maint_debug("Purging Required - Files Found $purge");
/* take the purge in steps */
while (true) {
maint_debug('Grabbing 1000 RRDfiles to Remove');
$file_array = db_fetch_assoc('SELECT id, name, local_data_id, action
FROM data_source_purge_action
ORDER BY name
LIMIT 1000');
if (cacti_sizeof($file_array) == 0) {
break;
}
if (cacti_sizeof($file_array) || $force) {
/* there's something to do for us now */
remove_files($file_array);
if ($force) {
cleanup_ds_and_graphs();
}
}
}
/* record the start time */
$poller_end = microtime(true);
$string = sprintf('RRDMAINT STATS: Time:%4.4f Purged:%s Archived:%s', ($poller_end - $poller_start), $purged, $archived);
cacti_log($string, true, 'SYSTEM');
}
}
/** realtime_purge_cache() - This function will purge files in the realtime directory
* that are older than 2 hours without changes */
function realtime_purge_cache() {
/* remove all Realtime files over than 2 hours */
if (read_config_option('realtime_cache_path') != '') {
$cache_path = read_config_option('realtime_cache_path');
if (is_dir($cache_path) && is_writeable($cache_path)) {
foreach (new DirectoryIterator($cache_path) as $fileInfo) {
if ($fileInfo->isDot()) {
continue;
}
// only remove .png and .rrd files
if ((substr($fileInfo->getFilename(), -4, 4) == '.png') || (substr($fileInfo->getFilename(), -4, 4) == '.rrd')) {
if ((time() - $fileInfo->getMTime()) >= 7200) {
unlink($fileInfo->getRealPath());
}
}
}
}
}
db_execute('DELETE FROM poller_output_realtime WHERE time < FROM_UNIXTIME(UNIX_TIMESTAMP()-300)');
}
/*
* logrotate_rotatenow
* Rotates the cacti log
*/
function logrotate_rotatenow() {
global $config;
$poller_start = microtime(true);
$logs = array();
$log = read_config_option('path_cactilog');
if (empty($log)) {
$log = CACTI_PATH_LOG . '/cacti.log';
}
$logs['Cacti'] = $log;
$log = read_config_option('path_stderrlog');
if (!empty($log)) {
$logs['Cacti StdErr'] = $log;
}
$run_time = time();
set_config_option('logrotate_lastrun', $run_time);
$date = new DateTime();
$date->setTimestamp($run_time)->modify('-1day');
$rotated = 0;
$cleaned = 0;
$days = read_config_option('logrotate_retain');
if ($days == '' || $days < 0) {
$days = 7;
}
if ($days > 365) {
$days = 365;
}
foreach ($logs as $name => $log) {
$rotated += logrotate_file_rotate($name, $log, $date);
$cleaned += logrotate_file_clean($name, $log, $date, $days);
}
$cleaned += logrotate_file_clean($name, $log, $date, $days);
/* record the start time */
$poller_end = microtime(true);
$string = sprintf('LOGMAINT STATS: Time:%4.4f, Rotated:%d, Removed:%d, Days Retained:%d', ($poller_end - $poller_start), $rotated, $cleaned, $days);
cacti_log($string, true, 'SYSTEM');
}
/* logrotate_file_rotate()
* rotates the specified log file, appending date given
*/
function logrotate_file_rotate($name, $log, $date) {
if (empty($log)) {
return 0;
}
clearstatcache();
if (!file_exists($log)) {
cacti_log('Cacti Log Rotation - Skipped missing ' . $name . ' Log : ' . $log, true, 'MAINT');
return 0;
}
if (is_writable(dirname($log) . '/') && is_writable($log)) {
$perms = octdec(substr(decoct(fileperms($log)), 2));
$owner = fileowner($log);
$group = filegroup($log);
if ($owner !== false) {
$ext = $date->format('Ymd');
if (file_exists($log . '-' . $ext)) {
$ext_inc = 1;
while (file_exists($log . '-' . $ext . '-' . $ext_inc) && $ext_inc < 99) {
$ext_inc++;
}
$ext = $ext . '-' . $ext_inc;
}
if (rename($log, $log . '-' . $ext)) {
touch($log);
chown($log, $owner);
chgrp($log, $group);
chmod($log, $perms);
cacti_log('Cacti Log Rotation - Created ' . $name . ' Log : ' . basename($log) . '-' . $ext, true, 'MAINT');
return 1;
} else {
cacti_log('Cacti Log Rotation - ERROR: Could not rename ' . $name . ' Log "' . basename($log) . '" to "' . basename($log) . '-' . $ext . '"', true, 'MAINT');
}
} else {
cacti_log('Cacti Log Rotation - ERROR: Permissions issue. Please check your ' . $name . ' Log directory : ' . basename($log), true, 'MAINT');
}
} else {
cacti_log('Cacti Log Rotation - ERROR: Permissions issue. Please check your ' . $name . ' Log as directory or file are not writable : ' . $log, true, 'MAINT');
}
return 0;
}
/*
* logrotate_file_clean
* Cleans up any old log files that should be removed
*/
function logrotate_file_clean($name, $log, $date, $rotation) {
global $config;
if (empty($log)) {
return false;
}
if ($rotation <= 0) {
return false;
}
$baselogdir = dirname($log) . '/';
$baselogname = basename($log);
clearstatcache();
$dir = scandir($baselogdir);
if (cacti_sizeof($dir)) {
$date_log = clone $date;
$date_log->modify('-'.$rotation.'day');
$e = $date_log->format('Ymd');
cacti_log('Cacti Log Rotation - Purging all ' . $name . ' logs before '. $e, true, 'MAINT');
foreach ($dir as $d) {
$fileparts = explode('-', $d);
$matches = false;
if (strpos($d, $baselogname) !== false) {
if ($fileparts > 1) {
foreach ($fileparts as $p) {
// Is it in the form YYYYMMDD?
if (is_numeric($p) && strlen($p) == 8) {
$matches = true;
if ($p < $e) {
if (is_writable($baselogdir . $d)) {
@unlink($baselogdir . $d);
cacti_log('Cacti Log Rotation - Purging ' . $name . ' Log : ' . $d, true, 'MAINT');
} else {
cacti_log('Cacti Log Rotation - ERROR: Can not purge ' . $name . ' Log : ' . $d, true, 'MAINT');
}
} else {
cacti_log('Cacti Log Rotation - NOTE: Not expired, keeping ' . $name . ' Log : ' . $d, true, 'MAINT', POLLER_VERBOSITY_HIGH);
}
}
}
}
}
if ($matches) {
cacti_log('Cacti Log Rotation - NOTE: File not in expected naming format, ignoring ' . $name . ' Log : ' . $d, true, 'MAINT', POLLER_VERBOSITY_DEBUG);
}
}
}
clearstatcache();
}
/*
* secpass_check_expired
* Checks user accounts to determine if the accounts and/or their passwords should be expired
*/
function secpass_check_expired() {
maint_debug('Checking for Account / Password expiration');
// Expire Old Accounts
$e = read_config_option('secpass_expireaccount');
if ($e > 0 && is_numeric($e)) {
$t = time();
db_execute_prepared("UPDATE user_auth
SET lastlogin = ?
WHERE lastlogin = -1
AND realm = 0
AND enabled = 'on'",
array($t));
$t = $t - (intval($e) * 86400);
db_execute_prepared("UPDATE user_auth
SET enabled = ''
WHERE realm = 0
AND enabled = 'on'
AND lastlogin < ?
AND id > 1",
array($t));
}
$e = read_config_option('secpass_expirepass');
if ($e > 0 && is_numeric($e)) {
$t = time();
db_execute_prepared("UPDATE user_auth
SET lastchange = ?
WHERE lastchange = -1
AND realm = 0
AND enabled = 'on'",
array($t));
$t = $t - (intval($e) * 86400);
db_execute_prepared("UPDATE user_auth
SET must_change_password = 'on'
WHERE realm = 0
AND enabled = 'on'
AND lastchange < ?",
array($t));
}
}
/*
* remove_files
* remove all unwanted files; the list is given by table data_source_purge_action
*/
function remove_files($file_array) {
global $config, $debug, $archived, $purged;
maint_debug('RRDClean is now running on ' . cacti_sizeof($file_array) . ' items');
$rra_path = CACTI_PATH_RRA;
if (read_config_option('storage_location')) {
$rrdtool_pipe = rrd_init();
rrdtool_execute('setcnn timeout off', false, RRDTOOL_OUTPUT_NULL, $rrdtool_pipe, $logopt = 'POLLER');
} else {
/* let's prepare the archive directory */
$rrd_archive = read_config_option('rrd_archive', true);
if ($rrd_archive == '') {
$rrd_archive = $rra_path . '/archive';
}
rrdclean_create_path($rrd_archive);
}
/* now scan the files */
foreach ($file_array as $file) {
$source_file = $rra_path . '/' . $file['name'];
if (read_config_option('storage_location') == 0) {
switch ($file['action']) {
case '1':
if (unlink($source_file)) {
maint_debug('Deleted: ' . $file['name']);
} else {
cacti_log($file['name'] . " ERROR: RRDfile Maintenance unable to delete from $rra_path!", true, 'MAINT');
}
$purged++;
break;
case '3':
$target_file = $rrd_archive . '/' . $file['name'];
$target_dir = dirname($target_file);
if (!is_dir($target_dir)) {
rrdclean_create_path($target_dir);
}
if (rename($source_file, $target_file)) {
maint_debug('Moved: ' . $file['name'] . ' to: ' . $rrd_archive);
} else {
cacti_log($file['name'] . " ERROR: RRDfile Maintenance unable to move to $rrd_archive!", true, 'MAINT');
}
$archived++;
break;
}
} else {
switch($file['action']) {
case '1':
if (rrdtool_execute('unlink ' . $source_file, false, RRDTOOL_OUTPUT_BOOLEAN, $rrdtool_pipe, $logopt = 'MAINT')) {
maint_debug('Deleted: ' . $file['name']);
} else {
cacti_log($file['name'] . 'ERROR: RRDfile Maintenance unable to delete from RRDproxy!', true, 'MAINT');
}
$purged++;
break;
case '3':
if (rrdtool_execute('archive ' . $source_file, false, RRDTOOL_OUTPUT_BOOLEAN, $rrdtool_pipe, $logopt = 'MAINT')) {
maint_debug('Moved: ' . $file['name'] . ' to: RRDproxy Archive');
} else {
cacti_log($file['name'] . 'ERROR: RRDfile Maintenance unable to move to RRDproxy Archive!', true, 'MAINT');
}
$archived++;
break;
}
}
/* drop from data_source_purge_action table */
db_execute_prepared('DELETE FROM `data_source_purge_action`
WHERE name = ?',
array($file['name']));
maint_debug('Delete from data_source_purge_action: ' . $file['name']);
//fetch all local_graph_id's according to this data source
$lgis = db_fetch_assoc_prepared('SELECT DISTINCT gl.id
FROM graph_local AS gl
INNER JOIN graph_templates_item AS gti
ON gl.id = gti.local_graph_id
INNER JOIN data_template_rrd AS dtr
ON dtr.id=gti.task_item_id
INNER JOIN data_local AS dl
ON dtr.local_data_id=dl.id
WHERE (local_data_id=?)',
array($file['local_data_id']));
if (cacti_sizeof($lgis)) {
/* anything found? */
maint_debug('Processing ' . cacti_sizeof($lgis) . ' Graphs for data source id: ' . $file['local_data_id']);
/* get them all */
foreach ($lgis as $item) {
$remove_lgis[] = $item['id'];
maint_debug('remove local_graph_id=' . $item['id']);
}
/* and remove them in a single run */
if (!empty($remove_lgis)) {
api_graph_remove_multi($remove_lgis);
}
}
/* remove related data source if any */
if ($file['local_data_id'] > 0) {
maint_debug('Removing Data Source: ' . $file['local_data_id']);
api_data_source_remove($file['local_data_id']);
}
}
if (read_config_option('storage_location')) {
rrd_close($rrdtool_pipe);
}
maint_debug('RRDClean has finished a purge pass of ' . cacti_sizeof($file_array) . ' items');
}
function rrdclean_create_path($path) {
global $config;
if (!is_dir($path)) {
if (mkdir($path, 0775)) {
if ($config['cacti_server_os'] != 'win32') {
$owner_id = fileowner(CACTI_PATH_RRA);
$group_id = filegroup(CACTI_PATH_RRA);
// NOTE: chown/chgrp fails for non-root users, checking their
// result is therefore irrelevant
@chown($path, $owner_id);
@chgrp($path, $group_id);
}
} else {
cacti_log("ERROR: RRDfile Maintenance unable to create directory '" . $path . "'", false, 'MAINT');
}
}
// if path existed, we can return true
return is_dir($path) && is_writable($path);
}
/*
* cleanup_ds_and_graphs - courtesy John Rembo
*/
function cleanup_ds_and_graphs() {
global $config;
$remove_ldis = array();
$remove_lgis = array();
maint_debug('RRDClean now cleans up all data sources and graphs');
//fetch all local_data_id's which have appropriate data-sources
$rrds = db_fetch_assoc("SELECT local_data_id, name_cache, data_source_path
FROM data_template_data
WHERE name_cache > ''");
//filter those whose rrd files doesn't exist
foreach ($rrds as $item) {
$ldi = $item['local_data_id'];
$name = $item['name_cache'];
$ds_pth = $item['data_source_path'];
$real_pth = str_replace('<path_rra>', CACTI_PATH_RRA, $ds_pth);
if (!file_exists($real_pth)) {
if (!in_array($ldi, $remove_ldis, true)) {
$remove_ldis[] = $ldi;
maint_debug("RRD file is missing for data source name: $name (local_data_id=$ldi)");
}
}
}
if (empty($remove_ldis)) {
maint_debug('No missing rrd files found');
return 0;
}
maint_debug('Processing Graphs');
//fetch all local_graph_id's according to filtered rrds
$lgis = db_fetch_assoc('SELECT DISTINCT gl.id
FROM graph_local AS gl
INNER JOIN graph_templates_item AS gti
ON gl.id=gti.local_graph_id
INNER JOIN data_template_rrd AS dtr
ON dtr.id=gti.task_item_id
INNER JOIN data_local AS dl
ON dtr.local_data_id=dl.id
WHERE (' . array_to_sql_or($remove_ldis, 'local_data_id') . ')');
foreach ($lgis as $item) {
$remove_lgis[] = $item['id'];
maint_debug('RRD file missing for local_graph_id=' . $item['id']);
}
if (!empty($remove_lgis)) {
maint_debug('removing graphs');
api_graph_remove_multi($remove_lgis);
}
maint_debug('removing data sources');
api_data_source_remove_multi($remove_ldis);
maint_debug('removed graphs:' . cacti_count($remove_lgis) . ' removed data-sources:' . cacti_count($remove_ldis));
}
function maint_debug($message) {
global $debug;
if ($debug) {
print trim($message) . "\n";
}
}
/* display_version - displays version information */
function display_version() {
$version = get_cacti_cli_version();
print "Cacti Maintenance Poller, Version $version, " . COPYRIGHT_YEARS . "\n";
}
/*
* display_help
* displays the usage of the function
*/
function display_help() {
display_version();
print "\nusage: poller_maintenance.php [--force] [--debug]\n\n";
print "Cacti's maintenance poller. This poller is responsible for executing periodic\n";
print "maintenance activities for Cacti including log rotation, deactivating accounts, etc.\n\n";
print "Optional:\n";
print " --force - Force immediate execution, e.g. for testing.\n";
print " --debug - Display verbose output during execution.\n\n";
}
function phpversion_check($force = false) {
$now = time();
$last = db_fetch_cell('select value from settings where name = "phpver_last"');
if (empty($last)) {
$last = $now - 86500;
}
$date_now = new DateTime();
$date_now->setTimestamp($now);
// Take the last date/time, set the time to 59 seconds past midnight
// then remove one minute to make it the previous evening
$date_orig = new DateTime();
$date_orig->setTimestamp($last);
$date_last = new DateTime();
$date_last->setTimestamp($last)->setTime(0,0,59)->modify('-1 minute');
// Make sure we clone the last date, or we end up modifying the same object!
$date_next = clone $date_last;
$date_next->modify('+1day');
$phpbad_ver = version_compare(PHP_VERSION,'7.4','<');
if ($phpbad_ver && ($date_next < $date_now || $force)) {
cacti_log('WARNING: PHP Version "' . PHP_VERSION .'"will not be supported by the develop branch in the future. If you cannot upgrade to PHP 7.1 or higher, please switch branches', false, 'CACTI');
db_execute_prepared('REPLACE INTO settings (name, value) VALUES ("phpver_last", ?)', array($now));
}
}