-
Notifications
You must be signed in to change notification settings - Fork 45
/
spine.c
1198 lines (990 loc) · 36 KB
/
spine.c
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
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
ex: set tabstop=4 shiftwidth=4 autoindent:
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU Lesser General Public |
| License as published by the Free Software Foundation; either |
| version 2.1 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 Lesser General Public License for more details. |
| |
| You should have received a copy of the GNU Lesser General Public |
| License along with this library; if not, write to the Free Software |
| Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 02110-1301, USA |
| |
+-------------------------------------------------------------------------+
| spine: a backend data gatherer for cacti |
+-------------------------------------------------------------------------+
| This poller would not have been possible without: |
| - Larry Adams (current development and enhancements) |
| - Rivo Nurges (rrd support, mysql poller cache, misc functions) |
| - RTG (core poller code, pthreads, snmp, autoconf examples) |
| - Brady Alleman/Doug Warner (threading ideas, implimentation details) |
+-------------------------------------------------------------------------+
| - Cacti - http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*
* COMMAND-LINE PARAMETERS
*
* -h | --help
* -v | --version
*
* Show a brief help listing, then exit.
*
* -C | --conf=F
*
* Provide the name of the Spine configuration file, which contains
* the parameters for connecting to the database. In the absence of
* this, it looks [WHERE?]
*
* -f | --first=ID
*
* Start polling with device <ID> (else starts at the beginning)
*
* -l | --last=ID
*
* Stop polling after device <ID> (else ends with the last one)
*
* -m | --mibs
*
* Collect all system mibs this pass
*
* -N | --mode=online|offline|recovery
*
* For remote pollers, the polling mode. The default is 'online'
*
* -H | --hostlist="hostid1,hostid2,hostid3,...,hostidn"
*
* Override the expected first host, last host behavior with a list of hostids.
*
* -O | --option=setting:value
*
* Override a DB-provided value from the settings table in the DB.
*
* -C | -conf=FILE
*
* Specify the location of the Spine configuration file.
*
* -R | --readonly
*
* This processing is readonly with respect to the database: it's
* meant only for developer testing.
*
* -S | --stdout
*
* All logging goes to the standard output
*
* -V | --verbosity=V
*
* Set the debug logging verbosity to <V>. Can be 1..5 or
* NONE/LOW/MEDIUM/HIGH/DEBUG (case insensitive).
*
* The First/Last device IDs are all relative to the "hosts" table in the
* Cacti database, and this mechanism allows us to split up the polling
* duties across multiple "spine" instances: each one gets a subset of
* the polling range.
*
* For compatibility with poller.php, we also accept the first and last
* device IDs as standalone parameters on the command line.
*/
#include "common.h"
#include "spine.h"
/* Global Variables */
int entries = 0;
int num_hosts = 0;
sem_t available_threads;
sem_t available_scripts;
double start_time;
double total_time;
config_t set;
php_t *php_processes = 0;
char config_paths[CONFIG_PATHS][BUFSIZE];
int *debug_devices;
pool_t *db_pool_local;
pool_t *db_pool_remote;
poller_thread_t** details = NULL;
static char *getarg(char *opt, char ***pargv);
static void display_help(int only_version);
void poller_push_data_to_main();
#ifdef HAVE_LCAP
/* This patch is adapted (copied) patch for ntpd from Jarno Huuskonen and
* Pekka Savola that was adapted (copied) from a patch by Chris Wings to drop
* root for xntpd.
*/
void drop_root(uid_t server_uid, gid_t server_gid) {
cap_t caps;
if (prctl(PR_SET_KEEPCAPS, 1)) {
SPINE_LOG_HIGH(("prctl(PR_SET_KEEPCAPS, 1) failed"));
exit(1);
}
if (setgroups(0, NULL) == -1) {
SPINE_LOG_HIGH(("setgroups failed."));
exit(1);
}
if (setegid(server_gid) == -1 || seteuid(server_uid) == -1) {
SPINE_LOG_HIGH(("setegid/seteuid to uid=%d/gid=%d failed.", server_uid, server_gid));
exit(1);
}
caps = cap_from_text("cap_net_raw=eip");
if (caps == NULL) {
SPINE_LOG_HIGH(("cap_from_text failed."));
exit(1);
}
if (cap_set_proc(caps) == -1) {
SPINE_LOG_HIGH(("cap_set_proc failed."));
exit(1);
}
/* Try to free the memory from cap_from_text */
cap_free( caps );
if ( setregid(server_gid, server_gid) == -1 ||
setreuid(server_uid, server_uid) == -1 ) {
SPINE_LOG_HIGH(("setregid/setreuid to uid=%d/gid=%d failed.",
server_uid, server_gid));
exit(1);
}
SPINE_LOG_LOW(("running as uid(%d)/gid(%d) euid(%d)/egid(%d) with cap_net_raw=eip.",
getuid(), getgid(), geteuid(), getegid()));
}
#endif /* HAVE_LCAP */
/*! \fn main(int argc, char *argv[])
* \brief The Spine program entry point
* \param argc The number of arguments passed to the function plus one (+1)
* \param argv An array of the command line arguments
*
* The Spine entry point. This function performs the following tasks.
* 1) Processes command line input parameters
* 2) Processes the Spine configuration file to obtain database access information
* 3) Process runtime parameters from the settings table
* 4) Initialize the runtime threads and mutexes for the threaded environment
* 5) Initialize Net-SNMP, MySQL, and the PHP Script Server (if required)
* 6) Spawns X threads in order to process hosts
* 7) Loop until either all hosts have been processed or until the poller runtime
* has been exceeded
* 8) Close database and free variables
* 9) Log poller process statistics if required
* 10) Exit
*
* Note: Command line runtime parameters override any database settings.
*
* \return 0 if SUCCESS, or -1 if FAILED
*
*/
int main(int argc, char *argv[]) {
char *conf_file = NULL;
double begin_time, end_time, cur_time;
int num_rows = 0;
int device_counter = 0;
int valid_conf_file = FALSE;
char querybuf[MEGA_BUFSIZE], *qp = querybuf;
char *host_time = NULL;
double host_time_double = 0;
int items_per_thread = 0;
int device_threads;
sem_t thread_init_sem;
int a_threads_value;
struct timespec until_spec;
start_time = get_time_as_double();
total_time = 0;
#ifdef HAVE_LCAP
if (geteuid() == 0) {
drop_root(getuid(), getgid());
}
#endif /* HAVE_LCAP */
pthread_t* threads = NULL;
poller_thread_t* poller_details = NULL;
pthread_attr_t attr;
int* ids = NULL;
int mode = REMOTE;
MYSQL mysql;
MYSQL mysqlr;
MYSQL_RES *result = NULL;
MYSQL_RES *tresult = NULL;
MYSQL_ROW mysql_row;
int canexit = FALSE;
int host_id = 0;
int i;
int thread_status = 0;
int total_items = 0;
int change_host = TRUE;
int current_thread;
int threads_final = 0;
int threads_missing = -1;
int threads_count;
/* we must initilize snmp in the main thread */
struct snmp_session session;
UNUSED_PARAMETER(argc); /* we operate strictly with argv */
/* install the spine signal handler */
install_spine_signal_handler();
/* establish php processes and initialize space */
php_processes = (php_t*) calloc(MAX_PHP_SERVERS, sizeof(php_t));
for (i = 0; i < MAX_PHP_SERVERS; i++) {
php_processes[i].php_state = PHP_BUSY;
}
/* create the array of debug devices */
debug_devices = calloc(100, sizeof(int));
/* initialize icmp_avail */
set.icmp_avail = TRUE;
/* initialize number of threads */
set.threads = 1;
set.threads_set = FALSE;
/* detect and compensate for stdin/stderr ttys */
if (!isatty(fileno(stdout))) {
set.stdout_notty = TRUE;
} else {
set.stdout_notty = FALSE;
}
if (!isatty(fileno(stderr))) {
set.stderr_notty = TRUE;
} else {
set.stderr_notty = FALSE;
}
/* set start time for cacti */
begin_time = get_time_as_double();
/* set default verbosity */
set.log_level = POLLER_VERBOSITY_LOW;
/* set default log separator */
set.log_datetime_separator = GDC_DEFAULT;
/* set default log format */
set.log_datetime_format = GD_DEFAULT;
/* set the default exit code */
set.exit_code = 0;
set.exit_size = 0;
/* get static defaults for system */
config_defaults();
/*! ----------------------------------------------------------------
* PROCESS COMMAND LINE
*
* Run through the list of ARGV words looking for parameters we
* know about. Most have two flavors (-C + --conf), and many
* themselves take a parameter.
*
* These parameters can be structured in two ways:
*
* --conf=FILE both parts in one argv[] string
* --conf FILE two separate argv[] strings
*
* We set "arg" to point to "--conf", and "opt" to point to FILE.
* The helper routine
*
* In each loop we set "arg" to next argv[] string, then look
* to see if it has an equal sign. If so, we split it in half
* and point to the option separately.
*
* NOTE: most direction to the program is given with dash-type
* parameters, but we also allow standalone numeric device IDs
* in "first last" format: this is how poller.php calls this
* program.
*/
/* initialize some global variables */
set.poller_id = 1;
set.start_host_id = -1;
set.end_host_id = -1;
set.host_id_list[0] = '\0';
set.php_initialized = FALSE;
set.logfile_processed = FALSE;
set.parent_fork = SPINE_PARENT;
set.mode = REMOTE_ONLINE;
set.has_device_0 = FALSE;
for (argv++; *argv; argv++) {
char *arg = *argv;
char *opt = strchr(arg, '='); /* pick off the =VALUE part */
if (opt) *opt++ = '\0';
if (STRIMATCH(arg, "-f") || STRMATCH(arg, "--first")) {
if (HOSTID_DEFINED(set.start_host_id)) {
die("ERROR: %s can only be used once", arg);
}
set.start_host_id = atoi(opt = getarg(opt, &argv));
if (!HOSTID_DEFINED(set.start_host_id)) {
die("ERROR: '%s=%s' is invalid first-host ID", arg, opt);
}
}
else if (STRIMATCH(arg, "-l") || STRIMATCH(arg, "--last")) {
if (HOSTID_DEFINED(set.end_host_id)) {
die("ERROR: %s can only be used once", arg);
}
set.end_host_id = atoi(opt = getarg(opt, &argv));
if (!HOSTID_DEFINED(set.end_host_id)) {
die("ERROR: '%s=%s' is invalid last-host ID", arg, opt);
}
}
else if (STRIMATCH(arg, "-p") || STRIMATCH(arg, "--poller")) {
set.poller_id = atoi(getarg(opt, &argv));
}
else if (STRMATCH(arg, "-t") || STRIMATCH(arg, "--threads")) {
set.threads = atoi(getarg(opt, &argv));
set.threads_set = TRUE;
}
else if (STRMATCH(arg, "-P") || STRIMATCH(arg, "--pingonly")) {
set.ping_only = TRUE;
}
else if (STRMATCH(arg, "-N") || STRIMATCH(arg, "--mode")) {
if (STRIMATCH(getarg(opt, &argv), "online")) {
set.mode = REMOTE_ONLINE;
} else if (STRIMATCH(getarg(opt, &argv), "offline")) {
set.mode = REMOTE_OFFLINE;
} else if (STRIMATCH(getarg(opt, &argv), "recovery")) {
set.mode = REMOTE_RECOVERY;
} else {
die("ERROR: invalid polling mode '%s' specified", opt);
}
}
else if (STRIMATCH(arg, "-H") || STRIMATCH(arg, "--hostlist")) {
snprintf(set.host_id_list, BIG_BUFSIZE, "%s", getarg(opt, &argv));
}
else if (STRIMATCH(arg, "-M") || STRMATCH(arg, "--mibs")) {
set.mibs = 1;
}
else if (STRIMATCH(arg, "-h") || STRMATCH(arg, "--help")) {
display_help(FALSE);
exit(EXIT_SUCCESS);
}
else if (STRMATCH(arg, "-v") || STRMATCH(arg, "--version")) {
display_help(TRUE);
exit(EXIT_SUCCESS);
}
else if (STRIMATCH(arg, "-O") || STRIMATCH(arg, "--option")) {
char *setting = getarg(opt, &argv);
char *value = strchr(setting, ':');
if (*value) {
*value++ = '\0';
} else {
die("ERROR: -O requires setting:value");
}
set_option(setting, value);
}
else if (STRIMATCH(arg, "-R") || STRMATCH(arg, "--readonly") || STRMATCH(arg, "--read-only")) {
set.SQL_readonly = TRUE;
}
else if (STRIMATCH(arg, "-C") || STRMATCH(arg, "--conf")) {
conf_file = strdup(getarg(opt, &argv));
}
else if (STRIMATCH(arg, "-S") || STRMATCH(arg, "--stdout")) {
set_option("log_destination", "STDOUT");
}
else if (STRIMATCH(arg, "-D") || STRMATCH(arg, "--log")) {
set_option("log_destination", getarg(opt, &argv));
}
else if (STRMATCH(arg, "-V") || STRMATCH(arg, "--verbosity")) {
set_option("log_verbosity", getarg(opt, &argv));
}
else if (!HOSTID_DEFINED(set.start_host_id) && all_digits(arg)) {
set.start_host_id = atoi(arg);
}
else if (!HOSTID_DEFINED(set.end_host_id) && all_digits(arg)) {
set.end_host_id = atoi(arg);
}
else {
die("ERROR: %s is an unknown command-line parameter", arg);
}
}
if (set.ping_only) {
set.mibs = 0;
}
/* we attempt to support scripts better in cygwin */
#if defined(__CYGWIN__)
setenv("CYGWIN", "nodosfilewarning", 1);
if (file_exists("./sh.exe")) {
set.cygwinshloc = 0;
if (set.log_level == POLLER_VERBOSITY_DEBUG) {
printf("The Shell Command Exists in the current directory\n");
}
} else {
set.cygwinshloc = 1;
if (set.log_level == POLLER_VERBOSITY_DEBUG) {
printf("The Shell Command Exists in the /bin directory\n");
}
}
#endif
/* we require either both the first and last hosts, or niether host */
if ((HOSTID_DEFINED(set.start_host_id) != HOSTID_DEFINED(set.end_host_id)) &&
(!strlen(set.host_id_list))) {
die("ERROR: must provide both -f/-l, a hostlist (-H/--hostlist), or neither");
}
if (set.start_host_id > set.end_host_id) {
die("ERROR: Invalid row spec; first host_id must be less than the second");
}
/* read configuration file to establish local environment */
if (conf_file) {
if ((read_spine_config(conf_file)) < 0) {
die("ERROR: Could not read config file: %s", conf_file);
} else {
valid_conf_file = TRUE;
}
} else {
if (!(conf_file = calloc(CONFIG_PATHS, DBL_BUFSIZE))) {
die("ERROR: Fatal malloc error: spine.c conf_file!");
}
for (i=0; i<CONFIG_PATHS; i++) {
snprintf(conf_file, DBL_BUFSIZE, "%s%s", config_paths[i], DEFAULT_CONF_FILE);
if (read_spine_config(conf_file) >= 0) {
valid_conf_file = TRUE;
break;
}
if (i == CONFIG_PATHS-1) {
snprintf(conf_file, DBL_BUFSIZE, "%s%s", config_paths[0], DEFAULT_CONF_FILE);
}
}
}
if (valid_conf_file) {
/* read settings table from the database to further establish environment */
read_config_options();
} else {
die("FATAL: Unable to read configuration file!");
}
/* set the poller interval for those who use less than 5 minute intervals */
if (set.poller_interval == 0) {
set.poller_interval = 300;
}
/* tokenize the debug devices */
if (strlen(set.selective_device_debug)) {
SPINE_LOG_DEBUG(("DEBUG: Selective Debug Devices %s", set.selective_device_debug));
int i = 0;
char *token = strtok(set.selective_device_debug, ",");
while(token) {
debug_devices[i] = atoi(token);
debug_devices[i+1] = '\0';
token = strtok(NULL, ",");
i++;
}
} else {
debug_devices[0] = '\0';
}
/* connect for main loop */
db_connect(LOCAL, &mysql);
/* setup local connection pool for hosts */
db_pool_local = (pool_t *) calloc(set.threads, sizeof(pool_t));
db_create_connection_pool(LOCAL);
if (set.poller_id > 1 && set.mode == REMOTE_ONLINE) {
db_connect(REMOTE, &mysqlr);
mode = REMOTE;
/* setup remote connection pool for hosts */
db_pool_remote = (pool_t *) calloc(set.threads, sizeof(pool_t));
db_create_connection_pool(REMOTE);
} else {
mode = LOCAL;
}
/* check for device 0 items */
result = db_query(&mysql, LOCAL, "SELECT * FROM (SELECT COUNT(*) AS items FROM poller_item WHERE host_id = 0 AND poller_id = 1) AS rs WHERE rs.items > 0");
if (mysql_num_rows(result)) {
set.has_device_0 = TRUE;
}
db_free_result(result);
/* Since MySQL 5.7 the sql_mode defaults are too strict for cacti */
db_insert(&mysql, LOCAL, "SET SESSION sql_mode = (SELECT REPLACE(@@sql_mode,'NO_ZERO_DATE', ''))");
db_insert(&mysql, LOCAL, "SET SESSION sql_mode = (SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY', ''))");
if (set.log_level == POLLER_VERBOSITY_DEBUG) {
SPINE_LOG_DEBUG(("DEBUG: Version %s starting", VERSION));
if (set.poller_id > 1) {
if (mode == REMOTE) {
SPINE_LOG_DEBUG(("DEBUG: Sending entries to remote database in 'online' mode"));
} else {
SPINE_LOG_DEBUG(("DEBUG: Sending entries to local database in 'offline', or 'recovery' mode"));
}
}
} else {
if (!set.stdout_notty) {
printf("Version %s starting\n", VERSION);
if (set.poller_id > 1) {
if (mode == REMOTE) {
printf("Sending entries to remote database in 'online' mode\n");
} else {
printf("Sending entries to local database in 'offline', or 'recovery' mode\n");
}
}
}
}
if (set.has_device_0) {
SPINE_LOG_MEDIUM(("Device 0 Poller Items found. Ensure that these entries are accurate"));
} else {
SPINE_LOG_MEDIUM(("No Device 0 Poller Items found."));
}
/* see if mysql is thread safe */
if (mysql_thread_safe()) {
if (set.log_level == POLLER_VERBOSITY_DEBUG) {
SPINE_LOG(("DEBUG: MySQL is Thread Safe!"));
}
} else {
SPINE_LOG(("WARNING: MySQL is NOT Thread Safe!"));
}
/* test for asroot permissions for ICMP */
checkAsRoot();
/* initialize SNMP */
SPINE_LOG_DEBUG(("DEBUG: Initializing Net-SNMP API"));
snmp_spine_init();
/* initialize PHP if required */
SPINE_LOG_DEBUG(("DEBUG: Initializing PHP Script Server(s)"));
/* tell spine that it is parent, and set the poller id */
set.parent_fork = SPINE_PARENT;
/* initialize the script server */
if (set.php_required && !set.ping_only) {
php_init(PHP_INIT);
set.php_initialized = TRUE;
set.php_current_server = 0;
}
/* determine if the poller_id field exists in the host table */
set.poller_id_exists = db_column_exists(&mysql, LOCAL, "host", "poller_id");
if (!set.poller_id_exists && set.poller_id > 0) {
SPINE_LOG(("WARNING: PollerID > 0, but 'host' table does NOT contain the poller_id column!!"));
}
/* obtain the list of hosts to poll */
qp += sprintf(qp, "SELECT SQL_NO_CACHE id, device_threads, picount, picount/device_threads AS tppi FROM host AS h LEFT JOIN (SELECT host_id, COUNT(*) AS picount FROM poller_item GROUP BY host_id) AS pi ON h.id = pi.host_id");
qp += sprintf(qp, " WHERE disabled = ''");
if (!strlen(set.host_id_list)) {
qp += append_hostrange(qp, "h.id"); /* AND id BETWEEN a AND b */
} else {
qp += sprintf(qp, " AND h.id IN(%s)", set.host_id_list);
}
if (set.poller_id_exists) {
qp += sprintf(qp, " AND h.poller_id=%i", set.poller_id);
}
qp += sprintf(qp, " ORDER BY h.polling_time DESC");
SPINE_LOG_DEVDBG(("DEVDBG: Host SQL:%s", querybuf));
result = db_query(&mysql, LOCAL, querybuf);
if (set.poller_id == 1) {
if (set.has_device_0) {
num_rows = mysql_num_rows(result) + 1; /* pollerid 1 takes care of non host based data sources */
} else {
num_rows = mysql_num_rows(result); /* pollerid 1 takes care of non host based data sources */
}
} else {
num_rows = mysql_num_rows(result);
}
if (!(threads = (pthread_t *)malloc(num_rows * sizeof(pthread_t)))) {
die("ERROR: Fatal malloc error: spine.c threads!");
}
if (!(details = (poller_thread_t **)malloc(num_rows * sizeof(poller_thread_t*)))) {
die("ERROR: Fatal malloc error: spine.c details!");
}
if (!(ids = (int *)malloc(num_rows * sizeof(int)))) {
die("ERROR: Fatal malloc error: spine.c host id's!");
}
if (!(host_time = (char *) malloc(SMALL_BUFSIZE))) {
die("ERROR: Fatal malloc error: util.c host_time");
}
memset(host_time, 0, SMALL_BUFSIZE);
/* initialize winsock library on Windows */
SOCK_STARTUP;
/* mark the spine process as started */
if (!set.ping_only) {
snprintf(querybuf, BIG_BUFSIZE, "INSERT INTO poller_time (poller_id, pid, start_time, end_time) VALUES (%i, %i, NOW(), '0000-00-00 00:00:00')", set.poller_id, getpid());
if (mode == REMOTE) {
db_insert(&mysqlr, REMOTE, querybuf);
} else {
db_insert(&mysql, LOCAL, querybuf);
}
}
/* initialize threads and mutexes */
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
init_mutexes();
/* initialize available_threads semaphore */
sem_init(&available_threads, 0, set.threads);
/* initialize available_scripts semaphore */
sem_init(&available_scripts, 0, MAX_SIMULTANEOUS_SCRIPTS);
/* initialize thread initialization semaphore */
sem_init(&thread_init_sem, 0, 1);
/* specify the point of timeout for timedwait semaphores */
until_spec.tv_sec = (time_t)(set.poller_interval + begin_time - 0.2);
until_spec.tv_nsec = 0;
sem_getvalue(&available_threads, &a_threads_value);
SPINE_LOG_HIGH(("DEBUG: Initial Value of Available Threads is %i (%i outstanding)", a_threads_value, set.threads - a_threads_value));
/* tell fork processes that they are now active */
set.parent_fork = SPINE_FORK;
/* initialize the threading code */
device_threads = 1;
current_thread = 0;
/* poller 1 always polls host 0 but only if it exists */
if (set.poller_id == 1 && set.has_device_0 == TRUE) {
host_id = 0;
change_host = FALSE;
} else {
change_host = TRUE;
}
/**
* We must initilize the first snmp session
* in the main thread to initilize the mib files
* and other structures. After which it's snmp
* is thread safe in threads
*/
snmp_sess_init(&session);
/* loop through devices until done */
while (canexit == FALSE && device_counter < num_rows) {
if (change_host) {
mysql_row = mysql_fetch_row(result);
host_id = atoi(mysql_row[0]);
device_threads = atoi(mysql_row[1]);
current_thread = 1;
if (device_threads < 1) {
device_threads = 1;
}
} else {
current_thread++;
}
/* adjust device threads in cases where the host does not have sufficient data sources */
if (!set.ping_only) {
if (set.active_profiles != 1) {
snprintf(querybuf, BIG_BUFSIZE, "SELECT SQL_NO_CACHE COUNT(local_data_id) FROM poller_item WHERE host_id=%i AND rrd_next_step <=0", host_id);
} else {
snprintf(querybuf, BIG_BUFSIZE, "SELECT SQL_NO_CACHE COUNT(local_data_id) FROM poller_item WHERE host_id=%i", host_id);
}
tresult = db_query(&mysql, LOCAL, querybuf);
mysql_row = mysql_fetch_row(tresult);
total_items = atoi(mysql_row[0]);
db_free_result(tresult);
if (total_items && total_items < device_threads) {
device_threads = total_items;
}
} else {
device_threads = 1;
}
change_host = (current_thread >= device_threads) ? TRUE : FALSE;
/* determine how many items will be polled per thread */
if (device_threads > 1) {
if (current_thread == 1) {
if (set.active_profiles != 1) {
snprintf(querybuf, BIG_BUFSIZE, "SELECT SQL_NO_CACHE CEIL(COUNT(local_data_id)/%i) FROM poller_item WHERE host_id=%i AND rrd_next_step <=0", device_threads, host_id);
} else {
snprintf(querybuf, BIG_BUFSIZE, "SELECT SQL_NO_CACHE CEIL(COUNT(local_data_id)/%i) FROM poller_item WHERE host_id=%i", device_threads, host_id);
}
tresult = db_query(&mysql, LOCAL, querybuf);
mysql_row = mysql_fetch_row(tresult);
items_per_thread = atoi(mysql_row[0]);
db_free_result(tresult);
sprintf(host_time, "%lu", (unsigned long) time(NULL));
host_time_double = get_time_as_double();
} else if (host_time_double == 0 || host_time == 0 || host_time == NULL) {
sprintf(host_time, "%lu", (unsigned long) time(NULL));
host_time_double = get_time_as_double();
}
} else {
snprintf(querybuf, BIG_BUFSIZE, "SELECT SQL_NO_CACHE COUNT(local_data_id) FROM poller_item WHERE host_id=%i AND rrd_next_step <=0", host_id);
tresult = db_query(&mysql, LOCAL, querybuf);
mysql_row = mysql_fetch_row(tresult);
items_per_thread = atoi(mysql_row[0]);
db_free_result(tresult);
sprintf(host_time, "%lu", (unsigned long) time(NULL));
host_time_double = get_time_as_double();
}
/* populate the thread structure */
if (!(poller_details = (poller_thread_t *)malloc(sizeof(poller_thread_t)))) {
die("ERROR: Fatal malloc error: spine.c poller_details!");
}
poller_details->device_counter = device_counter;
poller_details->host_id = host_id;
poller_details->host_thread = current_thread;
poller_details->host_threads = device_threads;
poller_details->host_data_ids = items_per_thread;
snprintf(poller_details->host_time, 40, "%s", host_time);
poller_details->host_time_double = host_time_double;
poller_details->thread_init_sem = &thread_init_sem;
poller_details->complete = FALSE;
poller_details->threads_complete = 0;
thread_mutex_lock(LOCK_THDET);
details[device_counter] = poller_details;
thread_mutex_unlock(LOCK_THDET);
/* dev note - errno was never primed at this point in previous version of code */
int wait_retries = 0;
int loop_count = 0;
double progress_time = 0;
unsigned int sem_err = 0;
int spine_timeout = FALSE;
while (TRUE) {
sem_err = sem_trywait(&available_threads);
if (sem_err == 0) {
// Acquired a thread
break;
} else if (sem_err == EINTR) {
// Interrupted by signal handler
} else if (sem_err == EDEADLK) {
SPINE_LOG_DEVDBG(("WARNING: Device[%i] HT[%i] would have deadlocked acquiring Available Thread Lock", host_id, current_thread));
} else if (sem_err == EAGAIN) {
// Keep trying
}
loop_count++;
if (loop_count == 10) {
progress_time = get_time_as_double() - start_time;
if (progress_time + 1 > set.poller_interval) {
SPINE_LOG(("ERROR: Device[%i] HT[%i] polling timed out while acquiring Available Thread Lock", host_id, current_thread));
spine_timeout = TRUE;
break;
}
loop_count = 0;
}
usleep(10000);
total_time = get_time_as_double();
if (total_time - start_time > set.poller_interval) {
SPINE_LOG(("ERROR: Device[%i] HT[%i] Spine Timed Out While Processing Devices External", host_id, current_thread));
spine_timeout = TRUE;
canexit = TRUE;
break;
}
}
loop_count = 0;
while (!spine_timeout) {
sem_err = sem_trywait(&thread_init_sem);
if (sem_err == 0) {
// Acquired a thread
break;
} else if (sem_err == EINTR) {
// Interrupted by signal handler
} else if (sem_err == EDEADLK) {
SPINE_LOG_DEVDBG(("WARNING: Device[%i] HT[%i] would have deadlocked acquiring Thread Initialization Lock", host_id, current_thread));
} else if (sem_err == EAGAIN) {
// Keep trying
} else {
SPINE_LOG_DEVDBG(("WARNING: Device[%i] HT[%i] errored with %d while acquiring Thread Initialization Lock", host_id, current_thread, sem_err));
}
if (loop_count == 10) {
progress_time = get_time_as_double() - start_time;
if (progress_time + 1 > set.poller_interval) {
SPINE_LOG(("ERROR: Device[%i] HT[%i] polling timed out while acquiring Thread Init Lock", host_id, current_thread));
spine_timeout = TRUE;
break;
}
loop_count = 0;
}
usleep(10000);
total_time = get_time_as_double();
if (total_time - start_time > set.poller_interval) {
SPINE_LOG(("ERROR: Device[%i] HT[%i] Spine Timed Out While Processing Devices Internal", host_id, current_thread));
spine_timeout = TRUE;
canexit = TRUE;
break;
}
}
if (!spine_timeout) {
/* create child process */
thread_retry:
thread_mutex_lock(LOCK_HOST_TIME);
thread_status = pthread_create(&threads[device_counter], &attr, child, poller_details);
if (thread_status == 0) {
SPINE_LOG_DEBUG(("DEBUG: Device[%i] Valid Thread to be Created (%ld)", poller_details->host_id, (unsigned long int)threads[device_counter]));
if (change_host) {
device_counter++;
}
sem_getvalue(&available_threads, &a_threads_value);
SPINE_LOG_HIGH(("DEBUG: Device[%i] Available Threads is %i (%i outstanding)", poller_details->host_id, a_threads_value, set.threads - a_threads_value));
sem_post(&thread_init_sem);
SPINE_LOG_DEVDBG(("DEBUG: DTS: device = %d, host_id = %d, host_thread = %d,"
" host_threads = %d, host_data_ids = %d, complete = %d",
device_counter-1,
poller_details->host_id,
poller_details->host_thread,
poller_details->host_threads,
poller_details->host_data_ids,
poller_details->complete));
} else if (thread_status == EAGAIN) {
usleep(10000);
goto thread_retry;
} else if (thread_status == EINVAL) {
SPINE_LOG(("ERROR: The Thread Attribute is Not Initialized"));
}
/* Restore thread initialization semaphore if thread creation failed */
if (thread_status) {
sem_post(&thread_init_sem);
}
}
}
sem_getvalue(&available_threads, &a_threads_value);
/* wait for all threads to 'complete'
* using the mutex here as the semaphore will
* show zero before the children are done */
while (a_threads_value < set.threads) {
cur_time = get_time_as_double();
if (cur_time - begin_time > set.poller_interval) {
SPINE_LOG(("ERROR: Polling timed out while waiting for %d Threads to End", set.threads - a_threads_value));
break;
}
SPINE_LOG_HIGH(("NOTE: Polling sleeping while waiting for %d Threads to End", set.threads - a_threads_value));
usleep(500000);
sem_getvalue(&available_threads, &a_threads_value);
}
threads_final = set.threads - a_threads_value;
SPINE_LOG_HIGH(("The final count of Threads is %i", threads_final));
if (!set.ping_only) {
thread_mutex_lock(LOCK_THDET);
for (threads_count = 0; threads_count < num_rows; threads_count++) {
poller_thread_t* det = details[threads_count];
if (threads_missing == -1 && det == NULL) {
threads_missing = threads_count;
}
if (det != NULL) { // && !det->complete) {
SPINE_LOG_HIGH(("INFO: Device[%i] Thread %scomplete and %d to %d sources",
det->host_id,
det->complete ? "":"in",
det->host_data_ids * (det->host_thread - 1),
det->host_data_ids * (det->host_thread)));
SPINE_LOG_DEVDBG(("DEBUG: DTF: device = %d, host_id = %d, host_thread = %d,"
" host_threads = %d, host_data_ids = %d, complete = %d",
threads_count,