VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/os2/SUPLib-os2.cpp@ 4925

Last change on this file since 4925 was 4925, checked in by vboxsync, 17 years ago

Added a LogRel with additional driver open info. Return the VERR_VM_DRIVER_* stuff on Solaris, Darwin, FreeBSD and OS/2 as well.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.3 KB
Line 
1/* $Id: SUPLib-os2.cpp 4925 2007-09-20 12:07:28Z vboxsync $ */
2/** @file
3 * SUPLib - Support Library, OS/2 backend.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define INCL_BASE
23#define INCL_ERRORS
24#include <os2.h>
25#undef RT_MAX
26
27#include <VBox/types.h>
28#include <VBox/sup.h>
29#include <VBox/param.h>
30#include <VBox/err.h>
31#include <iprt/path.h>
32#include <iprt/assert.h>
33#include <iprt/err.h>
34#include "SUPLibInternal.h"
35#include "SUPDRVIOC.h"
36
37#include <errno.h>
38#include <unistd.h>
39#include <stdlib.h>
40
41
42/*******************************************************************************
43* Defined Constants And Macros *
44*******************************************************************************/
45/** OS/2 Device name. */
46#define DEVICE_NAME "/dev/vboxdrv$"
47
48
49
50/*******************************************************************************
51* Global Variables *
52*******************************************************************************/
53/** Handle to the open device. */
54static HFILE g_hDevice = (HFILE)-1;
55
56
57/*******************************************************************************
58* Internal Functions *
59*******************************************************************************/
60
61
62/**
63 * Initialize the OS specific part of the library.
64 * On Linux this involves:
65 * - loading the module.
66 * - open driver.
67 *
68 * @returns 0 on success.
69 * @returns current -1 on failure but this must be changed to proper error codes.
70 * @param cbReserve Ignored on OS/2.
71 */
72int suplibOsInit(size_t cbReserve)
73{
74 /*
75 * Check if already initialized.
76 */
77 if (g_hDevice != (HFILE)-1)
78 return 0;
79
80 /*
81 * Try open the device.
82 */
83 ULONG ulAction = 0;
84 HFILE hDevice = (HFILE)-1;
85 APIRET rc = DosOpen((PCSZ)DEVICE_NAME,
86 &hDevice,
87 &ulAction,
88 0,
89 FILE_NORMAL,
90 OPEN_ACTION_FAIL_IF_NEW | OPEN_ACTION_OPEN_IF_EXISTS,
91 OPEN_FLAGS_NOINHERIT | OPEN_SHARE_DENYNONE | OPEN_ACCESS_READWRITE,
92 NULL);
93 if (rc)
94 {
95 int vrc;
96 switch (rc)
97 {
98 case ERROR_FILE_NOT_FOUND:
99 case ERROR_PATH_NOT_FOUND: vrc = VERR_VM_DRIVER_NOT_INSTALLED; break;
100 default: vrc = VERR_VM_DRIVER_OPEN_ERROR; break;
101 }
102 LogRel(("Failed to open \"%s\", rc=%d, vrc=%Vrc\n", DEVICE_NAME, rc, vrc));
103 return vrc;
104 }
105 g_hDevice = hDevice;
106
107 NOREF(cbReserve);
108 return VINF_SUCCESS;
109}
110
111
112int suplibOsTerm(void)
113{
114 /*
115 * Check if we're initited at all.
116 */
117 if (g_hDevice != (HFILE)-1)
118 {
119 APIRET rc = DosClose(g_hDevice);
120 AssertMsg(rc == NO_ERROR, ("%d\n", rc)); NOREF(rc);
121 g_hDevice = (HFILE)-1;
122 }
123
124 return 0;
125}
126
127
128int suplibOsInstall(void)
129{
130 /** @remark OS/2: Not supported */
131 return VERR_NOT_SUPPORTED;
132}
133
134
135int suplibOsUninstall(void)
136{
137 /** @remark OS/2: Not supported */
138 return VERR_NOT_SUPPORTED;
139}
140
141
142int suplibOsIOCtl(uintptr_t uFunction, void *pvReq, size_t cbReq)
143{
144 AssertMsg(g_hDevice != (HFILE)-1, ("SUPLIB not initiated successfully!\n"));
145
146 ULONG cbReturned = sizeof(SUPREQHDR);
147 int rc = DosDevIOCtl(g_hDevice, SUP_CTL_CATEGORY, uFunction,
148 pvReq, cbReturned, &cbReturned,
149 NULL, 0, NULL);
150 if (RT_LIKELY(rc == NO_ERROR))
151 return VINF_SUCCESS;
152 return RTErrConvertFromOS2(rc);
153}
154
155
156int suplibOsIOCtlFast(uintptr_t uFunction)
157{
158 int32_t rcRet = VERR_INTERNAL_ERROR;
159 ULONG cbRet = sizeof(rcRet);
160 int rc = DosDevIOCtl(g_hDevice, SUP_CTL_CATEGORY_FAST, uFunction,
161 NULL, 0, NULL,
162 &rcRet, sizeof(rcRet), &cbRet);
163 if (RT_LIKELY(rc == NO_ERROR))
164 rc = rcRet;
165 else
166 rc = RTErrConvertFromOS2(rc);
167 return rc;
168}
169
170
171int suplibOsPageAlloc(size_t cPages, void **ppvPages)
172{
173 *ppvPages = NULL;
174 int rc = DosAllocMem(ppvPages, cPages << PAGE_SHIFT, PAG_READ | PAG_WRITE | PAG_EXECUTE | PAG_COMMIT | OBJ_ANY);
175 if (rc == ERROR_INVALID_PARAMETER)
176 rc = DosAllocMem(ppvPages, cPages << PAGE_SHIFT, PAG_READ | PAG_WRITE | PAG_EXECUTE | PAG_COMMIT | OBJ_ANY);
177 if (!rc)
178 rc = VINF_SUCCESS;
179 else
180 rc = RTErrConvertFromOS2(rc);
181 return rc;
182}
183
184
185int suplibOsPageFree(void *pvPages, size_t /* cPages */)
186{
187 if (pvPages)
188 {
189 int rc = DosFreeMem(pvPages);
190 Assert(!rc);
191 }
192 return VINF_SUCCESS;
193}
194
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