2 * @APPLE_LICENSE_HEADER_START@
4 * Copyright (c) 1999-2004 Apple Computer, Inc. All Rights Reserved.
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
27 #include <sys/queue.h>
28 #include <sys/ucred.h>
29 #include <sys/param.h>
31 #include <sys/socket.h>
32 #include <sys/cdefs.h>
34 #define AUDIT_RECORD_MAGIC 0x828a0f1b
35 #define MAX_AUDIT_RECORDS 20
36 #define MAX_AUDIT_RECORD_SIZE 4096
37 #define MIN_AUDIT_FILE_SIZE 512 * 1024
40 * Triggers for the audit daemon
42 #define AUDIT_TRIGGER_LOW_SPACE 1
43 #define AUDIT_TRIGGER_FILE_FULL 2
46 * Pre-defined audit IDs
48 #define AU_DEFAUDITID -1
51 * Define the masks for the classes of audit events.
53 #define AU_NULL 0x00000000
54 #define AU_FREAD 0x00000001
55 #define AU_FWRITE 0x00000002
56 #define AU_FACCESS 0x00000004
57 #define AU_FMODIFY 0x00000008
58 #define AU_FCREATE 0x00000010
59 #define AU_FDELETE 0x00000020
60 #define AU_CLOSE 0x00000040
61 #define AU_PROCESS 0x00000080
62 #define AU_NET 0x00000100
63 #define AU_IPC 0x00000200
64 #define AU_NONAT 0x00000400
65 #define AU_ADMIN 0x00000800
66 #define AU_LOGIN 0x00001000
67 #define AU_TFM 0x00002000
68 #define AU_APPL 0x00004000
69 #define AU_SETL 0x00008000
70 #define AU_IFLOAT 0x00010000
71 #define AU_PRIV 0x00020000
72 #define AU_MAC_RW 0x00040000
73 #define AU_XCONN 0x00080000
74 #define AU_XCREATE 0x00100000
75 #define AU_XDELETE 0x00200000
76 #define AU_XIFLOAT 0x00400000
77 #define AU_XPRIVS 0x00800000
78 #define AU_XPRIVF 0x01000000
79 #define AU_XMOVE 0x02000000
80 #define AU_XDACF 0x04000000
81 #define AU_XMACF 0x08000000
82 #define AU_XSECATTR 0x10000000
83 #define AU_IOCTL 0x20000000
84 #define AU_EXEC 0x40000000
85 #define AU_OTHER 0x80000000
86 #define AU_ALL 0xffffffff
91 #define AT_IPC_MSG ((u_char)1) /* message IPC id */
92 #define AT_IPC_SEM ((u_char)2) /* semaphore IPC id */
93 #define AT_IPC_SHM ((u_char)3) /* shared mem IPC id */
99 #define AUC_AUDITING 1
100 #define AUC_NOAUDIT 2
101 #define AUC_DISABLED -1
104 * auditon(2) commands.
106 #define A_GETPOLICY 2
107 #define A_SETPOLICY 3
116 #define A_SETUMASK 14
117 #define A_SETSMASK 15
120 #define A_GETCLASS 22
121 #define A_SETCLASS 23
122 #define A_GETPINFO 24
123 #define A_SETPMASK 25
124 #define A_SETFSIZE 26
125 #define A_GETFSIZE 27
126 #define A_GETPINFO_ADDR 28
127 #define A_GETKAUDIT 29
128 #define A_SETKAUDIT 30
131 * Audit policy controls.
133 #define AUDIT_CNT 0x0001
134 #define AUDIT_AHLT 0x0002
135 #define AUDIT_ARGV 0x0004
136 #define AUDIT_ARGE 0x0008
137 #define AUDIT_PASSWD 0x0010
138 #define AUDIT_SEQ 0x0020
139 #define AUDIT_WINDATA 0x0040
140 #define AUDIT_USER 0x0080
141 #define AUDIT_GROUP 0x0100
142 #define AUDIT_TRAIL 0x0200
143 #define AUDIT_PATH 0x0400
146 * Audit queue control parameters
148 #define AQ_HIWATER 100
149 #define AQ_MAXHIGH 10000
150 #define AQ_LOWATER 10
151 #define AQ_BUFSZ 1024
152 #define AQ_MAXBUFSZ 1048576
154 #define AU_FS_MINFREE 20 /* default min filesystem freespace, in percent */
158 typedef uid_t au_id_t
;
159 typedef pid_t au_asid_t
;
160 typedef u_int16_t au_event_t
;
161 typedef u_int16_t au_emod_t
;
162 typedef u_int32_t au_class_t
;
168 typedef struct au_tid au_tid_t
;
173 u_int32_t at_addr
[4];
175 typedef struct au_tid_addr au_tid_addr_t
;
178 unsigned int am_success
; /* success bits */
179 unsigned int am_failure
; /* failure bits */
181 typedef struct au_mask au_mask_t
;
184 au_id_t ai_auid
; /* Audit user ID */
185 au_mask_t ai_mask
; /* Audit masks */
186 au_tid_t ai_termid
; /* Terminal ID */
187 au_asid_t ai_asid
; /* Audit session ID */
189 typedef struct auditinfo auditinfo_t
;
191 struct auditinfo_addr
{
192 au_id_t ai_auid
; /* Audit user ID */
193 au_mask_t ai_mask
; /* Audit masks */
194 au_tid_addr_t ai_termid
; /* Terminal ID */
195 au_asid_t ai_asid
; /* Audit session ID */
197 typedef struct auditinfo_addr auditinfo_addr_t
;
200 pid_t ap_pid
; /* ID of target process */
201 au_id_t ap_auid
; /* Audit user ID */
202 au_mask_t ap_mask
; /* Audit masks */
203 au_tid_t ap_termid
; /* Terminal ID */
204 au_asid_t ap_asid
; /* Audit session ID */
206 typedef struct auditpinfo auditpinfo_t
;
208 struct auditpinfo_addr
{
209 pid_t ap_pid
; /* ID of target process */
210 au_id_t ap_auid
; /* Audit user ID */
211 au_mask_t ap_mask
; /* Audit masks */
212 au_tid_addr_t ap_termid
; /* Terminal ID */
213 au_asid_t ap_asid
; /* Audit session ID */
215 typedef struct auditpinfo_addr auditpinfo_addr_t
;
217 /* Token and record structures */
222 TAILQ_ENTRY(au_token
) tokens
;
224 typedef struct au_token token_t
;
227 char used
; /* Is this record currently being used */
228 int desc
; /* The descriptor associated with this record */
229 TAILQ_HEAD(, au_token
) token_q
; /* queue of BSM tokens */
232 LIST_ENTRY(au_record
) au_rec_q
;
234 typedef struct au_record au_record_t
;
237 * Kernel audit queue control parameters.
244 int aq_minfree
; /* minimum filesystem percent free space */
246 typedef struct au_qctrl au_qctrl_t
;
249 * Structure for the audit statistics.
252 unsigned int as_version
;
253 unsigned int as_numevent
;
265 unsigned int as_memused
;
267 typedef struct audit_stat au_stat_t
;
270 * Structure for the audit file statistics.
276 typedef struct audit_fstat au_fstat_t
;
279 * Audit to event class mapping.
281 struct au_evclass_map
{
282 au_event_t ec_number
;
285 typedef struct au_evclass_map au_evclass_map_t
;
289 int audit (const void *, int);
290 int auditon (int, void *, int);
291 int auditctl (const char *);
292 int getauid (au_id_t
*);
293 int setauid (const au_id_t
*);
294 int getaudit (struct auditinfo
*);
295 int setaudit (const struct auditinfo
*);
296 int getaudit_addr (struct auditinfo_addr
*, int);
297 int setaudit_addr (const struct auditinfo_addr
*, int);
302 #endif /* !_BSM_AUDIT_H */