VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm@ 85561

Last change on this file since 85561 was 82968, checked in by vboxsync, 5 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 4.7 KB
Line 
1; $Id: RTR0Os2DHVMGlobalToProcess.asm 82968 2020-02-04 10:35:17Z vboxsync $
2;; @file
3; IPRT - DevHelp_VMGlobalToProcess, 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 <[email protected]>
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%define RT_INCL_16BIT_SEGMENTS
60%include "iprt/asmdefs.mac"
61%include "iprt/err.mac"
62
63
64;*******************************************************************************
65;* External Symbols *
66;*******************************************************************************
67extern KernThunkStackTo32
68extern KernThunkStackTo16
69extern NAME(g_fpfnDevHlp)
70
71
72;*******************************************************************************
73;* Defined Constants And Macros *
74;*******************************************************************************
75%define DevHlp_VMGlobalToProcess 05ah
76
77
78BEGINCODE
79
80;;
81; VMGlobalToProcess wrapper.
82;
83; @param fFlags [ebp + 08h] Flags
84; @param pvR0 [ebp + 0ch] Ring-0 memory.
85; @param cb [ebp + 10h] Size of memory object to map.
86; @param ppR3 [ebp + 14h] Where to store the address of the ring-3 mapping.
87;
88BEGINPROC_EXPORTED RTR0Os2DHVMGlobalToProcess
89 ; switch stack first.
90 call KernThunkStackTo16
91
92 ; normal prolog.
93 push ebp
94 mov ebp, esp
95 push dword [NAME(g_fpfnDevHlp)] ; ebp - 4
96 push ebx ; save ebx
97
98 ; setup the devhelp call
99 mov eax, [ebp + 08h] ; fFlags
100 mov ebx, [ebp + 0ch] ; pvR0
101 mov ecx, [ebp + 10h] ; cb
102 mov dl, DevHlp_VMGlobalToProcess
103
104 ; jump to the 16-bit code.
105 ;jmp far dword NAME(RTR0Os2DHQueryDOSVar_16) wrt CODE16
106 db 066h
107 db 0eah
108 dw NAME(RTR0Os2DHVMGlobalToProcess_16) wrt CODE16
109 dw CODE16
110BEGINCODE16
111GLOBALNAME RTR0Os2DHVMGlobalToProcess_16
112 call far [ss:ebp - 4]
113
114 ;jmp far dword NAME(RTR0Os2DHVMGlobalToProcess_32) wrt FLAT
115 db 066h
116 db 0eah
117 dd NAME(RTR0Os2DHVMGlobalToProcess_32) ;wrt FLAT
118 dw TEXT32 wrt FLAT
119BEGINCODE
120GLOBALNAME RTR0Os2DHVMGlobalToProcess_32
121 jc .done
122
123 ; save the result.
124 mov edx, [ebp + 14h] ; ppvR3
125 mov [edx], eax
126 xor eax, eax
127
128.done:
129 pop ebx
130 leave
131
132 ; switch stack back and return.
133 push eax
134 call KernThunkStackTo32
135 pop eax
136 ret
137ENDPROC RTR0Os2DHVMGlobalToProcess
138
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette