aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/audit/src/ausearch-avc.h
blob: c31293e1034a58b70557ae42e27ab985fdcccdc7 (plain)
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
/*
* ausearch-avc.h - Header file for ausearch-string.c
* Copyright (c) 2006,2008 Red Hat Inc., Durham, North Carolina.
* All Rights Reserved.
*
* This software may be freely redistributed and/or modified under the
* terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2, 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; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Authors:
*   Steve Grubb <sgrubb@redhat.com>
*/

#ifndef AU_AVC_HEADER
#define AU_AVC_HEADER

#include "config.h"
#include <sys/types.h>
#include "libaudit.h"

typedef enum { AVC_UNSET, AVC_DENIED, AVC_GRANTED } avc_t;

/* This is the node of the linked list. message & item are the only elements
 * at this time. Any data elements that are per item goes here. */
typedef struct _anode{
  char *scontext;       // se linux subject context
  char *tcontext;       // se linux object context
  avc_t avc_result;     // se linux avc denied/granted
  char *avc_perm;       // se linux avc permission mentioned
  char *avc_class;      // se linux class mentioned
  struct _anode* next;	// Next string node pointer
} anode;

/* This is the linked list head. Only data elements that are 1 per
 * event goes here. */
typedef struct {
  anode *head;		// List head
  anode *cur;		// Pointer to current node
  unsigned int cnt;	// How many items in this list
} alist;

void alist_create(alist *l);
static inline void alist_first(alist *l) { l->cur = l->head; }
anode *alist_next(alist *l);
static inline anode *alist_get_cur(alist *l) { return l->cur; }
void alist_append(alist *l, anode *node);
void anode_init(anode *an);
void anode_clear(anode *an);
void alist_clear(alist* l);

/* See if any subj exists in list */
int alist_find_subj(alist *l);
anode *alist_next_subj(alist *l);
/* See if any obj exists in list */
int alist_find_obj(alist *l);
anode *alist_next_obj(alist *l);
/* See if any avc exists in list */
int alist_find_avc(alist *l);
anode *alist_next_avc(alist *l);

#endif