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 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287
|
/* auparse.c --
* Copyright 2006-08,2012-23 Red Hat Inc.
* All Rights Reserved.
*
* This library 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 library 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 General Public License
* along with this program; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1335, USA.
*
* Authors:
* Steve Grubb <sgrubb@redhat.com>
*/
#include "config.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio_ext.h>
#include <limits.h>
#include "internal.h"
#include "expression.h"
#include "auparse.h"
#include "interpret.h"
#include "auparse-idata.h"
#include "libaudit.h"
#include "common.h"
//#define LOL_EVENTS_DEBUG01 1 // add debug for list of list event
// processing
#ifdef LOL_EVENTS_DEBUG01
static int debug = 0;
#endif
static time_t eoe_timeout = EOE_TIMEOUT;
/* like strchr except string is delimited by length, not null byte */
static char *strnchr(const char *s, int c, size_t n)
{
char *p_char;
const char *p_end = s + n;
for (p_char = (char *)s; p_char < p_end && *p_char != c; p_char++);
if (p_char == p_end) return NULL;
return p_char;
}
static int access_ok(const char *filename)
{
int rc = access(filename, R_OK);
if (rc == 0)
return rc;
#ifdef HAVE_FACCESSAT
// If we have faccessat, let's try effective ids.
return faccessat(AT_FDCWD, filename, R_OK, AT_EACCESS);
#else
// If we don't, return what we have from access()
return rc;
#endif
}
static int setup_log_file_array(auparse_state_t *au)
{
struct daemon_conf config;
char *filename, **tmp;
int len, num = 0, i = 0;
/* Load config so we know where logs are */
if (secure_getenv("AUPARSE_DEBUG"))
set_aumessage_mode(au, MSG_STDERR, DBG_NO);
aup_load_config(au, &config, TEST_SEARCH);
/* for each file */
len = strlen(config.log_file) + 16;
filename = malloc(len);
if (!filename) {
fprintf(stderr, "No memory\n");
aup_free_config(&config);
return 1;
}
/* Find oldest log file */
snprintf(filename, len, "%s", config.log_file);
do {
if (access_ok(filename) != 0)
break;
num++;
snprintf(filename, len, "%s.%d", config.log_file, num);
} while (1);
if (num == 0) {
fprintf(stderr, "No log file\n");
aup_free_config(&config);
free(filename);
return 1;
}
num--;
tmp = malloc((num+2)*sizeof(char *));
if (!tmp) {
fprintf(stderr, "Out of memory. Check %s file, %d line", __FILE__, __LINE__);
aup_free_config(&config);
free(filename);
return 1;
}
/* Got it, now process logs from last to first */
if (num > 0)
snprintf(filename, len, "%s.%d", config.log_file, num);
else
snprintf(filename, len, "%s", config.log_file);
do {
tmp[i++] = strdup(filename);
/* Get next log file */
num--;
if (num > 0)
snprintf(filename, len, "%s.%d", config.log_file, num);
else if (num == 0)
snprintf(filename, len, "%s", config.log_file);
else
break;
} while (1);
aup_free_config(&config);
free(filename);
// Terminate the list
tmp[i] = NULL;
au->source_list = tmp;
return 0;
}
/*
* au_lol_create - Create and initialise the base List of List event structure
* Args:
* lol - pointer to memory holding structure (eg the static au_lo variable)
* Rtns:
* NULL - no memory
* ptr - pointer to array of event nodes (au_lolnode)
*/
static au_lolnode *au_lol_create(au_lol *lol)
{
int sz = ARRAY_LIMIT * sizeof(au_lolnode);
lol->maxi = -1;
if ((lol->array = (au_lolnode *)malloc(sz)) == NULL)
return NULL;
lol->limit = ARRAY_LIMIT;
memset(lol->array, 0x00, sz);
return lol->array;
}
/*
* au_lol_clear - Free or rest the base List of List event structure
*
* Args:
* lol - pointer to memory holding structure (eg the static au_lo variable)
* reset - flag to indicate a reset of the structure, or the complete
* freeing of memory
* Rtns:
* void
*/
static void au_lol_clear(au_lol *lol, int reset)
{
int i;
if (lol->array) {
for (i = 0; i <= lol->maxi; i++) {
if (lol->array[i].l) {
aup_list_clear(lol->array[i].l);
free(lol->array[i].l);
}
}
}
if (reset) {
/* If resetting, we just zero fields */
if (lol->array)
memset(lol->array, 0x00,
lol->limit * sizeof(au_lolnode));
lol->maxi = -1;
} else {
/* If not resetting, we free everything */
if (lol->array) free(lol->array);
lol->array = NULL;
lol->maxi = -1;
}
}
/*
* au_lol_append - Add a new event to our base List of List structure
*
* Args:
* lol - pointer to memory holding structure (eg the static au_lo variable)
* l - event list structure (which contains an event's constituent records)
* Rtns:
* ptr - pointer to au_lolnode which holds the event list structure
* NULL - failed to reallocate memory
*/
static au_lolnode *au_lol_append(au_lol *lol, event_list_t *l)
{
int i;
size_t new_size;
au_lolnode *ptr;
for (i = 0; i < lol->limit; i++) {
au_lolnode *cur = &lol->array[i];
if (cur->status == EBS_EMPTY) {
cur->l = l;
cur->status = EBS_BUILDING;
if (i > lol->maxi)
lol->maxi = i;
return cur;
}
}
/* Over ran the array, make it bigger */
new_size = sizeof(au_lolnode) * (lol->limit + ARRAY_LIMIT);
ptr = realloc(lol->array, new_size);
if (ptr) {
lol->array = ptr;
memset(&lol->array[lol->limit], 0x00,
sizeof(au_lolnode) * ARRAY_LIMIT);
lol->array[i].l = l;
lol->array[i].status = EBS_BUILDING;
lol->maxi = i;
lol->limit += ARRAY_LIMIT;
}
return ptr;
}
/*
* au_get_ready_event - Find the next COMPLETE event in our list and mark EMPTY
*
* Args:
* lol - pointer to memory holding structure (eg the static au_lo variable)
* is_test - do not mark the node EMPTY
* Rtns:
* ptr - pointer to complete node (possibly just marked empty)
* NULL - no complete nodes exist
*/
static event_list_t *au_get_ready_event(auparse_state_t *au, int is_test)
{
int i;
au_lol *lol = au->au_lo;
au_lolnode *lowest = NULL;
if (au->au_ready == 0) {
//if (debug) printf("No events ready\n");
return NULL;
}
for (i=0; i<=lol->maxi; i++) {
// Look for the event with the lowest timestamp
au_lolnode *cur = &(lol->array[i]);
if (cur->status == EBS_EMPTY)
continue;
// If we are just testing for a complete event, return
if (is_test && cur->status == EBS_COMPLETE)
return cur->l;
if (lowest == NULL)
lowest = cur;
else if (auparse_timestamp_compare(&(lowest->l->e),
&(cur->l->e)) == 1)
lowest = cur;
}
if (lowest && lowest->status == EBS_COMPLETE) {
lowest->status = EBS_EMPTY;
au->au_ready--;
return lowest->l;
}
return NULL;
}
/*
* au_check_events - Run though all events marking those we can mark COMPLETE
*
* Args:
* lol - pointer to memory holding structure (eg the static au_lo variable)
* sec - time of current event from stream being processed. We use this to see
* how old the events are we have in our list
* Rtns:
* void
*/
static void au_check_events(auparse_state_t *au, time_t sec)
{
rnode *r;
int i;
au_lol *lol = au->au_lo;
for(i=0; i<=lol->maxi; i++) {
au_lolnode *cur = &lol->array[i];
if (cur->status == EBS_BUILDING) {
if ((r = aup_list_get_cur(cur->l)) == NULL)
continue;
// If eoe_timeout seconds have elapsed, we are done
if (cur->l->e.sec + eoe_timeout <= sec) {
cur->status = EBS_COMPLETE;
au->au_ready++;
} else if (audit_is_last_record(r->type)) {
// If known to be 1 record event, we are done
cur->status = EBS_COMPLETE;
au->au_ready++;
}
}
}
}
/*
* au_terminate_all_events - Mark all events in 'BUILD' state to be COMPLETE
*
* Args:
* lol - pointer to memory holding structure (eg the static au_lo variable)
* Rtns:
* void
*/
static void au_terminate_all_events(auparse_state_t *au)
{
int i;
au_lol *lol = au->au_lo;
for (i=0; i<=lol->maxi; i++) {
au_lolnode *cur = &lol->array[i];
if (cur->status == EBS_BUILDING) {
cur->status = EBS_COMPLETE;
au->au_ready++;
//if (debug) printf("%d events complete\n", au->au_ready);
}
}
}
#ifdef LOL_EVENTS_DEBUG01
/*
* print_list_t - Print summary of event's records
* Args:
* l - event_list to print
* Rtns:
* void
*/
void print_list_t(event_list_t *l)
{
rnode *r;
if (l == NULL) {
printf("\n");
return;
}
printf("0x%p: %lld.%3.3u:%lu %s", l, (long long int)l->e.sec, l->e.milli,
l->e.serial, l->e.host ? l->e.host : "");
printf(" cnt=%u", l->cnt);
for (r = l->head; r != NULL; r = r->next) {
printf(" {%d %d %u}", r->type, r->list_idx, r->line_number);
}
printf("\n");
}
/*
* lol_status - return type of event state as a character
* Args:
* s - event state
* Rtns:
* char - E, B or C for EMPTY, BUILDING or COMPLETE, or '*' for unknown
*/
static char lol_status(au_lol_t s)
{
switch(s) {
case EBS_EMPTY: return 'E'; break;
case EBS_BUILDING: return 'B'; break;
case EBS_COMPLETE: return 'C'; break;
}
return '*';
}
/*
* print_lol - Print a list of list events and their records
* Args:
* label - String to act as label when printing
* lol - pointer to memory holding structure (eg the static au_lo variable)
* Rtns:
* void
*/
void print_lol(char *label, au_lol *lol)
{
int i;
printf("%s 0x%p: a: 0x%p, %d, %d\n", label, lol, lol->array,
lol->maxi, lol->limit);
if (debug > 1) for (i = 0; i <= lol->maxi; i++) {
printf("{%2d 0x%p %c } ", i, (&lol->array[i]),
lol_status(lol->array[i].status));
print_list_t(lol->array[i].l);
}
if (lol->maxi >= 0)
printf("\n");
}
#endif /* LOL_EVENTS_DEBUG01 */
/* General functions that affect operation of the library */
/*
* au_setup_userspace_configitems - load userspace configuration items from auditd.conf
*
* Args:
* au - pointer to auparseing state structure
*
* Rtns:
* void
*/
static void au_setup_userspace_configitems(auparse_state_t *au)
{
struct daemon_conf config;
/* Load config so we know where logs are */
if (secure_getenv("AUPARSE_DEBUG"))
set_aumessage_mode(au, MSG_STDERR, DBG_NO);
aup_load_config(au, &config, TEST_SEARCH);
eoe_timeout = (time_t)config.end_of_event_timeout;
aup_free_config(&config);
}
auparse_state_t *auparse_init(ausource_t source, const void *b)
{
char **tmp, **bb = (char **)b, *buf = (char *)b;
int n, i;
size_t size, len;
auparse_state_t *au = malloc(sizeof(auparse_state_t));
if (au == NULL) {
errno = ENOMEM;
return NULL;
}
au->le = NULL;
/*
* Set up the List of List events base structure
*/
au->au_lo = calloc(sizeof(au_lol), 1);
if (au->au_lo == NULL) {
free(au);
errno = ENOMEM;
return NULL;
}
au_lol_clear(au->au_lo, 0); // python doesn't call auparse_destroy
if (au_lol_create(au->au_lo) == NULL) {
free(au->au_lo);
free(au);
errno = ENOMEM;
return NULL;
}
au->au_ready = 0;
au->escape_mode = AUPARSE_ESC_TTY;
au->message_mode = MSG_QUIET;
au->debug_message = DBG_NO;
au->in = NULL;
au->source_list = NULL;
databuf_init(&au->databuf, 0, 0);
au->callback = NULL;
au->callback_user_data = NULL;
au->callback_user_data_destroy = NULL;
au_setup_userspace_configitems(au);
switch (source)
{
case AUSOURCE_LOGS:
if (setup_log_file_array(au))
goto bad_exit;
break;
case AUSOURCE_FILE:
if (b == NULL)
goto bad_exit;
if (access_ok(b))
goto bad_exit;
tmp = malloc(2*sizeof(char *));
if (tmp == NULL)
goto bad_exit;
tmp[0] = strdup(b);
tmp[1] = NULL;
au->source_list = tmp;
break;
case AUSOURCE_FILE_ARRAY:
if (bb == NULL)
goto bad_exit;
n = 0;
while (bb[n]) {
if (access_ok(bb[n]))
goto bad_exit;
n++;
}
tmp = malloc((n+1)*sizeof(char *));
for (i=0; i<n; i++)
tmp[i] = strdup(bb[i]);
tmp[n] = NULL;
au->source_list = tmp;
break;
case AUSOURCE_BUFFER:
if (buf == NULL)
goto bad_exit;
len = strlen(buf);
if (databuf_init(&au->databuf, len,
DATABUF_FLAG_PRESERVE_HEAD) < 0)
goto bad_exit;
if (databuf_append(&au->databuf, buf, len) < 0)
goto bad_exit;
break;
case AUSOURCE_BUFFER_ARRAY:
if (bb == NULL)
goto bad_exit;
size = 0;
for (n = 0; (buf = bb[n]); n++) {
len = strlen(bb[n]);
if (bb[n][len-1] != '\n') {
size += len + 1;
} else {
size += len;
}
}
if (databuf_init(&au->databuf, size,
DATABUF_FLAG_PRESERVE_HEAD) < 0)
goto bad_exit;
for (n = 0; (buf = bb[n]); n++) {
len = strlen(buf);
if (databuf_append(&au->databuf, buf, len) < 0)
goto bad_exit;
}
break;
case AUSOURCE_DESCRIPTOR:
n = (long)b;
au->in = fdopen(n, "rm");
break;
case AUSOURCE_FILE_POINTER:
au->in = (FILE *)b;
break;
case AUSOURCE_FEED:
if (databuf_init(&au->databuf, 0, 0) < 0) goto bad_exit;
break;
default:
errno = EINVAL;
goto bad_exit;
break;
}
au->source = source;
au->list_idx = 0;
au->line_number = 0;
au->next_buf = NULL;
au->off = 0;
au->cur_buf = NULL;
au->line_pushed = 0;
au->parse_state = EVENT_EMPTY;
au->expr = NULL;
au->find_field = NULL;
au->search_where = AUSEARCH_STOP_EVENT;
au->tmp_translation = NULL;
au->uid_cache = NULL;
au->gid_cache = NULL;
init_interpretation_list(au);
init_normalizer(&au->norm_data);
return au;
bad_exit:
databuf_free(&au->databuf);
/* Free list of events list (au_lo) structure */
au_lol_clear(au->au_lo, 0);
free(au->au_lo);
free(au);
return NULL;
}
void auparse_add_callback(auparse_state_t *au, auparse_callback_ptr callback,
void *user_data, user_destroy user_destroy_func)
{
if (au == NULL) {
errno = EINVAL;
return;
}
if (au->callback_user_data_destroy) {
(*au->callback_user_data_destroy)(au->callback_user_data);
au->callback_user_data = NULL;
}
au->callback = callback;
au->callback_user_data = user_data;
au->callback_user_data_destroy = user_destroy_func;
}
static void consume_feed(auparse_state_t *au, int flush)
{
//if (debug) printf("consume feed, flush %d\n", flush);
while (auparse_next_event(au) > 0) {
if (au->callback) {
(*au->callback)(au, AUPARSE_CB_EVENT_READY,
au->callback_user_data);
}
}
if (flush) {
/* Terminate all outstanding events, as we are at end of input
* (ie mark BUILDING events as COMPLETE events) then if we
* have a callback execute the callback on each event
*/
event_list_t *l;
//if (debug) printf("terminate all events in flush\n");
au_terminate_all_events(au);
while ((l = au_get_ready_event(au, 0)) != NULL) {
rnode *r;
au->le = l; // make this current the event of interest
aup_list_first(l);
r = aup_list_get_cur(l);
free_interpretation_list(au);
load_interpretation_list(au, r->interp);
aup_list_first_field(l);
if (au->callback) {
(*au->callback)(au, AUPARSE_CB_EVENT_READY,
au->callback_user_data);
}
}
}
}
int auparse_new_buffer(auparse_state_t *au, const char *data, size_t data_len)
{
if (au->source != AUSOURCE_BUFFER)
return 1;
auparse_reset(au);
if (databuf_replace(&au->databuf, data, data_len) < 0)
return 1;
return 0;
}
int auparse_feed(auparse_state_t *au, const char *data, size_t data_len)
{
if (databuf_append(&au->databuf, data, data_len) < 0)
return -1;
consume_feed(au, 0);
return 0;
}
int auparse_flush_feed(auparse_state_t *au)
{
consume_feed(au, 1);
return 0;
}
// If there is any data in the state machine, return 1.
// Otherwise return 0 to indicate its empty
int auparse_feed_has_data(const auparse_state_t *au)
{
if (!au)
return 0;
int i;
au_lol *lol = au->au_lo;
// An improvement would be to track how many events we have stored
// to avoid a costly loop
for (i=0; i <= lol->maxi; i++) {
au_lolnode *cur = &(lol->array[i]);
if (cur->status > EBS_EMPTY)
return 1;
}
return 0;
}
// If there is a ready event in the state machine, return 1.
// Otherwise return 0 to indicate its empty
int auparse_feed_has_ready_event(auparse_state_t *au)
{
if (au_get_ready_event(au, 1) != NULL)
return 1;
return 0;
}
void auparse_feed_age_events(auparse_state_t *au)
{
time_t t = time(NULL);
au_check_events(au, t);
consume_feed(au, 0);
}
void auparse_set_escape_mode(auparse_state_t *au, auparse_esc_t mode)
{
if (au == NULL)
return;
au->escape_mode = mode;
}
/*
* Non-public function. Subject to change.
* buf is a string of name value pairs to be used for interpreting.
* Calling this function automatically releases the previous list.
*/
void _auparse_load_interpretations(auparse_state_t *au, const char *buf)
{
free_interpretation_list(au);
if (buf == NULL)
return;
load_interpretation_list(au, buf);
}
/*
* Non-public function. Subject to change.
*/
void _auparse_free_interpretations(auparse_state_t *au)
{
free_interpretation_list(au);
}
int auparse_reset(auparse_state_t *au)
{
if (au == NULL) {
errno = EINVAL;
return -1;
}
/* Create or Free list of events list (au_lo) structure */
if (au->au_lo->array == NULL)
au_lol_create(au->au_lo);
else
au_lol_clear(au->au_lo, 1);
au->parse_state = EVENT_EMPTY;
au->au_ready = 0;
au->le = NULL;
switch (au->source)
{
case AUSOURCE_LOGS:
case AUSOURCE_FILE:
case AUSOURCE_FILE_ARRAY:
if (au->in) {
fclose(au->in);
au->in = NULL;
}
/* Fall through */
case AUSOURCE_DESCRIPTOR:
case AUSOURCE_FILE_POINTER:
if (au->in)
rewind(au->in);
/* Fall through */
case AUSOURCE_BUFFER:
case AUSOURCE_BUFFER_ARRAY:
au->list_idx = 0;
au->line_number = 0;
au->off = 0;
databuf_reset(&au->databuf);
break;
default:
return -1;
}
free_interpretation_list((auparse_state_t *)au);
return 0;
}
char *auparse_metrics(const auparse_state_t *au)
{
char *metrics;
unsigned int uid, gid;
aulookup_metrics(au, &uid, &gid);
if (asprintf(&metrics,
"max lol available: %lu\n"
"max lol used: %d\n"
"pending lol: %d\n"
"uid cache size: %u\n"
"gid cache size: %u",
au->au_lo->limit,
au->au_lo->maxi,
au->au_ready, uid, gid) < 0)
metrics = NULL;
return metrics;
}
/* Add EXPR to AU, using HOW to select the combining operator.
On success, return 0.
On error, free EXPR set errno and return -1.
NOTE: EXPR is freed on error! */
static int add_expr(auparse_state_t *au, struct expr *expr, ausearch_rule_t how)
{
if (au->expr == NULL)
au->expr = expr;
else if (how == AUSEARCH_RULE_CLEAR) {
expr_free(au->expr);
au->expr = expr;
} else {
struct expr *e;
e = expr_create_binary(how == AUSEARCH_RULE_OR ? EO_OR : EO_AND,
au->expr, expr);
if (e == NULL) {
int err;
err = errno;
expr_free(expr);
errno = err;
return -1;
}
au->expr = e;
}
au->expr->started = 0;
return 0;
}
static int ausearch_add_item_internal(auparse_state_t *au, const char *field,
const char *op, const char *value, ausearch_rule_t how, unsigned op_eq,
unsigned op_ne)
{
struct expr *expr;
// Make sure there's a field
if (field == NULL)
goto err_out;
// Make sure how is within range
if (how < AUSEARCH_RULE_CLEAR || how > AUSEARCH_RULE_AND)
goto err_out;
// All pre-checks are done, build a rule
if (strcmp(op, "exists") == 0)
expr = expr_create_field_exists(field);
else {
unsigned t_op;
if (strcmp(op, "=") == 0)
t_op = op_eq;
else if (strcmp(op, "!=") == 0)
t_op = op_ne;
else
goto err_out;
if (value == NULL)
goto err_out;
expr = expr_create_comparison(field, t_op, value);
}
if (expr == NULL)
return -1;
if (add_expr(au, expr, how) != 0)
return -1; /* expr is freed by add_expr() */
return 0;
err_out:
errno = EINVAL;
return -1;
}
int ausearch_add_item(auparse_state_t *au, const char *field, const char *op,
const char *value, ausearch_rule_t how)
{
return ausearch_add_item_internal(au, field, op, value, how, EO_RAW_EQ,
EO_RAW_NE);
}
int ausearch_add_interpreted_item(auparse_state_t *au, const char *field,
const char *op, const char *value, ausearch_rule_t how)
{
return ausearch_add_item_internal(au, field, op, value, how,
EO_INTERPRETED_EQ, EO_INTERPRETED_NE);
}
int ausearch_add_timestamp_item_ex(auparse_state_t *au, const char *op,
time_t sec, unsigned milli, unsigned serial, ausearch_rule_t how)
{
static const struct {
unsigned value;
const char name[3];
} ts_tab[] = {
{EO_VALUE_LT, "<"},
{EO_VALUE_LE, "<="},
{EO_VALUE_GE, ">="},
{EO_VALUE_GT, ">"},
{EO_VALUE_EQ, "="},
};
struct expr *expr;
size_t i;
unsigned t_op;
for (i = 0; i < sizeof(ts_tab) / sizeof(*ts_tab); i++) {
if (strcmp(ts_tab[i].name, op) == 0)
goto found_op;
}
goto err_out;
found_op:
t_op = ts_tab[i].value;
if (milli >= 1000)
goto err_out;
// Make sure how is within range
if (how < AUSEARCH_RULE_CLEAR || how > AUSEARCH_RULE_AND)
goto err_out;
// All pre-checks are done, build a rule
expr = expr_create_timestamp_comparison_ex(t_op, sec, milli, serial);
if (expr == NULL)
return -1;
if (add_expr(au, expr, how) != 0)
return -1; /* expr is freed by add_expr() */
return 0;
err_out:
errno = EINVAL;
return -1;
}
int ausearch_add_timestamp_item(auparse_state_t *au, const char *op, time_t sec,
unsigned milli, ausearch_rule_t how)
{
return ausearch_add_timestamp_item_ex(au, op, sec, milli, 0, how);
}
int ausearch_add_expression(auparse_state_t *au, const char *expression,
char **error, ausearch_rule_t how)
{
struct expr *expr;
if (how < AUSEARCH_RULE_CLEAR || how > AUSEARCH_RULE_AND)
goto err_einval;
expr = expr_parse(expression, error);
if (expr == NULL) {
errno = EINVAL;
return -1;
}
if (add_expr(au, expr, how) != 0)
goto err; /* expr is freed by add_expr() */
return 0;
err_einval:
errno = EINVAL;
err:
*error = NULL;
return -1;
}
int ausearch_add_regex(auparse_state_t *au, const char *regexp)
{
struct expr *expr;
// Make sure there's an expression
if (regexp == NULL)
goto err_out;
expr = expr_create_regexp_expression(regexp);
if (expr == NULL)
return -1;
if (add_expr(au, expr, AUSEARCH_RULE_AND) != 0)
return -1; /* expr is freed by add_expr() */
return 0;
err_out:
errno = EINVAL;
return -1;
}
int ausearch_set_stop(auparse_state_t *au, austop_t where)
{
if (where < AUSEARCH_STOP_EVENT || where > AUSEARCH_STOP_FIELD) {
errno = EINVAL;
return -1;
}
au->search_where = where;
return 0;
}
void ausearch_clear(auparse_state_t *au)
{
if (au->expr != NULL) {
expr_free(au->expr);
au->expr = NULL;
}
au->search_where = AUSEARCH_STOP_EVENT;
}
static void auparse_destroy_common(auparse_state_t *au)
{
if (au == NULL)
return;
if (au->source_list) {
int n = 0;
while (au->source_list[n])
free(au->source_list[n++]);
free(au->source_list);
au->source_list = NULL;
}
au->next_buf = NULL;
free(au->cur_buf);
au->cur_buf = NULL;
au->le = NULL;
au->parse_state = EVENT_EMPTY;
free(au->find_field);
au->find_field = NULL;
ausearch_clear(au);
databuf_free(&au->databuf);
if (au->callback_user_data_destroy) {
(*au->callback_user_data_destroy)(au->callback_user_data);
au->callback_user_data = NULL;
}
if (au->in) {
fclose(au->in);
au->in = NULL;
}
free_interpretation_list(au);
clear_normalizer(&au->norm_data);
au_lol_clear(au->au_lo, 0);
free((void *)au->tmp_translation);
free(au->au_lo);
free(au);
}
void auparse_destroy(auparse_state_t *au)
{
_aulookup_destroy_uid_list(au);
aulookup_destroy_gid_list(au);
auparse_destroy_common(au);
}
void auparse_destroy_ext(auparse_state_t *au, auparse_destroy_what_t what)
{
if (what == AUPARSE_DESTROY_COMMON)
auparse_destroy_common(au);
else if (what == AUPARSE_DESTROY_ALL)
auparse_destroy(au);
return;
}
/* alloc a new buffer, cur_buf which contains a null terminated line
* without a newline (note, this implies the line may be empty (strlen == 0)) if
* successfully read a blank line (e.g. containing only a single newline).
* cur_buf will have been newly allocated with malloc.
*
* Note: cur_buf will be freed the next time this routine is called if
* cur_buf is not NULL, callers who retain a reference to the cur_buf
* pointer will need to set cur_buf to NULL to cause the previous cur_buf
* allocation to persist.
*
* Returns:
* 1 if successful (errno == 0)
* 0 if non-blocking input unavailable (errno == 0)
* -1 if error (errno contains non-zero error code)
* -2 if EOF (errno == 0)
*/
static int readline_file(auparse_state_t *au)
{
ssize_t rc;
char *p_last_char;
size_t n = 0;
if (au->cur_buf != NULL) {
free(au->cur_buf);
au->cur_buf = NULL;
}
if (au->in == NULL) {
errno = EBADF;
return -1;
}
if ((rc = getline(&au->cur_buf, &n, au->in)) <= 0) {
// Note: getline always malloc's if lineptr==NULL or n==0,
// on failure malloc'ed memory is left uninitialized,
// caller must free it.
free(au->cur_buf);
au->cur_buf = NULL;
// Note: feof() does not set errno
if (feof(au->in)) {
// return EOF condition
errno = 0;
return -2;
}
// return error condition, error code in errno
return -1;
}
p_last_char = au->cur_buf + (rc-1);
if (*p_last_char == '\n') { /* nuke newline */
*p_last_char = 0;
}
// return success
errno = 0;
return 1;
}
/* malloc & copy a line into cur_buf from the internal buffer,
* next_buf. cur_buf will contain a null terminated line without a
* newline (note, this implies the line may be empty (strlen == 0)) if
* successfully read a blank line (e.g. containing only a single
* newline).
*
* Note: cur_buf will be freed the next time this routine is called if
* cur_buf is not NULL, callers who retain a reference to the cur_buf
* pointer will need to set cur_buf to NULL to cause the previous cur_buf
* allocation to persist.
*
* Returns:
* 1 if successful (errno == 0)
* 0 if non-blocking input unavailable (errno == 0)
* -1 if error (errno contains non-zero error code)
* -2 if EOF (errno == 0)
*/
static int readline_buf(auparse_state_t *au)
{
char *p_newline=NULL;
size_t line_len;
if (au->cur_buf != NULL) {
free(au->cur_buf);
au->cur_buf = NULL;
}
//if (debug) databuf_print(&au->databuf, 1, "readline_buf");
if (au->databuf.len == 0) {
// return EOF condition
errno = 0;
return -2;
}
if ((p_newline = strnchr(databuf_beg(&au->databuf), '\n',
au->databuf.len)) != NULL) {
line_len = p_newline - databuf_beg(&au->databuf);
/* dup the line */
au->cur_buf = malloc(line_len+1); // +1 for null terminator
if (au->cur_buf == NULL)
return -1; // return error condition, errno set
strncpy(au->cur_buf, databuf_beg(&au->databuf), line_len);
au->cur_buf[line_len] = 0;
if (databuf_advance(&au->databuf, line_len+1) < 0)
return -1;
// return success
errno = 0;
return 1;
} else {
// return no data available
errno = 0;
return 0;
}
}
static int str2event(char *s, au_event_t *e)
{
char *ptr;
errno = 0;
e->sec = strtoul(s, NULL, 10);
if (errno || e->sec > (LONG_MAX - eoe_timeout -1))
return -1;
ptr = strchr(s, '.');
if (ptr) {
ptr++;
e->milli = strtoul(ptr, NULL, 10);
if (errno || e->milli > 999)
return -1;
s = ptr;
} else
e->milli = 0;
ptr = strchr(s, ':');
if (ptr) {
ptr++;
e->serial = strtoul(ptr, NULL, 10);
if (errno)
return -1;
} else
e->serial = 0;
return 0;
}
#ifndef HAVE_STRNDUPA
#define strndupa(s, n) \
({ \
const char *__old = (s); \
size_t __len = strnlen (__old, (n)); \
char *__new = (char *) alloca(__len + 1); \
__new[__len] = '\0'; \
(char *) memcpy (__new, __old, __len); \
})
#endif
/* Returns 0 on success and 1 on error */
static int extract_timestamp(const char *b, au_event_t *e)
{
char *ptr, *tmp;
int rc = 1;
e->host = NULL;
if (*b == 'n')
tmp = strndupa(b, 340);
else
tmp = strndupa(b, 80);
ptr = audit_strsplit(tmp);
if (ptr) {
// Optionally grab the node - may or may not be included
if (*ptr == 'n' && strnlen(ptr, 8) > 5) {
e->host = strdup(ptr+5);
(void)audit_strsplit(NULL);// Bump along to next one
}
// at this point we have type=
ptr = audit_strsplit(NULL);
// strlen is for fuzzers that make invalid lines
if (ptr && strnlen(ptr, 20) > 18) {
if (*(ptr+9) == '(')
ptr+=9;
else
ptr = strchr(ptr, '(');
if (ptr) {
// now we should be pointed at the timestamp
char *eptr;
ptr++;
eptr = strchr(ptr, ')');
if (eptr)
*eptr = 0;
if (str2event(ptr, e) == 0)
rc = 0;
}
// else we have a bad line
}
// else we have a bad line
}
if (rc)
free((void *)e->host);
// else we have a bad line
return rc;
}
static int events_are_equal(const au_event_t *e1, const au_event_t *e2)
{
// Check time & serial first since its most likely way
// to spot 2 different events
if (!(e1->serial == e2->serial && e1->milli == e2->milli &&
e1->sec == e2->sec))
return 0;
// Hmm...same so far, check if both have a host, only a string
// compare can tell if they are the same. Otherwise, if only one
// of them have a host, they are definitely not the same. Its
// a boundary on daemon config.
if (e1->host && e2->host) {
if (strcmp(e1->host, e2->host))
return 0;
} else if (e1->host || e2->host)
return 0;
return 1;
}
/* This function will figure out how to get the next line of input.
* storing it cur_buf. cur_buf will be NULL terminated but will not
* contain a trailing newline. This implies a successful read
* (result == 1) may result in a zero length cur_buf if a blank line
* was read.
*
* cur_buf will have been allocated with malloc. The next time this
* routine is called if cur_buf is non-NULL cur_buf will be freed,
* thus if the caller wishes to retain a reference to malloc'ed
* cur_buf data it should copy the cur_buf pointer and set cur_buf to
* NULL.
*
* Returns:
* 1 if successful (errno == 0)
* 0 if non-blocking input unavailable (errno == 0)
* -1 if error (errno contains non-zero error code)
* -2 if EOF (errno == 0)
*/
static int retrieve_next_line(auparse_state_t *au)
{
int rc;
// If line was pushed back for re-reading return that
if (au->line_pushed) {
// Starting new event, clear previous event data,
// previous line is returned again for new parsing
au->line_pushed = 0;
au->line_number++;
return 1;
}
switch (au->source)
{
case AUSOURCE_DESCRIPTOR:
case AUSOURCE_FILE_POINTER:
rc = readline_file(au);
if (rc > 0) au->line_number++;
return rc;
case AUSOURCE_LOGS:
case AUSOURCE_FILE:
case AUSOURCE_FILE_ARRAY:
// if the first time through, open file
if (au->list_idx == 0 && au->in == NULL &&
au->source_list != NULL) {
if (au->source_list[au->list_idx] == NULL) {
errno = 0;
return -2;
}
au->line_number = 0;
au->in = fopen(au->source_list[au->list_idx],
"rm");
if (au->in == NULL)
return -1;
__fsetlocking(au->in, FSETLOCKING_BYCALLER);
}
// loop reading lines from a file
while (au->in) {
if ((rc = readline_file(au)) == -2) {
// end of file, open next file,
// try readline again
fclose(au->in);
au->in = NULL;
au->list_idx++;
au->line_number = 0;
if (au->source_list[au->list_idx]) {
au->in = fopen(
au->source_list[au->list_idx],
"rm");
if (au->in == NULL)
return -1;
__fsetlocking(au->in,
FSETLOCKING_BYCALLER);
}
} else {
if (rc > 0)
au->line_number++;
return rc;
}
}
return -2; // return EOF
case AUSOURCE_BUFFER:
case AUSOURCE_BUFFER_ARRAY:
rc = readline_buf(au);
if (rc > 0)
au->line_number++;
return rc;
case AUSOURCE_FEED:
rc = readline_buf(au);
// No such thing as EOF for feed, translate EOF
// to data not available
if (rc == -2)
return 0;
else
if (rc > 0)
au->line_number++;
return rc;
default:
return -1;
}
return -1; /* should never reach here */
}
/*******
* Functions that traverse events.
********/
static int ausearch_reposition_cursors(const auparse_state_t *au)
{
int rc = 0;
switch (au->search_where)
{
case AUSEARCH_STOP_EVENT:
aup_list_first(au->le);
aup_list_first_field(au->le);
break;
case AUSEARCH_STOP_RECORD:
aup_list_first_field(au->le);
break;
case AUSEARCH_STOP_FIELD:
// do nothing - this is the normal stopping point
break;
default:
rc = -1;
break;
}
return rc;
}
/* This is called during search once per each record. It walks the list
* of nvpairs and decides if a field matches. */
static int ausearch_compare(auparse_state_t *au)
{
rnode *r;
if (au->le == NULL)
return 0;
r = aup_list_get_cur(au->le);
if (r) {
int res = expr_eval(au, r, au->expr);
return res;
}
return 0;
}
// Returns < 0 on error, 0 no data, > 0 success
int ausearch_cur_event(auparse_state_t* au) {
int rc, records;
if (au->expr == NULL) {
errno = EINVAL;
return -1;
}
records = auparse_get_num_records(au);
for (int i = 0; i < records; i++) {
if (auparse_goto_record_num(au, i) != 1)
return -1;
if ((rc = ausearch_compare(au)) > 0) {
ausearch_reposition_cursors(au);
return 1;
} else if (rc < 0)
return rc;
}
return 0;
}
// Returns < 0 on error, 0 no data, > 0 success
int ausearch_next_event(auparse_state_t *au)
{
int rc;
if (au->expr == NULL) {
errno = EINVAL;
return -1;
}
if (au->expr->started == 0) {
if ((rc = auparse_first_record(au)) <= 0)
return rc;
au->expr->started = 1;
} else {
if ((rc = auparse_next_event(au)) <= 0)
return rc;
}
do {
do {
if ((rc = ausearch_compare(au)) > 0) {
ausearch_reposition_cursors(au);
return 1;
} else if (rc < 0)
return rc;
} while ((rc = auparse_next_record(au)) > 0);
if (rc < 0)
return rc;
} while ((rc = auparse_next_event(au)) > 0);
if (rc < 0)
return rc;
return 0;
}
/*
* au_auparse_next_event - Get the next complete event
* Args:
* au - the parser state machine
* Rtns:
* < 0 - error
* == 0 - no data
* > 0 - we have an event and it's set to the 'current event' au->le
*/
static int au_auparse_next_event(auparse_state_t *au)
{
int rc, i, built;
event_list_t *l;
au_event_t e;
/*
* Deal with Python memory management issues where it issues a
* auparse_destroy() call after an auparse_init() call but then wants
* to still work with auparse data. Basically, we assume if the user
* wants to parse for events (calling auparse_next_event()) we accept
* that they expect the memory structures to exist. This is a bit
* 'disconcerting' but the au_lol capability is a patch trying to
* redress a singleton approach to event processing.
*/
if (au->au_lo->array == NULL && au->au_lo->maxi == -1) {
#ifdef LOL_EVENTS_DEBUG01
if (debug) printf("Creating lol array\n");
#endif /* LOL_EVENTS_DEBUG01 */
au_lol_create(au->au_lo);
}
/*
* First see if we have any empty events but with an allocated event
* list. These would have just been processed, so we can free them
*/
for (i = 0; i <= au->au_lo->maxi; i++) {
au_lolnode *cur = &au->au_lo->array[i];
if (cur->status == EBS_EMPTY && cur->l) {
#ifdef LOL_EVENTS_DEBUG01
if (debug) {
printf("Freeing at start ");
print_list_t(cur->l);
}
#endif /* LOL_EVENTS_DEBUG01 */
aup_list_clear(cur->l);
free(cur->l);
au->le = NULL; // this should crash any usage
// of au->le until reset
cur->l = NULL;
}
}
/*
* Now see if we have completed events queued, and if so grab the
* first one and set it to be the 'current' event of interest
*/
if ((l = au_get_ready_event(au, 0)) != NULL) {
rnode *r;
aup_list_first(l);
r = aup_list_get_cur(l);
free_interpretation_list(au);
load_interpretation_list(au, r->interp);
aup_list_first_field(l);
au->le = l;
#ifdef LOL_EVENTS_DEBUG01
if (debug) print_lol("upfront", au->au_lo);
#endif /* LOL_EVENTS_DEBUG01 */
return 1;
}
/*
* If no complete events are available, lets ingest
*/
while (1) {
for (i = 0; i <= au->au_lo->maxi; i++) {
au_lolnode *cur = &au->au_lo->array[i];
if (cur->status == EBS_EMPTY && cur->l) {
#ifdef LOL_EVENTS_DEBUG01
if (debug) {
printf("Freeing at loop");
print_list_t(cur->l);
}
#endif /* LOL_EVENTS_DEBUG01 */
aup_list_clear(cur->l);
free(cur->l);
au->le = NULL; /* this should crash any usage of au->le until reset */
cur->l = NULL;
}
}
rc = retrieve_next_line(au);
#ifdef LOL_EVENTS_DEBUG01
if (debug) printf("next_line(%d) '%s'\n", rc, au->cur_buf);
#endif /* LOL_EVENTS_DEBUG01 */
if (rc == 0) {
#ifdef LOL_EVENTS_DEBUG01
if (debug) printf("Empty line\n");
#endif /* LOL_EVENTS_DEBUG01 */
return 0; /* NO data now */
}
if (rc == -2) {
/*
* We are at EOF, so see if we have any accumulated
* events.
*/
#ifdef LOL_EVENTS_DEBUG01
if (debug) printf("EOF\n");
#endif /* LOL_EVENTS_DEBUG01 */
au_terminate_all_events(au);
if ((l = au_get_ready_event(au, 0)) != NULL) {
rnode *r;
aup_list_first(l);
r = aup_list_get_cur(l);
free_interpretation_list(au);
load_interpretation_list(au, r->interp);
aup_list_first_field(l);
au->le = l;
#ifdef LOL_EVENTS_DEBUG01
if (debug)
print_lol("eof termination", au->au_lo);
#endif /* LOL_EVENTS_DEBUG01 */
return 1;
}
return 0;
} else if (rc < 0) {
#ifdef LOL_EVENTS_DEBUG01
/* Straight error */
if (debug)
printf("Error %d\n", rc);
#endif /* LOL_EVENTS_DEBUG01 */
return -1;
}
/* So we got a successful read ie rc > 0 */
if (extract_timestamp(au->cur_buf, &e)) {
#ifdef LOL_EVENTS_DEBUG01
if (debug)
printf("Malformed line:%s\n", au->cur_buf);
#endif /* LOL_EVENTS_DEBUG01 */
continue;
}
/*
* Is this an event we have already been building?
*/
built = 0;
for (i = 0; i <= au->au_lo->maxi; i++) {
au_lolnode *cur = &au->au_lo->array[i];
if (cur->status == EBS_BUILDING) {
if (events_are_equal(&cur->l->e, &e)) {
#ifdef LOL_EVENTS_DEBUG01
if (debug)
printf("Adding event to building event\n");
#endif /* LOL_EVENTS_DEBUG01 */
if (aup_list_append(cur->l, au->cur_buf,
au->list_idx, au->line_number) < 0) {
au->cur_buf = NULL;
continue;
}
au->cur_buf = NULL;
free((char *)e.host);
au_check_events(au, e.sec);
#ifdef LOL_EVENTS_DEBUG01
if (debug)
print_lol("building",au->au_lo);
#endif /* LOL_EVENTS_DEBUG01 */
/* we built something, so break out */
built++;
break;
}
}
}
if (built)
continue;
/* So create one */
#ifdef LOL_EVENTS_DEBUG01
if (debug)
printf("First record in new event, initialize event\n");
#endif /* LOL_EVENTS_DEBUG01 */
if ((l=(event_list_t *)malloc(sizeof(event_list_t))) == NULL) {
free((char *)e.host);
return -1;
}
aup_list_create(l);
aup_list_set_event(l, &e);
if (aup_list_append(l, au->cur_buf, au->list_idx,
au->line_number) < 0) {
au->cur_buf = NULL;
aup_list_clear(l);
free(l);
continue;
}
// Eat standalone EOE - main event was already marked complete
if (l->head->type == AUDIT_EOE) {
au->cur_buf = NULL;
aup_list_clear(l);
free(l);
continue;
}
if (au_lol_append(au->au_lo, l) == NULL) {
free((char *)e.host);
au->cur_buf = NULL;
aup_list_clear(l);
free(l);
#ifdef LOL_EVENTS_DEBUG01
if (debug) printf("error appending to lol\n");
#endif /* LOL_EVENTS_DEBUG01 */
return -1;
}
au->cur_buf = NULL;
free((char *)e.host);
au_check_events(au, e.sec);
if ((l = au_get_ready_event(au, 0)) != NULL) {
rnode *r;
aup_list_first(l);
r = aup_list_get_cur(l);
free_interpretation_list(au);
load_interpretation_list(au, r->interp);
aup_list_first_field(l);
au->le = l;
#ifdef LOL_EVENTS_DEBUG01
if (debug) print_lol("basic", au->au_lo);
#endif /* LOL_EVENTS_DEBUG01 */
return 1;
}
}
}
// Brute force go to next event. Returns < 0 on error, 0 no data, > 0 success
int auparse_next_event(auparse_state_t *au)
{
clear_normalizer(&au->norm_data);
return au_auparse_next_event(au);
}
/* Accessors to event data */
const au_event_t *auparse_get_timestamp(const auparse_state_t *au)
{
if (au && au->le && au->le->e.sec != 0)
return &au->le->e;
else
return NULL;
}
time_t auparse_get_time(const auparse_state_t *au)
{
if (au && au->le)
return au->le->e.sec;
else
return 0;
}
unsigned int auparse_get_milli(const auparse_state_t *au)
{
if (au && au->le)
return au->le->e.milli;
else
return 0;
}
unsigned long auparse_get_serial(const auparse_state_t *au)
{
if (au && au->le)
return au->le->e.serial;
else
return 0;
}
// Gets the machine node name
const char *auparse_get_node(const auparse_state_t *au)
{
if (au && au->le && au->le->e.host != NULL)
return strdup(au->le->e.host);
else
return NULL;
}
int auparse_node_compare(const au_event_t *e1, const au_event_t *e2)
{
// If both have a host, only a string compare can tell if they
// are the same. Otherwise, if only one of them have a host, they
// are definitely not the same. Its a boundary on daemon config.
if (e1->host && e2->host)
return strcmp(e1->host, e2->host);
else if (e1->host)
return 1;
else if (e2->host)
return -1;
return 0;
}
int auparse_timestamp_compare(const au_event_t *e1, const au_event_t *e2)
{
if (e1->sec > e2->sec)
return 1;
if (e1->sec < e2->sec)
return -1;
if (e1->milli > e2->milli)
return 1;
if (e1->milli < e2->milli)
return -1;
if (e1->serial > e2->serial)
return 1;
if (e1->serial < e2->serial)
return -1;
return 0;
}
unsigned int auparse_get_num_records(const auparse_state_t *au)
{
// Its OK if au->le == NULL because get_cnt handles it
return aup_list_get_cnt(au->le);
}
unsigned int auparse_get_record_num(const auparse_state_t *au)
{
if (au->le == NULL)
return 0;
rnode *r = aup_list_get_cur(au->le);
if (r)
return r->item;
return 0;
}
/* Functions that traverse records in the same event */
int auparse_first_record(auparse_state_t *au)
{
int rc;
rnode *r;
// Its OK if au->le == NULL because get_cnt handles it
if (aup_list_get_cnt(au->le) == 0) {
// This function loads interpretations
rc = auparse_next_event(au);
if (rc <= 0)
return rc;
}
r = aup_list_get_cur(au->le);
if (r && r->item == 0 && interpretation_list_cnt(au)) {
// If we are on the first record and the list has previously
// been loaded, just pull cursor back and avoid loading the
// interpretation list.
aup_list_first_field(au->le);
return 1;
}
aup_list_first(au->le);
r = aup_list_get_cur(au->le);
free_interpretation_list(au);
load_interpretation_list(au, r->interp);
aup_list_first_field(au->le);
return 1;
}
/*
* Returns: -1 if an error occurs,
* 0 if no more records in current event,
* 1 for success.
*/
int auparse_next_record(auparse_state_t *au)
{
rnode *r;
free_interpretation_list(au);
// Its OK if au->le == NULL because get_cnt handles it
if (aup_list_get_cnt(au->le) == 0) {
int rc = auparse_first_record(au);
if (rc <= 0)
return rc;
}
r = aup_list_next(au->le);
if (r) {
load_interpretation_list(au, r->interp);
return 1;
} else
return 0;
}
int auparse_goto_record_num(auparse_state_t *au, unsigned int num)
{
rnode *r;
r = aup_list_get_cur(au->le);
if (r && r->item == num && interpretation_list_cnt(au)) {
// If we are on the first record and the list has previously
// been loaded, just pull cursor back and avoid loading the
// interpretation list.
aup_list_first_field(au->le);
return 1;
}
/* Check if a request is out of range */
free_interpretation_list(au);
// Its OK if au->le == NULL because get_cnt handles it
if (num >= aup_list_get_cnt(au->le))
return 0;
r = aup_list_goto_rec(au->le, num);
if (r != NULL) {
load_interpretation_list(au, r->interp);
aup_list_first_field(au->le);
return 1;
} else
return 0;
}
/* Accessors to record data */
int auparse_get_type(const auparse_state_t *au)
{
if (au->le == NULL)
return 0;
rnode *r = aup_list_get_cur(au->le);
if (r)
return r->type;
else
return 0;
}
const char *auparse_get_type_name(const auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
rnode *r = aup_list_get_cur(au->le);
if (r)
return audit_msg_type_to_name(r->type);
else
return NULL;
}
unsigned int auparse_get_line_number(const auparse_state_t *au)
{
if (au->le == NULL)
return 0;
rnode *r = aup_list_get_cur(au->le);
if (r)
return r->line_number;
else
return 0;
}
const char *auparse_get_filename(const auparse_state_t *au)
{
switch (au->source)
{
case AUSOURCE_FILE:
case AUSOURCE_FILE_ARRAY:
break;
default:
return NULL;
}
if (au->le == NULL)
return NULL;
rnode *r = aup_list_get_cur(au->le);
if (r) {
if (r->list_idx < 0) return NULL;
return au->source_list[r->list_idx];
} else {
return NULL;
}
}
int auparse_first_field(const auparse_state_t *au)
{
if (au->le == NULL)
return 0;
return aup_list_first_field(au->le);
}
int auparse_next_field(const auparse_state_t *au)
{
if (au->le == NULL)
return 0;
rnode *r = aup_list_get_cur(au->le);
if (r) {
if (nvlist_next(&r->nv))
return 1;
else
return 0;
}
return 0;
}
unsigned int auparse_get_num_fields(const auparse_state_t *au)
{
if (au->le == NULL)
return 0;
rnode *r = aup_list_get_cur(au->le);
if (r)
return nvlist_get_cnt(&r->nv);
else
return 0;
}
const char *auparse_get_record_text(const auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
rnode *r = aup_list_get_cur(au->le);
if (r)
return r->record;
else
return NULL;
}
const char *auparse_get_record_interpretations(const auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
rnode *r = aup_list_get_cur(au->le);
if (r)
return r->interp;
else
return NULL;
}
/* scan from current location to end of event */
const char *auparse_find_field(auparse_state_t *au, const char *name)
{
if (au->le == NULL)
return NULL;
free(au->find_field);
au->find_field = strdup(name);
if (au->le->e.sec) {
const char *cur_name;
rnode *r;
// look at current record before moving
r = aup_list_get_cur(au->le);
if (r == NULL)
return NULL;
cur_name = nvlist_get_cur_name(&r->nv);
if (cur_name && strcmp(cur_name, name) == 0)
return nvlist_get_cur_val(&r->nv);
return auparse_find_field_next(au);
}
return NULL;
}
/* Increment 1 location and then scan for next field */
const char *auparse_find_field_next(auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
if (au->find_field == NULL) {
errno = EINVAL;
return NULL;
}
if (au->le->e.sec) {
int moved = 0;
rnode *r = aup_list_get_cur(au->le);
while (r) { // For each record in the event...
if (!moved) {
if (nvlist_next(&r->nv) == NULL)
return NULL;
moved=1;
}
if (nvlist_find_name(&r->nv, au->find_field))
return nvlist_get_cur_val(&r->nv);
r = aup_list_next(au->le);
if (r) {
aup_list_first_field(au->le);
free_interpretation_list(au);
load_interpretation_list(au, r->interp);
}
}
}
return NULL;
}
/* Accessors to field data */
unsigned int auparse_get_field_num(const auparse_state_t *au)
{
if (au->le == NULL)
return 0;
rnode *r = aup_list_get_cur(au->le);
if (r) {
nvnode *n = nvlist_get_cur(&r->nv);
if (n)
return n->item;
}
return 0;
}
int auparse_goto_field_num(const auparse_state_t *au, unsigned int num)
{
if (au->le == NULL)
return 0;
rnode *r = aup_list_get_cur(au->le);
if (r) {
if (num >= r->nv.cnt)
return 0;
if ((nvlist_goto_rec(&r->nv, num)))
return 1;
}
return 0;
}
const char *auparse_get_field_name(const auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
if (au->le->e.sec) {
rnode *r = aup_list_get_cur(au->le);
if (r)
return nvlist_get_cur_name(&r->nv);
}
return NULL;
}
const char *auparse_get_field_str(const auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
if (au->le->e.sec) {
rnode *r = aup_list_get_cur(au->le);
if (r)
return nvlist_get_cur_val(&r->nv);
}
return NULL;
}
int auparse_get_field_type(const auparse_state_t *au)
{
if (au->le == NULL)
return AUPARSE_TYPE_UNCLASSIFIED;
if (au->le->e.sec) {
rnode *r = aup_list_get_cur(au->le);
if (r)
return nvlist_get_cur_type(r);
}
return AUPARSE_TYPE_UNCLASSIFIED;
}
int auparse_get_field_int(const auparse_state_t *au)
{
const char *v = auparse_get_field_str(au);
if (v) {
int val;
errno = 0;
val = strtol(v, NULL, 10);
if (errno == 0)
return val;
} else
errno = ENODATA;
return -1;
}
const char *auparse_interpret_field(auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
if (au->le->e.sec) {
rnode *r = aup_list_get_cur(au->le);
if (r) {
r->cwd = NULL;
return nvlist_interp_cur_val(au, r);
}
}
return NULL;
}
const char *auparse_interpret_realpath(const auparse_state_t *au)
{
if (au->le == NULL)
return NULL;
if (au->le->e.sec) {
rnode *r = aup_list_get_cur(au->le);
if (r) {
if (nvlist_get_cur_type(r) != AUPARSE_TYPE_ESCAPED_FILE)
return NULL;
// Tell it to make a realpath
r->cwd = au->le->cwd;
return nvlist_interp_cur_val((auparse_state_t *)au, r);
}
}
return NULL;
}
static const char *auparse_interpret_sock_parts(auparse_state_t *au,
const char *field)
{
if (au->le == NULL)
return NULL;
if (au->le->e.sec) {
rnode *r = aup_list_get_cur(au->le);
if (r == NULL)
return NULL;
// This is limited to socket address fields
if (nvlist_get_cur_type(r) != AUPARSE_TYPE_SOCKADDR)
return NULL;
// Get interpretation
const char *val=nvlist_interp_cur_val((auparse_state_t *)au,r);
if (val == NULL)
return NULL;
// make a copy since we modify it
char *tmp = strdup(val);
if (tmp == NULL)
return NULL;
// Locate the address part
val = strstr(tmp, field);
if (val) {
// Get past the =
val += strlen(field);
// find other side
char *ptr = strchr(val, ' ');
if (ptr) {
// terminate, copy, and return it
*ptr = 0;
const char *final = strdup(val);
free(tmp);
free((void *)au->tmp_translation);
au->tmp_translation = final;
return final;
}
}
free(tmp);
}
return NULL;
}
const char *auparse_interpret_sock_family(auparse_state_t *au)
{
return auparse_interpret_sock_parts(au, "fam=");
}
const char *auparse_interpret_sock_port(auparse_state_t *au)
{
return auparse_interpret_sock_parts(au, "lport=");
}
const char *auparse_interpret_sock_address(auparse_state_t *au)
{
return auparse_interpret_sock_parts(au, "laddr=");
}
/*
* auparse_set_eoe_timeout - set the end of event timeout value
*
* Args
* new_tmo - new timeout value
* Rtns
* 0 - correctly set
* 1 - failed to set
*/
int auparse_set_eoe_timeout (time_t new_tmo) {
if (new_tmo == 0)
return 1;
eoe_timeout = new_tmo;
return 0;
}
|