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
|
#include "config.h"
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "libaudit.h"
#include "auparse.h"
#include "auparse-idata.h"
static void test_new_buffer(void)
{
const char buf1[] = "type=LOGIN msg=audit(1143146623.787:142): pid=1\n";
const char buf2[] = "type=USER_LOGIN msg=audit(1143146623.879:146): pid=2\n";
auparse_state_t *au = auparse_init(AUSOURCE_BUFFER, buf1);
assert(au != NULL);
assert(auparse_next_event(au) > 0);
assert(auparse_get_type(au) == AUDIT_LOGIN);
assert(auparse_new_buffer(au, buf2, strlen(buf2)) == 0);
assert(auparse_next_event(au) > 0);
assert(auparse_get_type(au) == AUDIT_USER_LOGIN);
auparse_destroy(au);
}
static int cb_count;
static void ready_cb(auparse_state_t *au, auparse_cb_event_t e, void *d)
{
if (e == AUPARSE_CB_EVENT_READY)
cb_count++;
}
static void test_feed_state(void)
{
const char buf[] = "type=LOGIN msg=audit(1143146623.787:142): pid=1\n";
auparse_state_t *au = auparse_init(AUSOURCE_FEED, NULL);
assert(au != NULL);
auparse_add_callback(au, ready_cb, NULL, NULL);
assert(auparse_feed_has_data(au) == 0);
assert(auparse_feed(au, buf, strlen(buf)) == 0);
assert(auparse_feed_has_data(au) == 1);
auparse_flush_feed(au);
assert(cb_count == 1);
auparse_destroy(au);
}
static void test_normalize(void)
{
auparse_state_t *au = auparse_init(AUSOURCE_FILE, "./test.log");
assert(au != NULL);
assert(auparse_next_event(au) > 0);
assert(auparse_normalize(au, NORM_OPT_ALL) == 0);
const char *kind = auparse_normalize_get_event_kind(au);
assert(kind && strcmp(kind, "mac-decision") == 0);
assert(auparse_normalize_subject_primary(au) == 1);
assert(auparse_get_field_str(au) != NULL);
auparse_normalize_object_primary(au);
auparse_interpret_realpath(au);
auparse_destroy(au);
}
static void test_compare(void)
{
auparse_state_t *au = auparse_init(AUSOURCE_FILE, "./test.log");
assert(au != NULL);
assert(auparse_next_event(au) > 0);
const au_event_t *e1 = auparse_get_timestamp(au);
assert(e1 != NULL);
au_event_t copy = *e1;
assert(auparse_next_event(au) > 0);
const au_event_t *e2 = auparse_get_timestamp(au);
assert(e2 != NULL);
assert(auparse_node_compare(©, e2) == 0);
assert(auparse_timestamp_compare(©, e2) < 0);
auparse_destroy(au);
}
/* Test parsing of timestamp expressions for millisecond range. */
static void test_timestamp_milli(void)
{
auparse_state_t *au;
char *err = NULL;
int rc;
au = auparse_init(AUSOURCE_FILE, "./test.log");
assert(au != NULL);
rc = ausearch_add_expression(au,
"\\timestamp == ts:1.999",
&err, AUSEARCH_RULE_CLEAR);
assert(rc == 0);
assert(err == NULL);
rc = ausearch_add_expression(au,
"\\timestamp == ts:1.1000",
&err, AUSEARCH_RULE_CLEAR);
assert(rc == -1);
assert(err != NULL);
free(err);
auparse_destroy(au);
}
/* Fuzz path_norm via AUPARSE_TYPE_ESCAPED_FILE interpretations. */
static void test_path_norm(void)
{
const char chars[] = "/a.";
char fuzz[10];
unsigned seeds = 1;
size_t i;
idata id = {
.name = "name",
};
char *out, val[2*sizeof(fuzz)+1];
auparse_state_t *au;
id.cwd = strdup("2F");
for (i = 0; i < sizeof(fuzz) - 1; i++)
seeds *= 3;
au = auparse_init(AUSOURCE_FILE, "/dev/null");
assert(au != NULL);
for (unsigned s = 0; s < seeds; s++) {
unsigned k = s;
for (i = 0; i < sizeof(fuzz) - 1; i++, k /= 3)
fuzz[i] = chars[k % 3];
fuzz[sizeof(fuzz) - 1] = '\0';
audit_encode_value(val, fuzz, sizeof(fuzz));
id.val = val;
out = auparse_do_interpretation(au, AUPARSE_TYPE_ESCAPED_FILE,
&id, AUPARSE_ESC_RAW);
assert(out != NULL);
printf("Normalizing path %s to %s\n", val, out);
free(out);
}
free((void *)id.cwd);
auparse_destroy(au);
}
int main(void)
{
test_new_buffer();
test_feed_state();
test_normalize();
test_compare();
test_timestamp_milli();
test_path_norm();
printf("extra auparse tests: all passed\n");
return 0;
}
|