1 /*-
2  * Copyright (c) 2005-2009 Apple Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1.  Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  * 2.  Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  * 3.  Neither the name of Apple Inc. ("Apple") nor the names of
15  *     its contributors may be used to endorse or promote products derived
16  *     from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #ifndef _BSM_AUDIT_KEVENTS_H_
31 #define	_BSM_AUDIT_KEVENTS_H_
32 
33 /*
34  * The reserved event numbers for kernel events are 1...2047 and 43001..44999.
35  */
36 #define	AUE_IS_A_KEVENT(e)	(((e) > 0 && (e) < 2048) ||	\
37 				 ((e) > 43000 && (e) < 45000))
38 
39 /*
40  * Values marked as AUE_NULL are not required to be audited as per CAPP.
41  *
42  * Some conflicts exist in the assignment of name to event number mappings
43  * between BSM implementations.  In general, we prefer the OpenSolaris
44  * definition as we consider Solaris BSM to be authoritative.  _DARWIN_ has
45  * been inserted for the Darwin variants.  If necessary, other tags will be
46  * added in the future.
47  */
48 #define	AUE_NULL		0
49 #define	AUE_EXIT		1
50 #define	AUE_FORK		2
51 #define	AUE_FORKALL		AUE_FORK	/* Solaris-specific. */
52 #define	AUE_OPEN		3
53 #define	AUE_CREAT		4
54 #define	AUE_LINK		5
55 #define	AUE_UNLINK		6
56 #define	AUE_DELETE		AUE_UNLINK	/* Darwin-specific. */
57 #define	AUE_EXEC		7
58 #define	AUE_CHDIR		8
59 #define	AUE_MKNOD		9
60 #define	AUE_CHMOD		10
61 #define	AUE_CHOWN		11
62 #define	AUE_UMOUNT		12
63 #define	AUE_JUNK		13	/* Solaris-specific. */
64 #define	AUE_ACCESS		14
65 #define	AUE_KILL		15
66 #define	AUE_STAT		16
67 #define	AUE_LSTAT		17
68 #define	AUE_ACCT		18
69 #define	AUE_MCTL		19	/* Solaris-specific. */
70 #define	AUE_REBOOT		20	/* XXX: Darwin conflict. */
71 #define	AUE_SYMLINK		21
72 #define	AUE_READLINK		22
73 #define	AUE_EXECVE		23
74 #define	AUE_CHROOT		24
75 #define	AUE_VFORK		25
76 #define	AUE_SETGROUPS		26
77 #define	AUE_SETPGRP		27
78 #define	AUE_SWAPON		28
79 #define	AUE_SETHOSTNAME		29	/* XXX: Darwin conflict. */
80 #define	AUE_FCNTL		30
81 #define	AUE_SETPRIORITY		31	/* XXX: Darwin conflict. */
82 #define	AUE_CONNECT		32
83 #define	AUE_ACCEPT		33
84 #define	AUE_BIND		34
85 #define	AUE_SETSOCKOPT		35
86 #define	AUE_VTRACE		36	/* Solaris-specific. */
87 #define	AUE_SETTIMEOFDAY	37	/* XXX: Darwin conflict. */
88 #define	AUE_FCHOWN		38
89 #define	AUE_FCHMOD		39
90 #define	AUE_SETREUID		40
91 #define	AUE_SETREGID		41
92 #define	AUE_RENAME		42
93 #define	AUE_TRUNCATE		43	/* XXX: Darwin conflict. */
94 #define	AUE_FTRUNCATE		44	/* XXX: Darwin conflict. */
95 #define	AUE_FLOCK		45	/* XXX: Darwin conflict. */
96 #define	AUE_SHUTDOWN		46
97 #define	AUE_MKDIR		47
98 #define	AUE_RMDIR		48
99 #define	AUE_UTIMES		49
100 #define	AUE_ADJTIME		50
101 #define	AUE_SETRLIMIT		51
102 #define	AUE_KILLPG		52
103 #define	AUE_NFS_SVC		53	/* XXX: Darwin conflict. */
104 #define	AUE_STATFS		54
105 #define	AUE_FSTATFS		55
106 #define	AUE_UNMOUNT		56	/* XXX: Darwin conflict. */
107 #define	AUE_ASYNC_DAEMON	57
108 #define	AUE_NFS_GETFH		58	/* XXX: Darwin conflict. */
109 #define	AUE_SETDOMAINNAME	59
110 #define	AUE_QUOTACTL		60	/* XXX: Darwin conflict. */
111 #define	AUE_EXPORTFS		61
112 #define	AUE_MOUNT		62
113 #define	AUE_SEMSYS		63
114 #define	AUE_MSGSYS		64
115 #define	AUE_SHMSYS		65
116 #define	AUE_BSMSYS		66	/* Solaris-specific. */
117 #define	AUE_RFSSYS		67	/* Solaris-specific. */
118 #define	AUE_FCHDIR		68
119 #define	AUE_FCHROOT		69
120 #define	AUE_VPIXSYS		70	/* Solaris-specific. */
121 #define	AUE_PATHCONF		71
122 #define	AUE_OPEN_R		72
123 #define	AUE_OPEN_RC		73
124 #define	AUE_OPEN_RT		74
125 #define	AUE_OPEN_RTC		75
126 #define	AUE_OPEN_W		76
127 #define	AUE_OPEN_WC		77
128 #define	AUE_OPEN_WT		78
129 #define	AUE_OPEN_WTC		79
130 #define	AUE_OPEN_RW		80
131 #define	AUE_OPEN_RWC		81
132 #define	AUE_OPEN_RWT		82
133 #define	AUE_OPEN_RWTC		83
134 #define	AUE_MSGCTL		84
135 #define	AUE_MSGCTL_RMID		85
136 #define	AUE_MSGCTL_SET		86
137 #define	AUE_MSGCTL_STAT		87
138 #define	AUE_MSGGET		88
139 #define	AUE_MSGRCV		89
140 #define	AUE_MSGSND		90
141 #define	AUE_SHMCTL		91
142 #define	AUE_SHMCTL_RMID		92
143 #define	AUE_SHMCTL_SET		93
144 #define	AUE_SHMCTL_STAT		94
145 #define	AUE_SHMGET		95
146 #define	AUE_SHMAT		96
147 #define	AUE_SHMDT		97
148 #define	AUE_SEMCTL		98
149 #define	AUE_SEMCTL_RMID		99
150 #define	AUE_SEMCTL_SET		100
151 #define	AUE_SEMCTL_STAT		101
152 #define	AUE_SEMCTL_GETNCNT	102
153 #define	AUE_SEMCTL_GETPID	103
154 #define	AUE_SEMCTL_GETVAL	104
155 #define	AUE_SEMCTL_GETALL	105
156 #define	AUE_SEMCTL_GETZCNT	106
157 #define	AUE_SEMCTL_SETVAL	107
158 #define	AUE_SEMCTL_SETALL	108
159 #define	AUE_SEMGET		109
160 #define	AUE_SEMOP		110
161 #define	AUE_CORE		111	/* Solaris-specific, currently. */
162 #define	AUE_CLOSE		112
163 #define	AUE_SYSTEMBOOT		113	/* Solaris-specific. */
164 #define	AUE_ASYNC_DAEMON_EXIT	114	/* Solaris-specific. */
165 #define	AUE_NFSSVC_EXIT		115	/* Solaris-specific. */
166 #define	AUE_WRITEL		128	/* Solaris-specific. */
167 #define	AUE_WRITEVL		129	/* Solaris-specific. */
168 #define	AUE_GETAUID		130
169 #define	AUE_SETAUID		131
170 #define	AUE_GETAUDIT		132
171 #define	AUE_SETAUDIT		133
172 #define	AUE_GETUSERAUDIT	134	/* Solaris-specific. */
173 #define	AUE_SETUSERAUDIT	135	/* Solaris-specific. */
174 #define	AUE_AUDITSVC		136	/* Solaris-specific. */
175 #define	AUE_AUDITUSER		137	/* Solaris-specific. */
176 #define	AUE_AUDITON		138
177 #define	AUE_AUDITON_GTERMID	139	/* Solaris-specific. */
178 #define	AUE_AUDITON_STERMID	140	/* Solaris-specific. */
179 #define	AUE_AUDITON_GPOLICY	141
180 #define	AUE_AUDITON_SPOLICY	142
181 #define	AUE_AUDITON_GQCTRL	145
182 #define	AUE_AUDITON_SQCTRL	146
183 #define	AUE_GETKERNSTATE	147	/* Solaris-specific. */
184 #define	AUE_SETKERNSTATE	148	/* Solaris-specific. */
185 #define	AUE_GETPORTAUDIT	149	/* Solaris-specific. */
186 #define	AUE_AUDITSTAT		150	/* Solaris-specific. */
187 #define	AUE_REVOKE		151
188 #define	AUE_MAC			152	/* Solaris-specific. */
189 #define	AUE_ENTERPROM		153	/* Solaris-specific. */
190 #define	AUE_EXITPROM		154	/* Solaris-specific. */
191 #define	AUE_IFLOAT		155	/* Solaris-specific. */
192 #define	AUE_PFLOAT		156	/* Solaris-specific. */
193 #define	AUE_UPRIV		157	/* Solaris-specific. */
194 #define	AUE_IOCTL		158
195 #define	AUE_SOCKET		183
196 #define	AUE_SENDTO		184
197 #define	AUE_PIPE		185
198 #define	AUE_SOCKETPAIR		186	/* XXX: Darwin conflict. */
199 #define	AUE_SEND		187
200 #define	AUE_SENDMSG		188
201 #define	AUE_RECV		189
202 #define	AUE_RECVMSG		190
203 #define	AUE_RECVFROM		191
204 #define	AUE_READ		192
205 #define	AUE_GETDENTS		193
206 #define	AUE_LSEEK		194
207 #define	AUE_WRITE		195
208 #define	AUE_WRITEV		196
209 #define	AUE_NFS			197	/* Solaris-specific. */
210 #define	AUE_READV		198
211 #define	AUE_OSTAT		199	/* Solaris-specific. */
212 #define	AUE_SETUID		200	/* XXXRW: Solaris old setuid? */
213 #define	AUE_STIME		201	/* XXXRW: Solaris old stime? */
214 #define	AUE_UTIME		202	/* XXXRW: Solaris old utime? */
215 #define	AUE_NICE		203	/* XXXRW: Solaris old nice? */
216 #define	AUE_OSETPGRP		204	/* Solaris-specific. */
217 #define	AUE_SETGID		205
218 #define	AUE_READL		206	/* Solaris-specific. */
219 #define	AUE_READVL		207	/* Solaris-specific. */
220 #define	AUE_FSTAT		208
221 #define	AUE_DUP2		209
222 #define	AUE_MMAP		210
223 #define	AUE_AUDIT		211
224 #define	AUE_PRIOCNTLSYS		212	/* Solaris-specific. */
225 #define	AUE_MUNMAP		213
226 #define	AUE_SETEGID		214
227 #define	AUE_SETEUID		215
228 #define	AUE_PUTMSG		216	/* Solaris-specific. */
229 #define	AUE_GETMSG		217	/* Solaris-specific. */
230 #define	AUE_PUTPMSG		218	/* Solaris-specific. */
231 #define	AUE_GETPMSG		219	/* Solaris-specific. */
232 #define	AUE_AUDITSYS		220	/* Solaris-specific. */
233 #define	AUE_AUDITON_GETKMASK	221
234 #define	AUE_AUDITON_SETKMASK	222
235 #define	AUE_AUDITON_GETCWD	223
236 #define	AUE_AUDITON_GETCAR	224
237 #define	AUE_AUDITON_GETSTAT	225
238 #define	AUE_AUDITON_SETSTAT	226
239 #define	AUE_AUDITON_SETUMASK	227
240 #define	AUE_AUDITON_SETSMASK	228
241 #define	AUE_AUDITON_GETCOND	229
242 #define	AUE_AUDITON_SETCOND	230
243 #define	AUE_AUDITON_GETCLASS	231
244 #define	AUE_AUDITON_SETCLASS	232
245 #define	AUE_FUSERS		233	/* Solaris-specific; also UTSSYS? */
246 #define	AUE_STATVFS		234
247 #define	AUE_XSTAT		235	/* Solaris-specific. */
248 #define	AUE_LXSTAT		236	/* Solaris-specific. */
249 #define	AUE_LCHOWN		237
250 #define	AUE_MEMCNTL		238	/* Solaris-specific. */
251 #define	AUE_SYSINFO		239	/* Solaris-specific. */
252 #define	AUE_XMKNOD		240	/* Solaris-specific. */
253 #define	AUE_FORK1		241
254 #define	AUE_MODCTL		242	/* Solaris-specific. */
255 #define	AUE_MODLOAD		243
256 #define	AUE_MODUNLOAD		244
257 #define	AUE_MODCONFIG		245	/* Solaris-specific. */
258 #define	AUE_MODADDMAJ		246	/* Solaris-specific. */
259 #define	AUE_SOCKACCEPT		247	/* Solaris-specific. */
260 #define	AUE_SOCKCONNECT		248	/* Solaris-specific. */
261 #define	AUE_SOCKSEND		249	/* Solaris-specific. */
262 #define	AUE_SOCKRECEIVE		250	/* Solaris-specific. */
263 #define	AUE_ACLSET		251
264 #define	AUE_FACLSET		252
265 #define	AUE_DOORFS		253	/* Solaris-specific. */
266 #define	AUE_DOORFS_DOOR_CALL	254	/* Solaris-specific. */
267 #define	AUE_DOORFS_DOOR_RETURN	255	/* Solaris-specific. */
268 #define	AUE_DOORFS_DOOR_CREATE	256	/* Solaris-specific. */
269 #define	AUE_DOORFS_DOOR_REVOKE	257	/* Solaris-specific. */
270 #define	AUE_DOORFS_DOOR_INFO	258	/* Solaris-specific. */
271 #define	AUE_DOORFS_DOOR_CRED	259	/* Solaris-specific. */
272 #define	AUE_DOORFS_DOOR_BIND	260	/* Solaris-specific. */
273 #define	AUE_DOORFS_DOOR_UNBIND	261	/* Solaris-specific. */
274 #define	AUE_P_ONLINE		262	/* Solaris-specific. */
275 #define	AUE_PROCESSOR_BIND	263	/* Solaris-specific. */
276 #define	AUE_INST_SYNC		264	/* Solaris-specific. */
277 #define	AUE_SOCKCONFIG		265	/* Solaris-specific. */
278 #define	AUE_SETAUDIT_ADDR	266
279 #define	AUE_GETAUDIT_ADDR	267
280 #define	AUE_UMOUNT2		268	/* Solaris-specific. */
281 #define	AUE_FSAT		269	/* Solaris-specific. */
282 #define	AUE_OPENAT_R		270
283 #define	AUE_OPENAT_RC		271
284 #define	AUE_OPENAT_RT		272
285 #define	AUE_OPENAT_RTC		273
286 #define	AUE_OPENAT_W		274
287 #define	AUE_OPENAT_WC		275
288 #define	AUE_OPENAT_WT		276
289 #define	AUE_OPENAT_WTC		277
290 #define	AUE_OPENAT_RW		278
291 #define	AUE_OPENAT_RWC		279
292 #define	AUE_OPENAT_RWT		280
293 #define	AUE_OPENAT_RWTC		281
294 #define	AUE_RENAMEAT		282
295 #define	AUE_FSTATAT		283
296 #define	AUE_FCHOWNAT		284
297 #define	AUE_FUTIMESAT		285
298 #define	AUE_UNLINKAT		286
299 #define	AUE_CLOCK_SETTIME	287
300 #define	AUE_NTP_ADJTIME		288
301 #define	AUE_SETPPRIV		289	/* Solaris-specific. */
302 #define	AUE_MODDEVPLCY		290	/* Solaris-specific. */
303 #define	AUE_MODADDPRIV		291	/* Solaris-specific. */
304 #define	AUE_CRYPTOADM		292	/* Solaris-specific. */
305 #define	AUE_CONFIGKSSL		293	/* Solaris-specific. */
306 #define	AUE_BRANDSYS		294	/* Solaris-specific. */
307 #define	AUE_PF_POLICY_ADDRULE	295	/* Solaris-specific. */
308 #define	AUE_PF_POLICY_DELRULE	296	/* Solaris-specific. */
309 #define	AUE_PF_POLICY_CLONE	297	/* Solaris-specific. */
310 #define	AUE_PF_POLICY_FLIP	298	/* Solaris-specific. */
311 #define	AUE_PF_POLICY_FLUSH	299	/* Solaris-specific. */
312 #define	AUE_PF_POLICY_ALGS	300	/* Solaris-specific. */
313 #define	AUE_PORTFS		301	/* Solaris-specific. */
314 
315 /*
316  * Events added for Apple Darwin that potentially collide with future Solaris
317  * BSM events.  These are assigned AUE_DARWIN prefixes, and are deprecated in
318  * new trails.  Systems generating these events should switch to the new
319  * identifiers that avoid colliding with the Solaris identifier space.
320  */
321 #define	AUE_DARWIN_GETFSSTAT	301
322 #define	AUE_DARWIN_PTRACE	302
323 #define	AUE_DARWIN_CHFLAGS	303
324 #define	AUE_DARWIN_FCHFLAGS	304
325 #define	AUE_DARWIN_PROFILE	305
326 #define	AUE_DARWIN_KTRACE	306
327 #define	AUE_DARWIN_SETLOGIN	307
328 #define	AUE_DARWIN_REBOOT	308
329 #define	AUE_DARWIN_REVOKE	309
330 #define	AUE_DARWIN_UMASK	310
331 #define	AUE_DARWIN_MPROTECT	311
332 #define	AUE_DARWIN_SETPRIORITY	312
333 #define	AUE_DARWIN_SETTIMEOFDAY	313
334 #define	AUE_DARWIN_FLOCK	314
335 #define	AUE_DARWIN_MKFIFO	315
336 #define	AUE_DARWIN_POLL		316
337 #define	AUE_DARWIN_SOCKETPAIR	317
338 #define	AUE_DARWIN_FUTIMES	318
339 #define	AUE_DARWIN_SETSID	319
340 #define	AUE_DARWIN_SETPRIVEXEC	320	/* Darwin-specific. */
341 #define	AUE_DARWIN_NFSSVC	321
342 #define	AUE_DARWIN_GETFH	322
343 #define	AUE_DARWIN_QUOTACTL	323
344 #define	AUE_DARWIN_ADDPROFILE	324	/* Darwin-specific. */
345 #define	AUE_DARWIN_KDEBUGTRACE	325	/* Darwin-specific. */
346 #define	AUE_DARWIN_KDBUGTRACE	AUE_KDEBUGTRACE
347 #define	AUE_DARWIN_FSTAT	326
348 #define	AUE_DARWIN_FPATHCONF	327
349 #define	AUE_DARWIN_GETDIRENTRIES	328
350 #define	AUE_DARWIN_TRUNCATE	329
351 #define	AUE_DARWIN_FTRUNCATE	330
352 #define	AUE_DARWIN_SYSCTL	331
353 #define	AUE_DARWIN_MLOCK	332
354 #define	AUE_DARWIN_MUNLOCK	333
355 #define	AUE_DARWIN_UNDELETE	334
356 #define	AUE_DARWIN_GETATTRLIST	335	/* Darwin-specific. */
357 #define	AUE_DARWIN_SETATTRLIST	336	/* Darwin-specific. */
358 #define	AUE_DARWIN_GETDIRENTRIESATTR	337	/* Darwin-specific. */
359 #define	AUE_DARWIN_EXCHANGEDATA	338	/* Darwin-specific. */
360 #define	AUE_DARWIN_SEARCHFS	339	/* Darwin-specific. */
361 #define	AUE_DARWIN_MINHERIT	340
362 #define	AUE_DARWIN_SEMCONFIG	341
363 #define	AUE_DARWIN_SEMOPEN	342
364 #define	AUE_DARWIN_SEMCLOSE	343
365 #define	AUE_DARWIN_SEMUNLINK	344
366 #define	AUE_DARWIN_SHMOPEN	345
367 #define	AUE_DARWIN_SHMUNLINK	346
368 #define	AUE_DARWIN_LOADSHFILE	347	/* Darwin-specific. */
369 #define	AUE_DARWIN_RESETSHFILE	348	/* Darwin-specific. */
370 #define	AUE_DARWIN_NEWSYSTEMSHREG	349	/* Darwin-specific. */
371 #define	AUE_DARWIN_PTHREADKILL	350	/* Darwin-specific. */
372 #define	AUE_DARWIN_PTHREADSIGMASK	351	/* Darwin-specific. */
373 #define	AUE_DARWIN_AUDITCTL	352
374 #define	AUE_DARWIN_RFORK	353
375 #define	AUE_DARWIN_LCHMOD	354
376 #define	AUE_DARWIN_SWAPOFF	355
377 #define	AUE_DARWIN_INITPROCESS	356	/* Darwin-specific. */
378 #define	AUE_DARWIN_MAPFD	357	/* Darwin-specific. */
379 #define	AUE_DARWIN_TASKFORPID	358	/* Darwin-specific. */
380 #define	AUE_DARWIN_PIDFORTASK	359	/* Darwin-specific. */
381 #define	AUE_DARWIN_SYSCTL_NONADMIN	360
382 #define	AUE_DARWIN_COPYFILE	361	/* Darwin-specific. */
383 
384 /*
385  * Audit event identifiers added as part of OpenBSM, generally corresponding
386  * to events in FreeBSD, Darwin, and Linux that were not present in Solaris.
387  * These often duplicate events added to the Solaris set by Darwin, but use
388  * event identifiers in a higher range in order to avoid colliding with
389  * future Solaris additions.
390  *
391  * If an event in this section is later added to Solaris, we prefer the
392  * Solaris event identifier, and add _OPENBSM_ to the OpenBSM-specific
393  * identifier so that old trails can still be processed, but new trails use
394  * the Solaris identifier.
395  */
396 #define	AUE_GETFSSTAT		43001
397 #define	AUE_PTRACE		43002
398 #define	AUE_CHFLAGS		43003
399 #define	AUE_FCHFLAGS		43004
400 #define	AUE_PROFILE		43005
401 #define	AUE_KTRACE		43006
402 #define	AUE_SETLOGIN		43007
403 #define	AUE_OPENBSM_REVOKE	43008	/* Solaris event now preferred. */
404 #define	AUE_UMASK		43009
405 #define	AUE_MPROTECT		43010
406 #define	AUE_MKFIFO		43011
407 #define	AUE_POLL		43012
408 #define	AUE_FUTIMES		43013
409 #define	AUE_SETSID		43014
410 #define	AUE_SETPRIVEXEC		43015	/* Darwin-specific. */
411 #define	AUE_ADDPROFILE		43016	/* Darwin-specific. */
412 #define	AUE_KDEBUGTRACE		43017	/* Darwin-specific. */
413 #define	AUE_KDBUGTRACE		AUE_KDEBUGTRACE
414 #define	AUE_OPENBSM_FSTAT	43018	/* Solaris event now preferred. */
415 #define	AUE_FPATHCONF		43019
416 #define	AUE_GETDIRENTRIES	43020
417 #define	AUE_SYSCTL		43021
418 #define	AUE_MLOCK		43022
419 #define	AUE_MUNLOCK		43023
420 #define	AUE_UNDELETE		43024
421 #define	AUE_GETATTRLIST		43025	/* Darwin-specific. */
422 #define	AUE_SETATTRLIST		43026	/* Darwin-specific. */
423 #define	AUE_GETDIRENTRIESATTR	43027	/* Darwin-specific. */
424 #define	AUE_EXCHANGEDATA	43028	/* Darwin-specific. */
425 #define	AUE_SEARCHFS		43029	/* Darwin-specific. */
426 #define	AUE_MINHERIT		43030
427 #define	AUE_SEMCONFIG		43031
428 #define	AUE_SEMOPEN		43032
429 #define	AUE_SEMCLOSE		43033
430 #define	AUE_SEMUNLINK		43034
431 #define	AUE_SHMOPEN		43035
432 #define	AUE_SHMUNLINK		43036
433 #define	AUE_LOADSHFILE		43037	/* Darwin-specific. */
434 #define	AUE_RESETSHFILE		43038	/* Darwin-specific. */
435 #define	AUE_NEWSYSTEMSHREG	43039	/* Darwin-specific. */
436 #define	AUE_PTHREADKILL		43040	/* Darwin-specific. */
437 #define	AUE_PTHREADSIGMASK	43041	/* Darwin-specific. */
438 #define	AUE_AUDITCTL		43042
439 #define	AUE_RFORK		43043
440 #define	AUE_LCHMOD		43044
441 #define	AUE_SWAPOFF		43045
442 #define	AUE_INITPROCESS		43046	/* Darwin-specific. */
443 #define	AUE_MAPFD		43047	/* Darwin-specific. */
444 #define	AUE_TASKFORPID		43048	/* Darwin-specific. */
445 #define	AUE_PIDFORTASK		43049	/* Darwin-specific. */
446 #define	AUE_SYSCTL_NONADMIN	43050
447 #define	AUE_COPYFILE		43051	/* Darwin-specific. */
448 
449 /*
450  * Events added to OpenBSM for FreeBSD and Linux; may also be used by Darwin
451  * in the future.
452  */
453 #define	AUE_LUTIMES		43052
454 #define	AUE_LCHFLAGS		43053	/* FreeBSD-specific. */
455 #define	AUE_SENDFILE		43054	/* BSD/Linux-specific. */
456 #define	AUE_USELIB		43055	/* Linux-specific. */
457 #define	AUE_GETRESUID		43056
458 #define	AUE_SETRESUID		43057
459 #define	AUE_GETRESGID		43058
460 #define	AUE_SETRESGID		43059
461 #define	AUE_WAIT4		43060	/* FreeBSD-specific. */
462 #define	AUE_LGETFH		43061	/* FreeBSD-specific. */
463 #define	AUE_FHSTATFS		43062	/* FreeBSD-specific. */
464 #define	AUE_FHOPEN		43063	/* FreeBSD-specific. */
465 #define	AUE_FHSTAT		43064	/* FreeBSD-specific. */
466 #define	AUE_JAIL		43065	/* FreeBSD-specific. */
467 #define	AUE_EACCESS		43066	/* FreeBSD-specific. */
468 #define	AUE_KQUEUE		43067	/* FreeBSD-specific. */
469 #define	AUE_KEVENT		43068	/* FreeBSD-specific. */
470 #define	AUE_FSYNC		43069
471 #define	AUE_NMOUNT		43070	/* FreeBSD-specific. */
472 #define	AUE_BDFLUSH		43071	/* Linux-specific. */
473 #define	AUE_SETFSUID		43072	/* Linux-specific. */
474 #define	AUE_SETFSGID		43073	/* Linux-specific. */
475 #define	AUE_PERSONALITY		43074	/* Linux-specific. */
476 #define	AUE_SCHED_GETSCHEDULER	43075	/* POSIX.1b. */
477 #define	AUE_SCHED_SETSCHEDULER	43076	/* POSIX.1b. */
478 #define	AUE_PRCTL		43077	/* Linux-specific. */
479 #define	AUE_GETCWD		43078	/* FreeBSD/Linux-specific. */
480 #define	AUE_CAPGET		43079	/* Linux-specific. */
481 #define	AUE_CAPSET		43080	/* Linux-specific. */
482 #define	AUE_PIVOT_ROOT		43081	/* Linux-specific. */
483 #define	AUE_RTPRIO		43082	/* FreeBSD-specific. */
484 #define	AUE_SCHED_GETPARAM	43083	/* POSIX.1b. */
485 #define	AUE_SCHED_SETPARAM	43084	/* POSIX.1b. */
486 #define	AUE_SCHED_GET_PRIORITY_MAX	43085	/* POSIX.1b. */
487 #define	AUE_SCHED_GET_PRIORITY_MIN	43086	/* POSIX.1b. */
488 #define	AUE_SCHED_RR_GET_INTERVAL	43087	/* POSIX.1b. */
489 #define	AUE_ACL_GET_FILE	43088	/* FreeBSD. */
490 #define	AUE_ACL_SET_FILE	43089	/* FreeBSD. */
491 #define	AUE_ACL_GET_FD		43090	/* FreeBSD. */
492 #define	AUE_ACL_SET_FD		43091	/* FreeBSD. */
493 #define	AUE_ACL_DELETE_FILE	43092	/* FreeBSD. */
494 #define	AUE_ACL_DELETE_FD	43093	/* FreeBSD. */
495 #define	AUE_ACL_CHECK_FILE	43094	/* FreeBSD. */
496 #define	AUE_ACL_CHECK_FD	43095	/* FreeBSD. */
497 #define	AUE_ACL_GET_LINK	43096	/* FreeBSD. */
498 #define	AUE_ACL_SET_LINK	43097	/* FreeBSD. */
499 #define	AUE_ACL_DELETE_LINK	43098	/* FreeBSD. */
500 #define	AUE_ACL_CHECK_LINK	43099	/* FreeBSD. */
501 #define	AUE_SYSARCH		43100	/* FreeBSD. */
502 #define	AUE_EXTATTRCTL		43101	/* FreeBSD. */
503 #define	AUE_EXTATTR_GET_FILE	43102	/* FreeBSD. */
504 #define	AUE_EXTATTR_SET_FILE	43103	/* FreeBSD. */
505 #define	AUE_EXTATTR_LIST_FILE	43104	/* FreeBSD. */
506 #define	AUE_EXTATTR_DELETE_FILE	43105	/* FreeBSD. */
507 #define	AUE_EXTATTR_GET_FD	43106	/* FreeBSD. */
508 #define	AUE_EXTATTR_SET_FD	43107	/* FreeBSD. */
509 #define	AUE_EXTATTR_LIST_FD	43108	/* FreeBSD. */
510 #define	AUE_EXTATTR_DELETE_FD	43109	/* FreeBSD. */
511 #define	AUE_EXTATTR_GET_LINK	43110	/* FreeBSD. */
512 #define	AUE_EXTATTR_SET_LINK	43111	/* FreeBSD. */
513 #define	AUE_EXTATTR_LIST_LINK	43112	/* FreeBSD. */
514 #define	AUE_EXTATTR_DELETE_LINK	43113	/* FreeBSD. */
515 #define	AUE_KENV		43114	/* FreeBSD. */
516 #define	AUE_JAIL_ATTACH		43115	/* FreeBSD. */
517 #define	AUE_SYSCTL_WRITE	43116	/* FreeBSD. */
518 #define	AUE_IOPERM		43117	/* Linux. */
519 #define	AUE_READDIR		43118	/* Linux. */
520 #define	AUE_IOPL		43119	/* Linux. */
521 #define	AUE_VM86		43120	/* Linux. */
522 #define	AUE_MAC_GET_PROC	43121	/* FreeBSD/Darwin. */
523 #define	AUE_MAC_SET_PROC	43122	/* FreeBSD/Darwin. */
524 #define	AUE_MAC_GET_FD		43123	/* FreeBSD/Darwin. */
525 #define	AUE_MAC_GET_FILE	43124	/* FreeBSD/Darwin. */
526 #define	AUE_MAC_SET_FD		43125	/* FreeBSD/Darwin. */
527 #define	AUE_MAC_SET_FILE	43126	/* FreeBSD/Darwin. */
528 #define	AUE_MAC_SYSCALL		43127	/* FreeBSD. */
529 #define	AUE_MAC_GET_PID		43128	/* FreeBSD/Darwin. */
530 #define	AUE_MAC_GET_LINK	43129	/* FreeBSD/Darwin. */
531 #define	AUE_MAC_SET_LINK	43130	/* FreeBSD/Darwin. */
532 #define	AUE_MAC_EXECVE		43131	/* FreeBSD/Darwin. */
533 #define	AUE_GETPATH_FROMFD	43132	/* FreeBSD. */
534 #define	AUE_GETPATH_FROMADDR	43133	/* FreeBSD. */
535 #define	AUE_MQ_OPEN		43134	/* FreeBSD. */
536 #define	AUE_MQ_SETATTR		43135	/* FreeBSD. */
537 #define	AUE_MQ_TIMEDRECEIVE	43136	/* FreeBSD. */
538 #define	AUE_MQ_TIMEDSEND	43137	/* FreeBSD. */
539 #define	AUE_MQ_NOTIFY		43138	/* FreeBSD. */
540 #define	AUE_MQ_UNLINK		43139	/* FreeBSD. */
541 #define	AUE_LISTEN		43140	/* FreeBSD/Darwin/Linux. */
542 #define	AUE_MLOCKALL		43141	/* FreeBSD. */
543 #define	AUE_MUNLOCKALL		43142	/* FreeBSD. */
544 #define	AUE_CLOSEFROM		43143	/* FreeBSD. */
545 #define	AUE_FEXECVE		43144	/* FreeBSD. */
546 #define	AUE_FACCESSAT		43145	/* FreeBSD. */
547 #define	AUE_FCHMODAT		43146	/* FreeBSD. */
548 #define	AUE_LINKAT		43147	/* FreeBSD. */
549 #define	AUE_MKDIRAT		43148	/* FreeBSD. */
550 #define	AUE_MKFIFOAT		43149	/* FreeBSD. */
551 #define	AUE_MKNODAT		43150	/* FreeBSD. */
552 #define	AUE_READLINKAT		43151	/* FreeBSD. */
553 #define	AUE_SYMLINKAT		43152	/* FreeBSD. */
554 #define	AUE_MAC_GETFSSTAT	43153	/* Darwin. */
555 #define	AUE_MAC_GET_MOUNT	43154	/* Darwin. */
556 #define	AUE_MAC_GET_LCID	43155	/* Darwin. */
557 #define	AUE_MAC_GET_LCTX	43156	/* Darwin. */
558 #define	AUE_MAC_SET_LCTX	43157	/* Darwin. */
559 #define	AUE_MAC_MOUNT		43158	/* Darwin. */
560 #define	AUE_GETLCID		43159	/* Darwin. */
561 #define	AUE_SETLCID		43160	/* Darwin. */
562 #define	AUE_TASKNAMEFORPID	43161	/* Darwin. */
563 #define	AUE_ACCESS_EXTENDED	43162	/* Darwin. */
564 #define	AUE_CHMOD_EXTENDED	43163	/* Darwin. */
565 #define	AUE_FCHMOD_EXTENDED	43164	/* Darwin. */
566 #define	AUE_FSTAT_EXTENDED	43165	/* Darwin. */
567 #define	AUE_LSTAT_EXTENDED	43166	/* Darwin. */
568 #define	AUE_MKDIR_EXTENDED	43167	/* Darwin. */
569 #define	AUE_MKFIFO_EXTENDED	43168	/* Darwin. */
570 #define	AUE_OPEN_EXTENDED	43169	/* Darwin. */
571 #define	AUE_OPEN_EXTENDED_R	43170	/* Darwin. */
572 #define	AUE_OPEN_EXTENDED_RC	43171	/* Darwin. */
573 #define	AUE_OPEN_EXTENDED_RT	43172	/* Darwin. */
574 #define	AUE_OPEN_EXTENDED_RTC	43173	/* Darwin. */
575 #define	AUE_OPEN_EXTENDED_W	43174	/* Darwin. */
576 #define	AUE_OPEN_EXTENDED_WC	43175	/* Darwin. */
577 #define	AUE_OPEN_EXTENDED_WT	43176	/* Darwin. */
578 #define	AUE_OPEN_EXTENDED_WTC	43177	/* Darwin. */
579 #define	AUE_OPEN_EXTENDED_RW	43178	/* Darwin. */
580 #define	AUE_OPEN_EXTENDED_RWC	43179	/* Darwin. */
581 #define	AUE_OPEN_EXTENDED_RWT	43180	/* Darwin. */
582 #define	AUE_OPEN_EXTENDED_RWTC	43181	/* Darwin. */
583 #define	AUE_STAT_EXTENDED	43182	/* Darwin. */
584 #define	AUE_UMASK_EXTENDED	43183	/* Darwin. */
585 #define	AUE_OPENAT		43184	/* FreeBSD. */
586 #define	AUE_POSIX_OPENPT	43185	/* FreeBSD. */
587 #define	AUE_CAP_NEW		43186	/* TrustedBSD. */
588 #define	AUE_CAP_RIGHTS_GET	43187	/* TrustedBSD. */
589 #define	AUE_CAP_GETRIGHTS	AUE_CAP_RIGHTS_GET
590 #define	AUE_CAP_ENTER		43188	/* TrustedBSD. */
591 #define	AUE_CAP_GETMODE		43189	/* TrustedBSD. */
592 #define	AUE_POSIX_SPAWN		43190	/* Darwin. */
593 #define	AUE_FSGETPATH		43191	/* Darwin. */
594 #define	AUE_PREAD		43192	/* Darwin/FreeBSD. */
595 #define	AUE_PWRITE		43193	/* Darwin/FreeBSD. */
596 #define	AUE_FSCTL		43194	/* Darwin. */
597 #define	AUE_FFSCTL		43195	/* Darwin. */
598 #define	AUE_LPATHCONF		43196	/* FreeBSD. */
599 #define	AUE_PDFORK		43197	/* FreeBSD. */
600 #define	AUE_PDKILL		43198	/* FreeBSD. */
601 #define	AUE_PDGETPID		43199	/* FreeBSD. */
602 #define	AUE_PDWAIT		43200	/* FreeBSD. */
603 #define	AUE_WAIT6		43201	/* FreeBSD. */
604 #define	AUE_CAP_RIGHTS_LIMIT	43202	/* TrustedBSD. */
605 #define	AUE_CAP_IOCTLS_LIMIT	43203	/* TrustedBSD. */
606 #define	AUE_CAP_IOCTLS_GET	43204	/* TrustedBSD. */
607 #define	AUE_CAP_FCNTLS_LIMIT	43205	/* TrustedBSD. */
608 #define	AUE_CAP_FCNTLS_GET	43206	/* TrustedBSD. */
609 #define	AUE_BINDAT		43207	/* TrustedBSD. */
610 #define	AUE_CONNECTAT		43208	/* TrustedBSD. */
611 #define	AUE_CHFLAGSAT		43209	/* FreeBSD-specific. */
612 #define	AUE_PREADV		43210	/* FreeBSD-specific. */
613 #define	AUE_PWRITEV		43211	/* FreeBSD-specific. */
614 #define	AUE_POSIX_FALLOCATE	43212	/* FreeBSD-specific. */
615 #define	AUE_AIO_MLOCK		43213	/* FreeBSD-specific. */
616 #define	AUE_PROCCTL		43214	/* FreeBSD-specific. */
617 #define	AUE_AIO_READ		43215	/* FreeBSD-specific. */
618 #define	AUE_AIO_WRITE		43216	/* FreeBSD-specific. */
619 #define	AUE_AIO_RETURN		43217	/* FreeBSD-specific. */
620 #define	AUE_AIO_SUSPEND		43218	/* FreeBSD-specific. */
621 #define	AUE_AIO_CANCEL		43219	/* FreeBSD-specific. */
622 #define	AUE_AIO_ERROR		43220	/* FreeBSD-specific. */
623 #define	AUE_AIO_WAITCOMPLETE	43221	/* FreeBSD-specific. */
624 #define	AUE_AIO_FSYNC		43222	/* FreeBSD-specific. */
625 #define	AUE_THR_CREATE		43223	/* FreeBSD-specific. */
626 #define	AUE_THR_NEW		43224	/* FreeBSD-specific. */
627 #define	AUE_THR_EXIT		43225	/* FreeBSD-specific. */
628 #define	AUE_THR_KILL		43226	/* FreeBSD-specific. */
629 #define	AUE_THR_KILL2		43227	/* FreeBSD-specific. */
630 #define	AUE_SETFIB		43228	/* FreeBSD-specific. */
631 #define	AUE_LIO_LISTIO		43229	/* FreeBSD-specific. */
632 #define	AUE_SETUGID		43230	/* FreeBSD-specific. */
633 #define	AUE_SCTP_PEELOFF	43231	/* FreeBSD-specific. */
634 #define	AUE_SCTP_GENERIC_SENDMSG	43232	/* FreeBSD-specific. */
635 #define	AUE_SCTP_GENERIC_RECVMSG	43233	/* FreeBSD-specific. */
636 #define	AUE_JAIL_GET		43234	/* FreeBSD-specific. */
637 #define	AUE_JAIL_SET		43235	/* FreeBSD-specific. */
638 #define	AUE_JAIL_REMOVE		43236	/* FreeBSD-specific. */
639 #define	AUE_GETLOGINCLASS	43237	/* FreeBSD-specific. */
640 #define	AUE_SETLOGINCLASS	43238	/* FreeBSD-specific. */
641 #define	AUE_POSIX_FADVISE	43239	/* FreeBSD-specific. */
642 #define	AUE_SCTP_GENERIC_SENDMSG_IOV	43240	/* FreeBSD-specific. */
643 #define	AUE_ABORT2		43241	/* FreeBSD-specific. */
644 #define	AUE_SEMTIMEDWAIT	43242	/* FreeBSD-specific. */
645 #define	AUE_SEMDESTROY		43243	/* FreeBSD-specific. */
646 #define	AUE_SEMGETVALUE		43244	/* FreeBSD-specific. */
647 #define	AUE_SEMINIT		43245	/* FreeBSD-specific. */
648 #define	AUE_SEMPOST		43246	/* FreeBSD-specific. */
649 #define	AUE_SEMTRYWAIT		43247	/* FreeBSD-specific. */
650 #define	AUE_SEMWAIT		43258	/* FreeBSD-specific. */
651 #define	AUE_FGETUUID		43259	/* CADETS. */
652 #define	AUE_GETUUID		43260	/* CADETS. */
653 #define	AUE_LGETUUID		43261	/* CADETS. */
654 #define	AUE_EXECVEAT		43262	/* FreeBSD/Linux. */
655 #define	AUE_SHMRENAME		43263	/* FreeBSD-specific. */
656 #define	AUE_REALPATHAT		43264	/* FreeBSD-specific. */
657 #define	AUE_CLOSERANGE		43265	/* FreeBSD-specific. */
658 
659 /*
660  * Darwin BSM uses a number of AUE_O_* definitions, which are aliased to the
661  * normal Solaris BSM identifiers.  _O_ refers to it being an old, or compat
662  * interface.  In most cases, Darwin has never implemented these system calls
663  * but picked up the fields in their system call table from their FreeBSD
664  * import.  Happily, these have different names than the AUE_O* definitions
665  * in Solaris BSM.
666  */
667 #define	AUE_O_CREAT		AUE_OPEN_RWTC	/* Darwin */
668 #define	AUE_O_EXECVE		AUE_NULL	/* Darwin */
669 #define	AUE_O_SBREAK		AUE_NULL	/* Darwin */
670 #define	AUE_O_LSEEK		AUE_NULL	/* Darwin */
671 #define	AUE_O_MOUNT		AUE_NULL	/* Darwin */
672 #define	AUE_O_UMOUNT		AUE_NULL	/* Darwin */
673 #define	AUE_O_STAT		AUE_STAT	/* Darwin */
674 #define	AUE_O_LSTAT		AUE_LSTAT	/* Darwin */
675 #define	AUE_O_FSTAT		AUE_FSTAT	/* Darwin */
676 #define	AUE_O_GETPAGESIZE	AUE_NULL	/* Darwin */
677 #define	AUE_O_VREAD		AUE_NULL	/* Darwin */
678 #define	AUE_O_VWRITE		AUE_NULL	/* Darwin */
679 #define	AUE_O_MMAP		AUE_MMAP	/* Darwin */
680 #define	AUE_O_VADVISE		AUE_NULL	/* Darwin */
681 #define	AUE_O_VHANGUP		AUE_NULL	/* Darwin */
682 #define	AUE_O_VLIMIT		AUE_NULL	/* Darwin */
683 #define	AUE_O_WAIT		AUE_NULL	/* Darwin */
684 #define	AUE_O_GETHOSTNAME	AUE_NULL	/* Darwin */
685 #define	AUE_O_SETHOSTNAME	AUE_SYSCTL	/* Darwin */
686 #define	AUE_O_GETDOPT		AUE_NULL	/* Darwin */
687 #define	AUE_O_SETDOPT		AUE_NULL	/* Darwin */
688 #define	AUE_O_ACCEPT		AUE_NULL	/* Darwin */
689 #define	AUE_O_SEND		AUE_SENDMSG	/* Darwin */
690 #define	AUE_O_RECV		AUE_RECVMSG	/* Darwin */
691 #define	AUE_O_VTIMES		AUE_NULL	/* Darwin */
692 #define	AUE_O_SIGVEC		AUE_NULL	/* Darwin */
693 #define	AUE_O_SIGBLOCK		AUE_NULL	/* Darwin */
694 #define	AUE_O_SIGSETMASK	AUE_NULL	/* Darwin */
695 #define	AUE_O_SIGSTACK		AUE_NULL	/* Darwin */
696 #define	AUE_O_RECVMSG		AUE_RECVMSG	/* Darwin */
697 #define	AUE_O_SENDMSG		AUE_SENDMSG	/* Darwin */
698 #define	AUE_O_VTRACE		AUE_NULL	/* Darwin */
699 #define	AUE_O_RESUBA		AUE_NULL	/* Darwin */
700 #define	AUE_O_RECVFROM		AUE_RECVFROM	/* Darwin */
701 #define	AUE_O_SETREUID		AUE_SETREUID	/* Darwin */
702 #define	AUE_O_SETREGID		AUE_SETREGID	/* Darwin */
703 #define	AUE_O_GETDIRENTRIES	AUE_GETDIRENTRIES	/* Darwin */
704 #define	AUE_O_TRUNCATE		AUE_TRUNCATE	/* Darwin */
705 #define	AUE_O_FTRUNCATE		AUE_FTRUNCATE	/* Darwin */
706 #define	AUE_O_GETPEERNAME	AUE_NULL	/* Darwin */
707 #define	AUE_O_GETHOSTID		AUE_NULL	/* Darwin */
708 #define	AUE_O_SETHOSTID		AUE_NULL	/* Darwin */
709 #define	AUE_O_GETRLIMIT		AUE_NULL	/* Darwin */
710 #define	AUE_O_SETRLIMIT		AUE_SETRLIMIT	/* Darwin */
711 #define	AUE_O_KILLPG		AUE_KILL	/* Darwin */
712 #define	AUE_O_SETQUOTA		AUE_NULL	/* Darwin */
713 #define	AUE_O_QUOTA		AUE_NULL	/* Darwin */
714 #define	AUE_O_GETSOCKNAME	AUE_NULL	/* Darwin */
715 #define	AUE_O_GETDIREENTRIES	AUE_GETDIREENTRIES	/* Darwin */
716 #define	AUE_O_ASYNCDAEMON	AUE_NULL	/* Darwin */
717 #define	AUE_O_GETDOMAINNAME	AUE_NULL	/* Darwin */
718 #define	AUE_O_SETDOMAINNAME	AUE_SYSCTL	/* Darwin */
719 #define	AUE_O_PCFS_MOUNT	AUE_NULL	/* Darwin */
720 #define	AUE_O_EXPORTFS		AUE_NULL	/* Darwin */
721 #define	AUE_O_USTATE		AUE_NULL	/* Darwin */
722 #define	AUE_O_WAIT3		AUE_NULL	/* Darwin */
723 #define	AUE_O_RPAUSE		AUE_NULL	/* Darwin */
724 #define	AUE_O_GETDENTS		AUE_NULL	/* Darwin */
725 
726 /*
727  * Possible desired future values based on review of BSD/Darwin system calls.
728  */
729 #define	AUE_ATGETMSG		AUE_NULL
730 #define	AUE_ATPUTMSG		AUE_NULL
731 #define	AUE_ATSOCKET		AUE_NULL
732 #define	AUE_ATPGETREQ		AUE_NULL
733 #define	AUE_ATPGETRSP		AUE_NULL
734 #define	AUE_ATPSNDREQ		AUE_NULL
735 #define	AUE_ATPSNDRSP		AUE_NULL
736 #define	AUE_BSDTHREADCREATE	AUE_NULL
737 #define	AUE_BSDTHREADTERMINATE	AUE_NULL
738 #define	AUE_BSDTHREADREGISTER	AUE_NULL
739 #define	AUE_CHUD		AUE_NULL
740 #define	AUE_CSOPS		AUE_NULL
741 #define	AUE_DUP			AUE_NULL
742 #define	AUE_FDATASYNC		AUE_NULL
743 #define	AUE_FGETATTRLIST	AUE_NULL
744 #define	AUE_FGETXATTR		AUE_NULL
745 #define	AUE_FLISTXATTR		AUE_NULL
746 #define	AUE_FREMOVEXATTR	AUE_NULL
747 #define	AUE_FSETATTRLIST	AUE_NULL
748 #define	AUE_FSETXATTR		AUE_NULL
749 #define	AUE_FSTATFS64		AUE_NULL
750 #define	AUE_FSTATV		AUE_NULL
751 #define	AUE_FSTAT64		AUE_NULL
752 #define	AUE_FSTAT64_EXTENDED	AUE_NULL
753 #define	AUE_GCCONTROL		AUE_NULL
754 #define	AUE_GETDIRENTRIES64	AUE_NULL
755 #define	AUE_GETDTABLESIZE	AUE_NULL
756 #define	AUE_GETEGID		AUE_NULL
757 #define	AUE_GETEUID		AUE_NULL
758 #define	AUE_GETFSSTAT64		AUE_NULL
759 #define	AUE_GETGID		AUE_NULL
760 #define	AUE_GETGROUPS		AUE_NULL
761 #define	AUE_GETITIMER		AUE_NULL
762 #define	AUE_GETLOGIN		AUE_NULL
763 #define	AUE_GETPEERNAME		AUE_NULL
764 #define	AUE_GETPGID		AUE_NULL
765 #define	AUE_GETPGRP		AUE_NULL
766 #define	AUE_GETPID		AUE_NULL
767 #define	AUE_GETPPID		AUE_NULL
768 #define	AUE_GETPRIORITY		AUE_NULL
769 #define	AUE_GETRLIMIT		AUE_NULL
770 #define	AUE_GETRUSAGE		AUE_NULL
771 #define	AUE_GETSGROUPS		AUE_NULL
772 #define	AUE_GETSID		AUE_NULL
773 #define	AUE_GETSOCKNAME		AUE_NULL
774 #define	AUE_GETTIMEOFDAY	AUE_NULL
775 #define	AUE_GETTID		AUE_NULL
776 #define	AUE_GETUID		AUE_NULL
777 #define	AUE_GETSOCKOPT		AUE_NULL
778 #define	AUE_GETWGROUPS		AUE_NULL
779 #define	AUE_GETXATTR		AUE_NULL
780 #define	AUE_IDENTITYSVC		AUE_NULL
781 #define	AUE_INITGROUPS		AUE_NULL
782 #define	AUE_IOPOLICYSYS		AUE_NULL
783 #define	AUE_ISSETUGID		AUE_NULL
784 #define	AUE_LIOLISTIO		AUE_NULL
785 #define	AUE_LISTXATTR		AUE_NULL
786 #define	AUE_LSTATV		AUE_NULL
787 #define	AUE_LSTAT64		AUE_NULL
788 #define	AUE_LSTAT64_EXTENDED	AUE_NULL
789 #define	AUE_MADVISE		AUE_NULL
790 #define	AUE_MINCORE		AUE_NULL
791 #define	AUE_MKCOMPLEX		AUE_NULL
792 #define	AUE_MODWATCH		AUE_NULL
793 #define	AUE_MSGCL		AUE_NULL
794 #define	AUE_MSYNC		AUE_NULL
795 #define	AUE_PROCINFO		AUE_NULL
796 #define	AUE_PTHREADCANCELED	AUE_NULL
797 #define	AUE_PTHREADCHDIR	AUE_NULL
798 #define	AUE_PTHREADCONDBROADCAST	AUE_NULL
799 #define	AUE_PTHREADCONDDESTORY	AUE_NULL
800 #define	AUE_PTHREADCONDINIT	AUE_NULL
801 #define	AUE_PTHREADCONDSIGNAL	AUE_NULL
802 #define	AUE_PTHREADCONDWAIT	AUE_NULL
803 #define	AUE_PTHREADFCHDIR	AUE_NULL
804 #define	AUE_PTHREADMARK		AUE_NULL
805 #define	AUE_PTHREADMUTEXDESTROY	AUE_NULL
806 #define	AUE_PTHREADMUTEXINIT	AUE_NULL
807 #define	AUE_PTHREADMUTEXTRYLOCK	AUE_NULL
808 #define	AUE_PTHREADMUTEXUNLOCK	AUE_NULL
809 #define	AUE_REMOVEXATTR		AUE_NULL
810 #define	AUE_SBRK		AUE_NULL
811 #define	AUE_SELECT		AUE_NULL
812 #define	AUE_SEMWAITSIGNAL	AUE_NULL
813 #define	AUE_SETITIMER		AUE_NULL
814 #define	AUE_SETSGROUPS		AUE_NULL
815 #define	AUE_SETTID		AUE_NULL
816 #define	AUE_SETTIDWITHPID	AUE_NULL
817 #define	AUE_SETWGROUPS		AUE_NULL
818 #define	AUE_SETXATTR		AUE_NULL
819 #define	AUE_SHAREDREGIONCHECK	AUE_NULL
820 #define	AUE_SHAREDREGIONMAP	AUE_NULL
821 #define	AUE_SIGACTION		AUE_NULL
822 #define	AUE_SIGALTSTACK		AUE_NULL
823 #define	AUE_SIGPENDING		AUE_NULL
824 #define	AUE_SIGPROCMASK		AUE_NULL
825 #define	AUE_SIGRETURN		AUE_NULL
826 #define	AUE_SIGSUSPEND		AUE_NULL
827 #define	AUE_SIGWAIT		AUE_NULL
828 #define	AUE_SSTK		AUE_NULL
829 #define	AUE_STACKSNAPSHOT	AUE_NULL
830 #define	AUE_STATFS64		AUE_NULL
831 #define	AUE_STATV		AUE_NULL
832 #define	AUE_STAT64		AUE_NULL
833 #define	AUE_STAT64_EXTENDED	AUE_NULL
834 #define	AUE_SYNC		AUE_NULL
835 #define	AUE_SYSCALL		AUE_NULL
836 #define	AUE_TABLE		AUE_NULL
837 #define	AUE_VMPRESSUREMONITOR	AUE_NULL
838 #define	AUE_WAITEVENT		AUE_NULL
839 #define	AUE_WAITID		AUE_NULL
840 #define	AUE_WATCHEVENT		AUE_NULL
841 #define	AUE_WORKQOPEN		AUE_NULL
842 #define	AUE_WORKQOPS		AUE_NULL
843 
844 #endif /* !_BSM_AUDIT_KEVENTS_H_ */
845