2 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 #include <sys/systm.h>
24 #include <sys/types.h>
25 #include <sys/proc_internal.h>
26 #include <sys/vnode_internal.h>
27 #include <sys/fcntl.h>
28 #include <sys/filedesc.h>
31 #include <bsm/audit.h>
32 #include <bsm/audit_kernel.h>
33 #include <bsm/audit_kevents.h>
34 #include <bsm/audit_klib.h>
37 * Initialize the system call to audit event mapping table. This table
38 * must be kept in sync with the system call table. This table is meant to
39 * be directly accessed.
40 * XXX This should be improved, though, to make it independent of the syscall
41 * table (but we don't want to traverse a large table for every system call
42 * to find a match). Ultimately, it would be best to place the audit event
43 * number in the system call table.
45 au_event_t sys_au_event
[] = {
46 AUE_NULL
, /* 0 = indir */
47 AUE_EXIT
, /* 1 = exit */
48 AUE_FORK
, /* 2 = fork */
49 AUE_NULL
, /* 3 = read */
50 AUE_NULL
, /* 4 = write */
51 AUE_OPEN_RWTC
, /* 5 = open */
52 AUE_CLOSE
, /* 6 = close */
53 AUE_NULL
, /* 7 = wait4 */
54 AUE_O_CREAT
, /* 8 = old creat */
55 AUE_LINK
, /* 9 = link */
56 AUE_UNLINK
, /* 10 = unlink */
57 AUE_NULL
, /* 11 was obsolete execv */
58 AUE_CHDIR
, /* 12 = chdir */
59 AUE_FCHDIR
, /* 13 = fchdir */
60 AUE_MKNOD
, /* 14 = mknod */
61 AUE_CHMOD
, /* 15 = chmod */
62 AUE_CHOWN
, /* 16 = chown; now 3 args */
63 AUE_NULL
, /* 17 = old break */
65 AUE_GETFSSTAT
, /* 18 = getfsstat */
67 AUE_NULL
, /* 18 = ogetfsstat */
69 AUE_NULL
, /* 19 = old lseek */
70 AUE_NULL
, /* 20 = getpid */
71 AUE_NULL
, /* 21 was obsolete mount */
72 AUE_NULL
, /* 22 was obsolete umount */
73 AUE_SETUID
, /* 23 = setuid */
74 AUE_NULL
, /* 24 = getuid */
75 AUE_NULL
, /* 25 = geteuid */
76 AUE_PTRACE
, /* 26 = ptrace */
77 AUE_RECVMSG
, /* 27 = recvmsg */
78 AUE_SENDMSG
, /* 28 = sendmsg */
79 AUE_RECVFROM
, /* 29 = recvfrom */
80 AUE_ACCEPT
, /* 30 = accept */
81 AUE_NULL
, /* 31 = getpeername */
82 AUE_NULL
, /* 32 = getsockname */
83 AUE_ACCESS
, /* 33 = access */
84 AUE_CHFLAGS
, /* 34 = chflags */
85 AUE_FCHFLAGS
, /* 35 = fchflags */
86 AUE_NULL
, /* 36 = sync */
87 AUE_KILL
, /* 37 = kill */
88 AUE_O_STAT
, /* 38 = old stat */
89 AUE_NULL
, /* 39 = getppid */
90 AUE_O_LSTAT
, /* 40 = old lstat */
91 AUE_NULL
, /* 41 = dup */
92 AUE_PIPE
, /* 42 = pipe */
93 AUE_NULL
, /* 43 = getegid */
94 AUE_NULL
, /* 44 = profil */
95 AUE_KTRACE
, /* 45 = ktrace */
96 AUE_NULL
, /* 46 = sigaction */
97 AUE_NULL
, /* 47 = getgid */
98 AUE_NULL
, /* 48 = sigprocmask */
99 AUE_NULL
, /* 49 = getlogin */
100 AUE_SETLOGIN
, /* 50 = setlogin */
101 AUE_ACCT
, /* 51 = turn acct off/on */
102 AUE_NULL
, /* 52 = sigpending */
103 AUE_NULL
, /* 53 = sigaltstack */
104 AUE_IOCTL
, /* 54 = ioctl */
105 AUE_REBOOT
, /* 55 = reboot */
106 AUE_REVOKE
, /* 56 = revoke */
107 AUE_SYMLINK
, /* 57 = symlink */
108 AUE_READLINK
, /* 58 = readlink */
109 AUE_EXECVE
, /* 59 = execve */
110 AUE_UMASK
, /* 60 = umask */
111 AUE_CHROOT
, /* 61 = chroot */
112 AUE_O_FSTAT
, /* 62 = old fstat */
113 AUE_NULL
, /* 63 = used internally, reserved */
114 AUE_NULL
, /* 64 = old getpagesize */
115 AUE_NULL
, /* 65 = msync */
116 AUE_VFORK
, /* 66 = vfork */
117 AUE_NULL
, /* 67 was obsolete vread */
118 AUE_NULL
, /* 68 was obsolete vwrite */
119 AUE_NULL
, /* 69 = sbrk */
120 AUE_NULL
, /* 70 = sstk */
121 AUE_O_MMAP
, /* 71 = old mmap */
122 AUE_NULL
, /* 72 = old vadvise */
123 AUE_MUNMAP
, /* 73 = munmap */
124 AUE_MPROTECT
, /* 74 = mprotect */
125 AUE_NULL
, /* 75 = madvise */
126 AUE_NULL
, /* 76 was obsolete vhangup */
127 AUE_NULL
, /* 77 was obsolete vlimit */
128 AUE_NULL
, /* 78 = mincore */
129 AUE_NULL
, /* 79 = getgroups */
130 AUE_SETGROUPS
, /* 80 = setgroups */
131 AUE_NULL
, /* 81 = getpgrp */
132 AUE_SETPGRP
, /* 82 = setpgid */
133 AUE_NULL
, /* 83 = setitimer */
134 AUE_NULL
, /* 84 = old wait */
135 AUE_NULL
, /* 85 = swapon */
136 AUE_NULL
, /* 86 = getitimer */
137 AUE_NULL
, /* 87 = old gethostname */
138 AUE_O_SETHOSTNAME
, /* 88 = old sethostname */
139 AUE_NULL
, /* 89 getdtablesize */
140 AUE_NULL
, /* 90 = dup2 */
141 AUE_NULL
, /* 91 was obsolete getdopt */
142 AUE_FCNTL
, /* 92 = fcntl */
143 AUE_NULL
, /* 93 = select */
144 AUE_NULL
, /* 94 was obsolete setdopt */
145 AUE_NULL
, /* 95 = fsync */
146 AUE_SETPRIORITY
, /* 96 = setpriority */
147 AUE_SOCKET
, /* 97 = socket */
148 AUE_CONNECT
, /* 98 = connect */
149 AUE_NULL
, /* 99 = accept */
150 AUE_NULL
, /* 100 = getpriority */
151 AUE_O_SEND
, /* 101 = old send */
152 AUE_O_RECV
, /* 102 = old recv */
153 AUE_NULL
, /* 103 = sigreturn */
154 AUE_BIND
, /* 104 = bind */
155 AUE_SETSOCKOPT
, /* 105 = setsockopt */
156 AUE_NULL
, /* 106 = listen */
157 AUE_NULL
, /* 107 was vtimes */
158 AUE_NULL
, /* 108 = sigvec */
159 AUE_NULL
, /* 109 = sigblock */
160 AUE_NULL
, /* 110 = sigsetmask */
161 AUE_NULL
, /* 111 = sigpause */
162 AUE_NULL
, /* 112 = sigstack */
163 AUE_O_RECVMSG
, /* 113 = recvmsg */
164 AUE_O_SENDMSG
, /* 114 = sendmsg */
165 AUE_NULL
, /* 115 = old vtrace */
166 AUE_NULL
, /* 116 = gettimeofday */
167 AUE_NULL
, /* 117 = getrusage */
168 AUE_NULL
, /* 118 = getsockopt */
169 AUE_NULL
, /* 119 = old resuba */
170 AUE_NULL
, /* 120 = readv */
171 AUE_NULL
, /* 121 = writev */
172 AUE_SETTIMEOFDAY
, /* 122 = settimeofday */
173 AUE_FCHOWN
, /* 123 = fchown */
174 AUE_FCHMOD
, /* 124 = fchmod */
175 AUE_O_RECVFROM
, /* 125 = recvfrom */
176 AUE_NULL
, /* 126 = setreuid */
177 AUE_NULL
, /* 127 = setregid */
178 AUE_RENAME
, /* 128 = rename */
179 AUE_O_TRUNCATE
, /* 129 = old truncate */
180 AUE_O_FTRUNCATE
, /* 130 = old ftruncate */
181 AUE_FLOCK
, /* 131 = flock */
182 AUE_MKFIFO
, /* 132 = mkfifo */
183 AUE_SENDTO
, /* 133 = sendto */
184 AUE_SHUTDOWN
, /* 134 = shutdown */
185 AUE_SOCKETPAIR
, /* 135 = socketpair */
186 AUE_MKDIR
, /* 136 = mkdir */
187 AUE_RMDIR
, /* 137 = rmdir */
188 AUE_UTIMES
, /* 138 = utimes */
189 AUE_FUTIMES
, /* 139 = futimes */
190 AUE_ADJTIME
, /* 140 = adjtime */
191 AUE_NULL
, /* 141 = getpeername */
192 AUE_NULL
, /* 142 = old gethostid */
193 AUE_NULL
, /* 143 = old sethostid */
194 AUE_NULL
, /* 144 = old getrlimit */
195 AUE_O_SETRLIMIT
, /* 145 = old setrlimit */
196 AUE_O_KILLPG
, /* 146 = old killpg */
197 AUE_SETSID
, /* 147 = setsid */
198 AUE_NULL
, /* 148 was setquota */
199 AUE_NULL
, /* 149 was qquota */
200 AUE_NULL
, /* 150 = getsockname */
201 AUE_NULL
, /* 151 = getpgid */
202 AUE_SETPRIVEXEC
, /* 152 = setprivexec */
203 AUE_NULL
, /* 153 = pread */
204 AUE_NULL
, /* 154 = pwrite */
205 AUE_NFSSVC
, /* 155 = nfs_svc */
206 AUE_O_GETDIRENTRIES
, /* 156 = old getdirentries */
207 AUE_STATFS
, /* 157 = statfs */
208 AUE_FSTATFS
, /* 158 = fstatfs */
209 AUE_UNMOUNT
, /* 159 = unmount */
210 AUE_NULL
, /* 160 was async_daemon */
211 AUE_GETFH
, /* 161 = get file handle */
212 AUE_NULL
, /* 162 = getdomainname */
213 AUE_O_SETDOMAINNAME
, /* 163 = setdomainname */
216 AUE_QUOTACTL
, /* 165 = quotactl */
218 AUE_NULL
, /* 165 = not configured */
220 AUE_NULL
, /* 166 was exportfs */
221 AUE_MOUNT
, /* 167 = mount */
222 AUE_NULL
, /* 168 was ustat */
223 AUE_NULL
, /* 169 = nosys */
224 AUE_NULL
, /* 170 was table */
225 AUE_NULL
, /* 171 = old wait3 */
226 AUE_NULL
, /* 172 was rpause */
227 AUE_NULL
, /* 173 = nosys */
228 AUE_NULL
, /* 174 was getdents */
229 AUE_NULL
, /* 175 was gc_control */
230 AUE_NULL
, /* 176 = add_profil */
235 AUE_SETGID
, /* 181 */
236 AUE_SETEGID
, /* 182 */
237 AUE_SETEUID
, /* 183 */
238 AUE_NULL
, /* 184 = nosys */
239 AUE_NULL
, /* 185 = nosys */
240 AUE_NULL
, /* 186 = nosys */
241 AUE_NULL
, /* 187 = nosys */
242 AUE_STAT
, /* 188 = stat */
243 AUE_FSTAT
, /* 189 = fstat */
244 AUE_LSTAT
, /* 190 = lstat */
245 AUE_PATHCONF
, /* 191 = pathconf */
246 AUE_FPATHCONF
, /* 192 = fpathconf */
248 AUE_GETFSSTAT
, /* 193 = getfsstat */
250 AUE_NULL
, /* 193 is unused */
252 AUE_NULL
, /* 194 = getrlimit */
253 AUE_SETRLIMIT
, /* 195 = setrlimit */
254 AUE_GETDIRENTRIES
, /* 196 = getdirentries */
255 AUE_MMAP
, /* 197 = mmap */
256 AUE_NULL
, /* 198 = __syscall */
257 AUE_NULL
, /* 199 = lseek */
258 AUE_TRUNCATE
, /* 200 = truncate */
259 AUE_FTRUNCATE
, /* 201 = ftruncate */
260 AUE_SYSCTL
, /* 202 = __sysctl */
261 AUE_MLOCK
, /* 203 = mlock */
262 AUE_MUNLOCK
, /* 204 = munlock */
263 AUE_UNDELETE
, /* 205 = undelete */
264 AUE_NULL
, /* 206 = ATsocket */
265 AUE_NULL
, /* 207 = ATgetmsg*/
266 AUE_NULL
, /* 208 = ATputmsg*/
267 AUE_NULL
, /* 209 = ATPsndreq*/
268 AUE_NULL
, /* 210 = ATPsndrsp*/
269 AUE_NULL
, /* 211 = ATPgetreq*/
270 AUE_NULL
, /* 212 = ATPgetrsp*/
271 AUE_NULL
, /* 213 = Reserved for AppleTalk */
272 AUE_NULL
, /* 214 = Reserved for AppleTalk */
273 AUE_NULL
, /* 215 = Reserved for AppleTalk */
275 AUE_NULL
, /* 216 = HFS make complex file call (multipel forks */
276 AUE_NULL
, /* 217 = HFS statv extended stat call for HFS */
277 AUE_NULL
, /* 218 = HFS lstatv extended lstat call for HFS */
278 AUE_NULL
, /* 219 = HFS fstatv extended fstat call for HFS */
279 AUE_GETATTRLIST
,/* 220 = HFS getarrtlist get attribute list cal */
280 AUE_SETATTRLIST
,/* 221 = HFS setattrlist set attribute list */
281 AUE_GETDIRENTRIESATTR
,/* 222 = HFS getdirentriesattr get directory attributes */
282 AUE_EXCHANGEDATA
,/* 223 = HFS exchangedata exchange file contents */
283 AUE_CHECKUSERACCESS
,/* 224 = HFS checkuseraccess check access to file */
284 AUE_SEARCHFS
, /* 225 = HFS searchfs to implement catalog searching */
285 AUE_DELETE
, /* 226 = private delete (Carbon semantics) */
286 AUE_NULL
, /* 227 = copyfile - orignally for AFP */
301 AUE_NULL
, /* 242 = fsctl */
306 AUE_NULL
, /* 247 = nfsclnt*/
307 AUE_NULL
, /* 248 = fhopen */
309 AUE_MINHERIT
, /* 250 = minherit */
310 AUE_NULL
, /* 251 = semsys */
311 AUE_NULL
, /* 252 = msgsys */
312 AUE_NULL
, /* 253 = shmsys */
313 AUE_SEMCTL
, /* 254 = semctl */
314 AUE_SEMGET
, /* 255 = semget */
315 AUE_SEMOP
, /* 256 = semop */
316 AUE_NULL
, /* 257 = semconfig */
317 AUE_MSGCTL
, /* 258 = msgctl */
318 AUE_MSGGET
, /* 259 = msgget */
319 AUE_MSGSND
, /* 260 = msgsnd */
320 AUE_MSGRCV
, /* 261 = msgrcv */
321 AUE_SHMAT
, /* 262 = shmat */
322 AUE_SHMCTL
, /* 263 = shmctl */
323 AUE_SHMDT
, /* 264 = shmdt */
324 AUE_SHMGET
, /* 265 = shmget */
325 AUE_SHMOPEN
, /* 266 = shm_open */
326 AUE_SHMUNLINK
, /* 267 = shm_unlink */
327 AUE_SEMOPEN
, /* 268 = sem_open */
328 AUE_SEMCLOSE
, /* 269 = sem_close */
329 AUE_SEMUNLINK
, /* 270 = sem_unlink */
330 AUE_NULL
, /* 271 = sem_wait */
331 AUE_NULL
, /* 272 = sem_trywait */
332 AUE_NULL
, /* 273 = sem_post */
333 AUE_NULL
, /* 274 = sem_getvalue */
334 AUE_NULL
, /* 275 = sem_init */
335 AUE_NULL
, /* 276 = sem_destroy */
355 AUE_LOADSHFILE
, /* 296 = load_shared_file */
356 AUE_RESETSHFILE
, /* 297 = reset_shared_file */
357 AUE_NEWSYSTEMSHREG
, /* 298 = new_system_shared_regions */
369 AUE_NULL
, /* 310 = getsid */
383 AUE_NULL
, /* 324 = mlockall*/
384 AUE_NULL
, /* 325 = munlockall*/
386 AUE_NULL
, /* 327 = issetugid */
394 AUE_NULL
, /* 335 = utrace */
410 AUE_AUDITON
, /* 351 */
412 AUE_GETAUID
, /* 353 */
413 AUE_SETAUID
, /* 354 */
414 AUE_GETAUDIT
, /* 355 */
415 AUE_SETAUDIT
, /* 356 */
416 AUE_GETAUDIT_ADDR
, /* 357 */
417 AUE_SETAUDIT_ADDR
, /* 358 */
418 AUE_AUDITCTL
, /* 359 */
421 AUE_NULL
, /* 362 = kqueue */
422 AUE_NULL
, /* 363 = kevent */
423 AUE_LCHOWN
, /* 364 = lchown */
430 int nsys_au_event
= sizeof(sys_au_event
) / sizeof(sys_au_event
[0]);
433 * Hash table functions for the audit event number to event class mask mapping.
436 #define EVCLASSMAP_HASH_TABLE_SIZE 251
437 struct evclass_elem
{
440 LIST_ENTRY(evclass_elem
) entry
;
442 struct evclass_list
{
443 LIST_HEAD(, evclass_elem
) head
;
446 struct evclass_list evclass_hash
[EVCLASSMAP_HASH_TABLE_SIZE
];
448 au_class_t
au_event_class(au_event_t event
)
451 struct evclass_list
*evcl
;
452 struct evclass_elem
*evc
;
454 evcl
= &evclass_hash
[event
% EVCLASSMAP_HASH_TABLE_SIZE
];
456 /* If an entry at our hash location matches the event, just return */
457 LIST_FOREACH(evc
, &evcl
->head
, entry
) {
458 if (evc
->event
== event
)
465 * Insert a event to class mapping. If the event already exists in the
466 * mapping, then replace the mapping with the new one.
467 * XXX There is currently no constraints placed on the number of mappings.
468 * May want to either limit to a number, or in terms of memory usage.
470 void au_evclassmap_insert(au_event_t event
, au_class_t
class)
472 struct evclass_list
*evcl
;
473 struct evclass_elem
*evc
;
475 evcl
= &evclass_hash
[event
% EVCLASSMAP_HASH_TABLE_SIZE
];
477 LIST_FOREACH(evc
, &evcl
->head
, entry
) {
478 if (evc
->event
== event
) {
483 kmem_alloc(kernel_map
, (vm_offset_t
*)&evc
, sizeof(*evc
));
489 LIST_INSERT_HEAD(&evcl
->head
, evc
, entry
);
492 void au_evclassmap_init()
495 for (i
= 0; i
< EVCLASSMAP_HASH_TABLE_SIZE
; i
++) {
496 LIST_INIT(&evclass_hash
[i
].head
);
499 /* Set up the initial event to class mapping for system calls. */
500 for (i
= 0; i
< nsys_au_event
; i
++) {
501 if (sys_au_event
[i
] != AUE_NULL
) {
502 au_evclassmap_insert(sys_au_event
[i
], AU_NULL
);
505 /* Add the Mach system call events */
506 au_evclassmap_insert(AUE_TASKFORPID
, AU_NULL
);
507 au_evclassmap_insert(AUE_PIDFORTASK
, AU_NULL
);
508 au_evclassmap_insert(AUE_SWAPON
, AU_NULL
);
509 au_evclassmap_insert(AUE_SWAPOFF
, AU_NULL
);
510 au_evclassmap_insert(AUE_MAPFD
, AU_NULL
);
511 au_evclassmap_insert(AUE_INITPROCESS
, AU_NULL
);
513 /* Add the specific open events to the mapping. */
514 au_evclassmap_insert(AUE_OPEN_R
, AU_FREAD
);
515 au_evclassmap_insert(AUE_OPEN_RC
, AU_FREAD
|AU_FCREATE
);
516 au_evclassmap_insert(AUE_OPEN_RTC
, AU_FREAD
|AU_FCREATE
|AU_FDELETE
);
517 au_evclassmap_insert(AUE_OPEN_RT
, AU_FREAD
|AU_FDELETE
);
518 au_evclassmap_insert(AUE_OPEN_RW
, AU_FREAD
|AU_FWRITE
);
519 au_evclassmap_insert(AUE_OPEN_RWC
, AU_FREAD
|AU_FWRITE
|AU_FCREATE
);
520 au_evclassmap_insert(AUE_OPEN_RWTC
, AU_FREAD
|AU_FWRITE
|AU_FCREATE
|AU_FDELETE
);
521 au_evclassmap_insert(AUE_OPEN_RWT
, AU_FREAD
|AU_FWRITE
|AU_FDELETE
);
522 au_evclassmap_insert(AUE_OPEN_W
, AU_FWRITE
);
523 au_evclassmap_insert(AUE_OPEN_WC
, AU_FWRITE
|AU_FCREATE
);
524 au_evclassmap_insert(AUE_OPEN_WTC
, AU_FWRITE
|AU_FCREATE
|AU_FDELETE
);
525 au_evclassmap_insert(AUE_OPEN_WT
, AU_FWRITE
|AU_FDELETE
);
529 * Check whether an event is aditable by comparing the mask of classes this
530 * event is part of against the given mask.
532 int au_preselect(au_event_t event
, au_mask_t
*mask_p
, int sorf
)
534 au_class_t effmask
= 0;
540 ae_class
= au_event_class(event
);
542 * Perform the actual check of the masks against the event.
544 if(sorf
& AU_PRS_SUCCESS
) {
545 effmask
|= (mask_p
->am_success
& ae_class
);
548 if(sorf
& AU_PRS_FAILURE
) {
549 effmask
|= (mask_p
->am_failure
& ae_class
);
559 * Convert sysctl names and present arguments to events
561 au_event_t
ctlname_to_sysctlevent(int name
[], uint64_t valid_arg
) {
563 /* can't parse it - so return the worst case */
564 if ((valid_arg
& (ARG_CTLNAME
| ARG_LEN
)) !=
565 (ARG_CTLNAME
| ARG_LEN
))
569 /* non-admin "lookups" treat them special */
579 case KERN_JOB_CONTROL
:
583 case KERN_SHREG_PRIVATIZABLE
:
584 return AUE_SYSCTL_NONADMIN
;
586 /* only treat the sets as admin */
590 case KERN_MAXPROCPERUID
:
591 case KERN_MAXFILESPERPROC
:
594 case KERN_AIOPROCMAX
:
595 case KERN_AIOTHREADS
:
597 case KERN_SUGID_COREDUMP
:
598 return (valid_arg
& ARG_VALUE
) ?
599 AUE_SYSCTL
: AUE_SYSCTL_NONADMIN
;
608 * Convert an open flags specifier into a specific type of open event for
611 au_event_t
flags_and_error_to_openevent(int oflags
, int error
) {
614 /* Need to check only those flags we care about. */
615 oflags
= oflags
& (O_RDONLY
| O_CREAT
| O_TRUNC
| O_RDWR
| O_WRONLY
);
617 /* These checks determine what flags are on with the condition
618 * that ONLY that combination is on, and no other flags are on.
624 case (O_RDONLY
| O_CREAT
):
625 aevent
= AUE_OPEN_RC
;
627 case (O_RDONLY
| O_CREAT
| O_TRUNC
):
628 aevent
= AUE_OPEN_RTC
;
630 case (O_RDONLY
| O_TRUNC
):
631 aevent
= AUE_OPEN_RT
;
634 aevent
= AUE_OPEN_RW
;
636 case (O_RDWR
| O_CREAT
):
637 aevent
= AUE_OPEN_RWC
;
639 case (O_RDWR
| O_CREAT
| O_TRUNC
):
640 aevent
= AUE_OPEN_RWTC
;
642 case (O_RDWR
| O_TRUNC
):
643 aevent
= AUE_OPEN_RWT
;
648 case (O_WRONLY
| O_CREAT
):
649 aevent
= AUE_OPEN_WC
;
651 case (O_WRONLY
| O_CREAT
| O_TRUNC
):
652 aevent
= AUE_OPEN_WTC
;
654 case (O_WRONLY
| O_TRUNC
):
655 aevent
= AUE_OPEN_WT
;
663 * Convert chatty errors to better matching events.
664 * Failures to find a file are really just attribute
665 * events - so recast them as such.
680 /* Convert a MSGCTL command to a specific event. */
681 au_event_t
msgctl_to_event(int cmd
)
685 return AUE_MSGCTL_RMID
;
687 return AUE_MSGCTL_SET
;
689 return AUE_MSGCTL_STAT
;
692 /* We will audit a bad command */
696 /* Convert a SEMCTL command to a specific event. */
697 au_event_t
semctl_to_event(int cmd
)
701 return AUE_SEMCTL_GETALL
;
703 return AUE_SEMCTL_GETNCNT
;
705 return AUE_SEMCTL_GETPID
;
707 return AUE_SEMCTL_GETVAL
;
709 return AUE_SEMCTL_GETZCNT
;
711 return AUE_SEMCTL_RMID
;
713 return AUE_SEMCTL_SET
;
715 return AUE_SEMCTL_SETALL
;
717 return AUE_SEMCTL_SETVAL
;
719 return AUE_SEMCTL_STAT
;
722 /* We will audit a bad command */
726 /* Convert a command for the auditon() system call to a audit event. */
727 int auditon_command_event(int cmd
)
731 return AUE_AUDITON_GPOLICY
;
734 return AUE_AUDITON_SPOLICY
;
737 return AUE_AUDITON_GETKMASK
;
740 return AUE_AUDITON_SETKMASK
;
743 return AUE_AUDITON_GQCTRL
;
746 return AUE_AUDITON_SQCTRL
;
749 return AUE_AUDITON_GETCWD
;
752 return AUE_AUDITON_GETCAR
;
755 return AUE_AUDITON_GETSTAT
;
758 return AUE_AUDITON_SETSTAT
;
761 return AUE_AUDITON_SETUMASK
;
764 return AUE_AUDITON_SETSMASK
;
767 return AUE_AUDITON_GETCOND
;
770 return AUE_AUDITON_SETCOND
;
773 return AUE_AUDITON_GETCLASS
;
776 return AUE_AUDITON_SETCLASS
;
782 case A_GETPINFO_ADDR
:
786 return AUE_AUDITON
; /* No special record */
792 * Create a canonical path from given path by prefixing either the
793 * root directory, or the current working directory.
794 * If the process working directory is NULL, we could use 'rootvnode'
795 * to obtain the root directoty, but this results in a volfs name
796 * written to the audit log. So we will leave the filename starting
797 * with '/' in the audit log in this case.
799 int canon_path(struct proc
*p
, char *path
, char *cpath
)
804 struct filedesc
*fdp
;
809 if (*(path
) == '/') {
810 while (*(bufp
) == '/')
811 bufp
++; /* skip leading '/'s */
812 /* If no process root, or it is the same as the system root,
813 * audit the path as passed in with a single '/'.
815 if ((fdp
->fd_rdir
== NULL
) ||
816 (fdp
->fd_rdir
== rootvnode
)) {
818 bufp
--; /* restore one '/' */
820 vnp
= fdp
->fd_rdir
; /* use process root */
823 vnp
= fdp
->fd_cdir
; /* prepend the current dir */
828 ret
= vn_getpath(vnp
, cpath
, &len
);
833 if (len
< MAXPATHLEN
)
835 strncpy(cpath
+ len
, bufp
, MAXPATHLEN
- len
);
837 strncpy(cpath
, bufp
, MAXPATHLEN
);