Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 | /*- * Copyright (c) 2008-2010 Apple Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <string.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/systm.h> #include <kern/host.h> #include <kern/kalloc.h> #include <kern/locks.h> #include <kern/sched_prim.h> #include <libkern/OSAtomic.h> #include <bsm/audit.h> #include <bsm/audit_internal.h> #include <security/audit/audit_bsd.h> #include <security/audit/audit.h> #include <security/audit/audit_private.h> #include <mach/host_priv.h> #include <mach/host_special_ports.h> #include <mach/audit_triggers_server.h> #include <mach/audit_triggers_types.h> #include <os/overflow.h> extern void ipc_port_release_send(ipc_port_t port); #if CONFIG_AUDIT struct mhdr { size_t mh_size; au_malloc_type_t *mh_type; u_long mh_magic; char mh_data[0]; }; /* * The lock group for the audit subsystem. */ static LCK_GRP_DECLARE(audit_lck_grp, "Audit"); #define AUDIT_MHMAGIC 0x4D656C53 /* * Initialize a condition variable. Must be called before use. */ void _audit_cv_init(struct cv *cvp, const char *desc) { if (desc == NULL) { cvp->cv_description = "UNKNOWN"; } else { cvp->cv_description = desc; } cvp->cv_waiters = 0; } /* * Destory a condition variable. */ void _audit_cv_destroy(struct cv *cvp) { cvp->cv_description = NULL; cvp->cv_waiters = 0; } /* * Signal a condition variable, wakes up one waiting thread. */ void _audit_cv_signal(struct cv *cvp) { if (cvp->cv_waiters > 0) { wakeup_one((caddr_t)cvp); cvp->cv_waiters--; } } /* * Broadcast a signal to a condition variable. */ void _audit_cv_broadcast(struct cv *cvp) { if (cvp->cv_waiters > 0) { wakeup((caddr_t)cvp); cvp->cv_waiters = 0; } } /* * Wait on a condition variable. A cv_signal or cv_broadcast on the same * condition variable will resume the thread. It is recommended that the mutex * be held when cv_signal or cv_broadcast are called. */ void _audit_cv_wait(struct cv *cvp, lck_mtx_t *mp, const char *desc) { cvp->cv_waiters++; (void) msleep(cvp, mp, PZERO, desc, 0); } /* * Wait on a condition variable, allowing interruption by signals. Return 0 * if the thread was resumed with cv_signal or cv_broadcast, EINTR or * ERESTART if a signal was caught. If ERESTART is returned the system call * should be restarted if possible. */ int _audit_cv_wait_sig(struct cv *cvp, lck_mtx_t *mp, const char *desc) { cvp->cv_waiters++; return msleep(cvp, mp, PSOCK | PCATCH, desc, 0); } /* * BSD Mutexes. */ void #if DIAGNOSTIC _audit_mtx_init(struct mtx *mp, const char *lckname) #else _audit_mtx_init(struct mtx *mp, __unused const char *lckname) #endif { mp->mtx_lock = lck_mtx_alloc_init(&audit_lck_grp, LCK_ATTR_NULL); KASSERT(mp->mtx_lock != NULL, ("_audit_mtx_init: Could not allocate a mutex.")); #if DIAGNOSTIC strlcpy(mp->mtx_name, lckname, AU_MAX_LCK_NAME); #endif } void _audit_mtx_destroy(struct mtx *mp) { if (mp->mtx_lock) { lck_mtx_free(mp->mtx_lock, &audit_lck_grp); mp->mtx_lock = NULL; } } /* * BSD rw locks. */ void #if DIAGNOSTIC _audit_rw_init(struct rwlock *lp, const char *lckname) #else _audit_rw_init(struct rwlock *lp, __unused const char *lckname) #endif { lp->rw_lock = lck_rw_alloc_init(&audit_lck_grp, LCK_ATTR_NULL); KASSERT(lp->rw_lock != NULL, ("_audit_rw_init: Could not allocate a rw lock.")); #if DIAGNOSTIC strlcpy(lp->rw_name, lckname, AU_MAX_LCK_NAME); #endif } void _audit_rw_destroy(struct rwlock *lp) { if (lp->rw_lock) { lck_rw_free(lp->rw_lock, &audit_lck_grp); lp->rw_lock = NULL; } } /* * Wait on a condition variable in a continuation (i.e. yield kernel stack). * A cv_signal or cv_broadcast on the same condition variable will cause * the thread to be scheduled. */ int _audit_cv_wait_continuation(struct cv *cvp, lck_mtx_t *mp, thread_continue_t function) { int status = KERN_SUCCESS; cvp->cv_waiters++; assert_wait(cvp, THREAD_UNINT); lck_mtx_unlock(mp); status = thread_block(function); /* should not be reached, but just in case, re-lock */ lck_mtx_lock(mp); return status; } /* * Simple recursive lock. */ void #if DIAGNOSTIC _audit_rlck_init(struct rlck *lp, const char *lckname) #else _audit_rlck_init(struct rlck *lp, __unused const char *lckname) #endif { lp->rl_mtx = lck_mtx_alloc_init(&audit_lck_grp, LCK_ATTR_NULL); KASSERT(lp->rl_mtx != NULL, ("_audit_rlck_init: Could not allocate a recursive lock.")); #if DIAGNOSTIC strlcpy(lp->rl_name, lckname, AU_MAX_LCK_NAME); #endif lp->rl_thread = 0; lp->rl_recurse = 0; } /* * Recursive lock. Allow same thread to recursively lock the same lock. */ void _audit_rlck_lock(struct rlck *lp) { if (lp->rl_thread == current_thread()) { OSAddAtomic(1, &lp->rl_recurse); KASSERT(lp->rl_recurse < 10000, ("_audit_rlck_lock: lock nested too deep.")); } else { lck_mtx_lock(lp->rl_mtx); lp->rl_thread = current_thread(); lp->rl_recurse = 1; } } /* * Recursive unlock. It should be the same thread that does the unlock. */ void _audit_rlck_unlock(struct rlck *lp) { KASSERT(lp->rl_thread == current_thread(), ("_audit_rlck_unlock(): Don't own lock.")); /* Note: OSAddAtomic returns old value. */ if (OSAddAtomic(-1, &lp->rl_recurse) == 1) { lp->rl_thread = 0; lck_mtx_unlock(lp->rl_mtx); } } void _audit_rlck_destroy(struct rlck *lp) { if (lp->rl_mtx) { lck_mtx_free(lp->rl_mtx, &audit_lck_grp); lp->rl_mtx = NULL; } } /* * Recursive lock assert. */ void _audit_rlck_assert(struct rlck *lp, u_int assert) { thread_t cthd = current_thread(); if (assert == LCK_MTX_ASSERT_OWNED && lp->rl_thread == cthd) { panic("recursive lock (%p) not held by this thread (%p).", lp, cthd); } if (assert == LCK_MTX_ASSERT_NOTOWNED && lp->rl_thread != 0) { panic("recursive lock (%p) held by thread (%p).", lp, cthd); } } /* * Simple sleep lock. */ void #if DIAGNOSTIC _audit_slck_init(struct slck *lp, const char *lckname) #else _audit_slck_init(struct slck *lp, __unused const char *lckname) #endif { lp->sl_mtx = lck_mtx_alloc_init(&audit_lck_grp, LCK_ATTR_NULL); KASSERT(lp->sl_mtx != NULL, ("_audit_slck_init: Could not allocate a sleep lock.")); #if DIAGNOSTIC strlcpy(lp->sl_name, lckname, AU_MAX_LCK_NAME); #endif lp->sl_locked = 0; lp->sl_waiting = 0; } /* * Sleep lock lock. The 'intr' flag determines if the lock is interruptible. * If 'intr' is true then signals or other events can interrupt the sleep lock. */ wait_result_t _audit_slck_lock(struct slck *lp, int intr) { wait_result_t res = THREAD_AWAKENED; lck_mtx_lock(lp->sl_mtx); while (lp->sl_locked && res == THREAD_AWAKENED) { lp->sl_waiting = 1; res = lck_mtx_sleep(lp->sl_mtx, LCK_SLEEP_DEFAULT, (event_t) lp, (intr) ? THREAD_INTERRUPTIBLE : THREAD_UNINT); } if (res == THREAD_AWAKENED) { lp->sl_locked = 1; } lck_mtx_unlock(lp->sl_mtx); return res; } /* * Sleep lock unlock. Wake up all the threads waiting for this lock. */ void _audit_slck_unlock(struct slck *lp) { lck_mtx_lock(lp->sl_mtx); lp->sl_locked = 0; if (lp->sl_waiting) { lp->sl_waiting = 0; /* Wake up *all* sleeping threads. */ wakeup((event_t) lp); } lck_mtx_unlock(lp->sl_mtx); } /* * Sleep lock try. Don't sleep if it doesn't get the lock. */ int _audit_slck_trylock(struct slck *lp) { int result; lck_mtx_lock(lp->sl_mtx); result = !lp->sl_locked; if (result) { lp->sl_locked = 1; } lck_mtx_unlock(lp->sl_mtx); return result; } /* * Sleep lock assert. */ void _audit_slck_assert(struct slck *lp, u_int assert) { if (assert == LCK_MTX_ASSERT_OWNED && lp->sl_locked == 0) { panic("sleep lock (%p) not held.", lp); } if (assert == LCK_MTX_ASSERT_NOTOWNED && lp->sl_locked == 1) { panic("sleep lock (%p) held.", lp); } } void _audit_slck_destroy(struct slck *lp) { if (lp->sl_mtx) { lck_mtx_free(lp->sl_mtx, &audit_lck_grp); lp->sl_mtx = NULL; } } /* * XXXss - This code was taken from bsd/netinet6/icmp6.c. Maybe ppsratecheck() * should be made global in icmp6.c. */ #ifndef timersub #define timersub(tvp, uvp, vvp) \ do { \ (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ if ((vvp)->tv_usec < 0) { \ (vvp)->tv_sec--; \ (vvp)->tv_usec += 1000000; \ } \ } while (0) #endif /* * Packets (or events) per second limitation. */ int _audit_ppsratecheck(struct timeval *lasttime, int *curpps, int maxpps) { struct timeval tv, delta; int rv; microtime(&tv); timersub(&tv, lasttime, &delta); /* * Check for 0,0 so that the message will be seen at least once. * If more than one second has passed since the last update of * lasttime, reset the counter. * * we do increment *curpps even in *curpps < maxpps case, as some may * try to use *curpps for stat purposes as well. */ if ((lasttime->tv_sec == 0 && lasttime->tv_usec == 0) || delta.tv_sec >= 1) { *lasttime = tv; *curpps = 0; rv = 1; } else if (maxpps < 0) { rv = 1; } else if (*curpps < maxpps) { rv = 1; } else { rv = 0; } if (*curpps + 1 > 0) { *curpps = *curpps + 1; } return rv; } int audit_send_trigger(unsigned int trigger) { mach_port_t audit_port; int error; error = host_get_audit_control_port(host_priv_self(), &audit_port); if (error == KERN_SUCCESS && audit_port != MACH_PORT_NULL) { (void)audit_triggers(audit_port, trigger); ipc_port_release_send(audit_port); return 0; } else { printf("Cannot get audit control port\n"); return error; } } int audit_send_analytics(char* signing_id, char* process_name) { mach_port_t audit_port; int error; error = host_get_audit_control_port(host_priv_self(), &audit_port); if (error == KERN_SUCCESS && audit_port != MACH_PORT_NULL) { (void)audit_analytics(audit_port, signing_id, process_name); ipc_port_release_send(audit_port); return 0; } else { printf("Cannot get audit control port for analytics \n"); return error; } } #endif /* CONFIG_AUDIT */ |