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 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 | /* * Copyright (c) 2000-2017 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ #include <kern/ast.h> #include <kern/counter.h> #include <kern/misc_protos.h> #include <kern/queue.h> #include <kern/sched_prim.h> #include <kern/thread.h> #include <kern/processor.h> #include <kern/restartable.h> #include <kern/spl.h> #include <kern/sfi.h> #if CONFIG_TELEMETRY #include <kern/telemetry.h> #endif #include <kern/waitq.h> #include <kern/ledger.h> #include <kern/machine.h> #include <kern/kpc.h> #include <kperf/kperf.h> #include <mach/policy.h> #include <security/mac_mach_internal.h> // for MACF AST hook #include <vm/vm_map_xnu.h> // for vm_map_enter_large_telemetry_ast #include <stdatomic.h> #if CONFIG_ARCADE #include <kern/arcade.h> #endif static inline __attribute__((always_inline)) void handle_user_asts_interrupts_enabled(ast_t reasons, thread_t thread, task_t task); static inline __attribute__((always_inline)) void assert_thread_return_to_user(thread_t thread); static void __attribute__((noinline, noreturn, disable_tail_calls)) thread_preempted(__unused void* parameter, __unused wait_result_t result) { /* * We've been scheduled again after a userspace preemption, * try again to return to userspace. */ thread_exception_return(); } /* * Create a dedicated frame to clarify that this thread has been preempted * while running in kernel space. */ static void __attribute__((noinline, disable_tail_calls)) thread_preempted_in_kernel(ast_t urgent_reason) { thread_block_reason(THREAD_CONTINUE_NULL, NULL, urgent_reason); assert(ml_get_interrupts_enabled() == FALSE); } /* * AST_URGENT was detected while in kernel mode * Called with interrupts disabled, returns the same way * Must return to caller */ void ast_taken_kernel(void) { assert(ml_get_interrupts_enabled() == FALSE); thread_t thread = current_thread(); /* Idle threads handle preemption themselves */ if ((thread->state & TH_IDLE)) { ast_off(AST_PREEMPTION); return; } /* * It's possible for this to be called after AST_URGENT * has already been handled, due to races in enable_preemption */ if (ast_peek(AST_URGENT) != AST_URGENT) { return; } /* * Don't preempt if the thread is already preparing to block. * TODO: the thread can cheese this with clear_wait() */ if (waitq_wait_possible(thread) == FALSE) { /* Consume AST_URGENT or the interrupt will call us again */ ast_consume(AST_URGENT); return; } /* TODO: Should we csw_check again to notice if conditions have changed? */ ast_t urgent_reason = ast_consume(AST_PREEMPTION); assert(urgent_reason & AST_PREEMPT); /* We've decided to try context switching */ thread_preempted_in_kernel(urgent_reason); } /* * An AST flag was set while returning to user mode * Called with interrupts disabled, returns with interrupts enabled * May call continuation instead of returning */ void ast_taken_user(void) { assert(ml_get_interrupts_enabled() == FALSE); thread_t thread = current_thread(); task_t task = get_threadtask(thread); /* We are about to return to userspace, there must not be a pending wait */ assert(waitq_wait_possible(thread)); assert((thread->state & TH_IDLE) == 0); /* TODO: Add more 'return to userspace' assertions here */ /* * If this thread was urgently preempted in userspace, * take the preemption before processing the ASTs. * The trap handler will call us again if we have more ASTs, so it's * safe to block in a continuation here. */ if (ast_peek(AST_URGENT) == AST_URGENT) { ast_t urgent_reason = ast_consume(AST_PREEMPTION); assert(urgent_reason & AST_PREEMPT); /* TODO: Should we csw_check again to notice if conditions have changed? */ thread_block_reason(thread_preempted, NULL, urgent_reason); /* NOTREACHED */ } /* * AST_KEVENT does not send an IPI when setting the ast for a thread running in parallel * on a different processor. Only the ast bit on the thread will be set. * * Force a propagate for concurrent updates without an IPI. */ ast_propagate(thread); /* * Consume all non-preemption processor ASTs matching reasons * because we're handling them here. * * If one of the AST handlers blocks in a continuation, * we'll reinstate the unserviced thread-level AST flags * from the thread to the processor on context switch. * If one of the AST handlers sets another AST, * the trap handler will call ast_taken_user again. * * We expect the AST handlers not to thread_exception_return * without an ast_propagate or context switch to reinstate * the per-processor ASTs. * * TODO: Why are AST_DTRACE and AST_KPERF not per-thread ASTs? */ ast_t reasons = ast_consume(AST_PER_THREAD | AST_KPERF | AST_DTRACE); ml_set_interrupts_enabled(TRUE); handle_user_asts_interrupts_enabled(reasons, thread, task); spl_t s = splsched(); #if CONFIG_SCHED_SFI /* * SFI is currently a per-processor AST, not a per-thread AST * TODO: SFI should be a per-thread AST */ if (ast_consume(AST_SFI) == AST_SFI) { sfi_ast(thread); } #endif /* We are about to return to userspace, there must not be a pending wait */ assert(waitq_wait_possible(thread)); /* * We've handled all per-thread ASTs, time to handle non-urgent preemption. * * We delay reading the preemption bits until now in case the thread * blocks while handling per-thread ASTs. * * If one of the AST handlers had managed to set a new AST bit, * thread_exception_return will call ast_taken again. */ ast_t preemption_reasons = ast_consume(AST_PREEMPTION); if (preemption_reasons & AST_PREEMPT) { /* Conditions may have changed from when the AST_PREEMPT was originally set, so re-check. */ thread_lock(thread); preemption_reasons = csw_check(thread, current_processor(), (preemption_reasons & AST_QUANTUM)); thread_unlock(thread); #if CONFIG_SCHED_SFI /* csw_check might tell us that SFI is needed */ if (preemption_reasons & AST_SFI) { sfi_ast(thread); } #endif if (preemption_reasons & AST_PREEMPT) { /* switching to a continuation implicitly re-enables interrupts */ thread_block_reason(thread_preempted, NULL, preemption_reasons); /* NOTREACHED */ } /* * We previously had a pending AST_PREEMPT, but csw_check * decided that it should no longer be set, and to keep * executing the current thread instead. * Clear the pending preemption timer as we no longer * have a pending AST_PREEMPT to time out. * * TODO: just do the thread block if we see AST_PREEMPT * to avoid taking the pset lock twice. * To do that thread block needs to be smarter * about not context switching when it's not necessary * e.g. the first-timeslice check for queue has priority */ clear_pending_nonurgent_preemption(current_processor()); } splx(s); /* * Here's a good place to put assertions of things which must be true * upon return to userspace. */ assert_thread_return_to_user(thread); } static inline void handle_user_asts_interrupts_enabled(ast_t reasons, thread_t thread, task_t task) { #if CONFIG_DTRACE if (reasons & AST_DTRACE) { dtrace_ast(); } #endif #ifdef MACH_BSD if (reasons & AST_BSD) { thread_ast_clear(thread, AST_BSD); bsd_ast(thread); } #endif #if CONFIG_MACF if (reasons & AST_MACF) { thread_ast_clear(thread, AST_MACF); mac_thread_userret(thread); } #endif #if CONFIG_ARCADE if (reasons & AST_ARCADE) { thread_ast_clear(thread, AST_ARCADE); arcade_ast(thread); } #endif if (reasons & AST_APC) { thread_ast_clear(thread, AST_APC); thread_apc_ast(thread); } if (reasons & AST_SYNTHESIZE_MACH) { extern void vm_map_synthesize_guard_exception(vm_map_t, thread_t); thread_ast_clear(thread, AST_SYNTHESIZE_MACH); vm_map_synthesize_guard_exception(get_threadtask(thread)->map, thread); } #if CONFIG_LARGE_SIZE_TELEMETRY if (reasons & AST_LARGE_ENTER_TELEMETRY) { thread_ast_clear(thread, AST_LARGE_ENTER_TELEMETRY); vm_map_enter_large_telemetry_ast(); } #endif /* CONFIG_LARGE_SIZE_TELEMETRY */ if (reasons & AST_MACH_EXCEPTION) { thread_ast_clear(thread, AST_MACH_EXCEPTION); mach_exception_ast(thread); } if (reasons & AST_LEDGER) { thread_ast_clear(thread, AST_LEDGER); ledger_ast(thread); } if (reasons & AST_KPERF) { thread_ast_clear(thread, AST_KPERF); #if CONFIG_CPU_COUNTERS kpc_thread_ast_handler(thread); #endif /* CONFIG_CPU_COUNTERS */ kperf_thread_ast_handler(thread); thread->kperf_ast = 0; } if (reasons & AST_RESET_PCS) { thread_ast_clear(thread, AST_RESET_PCS); thread_reset_pcs_ast(task, thread); } if (reasons & AST_KEVENT) { thread_ast_clear(thread, AST_KEVENT); uint16_t bits = atomic_exchange(&thread->kevent_ast_bits, 0); if (bits) { kevent_ast(thread, bits); } } if (reasons & AST_PROC_RESOURCE) { thread_ast_clear(thread, AST_PROC_RESOURCE); task_port_space_ast(task); #if MACH_BSD proc_filedesc_ast(task); #endif /* MACH_BSD */ } #if CONFIG_TELEMETRY if (reasons & AST_TELEMETRY) { telemetry_ast_t ast_reasons = act_clear_telemetry_ast(thread); if (ast_reasons) { telemetry_handle_ast(thread, ast_reasons); } } #endif /* CONFIG_TELEMETRY */ #if MACH_ASSERT if (reasons & AST_DEBUG_ASSERT) { thread_ast_clear(thread, AST_DEBUG_ASSERT); thread_debug_return_to_user_ast(thread); } #endif /* MACH_ASSERT */ } static inline void assert_thread_return_to_user(thread_t thread) { assert(thread->kern_promotion_schedpri == 0); if (thread->rwlock_count > 0) { panic("rwlock_count is %d for thread %p, possibly it still holds a rwlock", thread->rwlock_count, thread); } assert(thread->priority_floor_count == 0); assert3u(0, ==, thread->sched_flags & (TH_SFLAG_WAITQ_PROMOTED | TH_SFLAG_RW_PROMOTED | TH_SFLAG_EXEC_PROMOTED | TH_SFLAG_FLOOR_PROMOTED | TH_SFLAG_DEPRESS)); } #define ASYNC_THREAD_ASTS_HANDLED (AST_MACH_EXCEPTION | AST_DTRACE | AST_TELEMETRY | AST_KPERF | AST_DEBUG_ASSERT) /* * Check if ASTs need to be handled for threads that do work on other threads (currently * aio threads). * Called and returns with interrupts enabled */ void ast_check_async_thread(void) { thread_t thread = current_thread(); task_t task = get_threadtask(thread); assert(ml_get_interrupts_enabled() == TRUE); for (;;) { spl_t s = splsched(); ast_t reasons = ast_consume(ASYNC_THREAD_ASTS_HANDLED); splx(s); if (!(reasons & ASYNC_THREAD_ASTS_HANDLED)) { break; } handle_user_asts_interrupts_enabled(reasons & ASYNC_THREAD_ASTS_HANDLED, thread, task); assert_thread_return_to_user(thread); } } /* * Set AST flags on current processor * Called at splsched */ void ast_on(ast_t reasons) { ast_t *pending_ast = ast_pending(); *pending_ast |= reasons; } /* * Clear AST flags on current processor * Called at splsched */ void ast_off(ast_t reasons) { ast_t *pending_ast = ast_pending(); *pending_ast &= ~reasons; } /* * Consume the requested subset of the AST flags set on the processor * Return the bits that were set * Called at splsched */ ast_t ast_consume(ast_t reasons) { ast_t *pending_ast = ast_pending(); reasons &= *pending_ast; *pending_ast &= ~reasons; return reasons; } /* * Read the requested subset of the AST flags set on the processor * Return the bits that were set, don't modify the processor * Called at splsched */ ast_t ast_peek(ast_t reasons) { ast_t *pending_ast = ast_pending(); reasons &= *pending_ast; return reasons; } /* * Re-set current processor's per-thread AST flags to those set on thread * Called at splsched */ void ast_context(thread_t thread) { ast_t *pending_ast = ast_pending(); *pending_ast = (*pending_ast & ~AST_PER_THREAD) | thread_ast_get(thread); } /* * Propagate ASTs set on a thread to the current processor * Called at splsched */ void ast_propagate(thread_t thread) { ast_on(thread_ast_get(thread)); } void ast_dtrace_on(void) { ast_on(AST_DTRACE); } |