1 | /* $Id: initterm-r0drv-os2.cpp 82968 2020-02-04 10:35:17Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Initialization & Termination, Ring-0 Driver, OS/2.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Contributed by knut st. osmundsen.
|
---|
8 | *
|
---|
9 | * Copyright (C) 2007-2020 Oracle Corporation
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * The contents of this file may alternatively be used under the terms
|
---|
20 | * of the Common Development and Distribution License Version 1.0
|
---|
21 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
22 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
23 | * CDDL are applicable instead of those of the GPL.
|
---|
24 | *
|
---|
25 | * You may elect to license modified versions of this file under the
|
---|
26 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
27 | * --------------------------------------------------------------------
|
---|
28 | *
|
---|
29 | * This code is based on:
|
---|
30 | *
|
---|
31 | * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
|
---|
32 | *
|
---|
33 | * Permission is hereby granted, free of charge, to any person
|
---|
34 | * obtaining a copy of this software and associated documentation
|
---|
35 | * files (the "Software"), to deal in the Software without
|
---|
36 | * restriction, including without limitation the rights to use,
|
---|
37 | * copy, modify, merge, publish, distribute, sublicense, and/or sell
|
---|
38 | * copies of the Software, and to permit persons to whom the
|
---|
39 | * Software is furnished to do so, subject to the following
|
---|
40 | * conditions:
|
---|
41 | *
|
---|
42 | * The above copyright notice and this permission notice shall be
|
---|
43 | * included in all copies or substantial portions of the Software.
|
---|
44 | *
|
---|
45 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
---|
46 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
---|
47 | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
---|
48 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
---|
49 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
---|
50 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
---|
51 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
---|
52 | * OTHER DEALINGS IN THE SOFTWARE.
|
---|
53 | */
|
---|
54 |
|
---|
55 |
|
---|
56 | /*********************************************************************************************************************************
|
---|
57 | * Header Files *
|
---|
58 | *********************************************************************************************************************************/
|
---|
59 | #include "the-os2-kernel.h"
|
---|
60 |
|
---|
61 | #include "internal/initterm.h"
|
---|
62 | #include <iprt/errcore.h>
|
---|
63 | #include <iprt/assert.h>
|
---|
64 |
|
---|
65 |
|
---|
66 | /*********************************************************************************************************************************
|
---|
67 | * Global Variables *
|
---|
68 | *********************************************************************************************************************************/
|
---|
69 | /** Pointer to the 1st DOS variable table. */
|
---|
70 | PCDOSTABLE g_pDosTable = NULL;
|
---|
71 | /** Pointer to the 2nd DOS variable table. */
|
---|
72 | PCDOSTABLE2 g_pDosTable2 = NULL;
|
---|
73 | /** Pointer to the global info segment. */
|
---|
74 | PGINFOSEG g_pGIS = NULL;
|
---|
75 | /** Far 16:16 pointer to the local info segment.
|
---|
76 | * IIRC this must be converted to a flat pointer when accessed to work correctly on SMP systems. */
|
---|
77 | RTFAR16 g_fpLIS = {0, 0};
|
---|
78 |
|
---|
79 |
|
---|
80 | DECLHIDDEN(int) rtR0InitNative(void)
|
---|
81 | {
|
---|
82 | /*
|
---|
83 | * Get the DOS Tables.
|
---|
84 | */
|
---|
85 | RTFAR16 fp;
|
---|
86 | int rc = RTR0Os2DHQueryDOSVar(DHGETDOSV_DOSTABLES, 0, &fp);
|
---|
87 | AssertMsgReturn(!rc, ("rc=%d\n", rc), VERR_INTERNAL_ERROR);
|
---|
88 | g_pDosTable = (PCDOSTABLE)RTR0Os2Virt2Flat(fp);
|
---|
89 | AssertReturn(g_pDosTable, VERR_INTERNAL_ERROR);
|
---|
90 | g_pDosTable2 = (PCDOSTABLE2)((const uint8_t *)g_pDosTable + g_pDosTable->cul * sizeof(ULONG) + 1);
|
---|
91 |
|
---|
92 | /*
|
---|
93 | * Get the addresses of the two info segments.
|
---|
94 | */
|
---|
95 | rc = RTR0Os2DHQueryDOSVar(DHGETDOSV_SYSINFOSEG, 0, &fp);
|
---|
96 | AssertMsgReturn(!rc, ("rc=%d\n", rc), VERR_INTERNAL_ERROR);
|
---|
97 | g_pGIS = (PGINFOSEG)RTR0Os2Virt2Flat(fp);
|
---|
98 | rc = RTR0Os2DHQueryDOSVar(DHGETDOSV_LOCINFOSEG, 0, &fp);
|
---|
99 | AssertMsgReturn(!rc, ("rc=%d\n", rc), VERR_INTERNAL_ERROR);
|
---|
100 | g_fpLIS = fp;
|
---|
101 |
|
---|
102 | return VINF_SUCCESS;
|
---|
103 | }
|
---|
104 |
|
---|
105 |
|
---|
106 | DECLHIDDEN(void) rtR0TermNative(void)
|
---|
107 | {
|
---|
108 | /* nothing to do here yet. */
|
---|
109 | }
|
---|
110 |
|
---|
111 |
|
---|
112 | /**
|
---|
113 | * Converts a 16:16 pointer to a flat pointer.
|
---|
114 | *
|
---|
115 | * @returns Flat pointer (NULL if fp is NULL).
|
---|
116 | * @param fp Far pointer to convert.
|
---|
117 | */
|
---|
118 | RTR0DECL(void *) RTR0Os2Virt2Flat(RTFAR16 fp)
|
---|
119 | {
|
---|
120 | return (void *)KernSelToFlat(((uint32_t)fp.sel << 16) | fp.off);
|
---|
121 | }
|
---|
122 |
|
---|