Source
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
static int trigger_flag_to_resource_type(int flag)
{
if (ZBX_FLAG_DISCOVERY_NORMAL == flag || ZBX_FLAG_DISCOVERY_CREATED == flag)
{
return AUDIT_RESOURCE_TRIGGER;
}
else if (ZBX_FLAG_DISCOVERY_PROTOTYPE == flag)
{
return AUDIT_RESOURCE_TRIGGER_PROTOTYPE;
}
else
{
zabbix_log(LOG_LEVEL_CRIT, "unexpected audit trigger flag detected: ->%d<-", flag);
THIS_SHOULD_NEVER_HAPPEN;
exit(EXIT_FAILURE);
}
}
void zbx_audit_trigger_create_entry(int audit_action, zbx_uint64_t triggerid, const char *name, int flags)
{
int resource_type;
zbx_audit_entry_t local_audit_trigger_entry, **found_audit_trigger_entry;
zbx_audit_entry_t *local_audit_trigger_entry_x = &local_audit_trigger_entry;
RETURN_IF_AUDIT_OFF();
resource_type = trigger_flag_to_resource_type(flags);
local_audit_trigger_entry.id = triggerid;
local_audit_trigger_entry.cuid = NULL;
local_audit_trigger_entry.id_table = AUDIT_TRIGGER_ID;