1ca0716f5SRobert Watson# 2c0020399SRobert Watson# $P4: //depot/projects/trustedbsd/openbsm/etc/audit_event#39 $ 3e61dc6caSRobert Watson# $FreeBSD$ 4ca0716f5SRobert Watson# 552267f74SRobert Watson# The mapping between event identifiers and values is also hard-coded in 670f0976eSRobert Watson# audit_kevents.h and audit_uevents.h, so changes must occur in both places, 770f0976eSRobert Watson# and programs, such as the kernel, may need to be recompiled to recognize 870f0976eSRobert Watson# those changes. It is advisable not to change the numbering or naming of 970f0976eSRobert Watson# kernel audit events. 1070f0976eSRobert Watson# 117a0a89d2SRobert Watson# Allocation of BSM event identifier ranges: 127a0a89d2SRobert Watson# 137a0a89d2SRobert Watson# 0 Reserved and invalid 147a0a89d2SRobert Watson# 1 - 2047 Reserved for Solaris kernel events 157a0a89d2SRobert Watson# 2048 - 5999 Reserved and unallocated 167a0a89d2SRobert Watson# 6000 - 9999 Reserved for Solaris user events 177a0a89d2SRobert Watson# 10000 - 32767 Reserved and unallocated 187a0a89d2SRobert Watson# 32768 - 65535 Available for third party applications 197a0a89d2SRobert Watson# 207a0a89d2SRobert Watson# Of the third party range, OpenBSM allocates from the following ranges: 217a0a89d2SRobert Watson# 227a0a89d2SRobert Watson# 43000 - 44999 Reserved for OpenBSM kernel events 237a0a89d2SRobert Watson# 45000 - 46999 Reserved for OpenBSM application events 247a0a89d2SRobert Watson# 25ca0716f5SRobert Watson0:AUE_NULL:indir system call:no 26ca0716f5SRobert Watson1:AUE_EXIT:exit(2):pc 27ca0716f5SRobert Watson2:AUE_FORK:fork(2):pc 28ca0716f5SRobert Watson3:AUE_OPEN:open(2) - attr only:fa 29ca0716f5SRobert Watson4:AUE_CREAT:creat(2):fc 30ca0716f5SRobert Watson5:AUE_LINK:link(2):fc 31ca0716f5SRobert Watson6:AUE_UNLINK:unlink(2):fd 32ca0716f5SRobert Watson7:AUE_EXEC:exec(2):pc,ex 33ca0716f5SRobert Watson8:AUE_CHDIR:chdir(2):pc 34ca0716f5SRobert Watson9:AUE_MKNOD:mknod(2):fc 35ca0716f5SRobert Watson10:AUE_CHMOD:chmod(2):fm 36ca0716f5SRobert Watson11:AUE_CHOWN:chown(2):fm 37ca0716f5SRobert Watson12:AUE_UMOUNT:umount(2) - old version:ad 38ca0716f5SRobert Watson13:AUE_JUNK:junk:no 39ca0716f5SRobert Watson14:AUE_ACCESS:access(2):fa 40ca0716f5SRobert Watson15:AUE_KILL:kill(2):pc 41ca0716f5SRobert Watson16:AUE_STAT:stat(2):fa 42ca0716f5SRobert Watson17:AUE_LSTAT:lstat(2):fa 43ca0716f5SRobert Watson18:AUE_ACCT:acct(2):ad 44ca0716f5SRobert Watson19:AUE_MCTL:mctl(2):no 45ca0716f5SRobert Watson20:AUE_REBOOT:reboot(2):ad 46ca0716f5SRobert Watson21:AUE_SYMLINK:symlink(2):fc 47ca0716f5SRobert Watson22:AUE_READLINK:readlink(2):fr 48ca0716f5SRobert Watson23:AUE_EXECVE:execve(2):pc,ex 49ca0716f5SRobert Watson24:AUE_CHROOT:chroot(2):pc 50ca0716f5SRobert Watson25:AUE_VFORK:vfork(2):pc 51ca0716f5SRobert Watson26:AUE_SETGROUPS:setgroups(2):pc 52ca0716f5SRobert Watson27:AUE_SETPGRP:setpgrp(2):pc 53ca0716f5SRobert Watson28:AUE_SWAPON:swapon(2):ad 54ca0716f5SRobert Watson29:AUE_SETHOSTNAME:sethostname(2):ad 55ca0716f5SRobert Watson30:AUE_FCNTL:fcntl(2):fm 56ca0716f5SRobert Watson31:AUE_SETPRIORITY:setpriority(2):pc 57ca0716f5SRobert Watson32:AUE_CONNECT:connect(2):nt 58ca0716f5SRobert Watson33:AUE_ACCEPT:accept(2):nt 59ca0716f5SRobert Watson34:AUE_BIND:bind(2):nt 60ca0716f5SRobert Watson35:AUE_SETSOCKOPT:setsockopt(2):nt 61ca0716f5SRobert Watson36:AUE_VTRACE:vtrace(2):pc 62ca0716f5SRobert Watson37:AUE_SETTIMEOFDAY:settimeofday(2):ad 63ca0716f5SRobert Watson38:AUE_FCHOWN:fchown(2):fm 64ca0716f5SRobert Watson39:AUE_FCHMOD:fchmod(2):fm 65ca0716f5SRobert Watson40:AUE_SETREUID:setreuid(2):pc 66ca0716f5SRobert Watson41:AUE_SETREGID:setregid(2):pc 67ca0716f5SRobert Watson42:AUE_RENAME:rename(2):fc,fd 68ca0716f5SRobert Watson43:AUE_TRUNCATE:truncate(2):fw 69ca0716f5SRobert Watson44:AUE_FTRUNCATE:ftruncate(2):fw 70ca0716f5SRobert Watson45:AUE_FLOCK:flock(2):fm 71ca0716f5SRobert Watson46:AUE_SHUTDOWN:shutdown(2):nt 72ca0716f5SRobert Watson47:AUE_MKDIR:mkdir(2):fc 73ca0716f5SRobert Watson48:AUE_RMDIR:rmdir(2):fd 74ca0716f5SRobert Watson49:AUE_UTIMES:utimes(2):fm 75ca0716f5SRobert Watson50:AUE_ADJTIME:adjtime(2):ad 76ca0716f5SRobert Watson51:AUE_SETRLIMIT:setrlimit(2):pc 77ca0716f5SRobert Watson52:AUE_KILLPG:killpg(2):pc 78ca0716f5SRobert Watson53:AUE_NFS_SVC:nfs_svc(2):ad 79ca0716f5SRobert Watson54:AUE_STATFS:statfs(2):fa 80ca0716f5SRobert Watson55:AUE_FSTATFS:fstatfs(2):fa 81ca0716f5SRobert Watson56:AUE_UNMOUNT:unmount(2):ad 82ca0716f5SRobert Watson57:AUE_ASYNC_DAEMON:async_daemon(2):ad 83ca0716f5SRobert Watson58:AUE_NFS_GETFH:nfs_getfh(2):ad 84ca0716f5SRobert Watson59:AUE_SETDOMAINNAME:setdomainname(2):ad 85ca0716f5SRobert Watson60:AUE_QUOTACTL:quotactl(2):ad 86ca0716f5SRobert Watson61:AUE_EXPORTFS:exportfs(2):ad 87ca0716f5SRobert Watson62:AUE_MOUNT:mount(2):ad 88ca0716f5SRobert Watson63:AUE_SEMSYS:semsys(2):ip 89ca0716f5SRobert Watson64:AUE_MSGSYS:msgsys(2):ip 90ca0716f5SRobert Watson65:AUE_SHMSYS:shmsys(2):ip 91ca0716f5SRobert Watson66:AUE_BSMSYS:bsmsys(2):ad 92ca0716f5SRobert Watson67:AUE_RFSSYS:rfssys(2):ad 93ca0716f5SRobert Watson68:AUE_FCHDIR:fchdir(2):pc 94ca0716f5SRobert Watson69:AUE_FCHROOT:fchroot(2):pc 95ca0716f5SRobert Watson70:AUE_VPIXSYS:vpixsys(2):no 96ca0716f5SRobert Watson71:AUE_PATHCONF:pathconf(2):fa 97ca0716f5SRobert Watson72:AUE_OPEN_R:open(2) - read:fr 98ca0716f5SRobert Watson73:AUE_OPEN_RC:open(2) - read,creat:fc,fr,fa,fm 99ca0716f5SRobert Watson74:AUE_OPEN_RT:open(2) - read,trunc:fd,fr,fa,fm 100ca0716f5SRobert Watson75:AUE_OPEN_RTC:open(2) - read,creat,trunc:fc,fd,fr,fa,fm 101ca0716f5SRobert Watson76:AUE_OPEN_W:open(2) - write:fw 102ca0716f5SRobert Watson77:AUE_OPEN_WC:open(2) - write,creat:fc,fw,fa,fm 103ca0716f5SRobert Watson78:AUE_OPEN_WT:open(2) - write,trunc:fd,fw,fa,fm 104ca0716f5SRobert Watson79:AUE_OPEN_WTC:open(2) - write,creat,trunc:fc,fd,fw,fa,fm 105ca0716f5SRobert Watson80:AUE_OPEN_RW:open(2) - read,write:fr,fw 106ca0716f5SRobert Watson81:AUE_OPEN_RWC:open(2) - read,write,creat:fc,fw,fr,fa,fm 107ca0716f5SRobert Watson82:AUE_OPEN_RWT:open(2) - read,write,trunc:fd,fr,fw,fa,fm 108ca0716f5SRobert Watson83:AUE_OPEN_RWTC:open(2) - read,write,creat,trunc:fc,fd,fw,fr,fa,fm 109ca0716f5SRobert Watson84:AUE_MSGCTL:msgctl(2) - illegal command:ip 110ca0716f5SRobert Watson85:AUE_MSGCTL_RMID:msgctl(2) - IPC_RMID command:ip 111ca0716f5SRobert Watson86:AUE_MSGCTL_SET:msgctl(2) - IPC_SET command:ip 112ca0716f5SRobert Watson87:AUE_MSGCTL_STAT:msgctl(2) - IPC_STAT command:ip 113ca0716f5SRobert Watson88:AUE_MSGGET:msgget(2):ip 114ca0716f5SRobert Watson89:AUE_MSGRCV:msgrcv(2):ip 115ca0716f5SRobert Watson90:AUE_MSGSND:msgsnd(2):ip 116ca0716f5SRobert Watson91:AUE_SHMCTL:shmctl(2) - illegal command:ip 117ca0716f5SRobert Watson92:AUE_SHMCTL_RMID:shmctl(2) - IPC_RMID command:ip 118ca0716f5SRobert Watson93:AUE_SHMCTL_SET:shmctl(2) - IPC_SET command:ip 119ca0716f5SRobert Watson94:AUE_SHMCTL_STAT:shmctl(2) - IPC_STAT command:ip 120ca0716f5SRobert Watson95:AUE_SHMGET:shmget(2):ip 121ca0716f5SRobert Watson96:AUE_SHMAT:shmat(2):ip 122ca0716f5SRobert Watson97:AUE_SHMDT:shmdt(2):ip 123ca0716f5SRobert Watson98:AUE_SEMCTL:semctl(2) - illegal command:ip 124ca0716f5SRobert Watson99:AUE_SEMCTL_RMID:semctl(2) - IPC_RMID command:ip 125ca0716f5SRobert Watson100:AUE_SEMCTL_SET:semctl(2) - IPC_SET command:ip 126ca0716f5SRobert Watson101:AUE_SEMCTL_STAT:semctl(2) - IPC_STAT command:ip 127ca0716f5SRobert Watson102:AUE_SEMCTL_GETNCNT:semctl(2) - GETNCNT command:ip 128ca0716f5SRobert Watson103:AUE_SEMCTL_GETPID:semctl(2) - GETPID command:ip 129ca0716f5SRobert Watson104:AUE_SEMCTL_GETVAL:semctl(2) - GETVAL command:ip 130ca0716f5SRobert Watson105:AUE_SEMCTL_GETALL:semctl(2) - GETALL command:ip 131ca0716f5SRobert Watson106:AUE_SEMCTL_GETZCNT:semctl(2) - GETZCNT command:ip 132ca0716f5SRobert Watson107:AUE_SEMCTL_SETVAL:semctl(2) - SETVAL command:ip 133ca0716f5SRobert Watson108:AUE_SEMCTL_SETALL:semctl(2) - SETALL command:ip 134ca0716f5SRobert Watson109:AUE_SEMGET:semget(2):ip 135ca0716f5SRobert Watson110:AUE_SEMOP:semop(2):ip 136ca0716f5SRobert Watson111:AUE_CORE:process dumped core:fc 137ca0716f5SRobert Watson112:AUE_CLOSE:close(2):cl 138ca0716f5SRobert Watson113:AUE_SYSTEMBOOT:system booted:na 139ca0716f5SRobert Watson114:AUE_ASYNC_DAEMON_EXIT:async_daemon(2) exited:ad 140ca0716f5SRobert Watson115:AUE_NFSSVC_EXIT:nfssvc(2) exited:ad 1412a62e545SRobert Watson128:AUE_WRITEL:writel(2):no 1422a62e545SRobert Watson129:AUE_WRITEVL:writevl(2):no 143ca0716f5SRobert Watson130:AUE_GETAUID:getauid(2):ad 144ca0716f5SRobert Watson131:AUE_SETAUID:setauid(2):ad 145ca0716f5SRobert Watson132:AUE_GETAUDIT:getaudit(2):ad 146ca0716f5SRobert Watson133:AUE_SETAUDIT:setaudit(2):ad 147ca0716f5SRobert Watson134:AUE_GETUSERAUDIT:getuseraudit(2):ad 148ca0716f5SRobert Watson135:AUE_SETUSERAUDIT:setuseraudit(2):ad 149ca0716f5SRobert Watson136:AUE_AUDITSVC:auditsvc(2):ad 150ca0716f5SRobert Watson137:AUE_AUDITUSER:audituser(2):ad 151ca0716f5SRobert Watson138:AUE_AUDITON:auditon(2):ad 152ca0716f5SRobert Watson139:AUE_AUDITON_GTERMID:auditon(2) - GETTERMID command:ad 153ca0716f5SRobert Watson140:AUE_AUDITON_STERMID:auditon(2) - SETTERMID command:ad 154ca0716f5SRobert Watson141:AUE_AUDITON_GPOLICY:auditon(2) - GPOLICY command:ad 155ca0716f5SRobert Watson142:AUE_AUDITON_SPOLICY:auditon(2) - SPOLICY command:ad 156ca0716f5SRobert Watson143:AUE_AUDITON_GESTATE:auditon(2) - GESTATE command:ad 157ca0716f5SRobert Watson144:AUE_AUDITON_SESTATE:auditon(2) - SESTATE command:ad 158ca0716f5SRobert Watson145:AUE_AUDITON_GQCTRL:auditon(2) - GQCTRL command:ad 159ca0716f5SRobert Watson146:AUE_AUDITON_SQCTRL:auditon(2) - SQCTRL command:ad 160ca0716f5SRobert Watson147:AUE_GETKERNSTATE:getkernstate(2):ad 161ca0716f5SRobert Watson148:AUE_SETKERNSTATE:setkernstate(2):ad 162ca0716f5SRobert Watson149:AUE_GETPORTAUDIT:getportaudit(2):ad 163ca0716f5SRobert Watson150:AUE_AUDITSTAT:auditstat(2):ad 164372e973cSRobert Watson151:AUE_REVOKE:revoke(2):cl 165372e973cSRobert Watson152:AUE_MAC:Solaris AUE_MAC:no 166ca0716f5SRobert Watson153:AUE_ENTERPROM:enter prom:ad 167ca0716f5SRobert Watson154:AUE_EXITPROM:exit prom:ad 168372e973cSRobert Watson155:AUE_IFLOAT:Solaris AUE_IFLOAT:no 169372e973cSRobert Watson156:AUE_PFLOAT:Solaris AUE_PFLOAT:no 170372e973cSRobert Watson157:AUE_UPRIV:Solaris AUE_UPRIV:no 171ca0716f5SRobert Watson158:AUE_IOCTL:ioctl(2):io 172ca0716f5SRobert Watson173:AUE_ONESIDE:one-sided session record:nt 173ca0716f5SRobert Watson174:AUE_MSGGETL:msggetl(2):ip 174ca0716f5SRobert Watson175:AUE_MSGRCVL:msgrcvl(2):ip 175ca0716f5SRobert Watson176:AUE_MSGSNDL:msgsndl(2):ip 176ca0716f5SRobert Watson177:AUE_SEMGETL:semgetl(2):ip 177ca0716f5SRobert Watson178:AUE_SHMGETL:shmgetl(2):ip 178ca0716f5SRobert Watson183:AUE_SOCKET:socket(2):nt 179ca0716f5SRobert Watson184:AUE_SENDTO:sendto(2):nt 180ca0716f5SRobert Watson185:AUE_PIPE:pipe(2):ip 181ca0716f5SRobert Watson186:AUE_SOCKETPAIR:socketpair(2):nt 182ca0716f5SRobert Watson187:AUE_SEND:send(2):nt 183ca0716f5SRobert Watson188:AUE_SENDMSG:sendmsg(2):nt 184ca0716f5SRobert Watson189:AUE_RECV:recv(2):nt 185ca0716f5SRobert Watson190:AUE_RECVMSG:recvmsg(2):nt 186ca0716f5SRobert Watson191:AUE_RECVFROM:recvfrom(2):nt 187ca0716f5SRobert Watson192:AUE_READ:read(2):no 188ca0716f5SRobert Watson193:AUE_GETDENTS:getdents(2):no 189ca0716f5SRobert Watson194:AUE_LSEEK:lseek(2):no 190ca0716f5SRobert Watson195:AUE_WRITE:write(2):no 191ca0716f5SRobert Watson196:AUE_WRITEV:writev(2):no 192ca0716f5SRobert Watson197:AUE_NFS:nfs server:ad 193ca0716f5SRobert Watson198:AUE_READV:readv(2):no 194372e973cSRobert Watson199:AUE_OSTAT:Solaris old stat(2):fa 195ca0716f5SRobert Watson200:AUE_SETUID:setuid(2):pc 196ca0716f5SRobert Watson201:AUE_STIME:old stime(2):ad 197ca0716f5SRobert Watson202:AUE_UTIME:old utime(2):fm 198ca0716f5SRobert Watson203:AUE_NICE:old nice(2):pc 199372e973cSRobert Watson204:AUE_OSETPGRP:Solaris old setpgrp(2):pc 200ca0716f5SRobert Watson205:AUE_SETGID:setgid(2):pc 201ca0716f5SRobert Watson206:AUE_READL:readl(2):no 202ca0716f5SRobert Watson207:AUE_READVL:readvl(2):no 2037a0a89d2SRobert Watson208:AUE_FSTAT:fstat(2):fa 204ca0716f5SRobert Watson209:AUE_DUP2:dup2(2):no 205ca0716f5SRobert Watson210:AUE_MMAP:mmap(2):no 206ca0716f5SRobert Watson211:AUE_AUDIT:audit(2):ot 207372e973cSRobert Watson212:AUE_PRIOCNTLSYS:Solaris priocntlsys(2):pc 208ca0716f5SRobert Watson213:AUE_MUNMAP:munmap(2):cl 209ca0716f5SRobert Watson214:AUE_SETEGID:setegid(2):pc 210ca0716f5SRobert Watson215:AUE_SETEUID:seteuid(2):pc 211ca0716f5SRobert Watson216:AUE_PUTMSG:putmsg(2):nt 212ca0716f5SRobert Watson217:AUE_GETMSG:getmsg(2):nt 213ca0716f5SRobert Watson218:AUE_PUTPMSG:putpmsg(2):nt 214ca0716f5SRobert Watson219:AUE_GETPMSG:getpmsg(2):nt 215ca0716f5SRobert Watson220:AUE_AUDITSYS:audit system calls place holder:no 216ca0716f5SRobert Watson221:AUE_AUDITON_GETKMASK:auditon(2) - get kernel mask:ad 217ca0716f5SRobert Watson222:AUE_AUDITON_SETKMASK:auditon(2) - set kernel mask:ad 218ca0716f5SRobert Watson223:AUE_AUDITON_GETCWD:auditon(2) - get cwd:ad 219ca0716f5SRobert Watson224:AUE_AUDITON_GETCAR:auditon(2) - get car:ad 220ca0716f5SRobert Watson225:AUE_AUDITON_GETSTAT:auditon(2) - get audit statistics:ad 221ca0716f5SRobert Watson226:AUE_AUDITON_SETSTAT:auditon(2) - reset audit statistics:ad 222ca0716f5SRobert Watson227:AUE_AUDITON_SETUMASK:auditon(2) - set mask per uid:ad 223ca0716f5SRobert Watson228:AUE_AUDITON_SETSMASK:auditon(2) - set mask per session ID:ad 224ca0716f5SRobert Watson229:AUE_AUDITON_GETCOND:auditon(2) - get audit state:ad 225ca0716f5SRobert Watson230:AUE_AUDITON_SETCOND:auditon(2) - set audit state:ad 226ca0716f5SRobert Watson231:AUE_AUDITON_GETCLASS:auditon(2) - get event class:ad 227ca0716f5SRobert Watson232:AUE_AUDITON_SETCLASS:auditon(2) - set event class:ad 228ca0716f5SRobert Watson233:AUE_UTSSYS:utssys(2) - fusers:ad 229ca0716f5SRobert Watson234:AUE_STATVFS:statvfs(2):fa 230ca0716f5SRobert Watson235:AUE_XSTAT:xstat(2):fa 231372e973cSRobert Watson236:AUE_LXSTAT:lxstat(2):fa 232ca0716f5SRobert Watson237:AUE_LCHOWN:lchown(2):fm 233ca0716f5SRobert Watson238:AUE_MEMCNTL:memcntl(2):ot 234ca0716f5SRobert Watson239:AUE_SYSINFO:sysinfo(2):ad 235ca0716f5SRobert Watson240:AUE_XMKNOD:xmknod(2):fc 236ca0716f5SRobert Watson241:AUE_FORK1:fork1(2):pc 237ca0716f5SRobert Watson242:AUE_MODCTL:modctl(2) system call place holder:no 238ca0716f5SRobert Watson243:AUE_MODLOAD:modctl(2) - load module:ad 239ca0716f5SRobert Watson244:AUE_MODUNLOAD:modctl(2) - unload module:ad 240ca0716f5SRobert Watson245:AUE_MODCONFIG:modctl(2) - configure module:ad 241ca0716f5SRobert Watson246:AUE_MODADDMAJ:modctl(2) - bind module:ad 242ca0716f5SRobert Watson247:AUE_SOCKACCEPT:getmsg-accept:nt 243ca0716f5SRobert Watson248:AUE_SOCKCONNECT:putmsg-connect:nt 244ca0716f5SRobert Watson249:AUE_SOCKSEND:putmsg-send:nt 245ca0716f5SRobert Watson250:AUE_SOCKRECEIVE:getmsg-receive:nt 246ca0716f5SRobert Watson251:AUE_ACLSET:acl(2) - SETACL comand:fm 247ca0716f5SRobert Watson252:AUE_FACLSET:facl(2) - SETACL command:fm 248ca0716f5SRobert Watson253:AUE_DOORFS:doorfs(2) - system call place holder:no 249ca0716f5SRobert Watson254:AUE_DOORFS_DOOR_CALL:doorfs(2) - DOOR_CALL:ip 250ca0716f5SRobert Watson255:AUE_DOORFS_DOOR_RETURN:doorfs(2) - DOOR_RETURN:ip 251ca0716f5SRobert Watson256:AUE_DOORFS_DOOR_CREATE:doorfs(2) - DOOR_CREATE:ip 252ca0716f5SRobert Watson257:AUE_DOORFS_DOOR_REVOKE:doorfs(2) - DOOR_REVOKE:ip 253ca0716f5SRobert Watson258:AUE_DOORFS_DOOR_INFO:doorfs(2) - DOOR_INFO:ip 254ca0716f5SRobert Watson259:AUE_DOORFS_DOOR_CRED:doorfs(2) - DOOR_CRED:ip 255ca0716f5SRobert Watson260:AUE_DOORFS_DOOR_BIND:doorfs(2) - DOOR_BIND:ip 256ca0716f5SRobert Watson261:AUE_DOORFS_DOOR_UNBIND:doorfs(2) - DOOR_UNBIND:ip 257ca0716f5SRobert Watson262:AUE_P_ONLINE:p_online(2):ad 258ca0716f5SRobert Watson263:AUE_PROCESSOR_BIND:processor_bind(2):ad 259ca0716f5SRobert Watson264:AUE_INST_SYNC:inst_sync(2):ad 260372e973cSRobert Watson265:AUE_SOCKCONFIG:configure socket:nt 261ca0716f5SRobert Watson266:AUE_SETAUDIT_ADDR:setaudit_addr(2):ad 262ca0716f5SRobert Watson267:AUE_GETAUDIT_ADDR:getaudit_addr(2):ad 263372e973cSRobert Watson268:AUE_UMOUNT2:Solaris umount(2):ad 264372e973cSRobert Watson269:AUE_FSAT:fsat(2) - place holder:no 265372e973cSRobert Watson270:AUE_OPENAT_R:openat(2) - read:fr 266372e973cSRobert Watson271:AUE_OPENAT_RC:openat(2) - read,creat:fc,fr,fa,fm 267372e973cSRobert Watson272:AUE_OPENAT_RT:openat(2) - read,trunc:fd,fr,fa,fm 268372e973cSRobert Watson273:AUE_OPENAT_RTC:openat(2) - read,creat,trunc:fc,fd,fr,fa,fm 269372e973cSRobert Watson274:AUE_OPENAT_W:openat(2) - write:fw 270372e973cSRobert Watson275:AUE_OPENAT_WC:openat(2) - write,creat:fc,fw,fa,fm 271372e973cSRobert Watson276:AUE_OPENAT_WT:openat(2) - write,trunc:fd,fw,fa,fm 272372e973cSRobert Watson277:AUE_OPENAT_WTC:openat(2) - write,creat,trunc:fc,fd,fw,fa,fm 273372e973cSRobert Watson278:AUE_OPENAT_RW:openat(2) - read,write:fr,fw 274372e973cSRobert Watson279:AUE_OPENAT_RWC:openat(2) - read,write,create:fc,fw,fr,fa,fm 275372e973cSRobert Watson280:AUE_OPENAT_RWTC:openat(2) - read,write,creat,trunc:fc,fd,fw,fr,fa,fm 276372e973cSRobert Watson282:AUE_RENAMEAT:renameat(2):fc,fd 277372e973cSRobert Watson283:AUE_FSTATAT:fstatat(2):fa 278372e973cSRobert Watson284:AUE_FCHOWNAT:fchownat(2):fm 279372e973cSRobert Watson285:AUE_FUTIMESAT:futimesat(2):fm 280372e973cSRobert Watson286:AUE_UNLINKAT:unlinkat(2):fd 281372e973cSRobert Watson287:AUE_CLOCK_SETTIME:clock_settime(2):ad 282372e973cSRobert Watson288:AUE_NTP_ADJTIME:ntp_adjtime(2):ad 283372e973cSRobert Watson289:AUE_SETPPRIV:setppriv(2):pc 284372e973cSRobert Watson290:AUE_MODDEVPLCY:modctl(2) - configure device policy:ad 285372e973cSRobert Watson291:AUE_MODADDPRIV:modctl(2) - configure additional privilege:ad 286372e973cSRobert Watson292:AUE_CRYPTOADM:kernel cryptographic framework:ad 287372e973cSRobert Watson293:AUE_CONFIGKSSL:configure kernel SSL:ad 288372e973cSRobert Watson294:AUE_BRANDSYS:brandsys(2):ot 289372e973cSRobert Watson295:AUE_PF_POLICY_ADDRULE:Add IPsec policy rule:ad 290372e973cSRobert Watson296:AUE_PF_POLICY_DELRULE:Delete IPsec policy rule:ad 291372e973cSRobert Watson297:AUE_PF_POLICY_CLONE:Clone IPsec policy:ad 292372e973cSRobert Watson298:AUE_PF_POLICY_FLIP:Flip IPsec policy:ad 293372e973cSRobert Watson299:AUE_PF_POLICY_FLUSH:Flush IPsec policy rules:ad 294372e973cSRobert Watson300:AUE_PF_POLICY_ALGS:Update IPsec algorithms:ad 29552267f74SRobert Watson301:AUE_PORTFS:portfs:fa 296505237acSRobert Watson# 29752267f74SRobert Watson# What follows are deprecated Darwin event numbers that may soon^H^H^H^Hnow 29852267f74SRobert Watson# conflict with Solaris events. 299505237acSRobert Watson# 300505237acSRobert Watson301:AUE_DARWIN_GETFSSTAT:getfsstat(2):fa 301505237acSRobert Watson302:AUE_DARWIN_PTRACE:ptrace(2):pc 302505237acSRobert Watson303:AUE_DARWIN_CHFLAGS:chflags(2):fm 303505237acSRobert Watson304:AUE_DARWIN_FCHFLAGS:fchflags(2):fm 304505237acSRobert Watson305:AUE_DARWIN_PROFILE:profil(2):pc 305505237acSRobert Watson306:AUE_DARWIN_KTRACE:ktrace(2):pc 306505237acSRobert Watson307:AUE_DARWIN_SETLOGIN:setlogin(2):pc 307ca0716f5SRobert Watson308:AUE_DARWIN_REBOOT:reboot(2):ad 308505237acSRobert Watson309:AUE_DARWIN_REVOKE:revoke(2):cl 309505237acSRobert Watson310:AUE_DARWIN_UMASK:umask(2):pc 310505237acSRobert Watson311:AUE_DARWIN_MPROTECT:mprotect(2):fm 311ca0716f5SRobert Watson312:AUE_DARWIN_SETPRIORITY:setpriority(2):pc,ot 312ca0716f5SRobert Watson313:AUE_DARWIN_SETTIMEOFDAY:settimeofday(2):ad 313ca0716f5SRobert Watson314:AUE_DARWIN_FLOCK:flock(2):fm 314505237acSRobert Watson315:AUE_DARWIN_MKFIFO:mkfifo(2):fc 315505237acSRobert Watson316:AUE_DARWIN_POLL:poll(2):no 316ca0716f5SRobert Watson317:AUE_DARWIN_SOCKETPAIR:socketpair(2):nt 317505237acSRobert Watson318:AUE_DARWIN_FUTIMES:futimes(2):fm 318505237acSRobert Watson319:AUE_DARWIN_SETSID:setsid(2):pc 319505237acSRobert Watson320:AUE_DARWIN_SETPRIVEXEC:setprivexec(2):pc 320ca0716f5SRobert Watson321:AUE_DARWIN_NFSSVC:nfssvc(2):ad 321ca0716f5SRobert Watson322:AUE_DARWIN_GETFH:getfh(2):fa 322ca0716f5SRobert Watson323:AUE_DARWIN_QUOTACTL:quotactl(2):ad 323c0020399SRobert Watson324:AUE_DARWIN_ADDPROFILE:add_profil():pc 324c0020399SRobert Watson325:AUE_DARWIN_KDEBUGTRACE:kdebug_trace():pc 325505237acSRobert Watson326:AUE_DARWIN_FSTAT:fstat(2):fa 326505237acSRobert Watson327:AUE_DARWIN_FPATHCONF:fpathconf(2):fa 3272a62e545SRobert Watson328:AUE_DARWIN_GETDIRENTRIES:getdirentries(2):no 328ca0716f5SRobert Watson329:AUE_DARWIN_TRUNCATE:truncate(2):fw 329ca0716f5SRobert Watson330:AUE_DARWIN_FTRUNCATE:ftruncate(2):fw 330505237acSRobert Watson331:AUE_DARWIN_SYSCTL:sysctl(3):ad 331505237acSRobert Watson332:AUE_DARWIN_MLOCK:mlock(2):pc 332505237acSRobert Watson333:AUE_DARWIN_MUNLOCK:munlock(2):pc 333505237acSRobert Watson334:AUE_DARWIN_UNDELETE:undelete(2):fm 334505237acSRobert Watson335:AUE_DARWIN_GETATTRLIST:getattrlist():fa 335505237acSRobert Watson336:AUE_DARWIN_SETATTRLIST:setattrlist():fm 336505237acSRobert Watson337:AUE_DARWIN_GETDIRENTRIESATTR:getdirentriesattr():fa 337505237acSRobert Watson338:AUE_DARWIN_EXCHANGEDATA:exchangedata():fw 338505237acSRobert Watson339:AUE_DARWIN_SEARCHFS:searchfs():fa 339505237acSRobert Watson340:AUE_DARWIN_MINHERIT:minherit(2):pc 340505237acSRobert Watson341:AUE_DARWIN_SEMCONFIG:semconfig():ip 341505237acSRobert Watson342:AUE_DARWIN_SEMOPEN:sem_open(2):ip 342505237acSRobert Watson343:AUE_DARWIN_SEMCLOSE:sem_close(2):ip 343505237acSRobert Watson344:AUE_DARWIN_SEMUNLINK:sem_unlink(2):ip 344505237acSRobert Watson345:AUE_DARWIN_SHMOPEN:shm_open(2):ip 345505237acSRobert Watson346:AUE_DARWIN_SHMUNLINK:shm_unlink(2):ip 346505237acSRobert Watson347:AUE_DARWIN_LOADSHFILE:load_shared_file():fr 347505237acSRobert Watson348:AUE_DARWIN_RESETSHFILE:reset_shared_file():ot 348505237acSRobert Watson349:AUE_DARWIN_NEWSYSTEMSHREG:new_system_share_regions():ot 349505237acSRobert Watson350:AUE_DARWIN_PTHREADKILL:pthread_kill(2):pc 350505237acSRobert Watson351:AUE_DARWIN_PTHREADSIGMASK:pthread_sigmask(2):pc 351505237acSRobert Watson352:AUE_DARWIN_AUDITCTL:auditctl(2):ad 352505237acSRobert Watson353:AUE_DARWIN_RFORK:rfork(2):pc 353505237acSRobert Watson354:AUE_DARWIN_LCHMOD:lchmod(2):fm 354372e973cSRobert Watson355:AUE_DARWIN_SWAPOFF:swapoff(2):ad 355505237acSRobert Watson356:AUE_DARWIN_INITPROCESS:init_process():pc 356505237acSRobert Watson357:AUE_DARWIN_MAPFD:map_fd():fa 357505237acSRobert Watson358:AUE_DARWIN_TASKFORPID:task_for_pid():pc 358505237acSRobert Watson359:AUE_DARWIN_PIDFORTASK:pid_for_task():pc 359505237acSRobert Watson360:AUE_DARWIN_SYSCTL_NONADMIN:sysctl() - non-admin:ot 360505237acSRobert Watson361:AUE_DARWIN_COPYFILE:copyfile():fr,fw 361505237acSRobert Watson# 362505237acSRobert Watson# OpenBSM-specific kernel events. 363505237acSRobert Watson# 364505237acSRobert Watson43001:AUE_GETFSSTAT:getfsstat(2):fa 365505237acSRobert Watson43002:AUE_PTRACE:ptrace(2):pc 366505237acSRobert Watson43003:AUE_CHFLAGS:chflags(2):fm 367505237acSRobert Watson43004:AUE_FCHFLAGS:fchflags(2):fm 368505237acSRobert Watson43005:AUE_PROFILE:profil(2):pc 369505237acSRobert Watson43006:AUE_KTRACE:ktrace(2):pc 370505237acSRobert Watson43007:AUE_SETLOGIN:setlogin(2):pc 371372e973cSRobert Watson43008:AUE_OPENBSM_REVOKE:revoke(2):cl 372505237acSRobert Watson43009:AUE_UMASK:umask(2):pc 373505237acSRobert Watson43010:AUE_MPROTECT:mprotect(2):fm 374505237acSRobert Watson43011:AUE_MKFIFO:mkfifo(2):fc 375505237acSRobert Watson43012:AUE_POLL:poll(2):no 376505237acSRobert Watson43013:AUE_FUTIMES:futimes(2):fm 377505237acSRobert Watson43014:AUE_SETSID:setsid(2):pc 378505237acSRobert Watson43015:AUE_SETPRIVEXEC:setprivexec(2):pc 379c0020399SRobert Watson43016:AUE_ADDPROFILE:add_profil():pc 380c0020399SRobert Watson43017:AUE_KDEBUGTRACE:kdebug_trace():pc 381372e973cSRobert Watson43018:AUE_OPENBSM_FSTAT:fstat(2):fa 382505237acSRobert Watson43019:AUE_FPATHCONF:fpathconf(2):fa 3832a62e545SRobert Watson43020:AUE_GETDIRENTRIES:getdirentries(2):no 3842a62e545SRobert Watson43021:AUE_SYSCTL:sysctl(3):ot 385505237acSRobert Watson43022:AUE_MLOCK:mlock(2):pc 386505237acSRobert Watson43023:AUE_MUNLOCK:munlock(2):pc 387505237acSRobert Watson43024:AUE_UNDELETE:undelete(2):fm 388505237acSRobert Watson43025:AUE_GETATTRLIST:getattrlist():fa 389505237acSRobert Watson43026:AUE_SETATTRLIST:setattrlist():fm 390505237acSRobert Watson43027:AUE_GETDIRENTRIESATTR:getdirentriesattr():fa 391505237acSRobert Watson43028:AUE_EXCHANGEDATA:exchangedata():fw 392505237acSRobert Watson43029:AUE_SEARCHFS:searchfs():fa 393505237acSRobert Watson43030:AUE_MINHERIT:minherit(2):pc 394505237acSRobert Watson43031:AUE_SEMCONFIG:semconfig():ip 395505237acSRobert Watson43032:AUE_SEMOPEN:sem_open(2):ip 396505237acSRobert Watson43033:AUE_SEMCLOSE:sem_close(2):ip 397505237acSRobert Watson43034:AUE_SEMUNLINK:sem_unlink(2):ip 398505237acSRobert Watson43035:AUE_SHMOPEN:shm_open(2):ip 399505237acSRobert Watson43036:AUE_SHMUNLINK:shm_unlink(2):ip 400505237acSRobert Watson43037:AUE_LOADSHFILE:load_shared_file():fr 401505237acSRobert Watson43038:AUE_RESETSHFILE:reset_shared_file():ot 402505237acSRobert Watson43039:AUE_NEWSYSTEMSHREG:new_system_share_regions():ot 403505237acSRobert Watson43040:AUE_PTHREADKILL:pthread_kill(2):pc 404505237acSRobert Watson43041:AUE_PTHREADSIGMASK:pthread_sigmask(2):pc 405505237acSRobert Watson43042:AUE_AUDITCTL:auditctl(2):ad 406505237acSRobert Watson43043:AUE_RFORK:rfork(2):pc 407505237acSRobert Watson43044:AUE_LCHMOD:lchmod(2):fm 408372e973cSRobert Watson43045:AUE_SWAPOFF:swapoff(2):ad 409505237acSRobert Watson43046:AUE_INITPROCESS:init_process():pc 410505237acSRobert Watson43047:AUE_MAPFD:map_fd():fa 411505237acSRobert Watson43048:AUE_TASKFORPID:task_for_pid():pc 412505237acSRobert Watson43049:AUE_PIDFORTASK:pid_for_task():pc 413505237acSRobert Watson43050:AUE_SYSCTL_NONADMIN:sysctl() - non-admin:ot 414372e973cSRobert Watson43051:AUE_COPYFILE:copyfile(2):fr,fw 415505237acSRobert Watson43052:AUE_LUTIMES:lutimes(2):fm 416505237acSRobert Watson43053:AUE_LCHFLAGS:lchflags(2):fm 417505237acSRobert Watson43054:AUE_SENDFILE:sendfile(2):nt 418505237acSRobert Watson43055:AUE_USELIB:uselib(2):fa 419505237acSRobert Watson43056:AUE_GETRESUID:getresuid(2):pc 420505237acSRobert Watson43057:AUE_SETRESUID:setresuid(2):pc 421505237acSRobert Watson43058:AUE_GETRESGID:getresgid(2):pc 422505237acSRobert Watson43059:AUE_SETRESGID:setresgid(2):pc 423505237acSRobert Watson43060:AUE_WAIT4:wait4(2):pc 424505237acSRobert Watson43061:AUE_LGETFH:lgetfh(2):fa 425505237acSRobert Watson43062:AUE_FHSTATFS:fhstatfs(2):fa 426505237acSRobert Watson43063:AUE_FHOPEN:fhopen(2):fa 427505237acSRobert Watson43064:AUE_FHSTAT:fhstat(2):fa 428505237acSRobert Watson43065:AUE_JAIL:jail(2):pc 429505237acSRobert Watson43066:AUE_EACCESS:eaccess(2):fa 430505237acSRobert Watson43067:AUE_KQUEUE:kqueue(2):no 431505237acSRobert Watson43068:AUE_KEVENT:kevent(2):no 432505237acSRobert Watson43069:AUE_FSYNC:fsync(2):fm 433505237acSRobert Watson43070:AUE_NMOUNT:nmount(2):ad 434505237acSRobert Watson43071:AUE_BDFLUSH:bdflush(2):ad 435505237acSRobert Watson43072:AUE_SETFSUID:setfsuid(2):ot 436505237acSRobert Watson43073:AUE_SETFSGID:setfsgid(2):ot 437505237acSRobert Watson43074:AUE_PERSONALITY:personality(2):pc 438505237acSRobert Watson43075:AUE_SCHED_GETSCHEDULER:getscheduler(2):ad 439505237acSRobert Watson43076:AUE_SCHED_SETSCHEDULER:setscheduler(2):ad 440505237acSRobert Watson43077:AUE_PRCTL:prctl(2):pc 441505237acSRobert Watson43078:AUE_GETCWD:getcwd(2):pc 442505237acSRobert Watson43079:AUE_CAPGET:capget(2):pc 443505237acSRobert Watson43080:AUE_CAPSET:capset(2):pc 444505237acSRobert Watson43081:AUE_PIVOT_ROOT:pivot_root(2):pc 445505237acSRobert Watson43082:AUE_RTPRIO::rtprio(2):pc 446505237acSRobert Watson43083:AUE_SCHED_GETPARAM:sched_getparam(2):ad 447505237acSRobert Watson43084:AUE_SCHED_SETPARAM:sched_setparam(2):ad 448505237acSRobert Watson43085:AUE_SCHED_GET_PRIORITY_MAX:sched_get_priority_max(2):ad 449505237acSRobert Watson43086:AUE_SCHED_GET_PRIORITY_MIN:sched_get_priority_min(2):ad 450505237acSRobert Watson43087:AUE_SCHED_RR_GET_INTERVAL:sched_rr_get_interval(2):ad 451505237acSRobert Watson43088:AUE_ACL_GET_FILE:acl_get_file(2):fa 452505237acSRobert Watson43089:AUE_ACL_SET_FILE:acl_set_file(2):fm 453505237acSRobert Watson43090:AUE_ACL_GET_FD:acl_get_fd(2):fa 454505237acSRobert Watson43091:AUE_ACL_SET_FD:acl_set_fd(2):fm 455505237acSRobert Watson43092:AUE_ACL_DELETE_FILE:acl_delete_file(2):fm 456505237acSRobert Watson43093:AUE_ACL_DELETE_FD:acl_delete_fd(2):fm 457505237acSRobert Watson43094:AUE_ACL_CHECK_FILE:acl_aclcheck_file(2):fa 458505237acSRobert Watson43095:AUE_ACL_CHECK_FD:acl_aclcheck_fd(2):fa 459505237acSRobert Watson43096:AUE_ACL_GET_LINK:acl_get_link(2):fa 460505237acSRobert Watson43097:AUE_ACL_SET_LINK:acl_set_link(2):fm 461505237acSRobert Watson43098:AUE_ACL_DELETE_LINK:acl_delete_link(2):fm 462505237acSRobert Watson43099:AUE_ACL_CHECK_LINK:acl_aclcheck_link(2):fa 46370f0976eSRobert Watson43100:AUE_SYSARCH:sysarch(2):ot 464505237acSRobert Watson43101:AUE_EXTATTRCTL:extattrctl(2):fm 465505237acSRobert Watson43102:AUE_EXTATTR_GET_FILE:extattr_get_file(2):fa 466505237acSRobert Watson43103:AUE_EXTATTR_SET_FILE:extattr_set_file(2):fm 467505237acSRobert Watson43104:AUE_EXTATTR_LIST_FILE:extattr_list_file(2):fa 468505237acSRobert Watson43105:AUE_EXTATTR_DELETE_FILE:extattr_delete_file(2):fm 469505237acSRobert Watson43106:AUE_EXTATTR_GET_FD:extattr_get_fd(2):fa 470505237acSRobert Watson43107:AUE_EXTATTR_SET_FD:extattr_set_fd(2):fm 471505237acSRobert Watson43108:AUE_EXTATTR_LIST_FD:extattr_list_fd(2):fa 472505237acSRobert Watson43109:AUE_EXTATTR_DELETE_FD:extattr_delete_fd(2):fm 473505237acSRobert Watson43110:AUE_EXTATTR_GET_LINK:extattr_get_link(2):fa 474505237acSRobert Watson43111:AUE_EXTATTR_SET_LINK:extattr_set_link(2):fm 475505237acSRobert Watson43112:AUE_EXTATTR_LIST_LINK:extattr_list_link(2):fa 476505237acSRobert Watson43113:AUE_EXTATTR_DELETE_LINK:extattr_delete_link(2):fm 4772a62e545SRobert Watson43114:AUE_KENV:kenv(8):ad 4782a62e545SRobert Watson43115:AUE_JAIL_ATTACH:jail_attach(2):ad 4792a62e545SRobert Watson43116:AUE_SYSCTL_WRITE:sysctl(3):ad 480b9ad4a7bSRobert Watson43117:AUE_IOPERM:linux ioperm:ad 481b9ad4a7bSRobert Watson43118:AUE_READDIR:readdir(3):no 482b9ad4a7bSRobert Watson43119:AUE_IOPL:linux iopl:ad 483b9ad4a7bSRobert Watson43120:AUE_VM86:linux vm86:pc 4842855b493SRobert Watson43121:AUE_MAC_GET_PROC:mac_get_proc(2):pc 4852855b493SRobert Watson43122:AUE_MAC_SET_PROC:mac_set_proc(2):pc 4862855b493SRobert Watson43123:AUE_MAC_GET_FD:mac_get_fd(2):fa 4872855b493SRobert Watson43124:AUE_MAC_GET_FILE:mac_get_file(2):fa 4882855b493SRobert Watson43125:AUE_MAC_SET_FD:mac_set_fd(2):fm 4892855b493SRobert Watson43126:AUE_MAC_SET_FILE:mac_set_file(2):fm 4902855b493SRobert Watson43127:AUE_MAC_SYSCALL:mac_syscall(2):ad 4912855b493SRobert Watson43128:AUE_MAC_GET_PID:mac_get_pid(2):pc 4922855b493SRobert Watson43129:AUE_MAC_GET_LINK:mac_get_link(2):fa 4932855b493SRobert Watson43130:AUE_MAC_SET_LINK:mac_set_link(2):fm 49406edd2f1SRobert Watson43131:AUE_MAC_EXECVE:mac_execve(2):ex,pc 4952855b493SRobert Watson43132:AUE_GETPATH_FROMFD:getpath_fromfd(2):fa 4962855b493SRobert Watson43133:AUE_GETPATH_FROMADDR:getpath_fromaddr(2):fa 4972855b493SRobert Watson43134:AUE_MQ_OPEN:mq_open(2):ip 4982855b493SRobert Watson43135:AUE_MQ_SETATTR:mq_setattr(2):ip 4992855b493SRobert Watson43136:AUE_MQ_TIMEDRECEIVE:mq_timedreceive(2):ip 5002855b493SRobert Watson43137:AUE_MQ_TIMEDSEND:mq_timedsend(2):ip 5012855b493SRobert Watson43138:AUE_MQ_NOTIFY:mq_notify(2):ip 5022855b493SRobert Watson43139:AUE_MQ_UNLINK:mq_unlink(2):ip 5032855b493SRobert Watson43140:AUE_LISTEN:listen(2):nt 5042855b493SRobert Watson43141:AUE_MLOCKALL:mlockall(2):pc 5052855b493SRobert Watson43142:AUE_MUNLOCKALL:munlockall(2):pc 506372e973cSRobert Watson43143:AUE_CLOSEFROM:closefrom(2):cl 507372e973cSRobert Watson43144:AUE_FEXECVE:fexecve(2):pc,ex 508372e973cSRobert Watson43145:AUE_FACCESSAT:faccessat(2):fa 509372e973cSRobert Watson43146:AUE_FCHMODAT:fchmodat(2):fm 510372e973cSRobert Watson43147:AUE_LINKAT:linkat(2):fc 511372e973cSRobert Watson43148:AUE_MKDIRAT:mkdirat(2):fc 512372e973cSRobert Watson43149:AUE_MKFIFOAT:mkfifoat(2):fc 513372e973cSRobert Watson43150:AUE_MKNODAT:mknodat(2):fc 514372e973cSRobert Watson43151:AUE_READLINKAT:readlinkat(2):fr 515372e973cSRobert Watson43152:AUE_SYMLINKAT:symlinkat(2):fc 51652267f74SRobert Watson43153:AUE_MAC_GETFSSTAT:mac_getfsstat(2):fa 51752267f74SRobert Watson43154:AUE_MAC_GET_MOUNT:mac_get_mount(2):fa 51852267f74SRobert Watson43155:AUE_MAC_GET_LCID:mac_get_lcid(2):pc 51952267f74SRobert Watson43156:AUE_MAC_GET_LCTX:mac_get_lctx(2):pc 52052267f74SRobert Watson43157:AUE_MAC_SET_LCTX:mac_set_lctx(2):pc 52152267f74SRobert Watson43158:AUE_MAC_MOUNT:mac_mount(2):ad 52252267f74SRobert Watson43159:AUE_GETLCID:getlcid(2):pc 52352267f74SRobert Watson43160:AUE_SETLCID:setlcid(2):pc 52452267f74SRobert Watson43161:AUE_TASKNAMEFORPID:taskname_for_pid():pc 52552267f74SRobert Watson43162:AUE_ACCESS_EXTENDED:access_extended(2):fa 52652267f74SRobert Watson43163:AUE_CHMOD_EXTENDED:chmod_extended(2):fm 52752267f74SRobert Watson43164:AUE_FCHMOD_EXTENDED:fchmod_extended(2):fm 52852267f74SRobert Watson43165:AUE_FSTAT_EXTENDED:fstat_extended(2):fa 52952267f74SRobert Watson43166:AUE_LSTAT_EXTENDED:lstat_extended(2):fa 53052267f74SRobert Watson43167:AUE_MKDIR_EXTENDED:mkdir_extended(2):fc 53152267f74SRobert Watson43168:AUE_MKFIFO_EXTENDED:mkfifo_extended(2):fc 53252267f74SRobert Watson43169:AUE_OPEN_EXTENDED:open_extended(2) - attr only:fa 53352267f74SRobert Watson43170:AUE_OPEN_EXTENDED_R:open_extended(2) - read:fr 53452267f74SRobert Watson43171:AUE_OPEN_EXTENDED_RC:open_extended(2) - read,creat:fc,fr,fa,fm 53552267f74SRobert Watson43172:AUE_OPEN_EXTENDED_RT:open_extended(2) - read,trunc:fd,fr,fa,fm 53652267f74SRobert Watson43173:AUE_OPEN_EXTENDED_RTC:open_extended(2) - read,creat,trunc:fc,fd,fr,fa,fm 53752267f74SRobert Watson43174:AUE_OPEN_EXTENDED_W:open_extended(2) - write:fw 53852267f74SRobert Watson43175:AUE_OPEN_EXTENDED_WC:open_extended(2) - write,creat:fc,fw,fa,fm 53952267f74SRobert Watson43176:AUE_OPEN_EXTENDED_WT:open_extended(2) - write,trunc:fd,fw,fa,fm 54052267f74SRobert Watson43177:AUE_OPEN_EXTENDED_WTC:open_extended(2) - write,creat,trunc:fc,fd,fw,fa,fm 54152267f74SRobert Watson43178:AUE_OPEN_EXTENDED_RW:open_extended(2) - read,write:fr,fw 54252267f74SRobert Watson43179:AUE_OPEN_EXTENDED_RWC:open_extended(2) - read,write,creat:fc,fw,fr,fa,fm 54352267f74SRobert Watson43180:AUE_OPEN_EXTENDED_RWT:open_extended(2) - read,write,trunc:fd,fr,fw,fa,fm 54452267f74SRobert Watson43181:AUE_OPEN_EXTENDED_RWTC:open_extended(2) - read,write,creat,trunc:fc,fd,fw,fr,fa,fm 54552267f74SRobert Watson43182:AUE_STAT_EXTENDED:stat_extended(2):fa 54652267f74SRobert Watson43183:AUE_UMASK_EXTENDED:umask_extended(2):pc 54752267f74SRobert Watson43184:AUE_OPENAT:openat(2) - attr only:fa 54852267f74SRobert Watson43185:AUE_POSIX_OPENPT:posix_openpt(2):ip 54952267f74SRobert Watson43186:AUE_CAP_NEW:cap_new(2):fm 55052267f74SRobert Watson43187:AUE_CAP_GETRIGHTS:cap_getrights(2):fm 55152267f74SRobert Watson43188:AUE_CAP_ENTER:cap_enter(2):pc 55252267f74SRobert Watson43189:AUE_CAP_GETMODE:cap_getmode(2):pc 5537a0a89d2SRobert Watson43190:AUE_POSIX_SPAWN:posix_spawn(2):pc 5547a0a89d2SRobert Watson43191:AUE_FSGETPATH:fsgetpath(2):ot 55506edd2f1SRobert Watson43192:AUE_PREAD:pread(2):no 55606edd2f1SRobert Watson43193:AUE_PWRITE:pwrite(2):no 557c0020399SRobert Watson43194:AUE_FSCTL:fsctl():fm 558c0020399SRobert Watson43195:AUE_FFSCTL:ffsctl():fm 559505237acSRobert Watson# 5607a0a89d2SRobert Watson# Solaris userspace events. 561505237acSRobert Watson# 5627a0a89d2SRobert Watson6144:AUE_at_create:at-create atjob:ad 5637a0a89d2SRobert Watson6145:AUE_at_delete:at-delete atjob (at or atrm):ad 5647a0a89d2SRobert Watson6146:AUE_at_perm:at-permission:no 5657a0a89d2SRobert Watson6147:AUE_cron_invoke:cron-invoke:ad 5667a0a89d2SRobert Watson6148:AUE_crontab_create:crontab-crontab created:ad 5677a0a89d2SRobert Watson6149:AUE_crontab_delete:crontab-crontab deleted:ad 5687a0a89d2SRobert Watson6150:AUE_crontab_perm:crontab-permission:no 5697a0a89d2SRobert Watson6151:AUE_inetd_connect:inetd connection:na 570ca0716f5SRobert Watson6152:AUE_login:login - local:lo 571ca0716f5SRobert Watson6153:AUE_logout:logout - local:lo 5727a0a89d2SRobert Watson6154:AUE_telnet:login - telnet:lo 5737a0a89d2SRobert Watson6155:AUE_rlogin:login - rlogin:lo 5747a0a89d2SRobert Watson6156:AUE_mountd_mount:mount:na 5757a0a89d2SRobert Watson6157:AUE_mountd_umount:unmount:na 5767a0a89d2SRobert Watson6158:AUE_rshd:rsh access:lo 577ca0716f5SRobert Watson6159:AUE_su:su(1):lo 578ca0716f5SRobert Watson6160:AUE_halt:system halt:ad 5797a0a89d2SRobert Watson6161:AUE_reboot:system reboot:ad 5807a0a89d2SRobert Watson6162:AUE_rexecd:rexecd:lo 5817a0a89d2SRobert Watson6163:AUE_passwd:passwd:lo 5827a0a89d2SRobert Watson6164:AUE_rexd:rexd:lo 5837a0a89d2SRobert Watson6165:AUE_ftpd:ftp access:lo 5847a0a89d2SRobert Watson6166:AUE_init:init:lo 5857a0a89d2SRobert Watson6167:AUE_uadmin:uadmin:no 586ca0716f5SRobert Watson6168:AUE_shutdown:system shutdown:ad 5877a0a89d2SRobert Watson6168:AUE_poweroff:system poweroff:ad 5887a0a89d2SRobert Watson6170:AUE_crontab_mod:crontab-modify:ad 5897a0a89d2SRobert Watson6171:AUE_ftpd_logout:ftp logout:lo 5907a0a89d2SRobert Watson6172:AUE_ssh:login - ssh:lo 5917a0a89d2SRobert Watson6173:AUE_role_login:role login:lo 5927a0a89d2SRobert Watson6180:AUE_prof_cmd: profile command:ad 5937a0a89d2SRobert Watson6181:AUE_filesystem_add:add filesystem:ad 5947a0a89d2SRobert Watson6182:AUE_filesystem_delete:delete filesystem:ad 5957a0a89d2SRobert Watson6183:AUE_filesystem_modify:modify filesystem:ad 5967a0a89d2SRobert Watson6200:AUE_allocate_succ:allocate-device success:ot 5977a0a89d2SRobert Watson6201:AUE_allocate_fail:allocate-device failure:ot 5987a0a89d2SRobert Watson6202:AUE_deallocate_succ:deallocate-device success:ot 5997a0a89d2SRobert Watson6203:AUE_deallocate_fail:deallocate-device failure:ot 6007a0a89d2SRobert Watson6204:AUE_listdevice_succ:allocate-list devices success:ot 6017a0a89d2SRobert Watson6205:AUE_listdevice_fail:allocate-list devices failure:ot 602ca0716f5SRobert Watson6207:AUE_create_user:create user:ad 603ca0716f5SRobert Watson6208:AUE_modify_user:modify user:ad 604ca0716f5SRobert Watson6209:AUE_delete_user:delete user:ad 605ca0716f5SRobert Watson6210:AUE_disable_user:disable user:ad 6067a0a89d2SRobert Watson6211:AUE_enable_user:enable users:ad 6077a0a89d2SRobert Watson6212:AUE_newgrp_login:newgrp login:lo 6087a0a89d2SRobert Watson6213:AUE_admin_authenticate:admin login:lo 6097a0a89d2SRobert Watson6214:AUE_kadmind_auth:authenticated kadmind request:ua 6107a0a89d2SRobert Watson6215:AUE_kadmind_unauth:unauthenticated kadmind req:ua 6117a0a89d2SRobert Watson6216:AUE_krb5kdc_as_req:kdc authentication svc request:ap 6127a0a89d2SRobert Watson6217:AUE_krb5kdc_tgs_req:kdc tkt-grant svc request:ap 6137a0a89d2SRobert Watson6218:AUE_krb5kdc_tgs_req_2ndtktmm:kdc tgs 2ndtkt mismtch:ap 6147a0a89d2SRobert Watson6219:AUE_krb5kdc_tgs_req_alt_tgt:kdc tgs issue alt tgt:ap 6157a0a89d2SRobert Watson# 6167a0a89d2SRobert Watson# Historic Darwin use of low event numbering space, which collided with the 6177a0a89d2SRobert Watson# Solaris event space. Now obsoleted and new, higher, event numbers assigned 6187a0a89d2SRobert Watson# to make it easier to interpret Solaris events using the OpenBSM tools. 6197a0a89d2SRobert Watson# 6207a0a89d2SRobert Watson6171:AUE_DARWIN_audit_startup:audit startup:ad 6217a0a89d2SRobert Watson6172:AUE_DARWIN_audit_shutdown:audit shutdown:ad 6227a0a89d2SRobert Watson6300:AUE_DARWIN_sudo:sudo(1):ad 6237a0a89d2SRobert Watson6501:AUE_DARWIN_modify_password:modify password:ad 6247a0a89d2SRobert Watson6511:AUE_DARWIN_create_group:create group:ad 6257a0a89d2SRobert Watson6512:AUE_DARWIN_delete_group:delete group:ad 6267a0a89d2SRobert Watson6513:AUE_DARWIN_modify_group:modify group:ad 6277a0a89d2SRobert Watson6514:AUE_DARWIN_add_to_group:add to group:ad 6287a0a89d2SRobert Watson6515:AUE_DARWIN_remove_from_group:remove from group:ad 6297a0a89d2SRobert Watson6521:AUE_DARWIN_revoke_obj:revoke object priv:fm 6307a0a89d2SRobert Watson6600:AUE_DARWIN_lw_login:loginwindow login:lo 6317a0a89d2SRobert Watson6601:AUE_DARWIN_lw_logout:loginwindow logout:lo 632c0020399SRobert Watson7000:AUE_DARWIN_auth_user:user authentication:aa 633c0020399SRobert Watson7001:AUE_DARWIN_ssconn:SecSrvr connection setup:aa 634c0020399SRobert Watson7002:AUE_DARWIN_ssauthorize:SecSrvr AuthEngine:aa 635c0020399SRobert Watson7003:AUE_DARWIN_ssauthint:SecSrvr authinternal mech:aa 6367a0a89d2SRobert Watson# 6377a0a89d2SRobert Watson# Historic/third-party application allocations of event identifiers. 6387a0a89d2SRobert Watson# 639ca0716f5SRobert Watson32800:AUE_openssh:OpenSSH login:lo 6407a0a89d2SRobert Watson# 6417a0a89d2SRobert Watson# OpenBSM-managed application event space. 6427a0a89d2SRobert Watson# 6437a0a89d2SRobert Watson45000:AUE_audit_startup:audit startup:ad 6447a0a89d2SRobert Watson45001:AUE_audit_shutdown:audit shutdown:ad 6457a0a89d2SRobert Watson45014:AUE_modify_password:modify password:ad 6467a0a89d2SRobert Watson45015:AUE_create_group:create group:ad 6477a0a89d2SRobert Watson45016:AUE_delete_group:delete group:ad 6487a0a89d2SRobert Watson45017:AUE_modify_group:modify group:ad 6497a0a89d2SRobert Watson45018:AUE_add_to_group:add to group:ad 6507a0a89d2SRobert Watson45019:AUE_remove_from_group:remove from group:ad 6517a0a89d2SRobert Watson45020:AUE_revoke_obj:revoke object priv:fm 6527a0a89d2SRobert Watson45021:AUE_lw_login:loginwindow login:lo 6537a0a89d2SRobert Watson45022:AUE_lw_logout:loginwindow logout:lo 654c0020399SRobert Watson45023:AUE_auth_user:user authentication:aa 655c0020399SRobert Watson45024:AUE_ssconn:SecSrvr connection setup:aa 656c0020399SRobert Watson45025:AUE_ssauthorize:SecSrvr AuthEngine:aa 657c0020399SRobert Watson45026:AUE_ssauthint:SecSrvr authinternal mech:aa 6587a0a89d2SRobert Watson45027:AUE_calife:Calife:ad 659c0020399SRobert Watson45028:AUE_sudo:sudo(1):aa 6607a0a89d2SRobert Watson45029:AUE_audit_recovery:audit crash recovery:ad 661c0020399SRobert Watson45030:AUE_ssauthmech:SecSrvr AuthMechanism:aa 662