/
githubmirror
/
audit-userspace
Обзор
Документация
Войти
/
githubmirror
/
audit-userspace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.1
auparse/rnode.h
66 строк
2 KB
Paul Wolneykien
Patch: realloc on field list overflow (#270)
25 авг 2022, 23:24
Не верифицирован
25 авг 2022, 23:24
022a95b
Код
Авторство
О чём код?
/* rnode.h -- * Copyright 2007,2016-17,21 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 RNODE_HEADER #define RNODE_HEADER #define NFIELDS 36 /* This is the data node of the fields list. Any data elements that are * per field goes here. */ typedef struct _nvnode{ char *name; // The name string char *val; // The value field char *interp_val; // The value field interpreted unsigned int item; // Which item of the same event } nvnode; /* This is the field list head. */ typedef struct { nvnode *array; // array of fields unsigned int cur; // Index to current node unsigned int cnt; // How many items in this list unsigned int size; // Number of allocated items char *record; // Holds the parsed up record char *end; // End of the parsed up record } nvlist; /* This is the node of the linked list. Only data elements that are per * record goes here. */ typedef struct _rnode{ char *record; // The whole unparsed record char *interp; // The interpretations that go with record const char *cwd; // This is pass thru for ellist int type; // record type (KERNEL, USER, LOGIN, etc) int machine; // The machine type for the event int syscall; // The syscall for the event unsigned long long a0; // arg 0 to the syscall unsigned long long a1; // arg 1 to the syscall nvlist nv; // name-value linked list of parsed elements unsigned int item; // Which item of the same event int list_idx; // The index into the source list, points to where record was found unsigned int line_number; // The line number where record was found struct _rnode* next; // Next record node pointer } rnode; #endif