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
|
/* internal.h --
* Copyright 2006-07,2013-17,2025 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 Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors:
* Steve Grubb <sgrubb@redhat.com>
*/
#ifndef AUPARSE_INTERNAL_HEADER
#define AUPARSE_INTERNAL_HEADER
#include "auparse-defs.h"
#include "ellist.h"
#include "auditd-config.h"
#include "data_buf.h"
#include "normalize-llist.h"
#include "dso.h"
#include "nvlist.h"
#include "lru.h"
#include <stdio.h>
/* This is what state the parser is in */
typedef enum { EVENT_EMPTY, EVENT_ACCUMULATING, EVENT_EMITTED } auparser_state_t;
/*
* NOTES:
* Auditd events are made up of one or more records. The auditd system cannot
* guarantee that the set of records that make up an event will occur
* atomically, that is the stream will have interleaved records of different
* events. IE
* ...
* event0_record0
* event1_record0
* event1_record1
* event2_record0
* event1_record3
* event2_record1
* event1_record4
* event3_record0
* ...
*
* The auditd system does guarantee that the records that make up an event will
* appear in order. Thus, when processing event streams, we need to maintain
* a list of events with their own list of records hence List of List (LOL)
* event processing.
*
* When processing an event stream we detect the end of an event via a common
* function, audit_is_last_record, or the time of the event is over eoe_timeout
* seconds old. eoe_timeout is the configuration item, 'end_of_event_timeout',
* in the auditd.conf configuration file. It's default is EOE_TIMEOUT
*
* So, under LOL_EVENT processing, a event node (au_lolnode) can be either
*
* EBS_EMPTY: node is scheduled for emptying (freeing)
* EBS_BUILDING: node is still building (awaiting more records and/or awaiting
* an End of Event action)
* EBS_COMPLETE: node is complete and available for use
*
* The old auparse() library processed events as they appeared and hence failed
* to deal with interleaved records. The old library kept a 'current' event
* which it would parse. This new LOL_EVENT code maintains the concept of a
* 'current' event, but it now points to an event within the list of list
* events structure.
*/
typedef enum { EBS_EMPTY, EBS_BUILDING, EBS_COMPLETE } au_lol_t;
/*
* Structure to hold an event and it's list of constituent records
*/
typedef struct _au_lolnode {
event_list_t *l; /* the list of this event's records */
au_lol_t status; /* this event's build state */
} au_lolnode;
/*
* List of events being processed at any one time
*/
typedef struct {
au_lolnode *array; /* array of events */
int maxi; /* largest index in array used */
size_t limit; /* number of events in array */
} au_lol;
/*
* The list is a dynamically growable list. We initially hold ARRAY_LIMIT
* events and grow by ARRAY_LIMIT if we need to maintain more events at
* any one time
*/
#define ARRAY_LIMIT 80
/* This is the name/value pair used by search tables */
struct nv_pair {
int value;
const char *name;
};
typedef uint32_t value_t;
typedef struct subj
{
value_t primary; // typically auid
value_t secondary; // typically uid
cllist attr; // List of attributes
const char *what; // What the subject is
} subject;
typedef struct obj
{
value_t primary;
value_t secondary;
value_t two; // Sometimes we have a second e.g. rename/mount
cllist attr; // List of attributes
unsigned int what; // What the primary object is
} object;
typedef struct data
{
const char *evkind;
value_t session;
subject actor;
const char *action;
object thing;
value_t results;
const char *how;
normalize_option_t opt;
value_t key;
} normalize_data;
struct opaque
{
ausource_t source; // Source type
char **source_list; // Array of buffers, or array of
// file names
int list_idx; // The index into the source list
FILE *in; // If source is file, this is the fd
unsigned int line_number; // line number of current file, zero
// if invalid
char *next_buf; // The current buffer being broken down
unsigned int off; // The current offset into next_buf
char *cur_buf; // The current buffer being parsed
int line_pushed; // True if retrieve_next_line()
// returns same input
event_list_t *le; // Linked list of record in same event
struct expr *expr; // Search expression or NULL
char *find_field; // Used to store field name when
// searching
austop_t search_where; // Where to put the cursors on a match
auparser_state_t parse_state; // parsing state
DataBuf databuf; // input data
// function to call to notify user of parsing changes
void (*callback)(struct opaque *au, auparse_cb_event_t cb_event_type,
void *user_data);
void *callback_user_data; // user data supplied to callback
// function to call when user_data is destroyed
void (*callback_user_data_destroy)(void *user_data);
au_lol *au_lo; // List of events
int au_ready; // For speed, we note how many EBS_COMPLETE
// events we hold at any point in time. Thus
// we don't have to scan the list
auparse_esc_t escape_mode;
message_t message_mode; // Where to send error messages
debug_message_t debug_message; // Whether or not messages are debug or not
const char *tmp_translation; // Pointer to manage mem for field translation
normalize_data norm_data;
nvlist interpretations; // Per-parser interpretations list
Queue *uid_cache; // per-parser UID cache
Queue *gid_cache; // per-parser GID cache
};
AUDIT_HIDDEN_START
// auditd-config.c
int aup_load_config(auparse_state_t *au, struct daemon_conf *config,
log_test_t lt);
void aup_free_config(struct daemon_conf *config);
/* Resolve @name to a uid, caching the result for future lookups. */
uid_t lookup_uid_from_name(auparse_state_t *au, const char *name);
// normalize.c
void init_normalizer(normalize_data *d);
void clear_normalizer(normalize_data *d);
AUDIT_HIDDEN_END
#endif
|