VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/darwin/initterm-r0drv-darwin.cpp

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 4.8 KB
Line 
1/* $Id: initterm-r0drv-darwin.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - Initialization & Termination, R0 Driver, Darwin.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include "the-darwin-kernel.h"
42#include "internal/iprt.h"
43
44#include <iprt/errcore.h>
45#include <iprt/assert.h>
46#include <iprt/dbg.h>
47#include "internal/initterm.h"
48
49
50
51/*********************************************************************************************************************************
52* Global Variables *
53*********************************************************************************************************************************/
54/** Pointer to the lock group used by IPRT. */
55DECL_HIDDEN_DATA(lck_grp_t *) g_pDarwinLockGroup = NULL;
56/** Pointer to the ast_pending function, if found. */
57DECL_HIDDEN_DATA(PFNR0DARWINASTPENDING) g_pfnR0DarwinAstPending = NULL;
58/** Pointer to the cpu_interrupt function, if found. */
59DECL_HIDDEN_DATA(PFNR0DARWINCPUINTERRUPT) g_pfnR0DarwinCpuInterrupt = NULL;
60#ifdef DEBUG
61/** Pointer to the vm_fault_external function - used once for debugging @bugref{9466}. */
62DECL_HIDDEN_DATA(PFNR0DARWINVMFAULTEXTERNAL) g_pfnR0DarwinVmFaultExternal = NULL;
63#endif
64
65
66DECLHIDDEN(int) rtR0InitNative(void)
67{
68 IPRT_DARWIN_SAVE_EFL_AC();
69
70 /*
71 * Create the lock group.
72 */
73 g_pDarwinLockGroup = lck_grp_alloc_init("IPRT", LCK_GRP_ATTR_NULL);
74 AssertReturn(g_pDarwinLockGroup, VERR_NO_MEMORY);
75
76 /*
77 * Initialize the preemption hacks.
78 */
79 int rc = rtThreadPreemptDarwinInit();
80 if (RT_SUCCESS(rc))
81 {
82 /*
83 * Try resolve kernel symbols we need but apple don't wish to give us.
84 */
85 RTDBGKRNLINFO hKrnlInfo;
86 rc = RTR0DbgKrnlInfoOpen(&hKrnlInfo, 0 /*fFlags*/);
87 if (RT_SUCCESS(rc))
88 {
89 RTR0DbgKrnlInfoQuerySymbol(hKrnlInfo, NULL, "ast_pending", (void **)&g_pfnR0DarwinAstPending);
90 printf("ast_pending=%p\n", (void *)(uintptr_t)g_pfnR0DarwinAstPending);
91 RTR0DbgKrnlInfoQuerySymbol(hKrnlInfo, NULL, "cpu_interrupt", (void **)&g_pfnR0DarwinCpuInterrupt);
92 printf("cpu_interrupt=%p\n", (void *)(uintptr_t)g_pfnR0DarwinCpuInterrupt);
93#ifdef DEBUG
94 RTR0DbgKrnlInfoQuerySymbol(hKrnlInfo, NULL, "vm_fault_external", (void **)&g_pfnR0DarwinVmFaultExternal);
95 printf("vm_fault_external=%p\n", (void *)(uintptr_t)g_pfnR0DarwinVmFaultExternal);
96#endif
97 RTR0DbgKrnlInfoRelease(hKrnlInfo);
98 }
99 if (RT_FAILURE(rc))
100 {
101 printf("rtR0InitNative: warning! failed to resolve special kernel symbols\n");
102 rc = VINF_SUCCESS;
103 }
104 }
105 if (RT_FAILURE(rc))
106 rtR0TermNative();
107
108 IPRT_DARWIN_RESTORE_EFL_AC();
109 return rc;
110}
111
112
113DECLHIDDEN(void) rtR0TermNative(void)
114{
115 IPRT_DARWIN_SAVE_EFL_AC();
116
117 /*
118 * Preemption hacks before the lock group.
119 */
120 rtThreadPreemptDarwinTerm();
121
122 /*
123 * Free the lock group.
124 */
125 if (g_pDarwinLockGroup)
126 {
127 lck_grp_free(g_pDarwinLockGroup);
128 g_pDarwinLockGroup = NULL;
129 }
130
131 IPRT_DARWIN_RESTORE_EFL_AC();
132}
133
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use