VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp@ 19404

Last change on this file since 19404 was 16446, checked in by vboxsync, 16 years ago

spaces, doxy

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.3 KB
Line 
1/* $Id: SUPLib-linux.cpp 16446 2009-02-01 21:19:17Z vboxsync $ */
2/** @file
3 * VirtualBox Support Library - GNU/Linux specific parts.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31/*******************************************************************************
32* Header Files *
33*******************************************************************************/
34#define LOG_GROUP LOG_GROUP_SUP
35#ifdef IN_SUP_HARDENED_R3
36# undef DEBUG /* Warning: disables RT_STRICT */
37# define LOG_DISABLED
38 /** @todo RTLOGREL_DISABLED */
39# include <iprt/log.h>
40# undef LogRelIt
41# define LogRelIt(pvInst, fFlags, iGroup, fmtargs) do { } while (0)
42#endif
43
44#include <sys/fcntl.h>
45#include <sys/ioctl.h>
46#include <sys/mman.h>
47#include <errno.h>
48#include <unistd.h>
49#include <stdlib.h>
50#include <malloc.h>
51
52#include <VBox/log.h>
53#include <VBox/sup.h>
54#include <iprt/path.h>
55#include <iprt/assert.h>
56#include <VBox/types.h>
57#include <iprt/string.h>
58#include <VBox/err.h>
59#include <VBox/param.h>
60#include "../SUPLibInternal.h"
61#include "../SUPDrvIOC.h"
62
63
64/*******************************************************************************
65* Defined Constants And Macros *
66*******************************************************************************/
67/** Unix Device name. */
68#define DEVICE_NAME "/dev/vboxdrv"
69
70/* define MADV_DONTFORK if it's missing from the system headers. */
71#ifndef MADV_DONTFORK
72# define MADV_DONTFORK 10
73#endif
74
75
76
77int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited)
78{
79 /*
80 * Nothing to do if pre-inited.
81 */
82 if (fPreInited)
83 return VINF_SUCCESS;
84 Assert(pThis->hDevice == NIL_RTFILE);
85
86 /*
87 * Check if madvise works.
88 */
89 void *pv = mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
90 if (pv == MAP_FAILED)
91 return VERR_NO_MEMORY;
92 pThis->fSysMadviseWorks = (0 == madvise(pv, PAGE_SIZE, MADV_DONTFORK));
93 munmap(pv, PAGE_SIZE);
94
95 /*
96 * Try open the device.
97 */
98 int hDevice = open(DEVICE_NAME, O_RDWR, 0);
99 if (hDevice < 0)
100 {
101 /*
102 * Try load the device.
103 */
104 hDevice = open(DEVICE_NAME, O_RDWR, 0);
105 if (hDevice < 0)
106 {
107 int rc;
108 switch (errno)
109 {
110 case ENXIO: /* see man 2 open, ENODEV is actually a kernel bug */
111 case ENODEV: rc = VERR_VM_DRIVER_LOAD_ERROR; break;
112 case EPERM:
113 case EACCES: rc = VERR_VM_DRIVER_NOT_ACCESSIBLE; break;
114 case ENOENT: rc = VERR_VM_DRIVER_NOT_INSTALLED; break;
115 default: rc = VERR_VM_DRIVER_OPEN_ERROR; break;
116 }
117 LogRel(("Failed to open \"%s\", errno=%d, rc=%Rrc\n", DEVICE_NAME, errno, rc));
118 return rc;
119 }
120 }
121
122 /*
123 * Mark the file handle close on exec.
124 */
125 if (fcntl(hDevice, F_SETFD, FD_CLOEXEC) == -1)
126 {
127 close(hDevice);
128#ifdef IN_SUP_HARDENED_R3
129 return VERR_INTERNAL_ERROR;
130#else
131 return RTErrConvertFromErrno(errno);
132#endif
133 }
134
135 /*
136 * We're done.
137 */
138 pThis->hDevice = hDevice;
139 return VINF_SUCCESS;
140}
141
142
143#ifndef IN_SUP_HARDENED_R3
144
145int suplibOsTerm(PSUPLIBDATA pThis)
146{
147 /*
148 * Close the device if it's actually open.
149 */
150 if (pThis->hDevice != NIL_RTFILE)
151 {
152 if (close(pThis->hDevice))
153 AssertFailed();
154 pThis->hDevice = NIL_RTFILE;
155 }
156
157 return 0;
158}
159
160
161int suplibOsInstall(void)
162{
163 // nothing to do on Linux
164 return VERR_NOT_IMPLEMENTED;
165}
166
167
168int suplibOsUninstall(void)
169{
170 // nothing to do on Linux
171 return VERR_NOT_IMPLEMENTED;
172}
173
174
175int suplibOsIOCtl(PSUPLIBDATA pThis, uintptr_t uFunction, void *pvReq, size_t cbReq)
176{
177 AssertMsg(pThis->hDevice != NIL_RTFILE, ("SUPLIB not initiated successfully!\n"));
178
179 /*
180 * Issue device iocontrol.
181 */
182 if (RT_LIKELY(ioctl(pThis->hDevice, uFunction, pvReq) >= 0))
183 return VINF_SUCCESS;
184
185 /* This is the reverse operation of the one found in SUPDrv-linux.c */
186 switch (errno)
187 {
188 case EACCES: return VERR_GENERAL_FAILURE;
189 case EINVAL: return VERR_INVALID_PARAMETER;
190 case EILSEQ: return VERR_INVALID_MAGIC;
191 case ENXIO: return VERR_INVALID_HANDLE;
192 case EFAULT: return VERR_INVALID_POINTER;
193 case ENOLCK: return VERR_LOCK_FAILED;
194 case EEXIST: return VERR_ALREADY_LOADED;
195 case EPERM: return VERR_PERMISSION_DENIED;
196 case ENOSYS: return VERR_VERSION_MISMATCH;
197 case 1000: return VERR_IDT_FAILED;
198 }
199
200 return RTErrConvertFromErrno(errno);
201}
202
203
204int suplibOsIOCtlFast(PSUPLIBDATA pThis, uintptr_t uFunction, uintptr_t idCpu)
205{
206 int rc = ioctl(pThis->hDevice, uFunction, idCpu);
207 if (rc == -1)
208 rc = -errno;
209 return rc;
210}
211
212
213int suplibOsPageAlloc(PSUPLIBDATA pThis, size_t cPages, void **ppvPages)
214{
215 size_t cbMmap = (pThis->fSysMadviseWorks ? cPages : cPages + 2) << PAGE_SHIFT;
216 char *pvPages = (char *)mmap(NULL, cbMmap, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
217 if (pvPages == MAP_FAILED)
218 return VERR_NO_MEMORY;
219
220 if (pThis->fSysMadviseWorks)
221 {
222 /*
223 * It is not fatal if we fail here but a forked child (e.g. the ALSA sound server)
224 * could crash. Linux < 2.6.16 does not implement madvise(MADV_DONTFORK) but the
225 * kernel seems to split bigger VMAs and that is all that we want -- later we set the
226 * VM_DONTCOPY attribute in supdrvOSLockMemOne().
227 */
228 if (madvise (pvPages, cbMmap, MADV_DONTFORK))
229 LogRel(("SUPLib: madvise %p-%p failed\n", pvPages, cbMmap));
230 *ppvPages = pvPages;
231 }
232 else
233 {
234 /*
235 * madvise(MADV_DONTFORK) is not available (most probably Linux 2.4). Enclose any
236 * mmapped region by two unmapped pages to guarantee that there is exactly one VM
237 * area struct of the very same size as the mmap area.
238 */
239 mprotect(pvPages, PAGE_SIZE, PROT_NONE);
240 mprotect(pvPages + cbMmap - PAGE_SIZE, PAGE_SIZE, PROT_NONE);
241 *ppvPages = pvPages + PAGE_SIZE;
242 }
243 memset(*ppvPages, 0, cPages << PAGE_SHIFT);
244 return VINF_SUCCESS;
245}
246
247
248int suplibOsPageFree(PSUPLIBDATA pThis, void *pvPages, size_t cPages)
249{
250 munmap(pvPages, cPages << PAGE_SHIFT);
251 return VINF_SUCCESS;
252}
253
254#endif /* !IN_SUP_HARDENED_R3 */
255
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