2 * Copyright (c) 2008-2010 Apple Inc.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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.
32 #include <sys/kernel.h>
34 #include <sys/systm.h>
36 #include <kern/host.h>
37 #include <kern/kalloc.h>
38 #include <kern/locks.h>
39 #include <kern/sched_prim.h>
41 #include <libkern/OSAtomic.h>
43 #include <bsm/audit.h>
44 #include <bsm/audit_internal.h>
46 #include <security/audit/audit_bsd.h>
47 #include <security/audit/audit.h>
48 #include <security/audit/audit_private.h>
50 #include <mach/host_priv.h>
51 #include <mach/host_special_ports.h>
52 #include <mach/audit_triggers_server.h>
57 au_malloc_type_t
*mh_type
;
63 * The lock group for the audit subsystem.
65 static lck_grp_t
*audit_lck_grp
= NULL
;
67 #define AUDIT_MHMAGIC 0x4D656C53
69 #if AUDIT_MALLOC_DEBUG
70 #define AU_MAX_SHORTDESC 20
71 #define AU_MAX_LASTCALLER 20
72 struct au_malloc_debug_info
{
79 char md_shortdesc
[AU_MAX_SHORTDESC
];
80 char md_lastcaller
[AU_MAX_LASTCALLER
];
82 typedef struct au_malloc_debug_info au_malloc_debug_info_t
;
84 au_malloc_type_t
*audit_malloc_types
[NUM_MALLOC_TYPES
];
86 static int audit_sysctl_malloc_debug(struct sysctl_oid
*oidp
, void *arg1
,
87 int arg2
, struct sysctl_req
*req
);
89 SYSCTL_PROC(_kern
, OID_AUTO
, audit_malloc_debug
, CTLFLAG_RD
, NULL
, 0,
90 audit_sysctl_malloc_debug
, "S,audit_malloc_debug",
91 "Current malloc debug info for auditing.");
93 #define AU_MALLOC_DBINFO_SZ \
94 (NUM_MALLOC_TYPES * sizeof(au_malloc_debug_info_t))
97 * Copy out the malloc debug info via the sysctl interface. The userland code
98 * is something like the following:
100 * error = sysctlbyname("kern.audit_malloc_debug", buffer_ptr, &buffer_len,
104 audit_sysctl_malloc_debug(__unused
struct sysctl_oid
*oidp
, __unused
void *arg1
,
105 __unused
int arg2
, struct sysctl_req
*req
)
109 au_malloc_debug_info_t
*amdi_ptr
, *nxt_ptr
;
113 * This provides a read-only node.
115 if (req
->newptr
!= USER_ADDR_NULL
)
119 * If just querying then return the space required.
121 if (req
->oldptr
== USER_ADDR_NULL
) {
122 req
->oldidx
= AU_MALLOC_DBINFO_SZ
;
127 * Alloc a temporary buffer.
129 if (req
->oldlen
< AU_MALLOC_DBINFO_SZ
)
131 amdi_ptr
= (au_malloc_debug_info_t
*)kalloc(AU_MALLOC_DBINFO_SZ
);
132 if (amdi_ptr
== NULL
)
134 bzero(amdi_ptr
, AU_MALLOC_DBINFO_SZ
);
137 * Build the record array.
141 for(i
= 0; i
< NUM_MALLOC_TYPES
; i
++) {
142 if (audit_malloc_types
[i
] == NULL
)
144 if (audit_malloc_types
[i
]->mt_magic
!= M_MAGIC
) {
145 nxt_ptr
->md_magic
= audit_malloc_types
[i
]->mt_magic
;
148 nxt_ptr
->md_magic
= audit_malloc_types
[i
]->mt_magic
;
149 nxt_ptr
->md_size
= audit_malloc_types
[i
]->mt_size
;
150 nxt_ptr
->md_maxsize
= audit_malloc_types
[i
]->mt_maxsize
;
151 nxt_ptr
->md_inuse
= (int)audit_malloc_types
[i
]->mt_inuse
;
152 nxt_ptr
->md_maxused
= (int)audit_malloc_types
[i
]->mt_maxused
;
153 strlcpy(nxt_ptr
->md_shortdesc
,
154 audit_malloc_types
[i
]->mt_shortdesc
, AU_MAX_SHORTDESC
- 1);
155 strlcpy(nxt_ptr
->md_lastcaller
,
156 audit_malloc_types
[i
]->mt_lastcaller
, AU_MAX_LASTCALLER
-1);
157 sz
+= sizeof(au_malloc_debug_info_t
);
162 err
= SYSCTL_OUT(req
, amdi_ptr
, sz
);
163 kfree(amdi_ptr
, AU_MALLOC_DBINFO_SZ
);
167 #endif /* AUDIT_MALLOC_DEBUG */
172 * If the M_NOWAIT flag is set then it may not block and return NULL.
173 * If the M_ZERO flag is set then zero out the buffer.
176 #if AUDIT_MALLOC_DEBUG
177 _audit_malloc(size_t size
, au_malloc_type_t
*type
, int flags
, const char *fn
)
179 _audit_malloc(size_t size
, au_malloc_type_t
*type
, int flags
)
183 size_t memsize
= sizeof (*hdr
) + size
;
187 if (flags
& M_NOWAIT
) {
188 hdr
= (void *)kalloc_noblock(memsize
);
190 hdr
= (void *)kalloc(memsize
);
192 panic("_audit_malloc: kernel memory exhausted");
196 hdr
->mh_size
= memsize
;
198 hdr
->mh_magic
= AUDIT_MHMAGIC
;
200 memset(hdr
->mh_data
, 0, size
);
201 #if AUDIT_MALLOC_DEBUG
202 if (type
!= NULL
&& type
->mt_type
< NUM_MALLOC_TYPES
) {
203 OSAddAtomic64(memsize
, &type
->mt_size
);
204 type
->mt_maxsize
= max(type
->mt_size
, type
->mt_maxsize
);
205 OSAddAtomic(1, &type
->mt_inuse
);
206 type
->mt_maxused
= max(type
->mt_inuse
, type
->mt_maxused
);
207 type
->mt_lastcaller
= fn
;
208 audit_malloc_types
[type
->mt_type
] = type
;
210 #endif /* AUDIT_MALLOC_DEBUG */
211 return (hdr
->mh_data
);
218 #if AUDIT_MALLOC_DEBUG
219 _audit_free(void *addr
, au_malloc_type_t
*type
)
221 _audit_free(void *addr
, __unused au_malloc_type_t
*type
)
230 KASSERT(hdr
->mh_magic
== AUDIT_MHMAGIC
,
231 ("_audit_free(): hdr->mh_magic != AUDIT_MHMAGIC"));
233 #if AUDIT_MALLOC_DEBUG
235 OSAddAtomic64(-hdr
->mh_size
, &type
->mt_size
);
236 OSAddAtomic(-1, &type
->mt_inuse
);
238 #endif /* AUDIT_MALLOC_DEBUG */
239 kfree(hdr
, hdr
->mh_size
);
243 * Initialize a condition variable. Must be called before use.
246 _audit_cv_init(struct cv
*cvp
, const char *desc
)
250 cvp
->cv_description
= "UNKNOWN";
252 cvp
->cv_description
= desc
;
257 * Destory a condition variable.
260 _audit_cv_destroy(struct cv
*cvp
)
263 cvp
->cv_description
= NULL
;
268 * Signal a condition variable, wakes up one waiting thread.
271 _audit_cv_signal(struct cv
*cvp
)
274 if (cvp
->cv_waiters
> 0) {
275 wakeup_one((caddr_t
)cvp
);
281 * Broadcast a signal to a condition variable.
284 _audit_cv_broadcast(struct cv
*cvp
)
287 if (cvp
->cv_waiters
> 0) {
288 wakeup((caddr_t
)cvp
);
294 * Wait on a condition variable. A cv_signal or cv_broadcast on the same
295 * condition variable will resume the thread. It is recommended that the mutex
296 * be held when cv_signal or cv_broadcast are called.
299 _audit_cv_wait(struct cv
*cvp
, lck_mtx_t
*mp
, const char *desc
)
303 (void) msleep(cvp
, mp
, PZERO
, desc
, 0);
307 * Wait on a condition variable, allowing interruption by signals. Return 0
308 * if the thread was resumed with cv_signal or cv_broadcast, EINTR or
309 * ERESTART if a signal was caught. If ERESTART is returned the system call
310 * should be restarted if possible.
313 _audit_cv_wait_sig(struct cv
*cvp
, lck_mtx_t
*mp
, const char *desc
)
317 return (msleep(cvp
, mp
, PSOCK
| PCATCH
, desc
, 0));
325 _audit_mtx_init(struct mtx
*mp
, const char *lckname
)
327 _audit_mtx_init(struct mtx
*mp
, __unused
const char *lckname
)
330 mp
->mtx_lock
= lck_mtx_alloc_init(audit_lck_grp
, LCK_ATTR_NULL
);
331 KASSERT(mp
->mtx_lock
!= NULL
,
332 ("_audit_mtx_init: Could not allocate a mutex."));
334 strlcpy(mp
->mtx_name
, lckname
, AU_MAX_LCK_NAME
);
339 _audit_mtx_destroy(struct mtx
*mp
)
343 lck_mtx_free(mp
->mtx_lock
, audit_lck_grp
);
353 _audit_rw_init(struct rwlock
*lp
, const char *lckname
)
355 _audit_rw_init(struct rwlock
*lp
, __unused
const char *lckname
)
358 lp
->rw_lock
= lck_rw_alloc_init(audit_lck_grp
, LCK_ATTR_NULL
);
359 KASSERT(lp
->rw_lock
!= NULL
,
360 ("_audit_rw_init: Could not allocate a rw lock."));
362 strlcpy(lp
->rw_name
, lckname
, AU_MAX_LCK_NAME
);
367 _audit_rw_destroy(struct rwlock
*lp
)
371 lck_rw_free(lp
->rw_lock
, audit_lck_grp
);
376 * Wait on a condition variable in a continuation (i.e. yield kernel stack).
377 * A cv_signal or cv_broadcast on the same condition variable will cause
378 * the thread to be scheduled.
381 _audit_cv_wait_continuation(struct cv
*cvp
, lck_mtx_t
*mp
, thread_continue_t function
)
383 int status
= KERN_SUCCESS
;
386 assert_wait(cvp
, THREAD_UNINT
);
389 status
= thread_block(function
);
391 /* should not be reached, but just in case, re-lock */
398 * Simple recursive lock.
402 _audit_rlck_init(struct rlck
*lp
, const char *lckname
)
404 _audit_rlck_init(struct rlck
*lp
, __unused
const char *lckname
)
408 lp
->rl_mtx
= lck_mtx_alloc_init(audit_lck_grp
, LCK_ATTR_NULL
);
409 KASSERT(lp
->rl_mtx
!= NULL
,
410 ("_audit_rlck_init: Could not allocate a recursive lock."));
412 strlcpy(lp
->rl_name
, lckname
, AU_MAX_LCK_NAME
);
419 * Recursive lock. Allow same thread to recursively lock the same lock.
422 _audit_rlck_lock(struct rlck
*lp
)
425 if (lp
->rl_thread
== current_thread()) {
426 OSAddAtomic(1, &lp
->rl_recurse
);
427 KASSERT(lp
->rl_recurse
< 10000,
428 ("_audit_rlck_lock: lock nested too deep."));
430 lck_mtx_lock(lp
->rl_mtx
);
431 lp
->rl_thread
= current_thread();
437 * Recursive unlock. It should be the same thread that does the unlock.
440 _audit_rlck_unlock(struct rlck
*lp
)
442 KASSERT(lp
->rl_thread
== current_thread(),
443 ("_audit_rlck_unlock(): Don't own lock."));
445 /* Note: OSAddAtomic returns old value. */
446 if (OSAddAtomic(-1, &lp
->rl_recurse
) == 1) {
448 lck_mtx_unlock(lp
->rl_mtx
);
453 _audit_rlck_destroy(struct rlck
*lp
)
457 lck_mtx_free(lp
->rl_mtx
, audit_lck_grp
);
463 * Recursive lock assert.
466 _audit_rlck_assert(struct rlck
*lp
, u_int
assert)
468 thread_t cthd
= current_thread();
470 if (assert == LCK_MTX_ASSERT_OWNED
&& lp
->rl_thread
== cthd
)
471 panic("recursive lock (%p) not held by this thread (%p).",
473 if (assert == LCK_MTX_ASSERT_NOTOWNED
&& lp
->rl_thread
!= 0)
474 panic("recursive lock (%p) held by thread (%p).",
483 _audit_slck_init(struct slck
*lp
, const char *lckname
)
485 _audit_slck_init(struct slck
*lp
, __unused
const char *lckname
)
489 lp
->sl_mtx
= lck_mtx_alloc_init(audit_lck_grp
, LCK_ATTR_NULL
);
490 KASSERT(lp
->sl_mtx
!= NULL
,
491 ("_audit_slck_init: Could not allocate a sleep lock."));
493 strlcpy(lp
->sl_name
, lckname
, AU_MAX_LCK_NAME
);
500 * Sleep lock lock. The 'intr' flag determines if the lock is interruptible.
501 * If 'intr' is true then signals or other events can interrupt the sleep lock.
504 _audit_slck_lock(struct slck
*lp
, int intr
)
506 wait_result_t res
= THREAD_AWAKENED
;
508 lck_mtx_lock(lp
->sl_mtx
);
509 while (lp
->sl_locked
&& res
== THREAD_AWAKENED
) {
511 res
= lck_mtx_sleep(lp
->sl_mtx
, LCK_SLEEP_DEFAULT
,
512 (event_t
) lp
, (intr
) ? THREAD_INTERRUPTIBLE
: THREAD_UNINT
);
514 if (res
== THREAD_AWAKENED
)
516 lck_mtx_unlock(lp
->sl_mtx
);
522 * Sleep lock unlock. Wake up all the threads waiting for this lock.
525 _audit_slck_unlock(struct slck
*lp
)
528 lck_mtx_lock(lp
->sl_mtx
);
530 if (lp
->sl_waiting
) {
533 /* Wake up *all* sleeping threads. */
534 wakeup((event_t
) lp
);
536 lck_mtx_unlock(lp
->sl_mtx
);
540 * Sleep lock try. Don't sleep if it doesn't get the lock.
543 _audit_slck_trylock(struct slck
*lp
)
547 lck_mtx_lock(lp
->sl_mtx
);
548 result
= !lp
->sl_locked
;
551 lck_mtx_unlock(lp
->sl_mtx
);
560 _audit_slck_assert(struct slck
*lp
, u_int
assert)
563 if (assert == LCK_MTX_ASSERT_OWNED
&& lp
->sl_locked
== 0)
564 panic("sleep lock (%p) not held.", lp
);
565 if (assert == LCK_MTX_ASSERT_NOTOWNED
&& lp
->sl_locked
== 1)
566 panic("sleep lock (%p) held.", lp
);
570 _audit_slck_destroy(struct slck
*lp
)
574 lck_mtx_free(lp
->sl_mtx
, audit_lck_grp
);
580 * XXXss - This code was taken from bsd/netinet6/icmp6.c. Maybe ppsratecheck()
581 * should be made global in icmp6.c.
584 #define timersub(tvp, uvp, vvp) \
586 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
587 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
588 if ((vvp)->tv_usec < 0) { \
590 (vvp)->tv_usec += 1000000; \
596 * Packets (or events) per second limitation.
599 _audit_ppsratecheck(struct timeval
*lasttime
, int *curpps
, int maxpps
)
601 struct timeval tv
, delta
;
606 timersub(&tv
, lasttime
, &delta
);
609 * Check for 0,0 so that the message will be seen at least once.
610 * If more than one second has passed since the last update of
611 * lasttime, reset the counter.
613 * we do increment *curpps even in *curpps < maxpps case, as some may
614 * try to use *curpps for stat purposes as well.
616 if ((lasttime
->tv_sec
== 0 && lasttime
->tv_usec
== 0) ||
621 } else if (maxpps
< 0)
623 else if (*curpps
< maxpps
)
628 *curpps
= *curpps
+ 1;
634 * Initialize lock group for audit related locks/mutexes.
637 _audit_lck_grp_init(void)
639 audit_lck_grp
= lck_grp_alloc_init("Audit", LCK_GRP_ATTR_NULL
);
641 KASSERT(audit_lck_grp
!= NULL
,
642 ("audit_get_lck_grp: Could not allocate the audit lock group."));
646 audit_send_trigger(unsigned int trigger
)
648 mach_port_t audit_port
;
651 error
= host_get_audit_control_port(host_priv_self(), &audit_port
);
652 if (error
== KERN_SUCCESS
&& audit_port
!= MACH_PORT_NULL
) {
653 audit_triggers(audit_port
, trigger
);
656 printf("Cannot get audit control port\n");
660 #endif /* CONFIG_AUDIT */