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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
|
/*
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/ |
+-------------------------------------------------------------------------+
*/
#include "common.h"
#include "spine.h"
static int nopts = 0;
/*! Override Options Structure
*
* When we fetch a setting from the database, we allow the user to override
* it from the command line. These overrides are provided with the --option
* parameter and stored in this table: we *use* them when the config code
* reads from the DB.
*
* It's not an error to set an option which is unknown, but maybe should be.
*
*/
static struct {
const char *opt;
const char *val;
} opttable[256];
/*! \fn void set_option(const char *option, const char *value)
* \brief Override spine setting from the Cacti settings table.
*
* Called from the command-line processing code, this provides a value
* to replace any DB-stored option settings.
*
*/
void set_option(const char *option, const char *value) {
opttable[nopts ].opt = option;
opttable[nopts++].val = value;
}
/*! \fn static const char *getsetting(MYSQL *psql, int mode, const char *setting)
* \brief Returns a character pointer to a Cacti setting.
*
* Given a pointer to a database and the name of a setting, return the string
* which represents the value from the settings table. Return NULL if we
* can't find a setting for whatever reason.
*
* NOTE: if the user has provided one of these options on the command line,
* it's intercepted here and returned, overriding the database setting.
*
* \return the database option setting
*
*/
static const char *getsetting(MYSQL *psql, int mode, const char *setting) {
char qstring[256];
char *retval;
MYSQL_RES *result;
MYSQL_ROW mysql_row;
int i;
assert(psql != 0);
assert(setting != 0);
/* see if it's in the option table */
for (i=0; i<nopts; i++) {
if (STRIMATCH(setting, opttable[i].opt)) {
/* FOUND IT! */
retval = strdup(opttable[i].val);
return retval;
}
}
sprintf(qstring, "SELECT SQL_NO_CACHE value FROM settings WHERE name = '%s'", setting);
result = db_query(psql, mode, qstring);
if (result != 0) {
if (mysql_num_rows(result) > 0) {
mysql_row = mysql_fetch_row(result);
if (mysql_row != NULL) {
retval = strdup(mysql_row[0]);
db_free_result(result);
return retval;
}else{
return 0;
}
}else{
db_free_result(result);
return 0;
}
}else{
return 0;
}
}
/*! \fn int putsetting(MYSQL *psql, const char *setting, const char *value)
* \brief Set's a specific Cacti setting.
*
* Given a pointer to a database and the name of a setting, and value of that setting
* set the Cacti setting in the database to the value.
*
* \return true for sucessful or false for failed
*
*/
int putsetting(MYSQL *psql, int mode, const char *mysetting, const char *myvalue) {
char qstring[512];
int result = 0;
assert(psql != 0);
assert(mysetting != 0);
assert(myvalue != 0);
if (set.dbonupdate == 0) {
sprintf(qstring, "INSERT INTO settings (name, value) "
"VALUES ('%s', '%s') "
"ON DUPLICATE KEY UPDATE value = VALUES(value)", mysetting, myvalue);
} else {
sprintf(qstring, "INSERT INTO settings (name, value) "
"VALUES ('%s', '%s') AS rs "
"ON DUPLICATE KEY UPDATE value = rs.value", mysetting, myvalue);
}
result = db_insert(psql, mode, qstring);
if (result == 0) {
return TRUE;
} else {
return FALSE;
}
}
/*! \fn static const char *getpsetting(MYSQL *psql, const char *setting)
* \brief Returns a character pointer to a Cacti poller setting.
*
* Given a pointer to a database and the name of a setting,
* return the string which represents the value from the poller table.
* Return NULL if we can't find a setting for whatever reason.
*
* NOTE: if the user has provided one of these options on the command line,
* it's intercepted here and returned, overriding the database setting.
*
* \return the database option setting
*
*/
static const char *getpsetting(MYSQL *psql, int mode, const char *setting) {
char qstring[256];
char *retval;
MYSQL_RES *result;
MYSQL_ROW mysql_row;
int i;
assert(psql != 0);
assert(setting != 0);
/* see if it's in the option table */
for (i=0; i<nopts; i++) {
if (STRIMATCH(setting, opttable[i].opt)) {
/* FOUND IT! */
retval = strdup(opttable[i].val);
return retval;
}
}
sprintf(qstring, "SELECT SQL_NO_CACHE %s FROM poller WHERE id = '%d'", setting, set.poller_id);
result = db_query(psql, mode, qstring);
if (result != 0) {
if (mysql_num_rows(result) > 0) {
mysql_row = mysql_fetch_row(result);
if (mysql_row != NULL) {
retval = strdup(mysql_row[0]);
db_free_result(result);
return retval;
} else {
return 0;
}
} else {
db_free_result(result);
return 0;
}
} else {
return 0;
}
}
/*! \fn static int getboolsetting(MYSQL *psql, int mode, const char *setting, int dflt)
* \brief Obtains a boolean option from the database.
*
* Given the parameters for fetching a setting from the database,
* do so for a *Boolean* value. We parse the usual set of words
* meaning true/false, and if we don't get a value, or if we don't
* understand what we fetched, we use the default value provided.
*
* \return boolean TRUE or FALSE based upon database setting or the DEFAULT if not found
*/
static int getboolsetting(MYSQL *psql, int mode, const char *setting, int dflt) {
const char *rc;
assert(psql != 0);
assert(setting != 0);
rc = getsetting(psql, mode, setting);
if (rc == 0) return dflt;
if (STRIMATCH(rc, "on" ) ||
STRIMATCH(rc, "yes" ) ||
STRIMATCH(rc, "true") ||
STRIMATCH(rc, "1" ) ) {
free((char *)rc);
return TRUE;
}
if (STRIMATCH(rc, "off" ) ||
STRIMATCH(rc, "no" ) ||
STRIMATCH(rc, "false") ||
STRIMATCH(rc, "0" ) ) {
free((char *)rc);
return FALSE;
}
/* doesn't really match one of our keywords: what to do? */
free((char *)rc);
return dflt;
}
/*! \fn static const char *getglobalvariable(MYSQL *psql, const char *setting)
* \brief Returns a character pointer to a MySQL global variable setting.
*
* Given a pointer to a database and the name of a global variable, return the string
* which represents that value from the settings table. Return NULL if we
* can't find a variable for whatever reason.
*
* \return the database global variable setting
*
*/
static const char *getglobalvariable(MYSQL *psql, int mode, const char *setting) {
char qstring[256];
char *retval;
MYSQL_RES *result;
MYSQL_ROW mysql_row;
int i;
assert(psql != 0);
assert(setting != 0);
/* see if it's in the option table */
for (i=0; i<nopts; i++) {
if (STRIMATCH(setting, opttable[i].opt)) {
/* FOUND IT! */
return opttable[i].val;
}
}
sprintf(qstring, "SHOW GLOBAL VARIABLES LIKE '%s'", setting);
result = db_query(psql, mode, qstring);
if (result != 0) {
if (mysql_num_rows(result) > 0) {
mysql_row = mysql_fetch_row(result);
if (mysql_row != NULL) {
retval = strdup(mysql_row[1]);
db_free_result(result);
return retval;
} else {
return 0;
}
} else {
db_free_result(result);
return 0;
}
} else {
return 0;
}
}
/*! \fn int is_debug_device(int device_id)
* \brief Determine if a device is a debug device
*
*/
int is_debug_device(int device_id) {
extern int *debug_devices;
int i = 0;
while (i < 100) {
if (debug_devices[i] == '\0') break;
if (debug_devices[i] == device_id) {
return TRUE;
}
i++;
}
return FALSE;
}
/*! \fn void read_config_options(void)
* \brief Reads the default Spine runtime parameters from the database and set's the global array
*
* load default values from the database for poller processing
*
*/
void read_config_options() {
MYSQL mysql;
MYSQL mysqlr;
MYSQL_RES *result;
int num_rows;
int mode;
char web_root[BUFSIZE];
char sqlbuf[SMALL_BUFSIZE], *sqlp = sqlbuf;
const char *res;
char spine_capabilities[SMALL_BUFSIZE];
/* publish spine snmpv3 capabilities to the database */
memset(spine_capabilities, 0, sizeof(spine_capabilities));
db_connect(LOCAL, &mysql);
if (set.poller_id > 1 && set.mode == REMOTE_ONLINE) {
db_connect(REMOTE, &mysqlr);
mode = REMOTE;
} else {
mode = LOCAL;
}
/* get the mysql server version */
if ((res = getglobalvariable(&mysql, LOCAL, "version")) != 0) {
snprintf(set.dbversion, SMALL_BUFSIZE, "%s", res);
free((char *)res);
}
if (STRIMATCH(set.dbversion, "mariadb")) {
set.dbonupdate = 0;
} else if (strpos(set.dbversion, "8.") == 0) {
set.dbonupdate = 1;
} else {
set.dbonupdate = 0;
}
/* get the cacti version from the database */
set.cacti_version = get_cacti_version(&mysql, LOCAL);
/* log the path_webroot variable */
SPINE_LOG_DEBUG(("DEBUG: The binary Cacti version is %d", set.cacti_version));
/* get logging level from database - overrides spine.conf */
if ((res = getsetting(&mysql, LOCAL, "log_verbosity")) != 0) {
const int n = atoi(res);
free((char *)res);
if (n != 0) set.log_level = n;
}
/* determine script server path operation and default log file processing */
if ((res = getsetting(&mysql, LOCAL, "path_webroot")) != 0) {
snprintf(set.path_php_server, SMALL_BUFSIZE, "%s/script_server.php", res);
snprintf(web_root, BUFSIZE, "%s", res);
free((char *)res);
}
/* determine logfile path */
if ((res = getsetting(&mysql, LOCAL, "path_cactilog")) != 0) {
if (strlen(res) != 0) {
snprintf(set.path_logfile, DBL_BUFSIZE, "%s", res);
} else {
if (strlen(web_root) != 0) {
snprintf(set.path_logfile, DBL_BUFSIZE, "%s/log/cacti.log", web_root);
} else {
set.path_logfile[0] ='\0';
}
}
free((char *)res);
} else {
snprintf(set.path_logfile, DBL_BUFSIZE, "%s/log/cacti.log", web_root);
}
/* get log separator */
if ((res = getsetting(&mysql, LOCAL, "default_datechar")) != 0) {
set.log_datetime_separator = atoi(res);
free((char *)res);
if (set.log_datetime_separator < GDC_MIN || set.log_datetime_separator > GDC_MAX) {
set.log_datetime_separator = GDC_DEFAULT;
}
}
/* get log separator */
if ((res = getsetting(&mysql, LOCAL, "default_datechar")) != 0) {
set.log_datetime_separator = atoi(res);
free((char *)res);
if (set.log_datetime_separator < GDC_MIN || set.log_datetime_separator > GDC_MAX) {
set.log_datetime_separator = GDC_DEFAULT;
}
}
/* determine log file, syslog or both, default is 1 or log file only */
if ((res = getsetting(&mysql, LOCAL, "log_destination")) != 0) {
set.log_destination = parse_logdest(res, LOGDEST_FILE);
free((char *)res);
} else {
set.log_destination = LOGDEST_FILE;
}
/* log the path_webroot variable */
SPINE_LOG_DEBUG(("DEBUG: The path_php_server variable is %s", set.path_php_server));
/* log the path_cactilog variable */
SPINE_LOG_DEBUG(("DEBUG: The path_cactilog variable is %s", set.path_logfile));
/* the version variable */
SPINE_LOG_DEBUG(("DEBUG: The version variable is %s", set.dbversion));
/* log the log_destination variable */
SPINE_LOG_DEBUG(("DEBUG: The log_destination variable is %i (%s)",
set.log_destination,
printable_logdest(set.log_destination)));
set.logfile_processed = TRUE;
/* get PHP Path Information for Scripting */
if ((res = getsetting(&mysql, LOCAL, "path_php_binary")) != 0) {
STRNCOPY(set.path_php, res);
free((char *)res);
}
/* log the path_php variable */
SPINE_LOG_DEBUG(("DEBUG: The path_php variable is %s", set.path_php));
/* set availability_method */
if ((res = getsetting(&mysql, LOCAL, "availability_method")) != 0) {
set.availability_method = atoi(res);
free((char *)res);
}
/* log the availability_method variable */
SPINE_LOG_DEBUG(("DEBUG: The availability_method variable is %i", set.availability_method));
/* set ping_recovery_count */
if ((res = getsetting(&mysql, LOCAL, "ping_recovery_count")) != 0) {
set.ping_recovery_count = atoi(res);
free((char *)res);
}
/* log the ping_recovery_count variable */
SPINE_LOG_DEBUG(("DEBUG: The ping_recovery_count variable is %i", set.ping_recovery_count));
/* set ping_failure_count */
if ((res = getsetting(&mysql, LOCAL, "ping_failure_count")) != 0) {
set.ping_failure_count = atoi(res);
free((char *)res);
}
/* log the ping_failure_count variable */
SPINE_LOG_DEBUG(("DEBUG: The ping_failure_count variable is %i", set.ping_failure_count));
/* set ping_method */
if ((res = getsetting(&mysql, LOCAL, "ping_method")) != 0) {
set.ping_method = atoi(res);
free((char *)res);
}
/* log the ping_method variable */
SPINE_LOG_DEBUG(("DEBUG: The ping_method variable is %i", set.ping_method));
/* set ping_retries */
if ((res = getsetting(&mysql, LOCAL, "ping_retries")) != 0) {
set.ping_retries = atoi(res);
free((char *)res);
}
/* log the ping_retries variable */
SPINE_LOG_DEBUG(("DEBUG: The ping_retries variable is %i", set.ping_retries));
/* set ping_timeout */
if ((res = getsetting(&mysql, LOCAL, "ping_timeout")) != 0) {
set.ping_timeout = atoi(res);
free((char *)res);
} else {
set.ping_timeout = 400;
}
/* log the ping_timeout variable */
SPINE_LOG_DEBUG(("DEBUG: The ping_timeout variable is %i", set.ping_timeout));
/* set snmp_retries */
if ((res = getsetting(&mysql, LOCAL, "snmp_retries")) != 0) {
set.snmp_retries = atoi(res);
free((char *)res);
} else {
set.snmp_retries = 3;
}
/* log the snmp_retries variable */
SPINE_LOG_DEBUG(("DEBUG: The snmp_retries variable is %i", set.snmp_retries));
/* set logging option for errors */
set.log_perror = getboolsetting(&mysql, LOCAL, "log_perror", FALSE);
/* log the log_perror variable */
SPINE_LOG_DEBUG(("DEBUG: The log_perror variable is %i", set.log_perror));
/* set logging option for errors */
set.log_pwarn = getboolsetting(&mysql, LOCAL, "log_pwarn", FALSE);
/* log the log_pwarn variable */
SPINE_LOG_DEBUG(("DEBUG: The log_pwarn variable is %i", set.log_pwarn));
/* set option to increase insert performance */
set.boost_redirect = getboolsetting(&mysql, LOCAL, "boost_redirect", FALSE);
/* log the boost_redirect variable */
SPINE_LOG_DEBUG(("DEBUG: The boost_redirect variable is %i", set.boost_redirect));
/* set option for determining if boost is enabled */
set.boost_enabled = getboolsetting(&mysql, LOCAL, "boost_rrd_update_enable", FALSE);
/* log the boost_rrd_update_enable variable */
SPINE_LOG_DEBUG(("DEBUG: The boost_rrd_update_enable variable is %i", set.boost_enabled));
/* set logging option for statistics */
set.log_pstats = getboolsetting(&mysql, LOCAL, "log_pstats", FALSE);
/* log the log_pstats variable */
SPINE_LOG_DEBUG(("DEBUG: The log_pstats variable is %i", set.log_pstats));
/* get Cacti defined max threads override spine.conf */
if (set.threads_set == FALSE) {
if ((res = getpsetting(&mysql, mode, "threads")) != 0) {
set.threads = atoi(res);
free((char *)res);
if (set.threads > MAX_THREADS) {
set.threads = MAX_THREADS;
}
}
}
/* log the threads variable */
SPINE_LOG_DEBUG(("DEBUG: The threads variable is %i", set.threads));
/* get the poller_interval for those who have elected to go with a 1 minute polling interval */
if ((res = getsetting(&mysql, LOCAL, "poller_interval")) != 0) {
set.poller_interval = atoi(res);
free((char *)res);
} else {
set.poller_interval = 0;
}
/* log the poller_interval variable */
if (set.poller_interval == 0) {
SPINE_LOG_DEBUG(("DEBUG: The polling interval is the system default"));
} else {
SPINE_LOG_DEBUG(("DEBUG: The polling interval is %i seconds", set.poller_interval));
}
/* get the concurrent_processes variable to determine thread sleep values */
if ((res = getsetting(&mysql, LOCAL, "concurrent_processes")) != 0) {
set.num_parent_processes = atoi(res);
free((char *)res);
} else {
set.num_parent_processes = 1;
}
/* log the concurrent processes variable */
SPINE_LOG_DEBUG(("DEBUG: The number of concurrent processes is %i", set.num_parent_processes));
/* get the script timeout to establish timeouts */
if ((res = getsetting(&mysql, LOCAL, "script_timeout")) != 0) {
set.script_timeout = atoi(res);
free((char *)res);
if (set.script_timeout < 5) {
set.script_timeout = 5;
}
} else {
set.script_timeout = 25;
}
/* log the script timeout value */
SPINE_LOG_DEBUG(("DEBUG: The script timeout is %i", set.script_timeout));
/* get selective_device_debug string */
if ((res = getsetting(&mysql, LOCAL, "selective_device_debug")) != 0) {
STRNCOPY(set.selective_device_debug, res);
free((char *)res);
}
/* log the selective_device_debug variable */
SPINE_LOG_DEBUG(("DEBUG: The selective_device_debug variable is %s", set.selective_device_debug));
/* get spine_log_level */
if ((res = getsetting(&mysql, LOCAL, "spine_log_level")) != 0) {
set.spine_log_level = atoi(res);
free((char *)res);
}
/* log the spine_log_level variable */
SPINE_LOG_DEBUG(("DEBUG: The spine_log_level variable is %i", set.spine_log_level));
/* get the number of script server processes to run */
if ((res = getsetting(&mysql, LOCAL, "php_servers")) != 0) {
set.php_servers = atoi(res);
free((char *)res);
if (set.php_servers > MAX_PHP_SERVERS) {
set.php_servers = MAX_PHP_SERVERS;
}
if (set.php_servers <= 0) {
set.php_servers = 1;
}
} else {
set.php_servers = 2;
}
/* log the script timeout value */
SPINE_LOG_DEBUG(("DEBUG: The number of php script servers to run is %i", set.php_servers));
/* get the number of active profiles on the system run */
if ((res = getsetting(&mysql, LOCAL, "active_profiles")) != 0) {
set.active_profiles = atoi(res);
free((char *)res);
if (set.active_profiles <= 0) {
set.active_profiles = 0;
}
} else {
set.active_profiles = 0;
}
/* log the script timeout value */
SPINE_LOG_DEBUG(("DEBUG: The number of active data source profiles is %i", set.active_profiles));
/* get the number of snmp_ports in use */
if ((res = getsetting(&mysql, LOCAL, "total_snmp_ports")) != 0) {
set.total_snmp_ports = atoi(res);
free((char *)res);
if (set.total_snmp_ports <= 0) {
set.total_snmp_ports = 0;
}
} else {
set.total_snmp_ports = 0;
}
/* log the script timeout value */
SPINE_LOG_DEBUG(("DEBUG: The number of snmp ports on the system is %i", set.total_snmp_ports));
/*----------------------------------------------------------------
* determine if the php script server is required by searching for
* all the host records for an action of POLLER_ACTION_PHP_SCRIPT_SERVER.
* If we get even one, it means we have to deal with the PHP script
* server.
*
*/
set.php_required = FALSE; /* assume no */
/* log the requirement for the script server */
if (!strlen(set.host_id_list)) {
sqlp = sqlbuf;
sqlp += sprintf(sqlp, "SELECT SQL_NO_CACHE action FROM poller_item");
sqlp += sprintf(sqlp, " WHERE action=%d", POLLER_ACTION_PHP_SCRIPT_SERVER);
sqlp += append_hostrange(sqlp, "host_id");
if (set.poller_id_exists) {
sqlp += sprintf(sqlp, " AND poller_id=%i", set.poller_id);
}
sqlp += sprintf(sqlp, " LIMIT 1");
result = db_query(&mysql, LOCAL, sqlbuf);
num_rows = mysql_num_rows(result);
db_free_result(result);
if (num_rows > 0) set.php_required = TRUE;
SPINE_LOG_DEBUG(("DEBUG: StartDevice='%i', EndDevice='%i', TotalPHPScripts='%i'",
set.start_host_id,
set.end_host_id,
num_rows));
} else {
sqlp = sqlbuf;
sqlp += sprintf(sqlp, "SELECT SQL_NO_CACHE action FROM poller_item");
sqlp += sprintf(sqlp, " WHERE action=%d", POLLER_ACTION_PHP_SCRIPT_SERVER);
sqlp += sprintf(sqlp, " AND host_id IN(%s)", set.host_id_list);
if (set.poller_id_exists) {
sqlp += sprintf(sqlp, " AND poller_id=%i", set.poller_id);
}
sqlp += sprintf(sqlp, " LIMIT 1");
result = db_query(&mysql, LOCAL, sqlbuf);
num_rows = mysql_num_rows(result);
db_free_result(result);
if (num_rows > 0) set.php_required = TRUE;
SPINE_LOG_DEBUG(("DEBUG: Device List to be polled='%s', TotalPHPScripts='%i'",
set.host_id_list,
num_rows));
}
SPINE_LOG_DEBUG(("DEBUG: The PHP Script Server is %sRequired",
set.php_required
? ""
: "Not "));
/* determine the maximum oid's to obtain in a single get request */
if ((res = getsetting(&mysql, LOCAL, "max_get_size")) != 0) {
set.snmp_max_get_size = atoi(res);
free((char *)res);
if (set.snmp_max_get_size > 128) {
set.snmp_max_get_size = 128;
}
} else {
set.snmp_max_get_size = 25;
}
/* log the snmp_max_get_size variable */
SPINE_LOG_DEBUG(("DEBUG: The Maximum SNMP OID Get Size is %i", set.snmp_max_get_size));
strcat(spine_capabilities, "{ authProtocols: \"");
#ifndef NETSNMP_DISABLE_MD5
strcat(spine_capabilities, "MD5,");
#endif
strcat(spine_capabilities, "SHA");
#if defined(HAVE_EVP_SHA224) && defined(usmHMAC192SHA256AuthProtocol)
strcat(spine_capabilities, ",SHA224,SHA256");
#endif
#if defined(HAVE_EVP_SHA384) && defined(usmHMAC384SHA512AuthProtocol)
strcat(spine_capabilities, ",SHA384,SHA512");
#endif
strcat(spine_capabilities, "\"");
strcat(spine_capabilities, ", privProtocols: \"");
#ifndef NETSNMP_DISABLE_DES
strcat(spine_capabilities, "DES");
#endif
#ifdef HAVE_AES
strcat(spine_capabilities, ",AES128");
#if defined(NETSNMP_DRAFT_BLUMENTHAL_AES_04) && defined(usmAES192PrivProtocol)
strcat(spine_capabilities, ",AES192");
#endif
#if defined(NETSNMP_DRAFT_BLUMENTHAL_AES_04) && defined(usmAES256PrivProtocol)
strcat(spine_capabilities, ",AES256");
#endif
#endif
strcat(spine_capabilities, "\" }");
if (set.poller_id == 1) {
putsetting(&mysql, LOCAL, "spine_capabilities", spine_capabilities);
}
db_disconnect(&mysql);
if (set.poller_id > 1 && set.mode == REMOTE_ONLINE) {
db_disconnect(&mysqlr);
}
}
void poller_push_data_to_main() {
MYSQL mysql;
MYSQL mysqlr;
MYSQL_RES *result;
MYSQL_ROW row;
int num_rows;
int rows;
char sqlbuf[HUGE_BUFSIZE];
char *sqlp = sqlbuf;
char query[MEGA_BUFSIZE];
char prefix[BUFSIZE];
char suffix[BUFSIZE];
// tmpstr needs to be greater than 2 * the maximum column size being processed below
char tmpstr[DBL_BUFSIZE];
db_connect(LOCAL, &mysql);
db_connect(REMOTE, &mysqlr);
/* 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', ''))");
db_insert(&mysqlr, REMOTE, "SET SESSION sql_mode = (SELECT REPLACE(@@sql_mode,'NO_ZERO_DATE', ''))");
db_insert(&mysqlr, REMOTE, "SET SESSION sql_mode = (SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY', ''))");
SPINE_LOG_MEDIUM(("Pushing Host Status to Main Server"));
if (strlen(set.host_id_list)) {
snprintf(query, MEGA_BUFSIZE, "SELECT SQL_NO_CACHE id, snmp_sysDescr, snmp_sysObjectID, "
"snmp_sysUpTimeInstance, snmp_sysContact, snmp_sysName, snmp_sysLocation, "
"status, status_event_count, status_fail_date, status_rec_date, "
"status_last_error, min_time, max_time, cur_time, avg_time, polling_time, "
"total_polls, failed_polls, availability, last_updated "
"FROM host "
"WHERE poller_id = %d "
"AND id IN (%s)", set.poller_id, set.host_id_list);
} else {
snprintf(query, MEGA_BUFSIZE, "SELECT SQL_NO_CACHE id, snmp_sysDescr, snmp_sysObjectID, "
"snmp_sysUpTimeInstance, snmp_sysContact, snmp_sysName, snmp_sysLocation, "
"status, status_event_count, status_fail_date, status_rec_date, "
"status_last_error, min_time, max_time, cur_time, avg_time, polling_time, "
"total_polls, failed_polls, availability, last_updated "
"FROM host "
"WHERE poller_id = %d", set.poller_id);
}
snprintf(prefix, BUFSIZE, "INSERT INTO host (id, snmp_sysDescr, snmp_sysObjectID, "
"snmp_sysUpTimeInstance, snmp_sysContact, snmp_sysName, snmp_sysLocation, "
"status, status_event_count, status_fail_date, status_rec_date, "
"status_last_error, min_time, max_time, cur_time, avg_time, polling_time, "
"total_polls, failed_polls, availability, last_updated) VALUES ");
if (set.dbonupdate == 0) {
snprintf(suffix, BUFSIZE, " ON DUPLICATE KEY UPDATE "
"snmp_sysDescr=VALUES(snmp_sysDescr), "
"snmp_sysObjectID=VALUES(snmp_sysObjectID), "
"snmp_sysUpTimeInstance=VALUES(snmp_sysUpTimeInstance), "
"snmp_sysContact=VALUES(snmp_sysContact), "
"snmp_sysName=VALUES(snmp_sysName), "
"snmp_sysLocation=VALUES(snmp_sysLocation), "
"status=VALUES(status), "
"status_event_count=VALUES(status_event_count), "
"status_fail_date=VALUES(status_fail_date), "
"status_rec_date=VALUES(status_rec_date), "
"status_last_error=VALUES(status_last_error), "
"min_time=VALUES(min_time), "
"max_time=VALUES(max_time), "
"cur_time=VALUES(cur_time), "
"avg_time=VALUES(avg_time), "
"polling_time=VALUES(polling_time), "
"total_polls=VALUES(total_polls), "
"failed_polls=VALUES(failed_polls), "
"availability=VALUES(availability), "
"last_updated=VALUES(last_updated)");
} else {
snprintf(suffix, BUFSIZE, " AS rs ON DUPLICATE KEY UPDATE "
"snmp_sysDescr=rs.snmp_sysDescr, "
"snmp_sysObjectID=rs.snmp_sysObjectID, "
"snmp_sysUpTimeInstance=rs.snmp_sysUpTimeInstance, "
"snmp_sysContact=rs.snmp_sysContact, "
"snmp_sysName=rs.snmp_sysName, "
"snmp_sysLocation=rs.snmp_sysLocation, "
"status=rs.status, "
"status_event_count=rs.status_event_count, "
"status_fail_date=rs.status_fail_date, "
"status_rec_date=rs.status_rec_date, "
"status_last_error=rs.status_last_error, "
"min_time=rs.min_time, "
"max_time=rs.max_time, "
"cur_time=rs.cur_time, "
"avg_time=rs.avg_time, "
"polling_time=rs.polling_time, "
"total_polls=rs.total_polls, "
"failed_polls=rs.failed_polls, "
"availability=rs.availability, "
"last_updated=rs.last_updated");
}
if ((result = db_query(&mysql, LOCAL, query)) != 0) {
num_rows = mysql_num_rows(result);
rows = 0;
if (num_rows > 0) {
while ((row = mysql_fetch_row(result))) {
if (rows < 500) {
if (rows == 0) {
sqlp = sqlbuf;
sqlp += sprintf(sqlp, "%s", prefix);
sqlp += sprintf(sqlp, " (");
} else {
sqlp += sprintf(sqlp, ", (");
}
sqlp += sprintf(sqlp, "%s, ", row[0]); // id mediumint
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[1]); // snmp_sysDescr varchar(300)
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[2]); // snmp_sysObjectID varchar(128)
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[3]); // snmp_sysUpTimeInstance bigint
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[4]); // snmp_sysContact varchar(300)
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[5]); // snmp_sysName varchar(300)
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[6]); // snmp_sysLocation varchar(300)
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[7]); // status tinyint
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
sqlp += sprintf(sqlp, "%s, ", row[8]); // status_event_count mediumint
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[9]); // status_fail_date timestamp
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[10]); // status_rec_date timestamp
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[11]); // status_last_error varchar(255)
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
sqlp += sprintf(sqlp, "%s, ", row[12]); // min_time decimal(10,5)
sqlp += sprintf(sqlp, "%s, ", row[13]); // max_time decimal(10,5)
sqlp += sprintf(sqlp, "%s, ", row[14]); // cur_time decimal(10,5)
sqlp += sprintf(sqlp, "%s, ", row[15]); // avg_time decimal(10,5)
sqlp += sprintf(sqlp, "%s, ", row[16]); // polling_time double
sqlp += sprintf(sqlp, "%s, ", row[17]); // total_polls int
sqlp += sprintf(sqlp, "%s, ", row[18]); // failed_polls int
sqlp += sprintf(sqlp, "%s, ", row[19]); // availability decimal(8,5)
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[20]); // last_updated timestamp
sqlp += sprintf(sqlp, "'%s'", tmpstr);
sqlp += sprintf(sqlp, ")");
rows++;
} else {
sqlp += sprintf(sqlp, "%s", suffix);
db_insert(&mysqlr, REMOTE, sqlbuf);
rows = 0;
}
}
}
if (rows > 0) {
sqlp += sprintf(sqlp, "%s", suffix);
db_insert(&mysqlr, REMOTE, sqlbuf);
}
}
db_free_result(result);
SPINE_LOG_MEDIUM(("Pushing Poller Item RRD Next Step to Main Server"));
if (strlen(set.host_id_list)) {
snprintf(query, MEGA_BUFSIZE, "SELECT SQL_NO_CACHE local_data_id, host_id, rrd_name, rrd_step, rrd_next_step "
"FROM poller_item "
"WHERE poller_id = %d "
"AND host_id IN (%s)", set.poller_id, set.host_id_list);
} else {
snprintf(query, MEGA_BUFSIZE, "SELECT SQL_NO_CACHE local_data_id, host_id, rrd_name, rrd_step, rrd_next_step "
"FROM poller_item "
"WHERE poller_id = %d ",
set.poller_id);
}
snprintf(prefix, BUFSIZE, "INSERT INTO poller_item (local_data_id, host_id, rrd_name, rrd_step, rrd_next_step) VALUES ");
if (set.dbonupdate == 0) {
snprintf(suffix, BUFSIZE, " ON DUPLICATE KEY UPDATE "
"rrd_next_step=VALUES(rrd_next_step)");
} else {
snprintf(suffix, BUFSIZE, " AS rs ON DUPLICATE KEY UPDATE "
"rrd_next_step=rs.rrd_next_step");
}
if ((result = db_query(&mysql, LOCAL, query)) != 0) {
num_rows = mysql_num_rows(result);
rows = 0;
if (num_rows > 0) {
while ((row = mysql_fetch_row(result))) {
if (rows < 10000) {
if (rows == 0) {
sqlp = sqlbuf;
sqlp += sprintf(sqlp, "%s", prefix);
sqlp += sprintf(sqlp, " (");
} else {
sqlp += sprintf(sqlp, ", (");
}
sqlp += sprintf(sqlp, "%s, ", row[0]); // local_data_id
sqlp += sprintf(sqlp, "%s, ", row[1]); // host_id
db_escape(&mysql, tmpstr, sizeof(tmpstr), row[2]); // rrd_name
sqlp += sprintf(sqlp, "'%s', ", tmpstr);
sqlp += sprintf(sqlp, "%s, ", row[3]); // rrd_step
sqlp += sprintf(sqlp, "%s", row[4]); // rrd_next_step
sqlp += sprintf(sqlp, ")");
rows++;
} else {
sqlp += sprintf(sqlp, "%s", suffix);
db_insert(&mysqlr, REMOTE, sqlbuf);
rows = 0;
}
}
}
if (rows > 0) {
sqlp += sprintf(sqlp, "%s", suffix);
db_insert(&mysqlr, REMOTE, sqlbuf);
rows = 0;
}
}
db_free_result(result);
db_disconnect(&mysql);
db_disconnect(&mysqlr);
}
/*! \fn int read_spine_config(char *file)
* \brief obtain default startup variables from the spine.conf file.
* \param file the spine config file
*
* \return 0 if successful or -1 if the file could not be opened
*/
int read_spine_config(char *file) {
FILE *fp;
char buff[BUFSIZE];
char *buffer;
char p1[BUFSIZE];
char p2[BUFSIZE];
if ((fp = fopen(file, "rb")) == NULL) {
if (set.log_level == POLLER_VERBOSITY_DEBUG) {
if (!set.stderr_notty) {
fprintf(stderr, "ERROR: Could not open config file [%s]\n", file);
}
}
return -1;
} else {
if (!set.stdout_notty) {
fprintf(stdout, "SPINE: Using spine config file [%s]\n", file);
}
while (!feof(fp)) {
buffer = fgets(buff, BUFSIZE, fp);
if (!feof(fp) && *buff != '#' && *buff != ' ' && *buff != '\n') {
sscanf(buff, "%15s %255s", p1, p2);
if (STRIMATCH(p1, "RDB_Host")) STRNCOPY(set.rdb_host, p2);
else if (STRIMATCH(p1, "RDB_Database")) STRNCOPY(set.rdb_db, p2);
else if (STRIMATCH(p1, "RDB_User")) STRNCOPY(set.rdb_user, p2);
else if (STRIMATCH(p1, "RDB_Pass")) STRNCOPY(set.rdb_pass, p2);
else if (STRIMATCH(p1, "RDB_Port")) set.rdb_port = atoi(p2);
else if (STRIMATCH(p1, "RDB_UseSSL")) set.rdb_ssl = atoi(p2);
else if (STRIMATCH(p1, "RDB_SSL_Key")) STRNCOPY(set.rdb_ssl_key, p2);
else if (STRIMATCH(p1, "RDB_SSL_Cert")) STRNCOPY(set.rdb_ssl_cert, p2);
else if (STRIMATCH(p1, "RDB_SSL_CA")) STRNCOPY(set.rdb_ssl_ca, p2);
else if (STRIMATCH(p1, "DB_Host")) STRNCOPY(set.db_host, p2);
else if (STRIMATCH(p1, "DB_Database")) STRNCOPY(set.db_db, p2);
else if (STRIMATCH(p1, "DB_User")) STRNCOPY(set.db_user, p2);
else if (STRIMATCH(p1, "DB_Pass")) STRNCOPY(set.db_pass, p2);
else if (STRIMATCH(p1, "DB_Port")) set.db_port = atoi(p2);
else if (STRIMATCH(p1, "DB_UseSSL")) set.db_ssl = atoi(p2);
else if (STRIMATCH(p1, "DB_SSL_Key")) STRNCOPY(set.db_ssl_key, p2);
else if (STRIMATCH(p1, "DB_SSL_Cert")) STRNCOPY(set.db_ssl_cert, p2);
else if (STRIMATCH(p1, "DB_SSL_CA")) STRNCOPY(set.db_ssl_ca, p2);
else if (STRIMATCH(p1, "Poller")) set.poller_id = atoi(p2);
else if (STRIMATCH(p1, "DB_PreG")) {
if (!set.stderr_notty) {
fprintf(stderr,"WARNING: DB_PreG is no longer supported\n");
}
} else if (STRIMATCH(p1, "Cacti_Log")) {
STRNCOPY(set.path_logfile, p2);
set.logfile_processed = 1;
set.log_destination = LOGDEST_BOTH;
} else if (STRIMATCH(p1, "SNMP_Clientaddr")) STRNCOPY(set.snmp_clientaddr, p2);
else if (!set.stderr_notty) {
fprintf(stderr,"WARNING: Unrecongized directive: %s=%s in %s\n", p1, p2, file);
}
*p1 = '\0';
*p2 = '\0';
}
}
if (strlen(set.db_pass) == 0) *set.db_pass = '\0';
return 0;
}
}
/*! \fn void config_defaults(void)
* \brief populates the global configuration structure with default spine.conf file settings
* \param *set global runtime parameters
*
*/
void config_defaults() {
set.threads = DEFAULT_THREADS;
/* default server */
set.db_port = DEFAULT_DB_PORT;
STRNCOPY(set.db_host, DEFAULT_DB_HOST);
STRNCOPY(set.db_db, DEFAULT_DB_DB );
STRNCOPY(set.db_user, DEFAULT_DB_USER);
STRNCOPY(set.db_pass, DEFAULT_DB_PASS);
/* remote default server */
set.rdb_port = DEFAULT_DB_PORT;
STRNCOPY(set.rdb_host, DEFAULT_DB_HOST);
STRNCOPY(set.rdb_db, DEFAULT_DB_DB );
STRNCOPY(set.rdb_user, DEFAULT_DB_USER);
STRNCOPY(set.rdb_pass, DEFAULT_DB_PASS);
STRNCOPY(config_paths[0], CONFIG_PATH_1);
STRNCOPY(config_paths[1], CONFIG_PATH_2);
STRNCOPY(config_paths[2], CONFIG_PATH_3);
STRNCOPY(config_paths[3], CONFIG_PATH_4);
set.log_destination = LOGDEST_FILE;
}
/*! \fn void die(const char *format, ...)
* \brief a method to end Spine while returning the fatal error to stderr
*
* Given a printf-style argument list, format it to the standard
* error, append a newline, then exit Spine.
*
*/
void die(const char *format, ...) {
va_list args;
char logmessage[BUFSIZE];
char flogmessage[DBL_BUFSIZE];
int old_errno = errno;
va_start(args, format);
vsprintf(logmessage, format, args);
va_end(args);
if (set.log_perror) {
char perr[BUFSIZE];
snprintf(perr, BUFSIZE, " [%d, %s]", old_errno, strerror(old_errno));
strcat(logmessage,perr);
}
if (set.logfile_processed) {
if (set.parent_fork == SPINE_PARENT) {
snprintf(flogmessage, DBL_BUFSIZE, "%s (Spine parent)", logmessage);
} else {
snprintf(flogmessage, DBL_BUFSIZE, "%s (Spine thread)", logmessage);
}
} else {
snprintf(flogmessage, DBL_BUFSIZE, "%s (Spine init)", logmessage);
}
fprintf(stderr, "%s", flogmessage);
if (set.parent_fork == SPINE_PARENT) {
if (set.php_initialized) {
php_close(PHP_INIT);
}
}
exit(set.exit_code);
}
char * get_date_format() {
char *log_fmt;
if (!(log_fmt = (char *) malloc(GD_FMT_SIZE))) {
die("ERROR: Fatal malloc error: util.c get_date_format!");
}
char log_sep = '/';
if (set.log_datetime_separator < GDC_MIN || set.log_datetime_separator > GDC_MAX) {
set.log_datetime_separator = GDC_DEFAULT;
}
if (set.log_datetime_format < GD_MIN || set.log_datetime_format > GD_MAX) {
set.log_datetime_format = GD_DEFAULT;
}
switch (set.log_datetime_separator) {
case GDC_DOT:
log_sep = '.';
break;
case GDC_HYPHEN:
log_sep = '-';
break;
default:
log_sep = '/';
break;
}
switch (set.log_datetime_format) {
case GD_MO_D_Y:
snprintf(log_fmt, GD_FMT_SIZE, "%%m%c%%d%c%%Y %%H:%%M:%%S - ", log_sep, log_sep);
case GD_MN_D_Y:
snprintf(log_fmt, GD_FMT_SIZE, "%%b%c%%d%c%%Y %%H:%%M:%%S - ", log_sep, log_sep);
case GD_D_MO_Y:
snprintf(log_fmt, GD_FMT_SIZE, "%%d%c%%m%c%%Y %%H:%%M:%%S - ", log_sep, log_sep);
case GD_D_MN_Y:
snprintf(log_fmt, GD_FMT_SIZE, "%%d%c%%b%c%%Y %%H:%%M:%%S - ", log_sep, log_sep);
case GD_Y_MO_D:
snprintf(log_fmt, GD_FMT_SIZE, "%%Y%c%%m%c%%d %%H:%%M:%%S - ", log_sep, log_sep);
case GD_Y_MN_D:
snprintf(log_fmt, GD_FMT_SIZE, "%%Y%c%%b%c%%d %%H:%%M:%%S - ", log_sep, log_sep);
default:
snprintf(log_fmt, GD_FMT_SIZE, "%%Y%c%%m%c%%d %%H:%%M:%%S - ", log_sep, log_sep);
}
return (log_fmt);
}
/*! \fn void spine_log(const char *format, ...)
* \brief output's log information to the desired cacti logfile.
* \param *logmessage a pointer to the pre-formated log message.
*
*/
int spine_log(const char *format, ...) {
va_list args;
FILE *log_file = NULL;
FILE *fp = NULL;
/* variables for time display */
time_t nowbin;
struct tm now_time;
struct tm *now_ptr;
struct timeval now;
/* keep track of an errored log file */
static int log_error = FALSE;
char logprefix[SMALL_BUFSIZE]; /* Formatted Log Prefix */
char ulogmessage[LOGSIZE]; /* Un-Formatted Log Message */
char flogmessage[LOGSIZE]; /* Formatted Log Message */
char stdoutmessage[LRG_LOGSIZE]; /* Message for stdout */
double cur_time;
va_start(args, format);
vsnprintf(ulogmessage, LOGSIZE - 1, format, args);
va_end(args);
/* default for "console" messages to go to stdout */
fp = stdout;
/* log message prefix */
snprintf(logprefix, SMALL_BUFSIZE, "SPINE: Poller[%i] PID[%i] PT[%ld] ", set.poller_id, getpid(), (unsigned long int)pthread_self());
/* get time for poller_output table */
nowbin = time(&nowbin);
localtime_r(&nowbin,&now_time);
now_ptr = &now_time;
if (IS_LOGGING_TO_STDOUT()) {
cur_time = get_time_as_double();
sprintf(stdoutmessage, "Total[%3.4f] %s", cur_time - start_time, ulogmessage);
puts(stdoutmessage);
return TRUE;
}
char * log_fmt = get_date_format();
if (strlen(log_fmt) == 0) {
#ifdef DISABLE_STDERR
fp = stdout;
#else
fp = stderr;
#endif
if ((set.stderr_notty) && (fp == stderr)) {
/* do nothing stderr does not exist */
} else if ((set.stdout_notty) && (fp == stdout)) {
/* do nothing stdout does not exist */
} else {
fprintf(fp, "ERROR: Could not get format from get_date_format()\n");
}
}
if (strftime(flogmessage, 50, log_fmt, now_ptr) == (size_t) 0) {
#ifdef DISABLE_STDERR
fp = stdout;
#else
fp = stderr;
#endif
if ((set.stderr_notty) && (fp == stderr)) {
/* do nothing stderr does not exist */
} else if ((set.stdout_notty) && (fp == stdout)) {
/* do nothing stdout does not exist */
} else {
fprintf(fp, "ERROR: Could not get string from strftime()\n");
}
}
strncat(flogmessage, logprefix, sizeof(flogmessage) - 1);
strncat(flogmessage, ulogmessage, sizeof(flogmessage) - 50);
/* output to syslog/eventlog */
if (IS_LOGGING_TO_SYSLOG()) {
thread_mutex_lock(LOCK_SYSLOG);
openlog("Cacti", LOG_NDELAY | LOG_PID, LOG_SYSLOG);
if ((strstr(flogmessage,"ERROR") || (strstr(flogmessage, "FATAL"))) && (set.log_perror)) {
syslog(LOG_CRIT,"%s\n", flogmessage);
}
if ((strstr(flogmessage,"WARNING")) && (set.log_pwarn)){
syslog(LOG_WARNING,"%s\n", flogmessage);
}
if ((strstr(flogmessage,"STATS")) && (set.log_pstats)){
syslog(LOG_NOTICE,"%s\n", flogmessage);
}
closelog();
thread_mutex_unlock(LOCK_SYSLOG);
}
/* append a line feed to the log message if needed */
if (!strstr(flogmessage, "\n")) {
strcat(flogmessage, "\n");
}
if ((IS_LOGGING_TO_FILE() &&
(set.log_level != POLLER_VERBOSITY_NONE) &&
(strlen(set.path_logfile) != 0))) {
if (set.logfile_processed) {
if (!file_exists(set.path_logfile)) {
log_file = fopen(set.path_logfile, "w");
} else {
log_file = fopen(set.path_logfile, "a");
}
if (log_file) {
fputs(flogmessage, log_file);
fclose(log_file);
} else {
if (!log_error) {
printf("ERROR: Spine Log File Could Not Be Opened/Created\n");
log_error = TRUE;
}
}
}
}
if (set.log_level >= POLLER_VERBOSITY_NONE) {
if ((strstr(flogmessage,"ERROR")) ||
(strstr(flogmessage,"WARNING")) ||
(strstr(flogmessage,"FATAL"))) {
#ifdef DISABLE_STDERR
fp = stdout;
#else
fp = stderr;
#endif
}
if ((set.stderr_notty) && (fp == stderr)) {
/* do nothing stderr does not exist */
} else if ((set.stdout_notty) && (fp == stdout)) {
/* do nothing stdout does not exist */
} else {
fprintf(fp, "%s", flogmessage);
}
}
free(log_fmt);
return TRUE;
}
/*! \fn int file_exists(const char *filename)
* \brief checks for the existance of a file.
* \param *filename the name of the file to check for.
*
* \return TRUE if found FALSE if not.
*
*/
int file_exists(const char *filename) {
struct stat file_stat;
if (stat(filename, &file_stat)) {
return FALSE;
} else {
return TRUE;
}
}
/*! \fn all_digits(const char *string)
* \brief verifies that a string is contains only numeric characters
* \param string the string to check
*
* This function has no leeway: spaces and minus signs and decimal points
* are not digits, and an empty string is (by convention) not
* all-digits too.
*
* \return TRUE if not alpha or special characters found, FALSE if non numeric found
*
*/
int all_digits(const char *string) {
/* empty string is not all digits */
if ( *string == '\0' ) return FALSE;
while ( isdigit((int)*string) )
string++;
return *string == '\0';
}
/*! \fn is_ipaddress(const char *string)
* \brief verifies that a string is an ip address either v4 or v6
* \param string the string to check
*
* This function simply checks to see if a string object is an ip address.
* If it is, it returns true else false.
*
* \return TRUE if an ip address, or FALSE if non
*
*/
int is_ipaddress(const char *string) {
while (*string) {
if ((isdigit((int)*string)) ||
(*string == '.') ||
(*string == ':')) {
string++;
continue;
}
return FALSE;
}
return TRUE;
}
/*! \fn int is_numeric(const char *string)
* \brief check to see if a string is long or double
* \param string the string to check
*
* \return TRUE if long or double, FALSE if not
*
*/
int is_numeric(char *string) {
long local_lval;
double local_dval;
char *end_ptr_long, *end_ptr_double;
int conv_base=10;
int length;
length = strlen(trim(string));
if (!length) {
return FALSE;
}
/* check for an integer */
errno = 0;
local_lval = strtol(string, &end_ptr_long, conv_base);
if (errno != ERANGE) {
if (end_ptr_long == string + length) { /* integer string */
return TRUE;
} else if (end_ptr_long == string) {
if (*end_ptr_long != '\0' &&
*end_ptr_long != '.' &&
*end_ptr_long != '-' &&
*end_ptr_long != '+') { /* ignore partial string matches but doubles can begin with '+', '-', '.' */
return FALSE;
}
}
} else {
end_ptr_long = NULL;
}
/* check for a float */
errno = 0;
local_dval = strtod(string, &end_ptr_double);
if (errno != ERANGE) {
if (end_ptr_double == string + length) { /* floating point string */
return TRUE;
}
} else {
end_ptr_double = NULL;
}
return FALSE;
}
/*! \fn int is_hexadecimal(const char *str, const short ignore_space)
* \brief test whether a string represents a hex number.
* \param str string to test
* \param ignore_space nonzero to skip tabs and spaces
*
* \return TRUE if the string is valid hex, FALSE otherwise
*
* The function is modified where the string needs to include
* at least one of the following string ' ', '-', or ':'
*
*/
int is_hexadecimal(const char * str, const short ignore_special) {
int i = 0;
int delim_found = FALSE;
if (!str) return FALSE;
while (*str) {
switch (*str) {
case '0': case '1': case '2': case '3':
case '4': case '5': case '6': case '7':
case '8': case '9':
case 'a': case 'A': case 'b': case 'B':
case 'c': case 'C': case 'd': case 'D':
case 'e': case 'E': case 'f': case 'F':
case '"':
break;
case '-': case ':': case ' ':
delim_found = TRUE;
break;
case '\t':
if (ignore_special) {
break;
}
default:
return FALSE;
}
str++;
i++;
}
if ((i < 3) || delim_found == FALSE) {
return FALSE;
}
return TRUE;
}
/*! \fn char *strip_alpha(char *string)
* \brief remove trailing alpha characters from a string.
* \param string the string to strip characters from
*
* \return a pointer to the modified string
*
*/
char *strip_alpha(char *string) {
int i;
int j;
i = strlen(string);
j = 0;
/* trim trailing characters */
while (i >= 0) {
if (isdigit((int)string[i])) {
break;
} else {
string[i] = '\0';
}
i--;
}
/* trim leading characters */
while (j < i) {
if (isdigit((int)string[j])) {
break;
} else if (string[j] == '-') {
break;
} else if (string[j] == '+') {
j++;
} else {
j++;
}
}
string = &string[j];
return string;
}
/*! \fn char *add_slashes(char *string)
* \brief add escaping to back slashes on for Windows type commands.
* \param string the string to replace slashes
*
* \return a pointer to the modified string. Variable must be freed by parent.
*
*/
char *add_slashes(char *string) {
int length;
int position;
int new_position;
char *return_str;
if (!(return_str = (char *) malloc(BUFSIZE))) {
die("ERROR: Fatal malloc error: util.c add_slashes!");
}
return_str[0] = '\0';
length = strlen(string);
position = 0;
new_position = 0;
/* simply return on blank string */
if (!length) {
return return_str;
}
while (position < length) {
/* backslash detected, change to forward slash */
if (string[position] == '\\') {
return_str[new_position] = '\\';
new_position++;
return_str[new_position] = '\\';
} else {
return_str[new_position] = string[position];
}
new_position++;
position++;
}
return_str[new_position] = '\0';
return(return_str);
}
/*! \fn char *strncopy(char *dst, const char *src, size_t obuf)
* \brief copies source to destination add a NUL terminator
*
* Copy from source to destination, insuring a NUL termination.
* The size of the buffer *includes* the terminating NUL. Note
* that strncpy() does NOT NUL terminate if the source is the
* size of the destination (yuck).
*
* NOTE: it's very common to call this as:
*
* strncopy(buf, src, sizeof buf)
*
* so we provide an STRNCOPY() macro which adds the size.
*
* \return pointer to destination string
*
*/
#pragma GCC diagnostic push
#if (defined(__GNUC__) && (__GNUC__ > 7)) || (__GNUC__ == 7 && defined(__GNUC_MINOR__) && __GNUC_MINOR__ > 1)
#pragma GCC diagnostic ignored "-Wstringop-overflow"
#endif
char *strncopy(char *dst, const char *src, size_t obuf) {
assert(dst != 0);
assert(src != 0);
size_t len;
len = (strlen(src) < obuf) ? strlen(src) : obuf;
if (len) {
strncpy(dst, src, len);
}
dst[len] = '\0';
return dst;
}
#pragma GCC diagnostic pop
/*! \fn double get_time_as_double()
* \brief fetches system time as a double-precison value
*
* \return system time (at microsecond resolution) as a double
*/
double get_time_as_double(void) {
struct timeval now;
gettimeofday(&now, NULL);
return (now).tv_sec + ((double) (now).tv_usec / 1000000);
}
/*! \fn trim()
* \brief removes leading and trailing blanks, tabs, line feeds and
* carriage returns from a string.
*
* \return the trimmed string.
*/
char *trim(char *str) {
return ltrim(rtrim(str));
}
/*! \fn rtrim()
* \brief removes trailing blanks, tabs, line feeds, carriage returns
* single and double quotes and back-slashed from a string.
*
* \return the trimmed string.
*/
char *rtrim(char *str) {
char *end;
char *trim = " \"\'\\\t\n\r";
if (!str) return NULL;
end = str + strlen(str);
while (end-- > str) {
if (!strchr(trim, *end)) return str;
*end = 0;
}
return str;
}
/*! \fn ltrim()
* \brief removes leading blanks, tabs, line feeds, carriage returns
* single and double quotes and back-slashed from a string.
*
* \return the trimmed string.
*/
char *ltrim(char *str) {
char *trim = " \"\'\\\t\n\r";
if (!str) return NULL;
while (*str) {
if (!strchr(trim, *str)) return str;
++str;
}
return str;
}
/*! \fn reverse()
* \brief reverses a string in place.
*
* \return the reversed string.
*/
char *reverse(char* str) {
int end = strlen(str)-1;
int start = 0;
while (start < end) {
str[start] ^= str[end];
str[end] ^= str[start];
str[start] ^= str[end];
++start;
--end;
}
return str;
}
/*! \fn strpos()
* \brief looks for the position of needle in haystack
*
* \return the position of -1 if not found
*/
int strpos(char *haystack, char *needle) {
char *p = strstr(haystack, needle);
if (p) {
return p - haystack;
}
return -1;
}
/*! \fn char_count()
* \brief counts occurrences of char in string.
*
* \return number of occurrences.
*/
int char_count(const char *str, int chr) {
const unsigned char *my_str = (const unsigned char *) str;
const unsigned char my_chr = chr;
int count = 0;
if (!my_chr) return 1;
while (*my_str) {
if (*my_str++ == my_chr) {
count++;
}
}
return count;
}
unsigned long long hex2dec(char *str) {
int i = 0;
unsigned long long number = 0;
if (!str) return 0;
/* first revers the string */
reverse(str);
while (*str) {
switch (*str) {
case '0':
i++;
break;
case '1':
number += pow(16, i) * 1;
i++;
break;
case '2':
number += pow(16, i) * 2;
i++;
break;
case '3':
number += pow(16, i) * 3;
i++;
break;
case '4':
number += pow(16, i) * 4;
i++;
break;
case '5':
number += pow(16, i) * 5;
i++;
break;
case '6':
number += pow(16, i) * 6;
i++;
break;
case '7':
number += pow(16, i) * 7;
i++;
break;
case '8':
number += pow(16, i) * 8;
i++;
break;
case '9':
number += pow(16, i) * 9;
i++;
break;
case 'a': case 'A':
number += pow(16, i) * 10;
i++;
break;
case 'b': case 'B':
number += pow(16, i) * 11;
i++;
break;
case 'c': case 'C':
number += pow(16, i) * 12;
i++;
break;
case 'd': case 'D':
number += pow(16, i) * 13;
i++;
break;
case 'e': case 'E':
number += pow(16, i) * 14;
i++;
break;
case 'f': case 'F':
number += pow(16, i) * 15;
i++;
break;
case '"': case ' ': case '\t':
break;
default:
return 0;
}
str++;
}
return number;
}
int hasCaps() {
#ifdef HAVE_LCAP
cap_t caps;
cap_value_t capval;
cap_flag_value_t capflag;
/* Recommended caps: cap_net_raw=eip */
caps = cap_get_proc();
if (caps == NULL) {
SPINE_LOG(("ERROR: cap_get_proc failed."));
return FALSE;
}
/* check if cap_net_raw is in effective set */
if (cap_get_flag(caps, CAP_NET_RAW, CAP_EFFECTIVE, &capflag)) {
SPINE_LOG(("ERROR: cap_get_flag for CAP_NET_RAW failed. ICMP ping will not work as non-root user."));
return FALSE;
}
if (capflag != CAP_SET) {
SPINE_LOG(("ERROR: Capability CAP_NET_RAW is not set. ICMP ping will not work as non-root user."));
return FALSE;
}
SPINE_LOG_DEBUG(("DEBUG: Capability CAP_NET_RAW is set."));
cap_free(caps);
return TRUE;
#else
return FALSE;
#endif
}
void checkAsRoot() {
#ifndef __CYGWIN__
#ifdef SOLAR_PRIV
priv_set_t *privset;
char *p;
/* Get the basic set */
privset = priv_str_to_set("basic", ",", NULL);
if (privset == NULL) {
die("ERROR: Could not get basic privset from priv_str_to_set().");
} else {
p = priv_set_to_str(privset, ',', 0);
SPINE_LOG_DEBUG(("DEBUG: Basic privset is: '%s'.", p != NULL ? p : "Unknown"));
}
/* Add priviledge to send/receive ICMP packets */
if (priv_addset(privset, PRIV_NET_ICMPACCESS) < 0) {
SPINE_LOG_DEBUG(("WARNING: Addition of PRIV_NET_ICMPACCESS to privset failed: '%s'.", strerror(errno)));
}
/* Compute the set of privileges that are never needed */
priv_inverse(privset);
/* Remove the set of unneeded privs from Permitted (and by
* implication from Effective) */
if (setppriv(PRIV_OFF, PRIV_PERMITTED, privset) < 0) {
SPINE_LOG_DEBUG(("WARNING: Dropping privileges from PRIV_PERMITTED failed: '%s'.", strerror(errno)));
}
/* Remove unneeded priv set from Limit to be safe */
if (setppriv(PRIV_OFF, PRIV_LIMIT, privset) < 0) {
SPINE_LOG_DEBUG(("WARNING: Dropping privileges from PRIV_LIMIT failed: '%s'.", strerror(errno)));
}
boolean_t pe = priv_ineffect(PRIV_NET_ICMPACCESS);
SPINE_LOG_DEBUG(("DEBUG: Privilege PRIV_NET_ICMPACCESS is: '%s'.", pe != 0 ? "Enabled" : "Disabled"));
set.icmp_avail = pe;
/* Free the privset */
priv_freeset(privset);
free(p);
#else
if (hasCaps() != TRUE) {
SPINE_LOG_DEBUG(("DEBUG: Spine running as %d UID, %d EUID", getuid(), geteuid()));
int ret = seteuid(0);
if (ret != 0) {
SPINE_LOG_DEBUG(("WARNING: Spine NOT able to set effective UID to 0"));
}
if (geteuid() != 0) {
SPINE_LOG_DEBUG(("WARNING: Spine NOT running as root. This is required if using ICMP. Please run \"chown root:root spine;chmod u+s spine\" to resolve."));
set.icmp_avail = FALSE;
} else {
SPINE_LOG_DEBUG(("DEBUG: Spine is running as root."));
set.icmp_avail = TRUE;
if (seteuid(getuid()) == -1) {
SPINE_LOG_DEBUG(("WARNING: Spine unable to drop from root to local user."));
}
}
} else {
SPINE_LOG_DEBUG(("DEBUG: Spine has cap_net_raw capability."));
set.icmp_avail = TRUE;
}
SPINE_LOG_DEBUG(("DEBUG: Spine has %sgot ICMP", set.icmp_avail?"":"not "));
#endif
#endif
}
/*! \fn int get_cacti_version(MYSQL *psql, int mode, const char *setting)
* \brief Returns the version of Cacti as a decimal
*
* Given a pointer to a database get the version of Cacti and convert
* to an integer.
*
* \return the cacti version
*
*/
int get_cacti_version(MYSQL *psql, int mode) {
char qstring[256];
char *retval;
MYSQL_RES *result;
MYSQL_ROW mysql_row;
int i;
int major, minor, point;
int cacti_version;
assert(psql != 0);
sprintf(qstring, "SELECT cacti FROM version LIMIT 1");
result = db_query(psql, mode, qstring);
if (result != 0) {
if (mysql_num_rows(result) > 0) {
mysql_row = mysql_fetch_row(result);
if (mysql_row != NULL) {
retval = strdup(mysql_row[0]);
db_free_result(result);
if (STRIMATCH(retval, "new_install")) {
return 0;
} else {
sscanf(retval, "%d.%d.%d", &major, &minor, &point);
cacti_version = (major * 1000) + (minor * 100) + (point * 1);
return cacti_version;
}
}else{
return 0;
}
}else{
db_free_result(result);
return 0;
}
}else{
return 0;
}
}
|