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
|
/* fieldtab.h --
* Copyright 2005-07 Red Hat Inc., Durham, North Carolina.
* 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>
*/
_S(AUDIT_PID, "pid" )
_S(AUDIT_UID, "uid" )
_S(AUDIT_EUID, "euid" )
_S(AUDIT_SUID, "suid" )
_S(AUDIT_FSUID, "fsuid" )
_S(AUDIT_GID, "gid" )
_S(AUDIT_EGID, "egid" )
_S(AUDIT_SGID, "sgid" )
_S(AUDIT_FSGID, "fsgid" )
_S(AUDIT_LOGINUID, "auid" )
_S(AUDIT_LOGINUID, "loginuid" )
_S(AUDIT_PERS, "pers" )
_S(AUDIT_ARCH, "arch" )
_S(AUDIT_MSGTYPE, "msgtype" )
_S(AUDIT_SUBJ_USER, "subj_user" )
_S(AUDIT_SUBJ_ROLE, "subj_role" )
_S(AUDIT_SUBJ_TYPE, "subj_type" )
_S(AUDIT_SUBJ_SEN, "subj_sen" )
_S(AUDIT_SUBJ_CLR, "subj_clr" )
_S(AUDIT_PPID, "ppid" )
_S(AUDIT_OBJ_USER, "obj_user" )
_S(AUDIT_OBJ_ROLE, "obj_role" )
_S(AUDIT_OBJ_TYPE, "obj_type" )
_S(AUDIT_OBJ_LEV_LOW, "obj_lev_low" )
_S(AUDIT_OBJ_LEV_HIGH, "obj_lev_high" )
_S(AUDIT_DEVMAJOR, "devmajor" )
_S(AUDIT_DEVMINOR, "devminor" )
_S(AUDIT_INODE, "inode" )
_S(AUDIT_EXIT, "exit" )
_S(AUDIT_SUCCESS, "success" )
_S(AUDIT_WATCH, "path" )
_S(AUDIT_PERM, "perm" )
_S(AUDIT_DIR, "dir" )
_S(AUDIT_FILETYPE, "filetype" )
_S(AUDIT_OBJ_UID, "obj_uid" )
_S(AUDIT_OBJ_GID, "obj_gid" )
_S(AUDIT_FIELD_COMPARE, "field_compare" )
_S(AUDIT_ARG0, "a0" )
_S(AUDIT_ARG1, "a1" )
_S(AUDIT_ARG2, "a2" )
_S(AUDIT_ARG3, "a3" )
_S(AUDIT_FILTERKEY, "key" )
|