SUPDrv-linux.c revision c8ab24804f6531eb0b353979d918a3d7aba182fa
/** @file
* The VirtualBox Support Driver - Linux hosts.
*/
/*
* Copyright (C) 2006-2007 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
* Some lines of code to disable the local APIC on x86_64 machines taken
* from a Mandriva patch by Gwenole Beauchesne <gbeauchesne@mandriva.com>.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "SUPDRV.h"
#include "the-linux-kernel.h"
#include "version-generated.h"
#include <iprt/spinlock.h>
#include <iprt/semaphore.h>
#include <iprt/initterm.h>
#ifdef CONFIG_DEVFS_FS
# include <linux/devfs_fs_kernel.h>
#endif
#ifdef CONFIG_VBOXDRV_AS_MISC
# include <linux/miscdevice.h>
#endif
#ifdef CONFIG_X86_LOCAL_APIC
# endif
#endif
# define global_flush_tlb __flush_tlb_global
#endif
/* devfs defines */
#if defined(CONFIG_DEVFS_FS) && !defined(CONFIG_VBOXDRV_AS_MISC)
# define VBOX_REGISTER_DEVFS() \
({ \
DEVICE_NAME) == 0) \
rc; \
})
# define VBOX_UNREGISTER_DEVFS(handle) \
# else /* < 2.6.0 */
# define VBOX_REGISTER_DEVFS() \
DEVICE_MAJOR, 0, \
# define VBOX_UNREGISTER_DEVFS(handle) \
# endif /* < 2.6.0 */
#endif /* CONFIG_DEV_FS && !CONFIG_VBOXDEV_AS_MISC */
#ifndef CONFIG_VBOXDRV_AS_MISC
# define VBOX_REGISTER_DEVICE(a,b,c) devfs_register_chrdev(a,b,c)
# define VBOX_UNREGISTER_DEVICE(a,b) devfs_unregister_chrdev(a,b)
# else
# define VBOX_REGISTER_DEVICE(a,b,c) register_chrdev(a,b,c)
# define VBOX_UNREGISTER_DEVICE(a,b) unregister_chrdev(a,b)
# endif
#endif /* !CONFIG_VBOXDRV_AS_MISC */
#ifdef CONFIG_X86_HIGH_ENTRY
# error "CONFIG_X86_HIGH_ENTRY is not supported by VBoxDrv at this time."
#endif
/*
* This sucks soooo badly on x86! Why don't they export __PAGE_KERNEL_EXEC so PAGE_KERNEL_EXEC would be usable?
*/
#if defined(RT_ARCH_AMD64)
# define MY_PAGE_KERNEL_EXEC PAGE_KERNEL_EXEC
# define MY_PAGE_KERNEL_EXEC __pgprot(cpu_has_pge ? _PAGE_KERNEL_EXEC | _PAGE_GLOBAL : _PAGE_KERNEL_EXEC)
#else
# define MY_PAGE_KERNEL_EXEC PAGE_KERNEL
#endif
/*
* The redhat hack section.
* - The current hacks are for 2.4.21-15.EL only.
*/
#ifndef NO_REDHAT_HACKS
/* accounting. */
# ifdef VM_ACCOUNT
# endif
# endif
/* backported remap_page_range. */
# ifdef tlb_vma /* probably not good enough... */
# define HAVE_26_STYLE_REMAP_PAGE_RANGE 1
# endif
# endif
#endif /* !NO_REDHAT_HACKS */
#ifndef MY_DO_MUNMAP
# define MY_DO_MUNMAP(a,b,c) do_munmap(a, b, c)
#endif
/** @def ONE_MSEC_IN_JIFFIES
* The number of jiffies that make up 1 millisecond. Must be at least 1! */
#if HZ <= 1000
# define ONE_MSEC_IN_JIFFIES 1
#else
# error "HZ is not a multiple of 1000, the GIP stuff won't work right!"
#endif
/** @def TICK_NSEC
* The time between ticks in nsec */
#ifndef TICK_NSEC
#endif
#ifdef CONFIG_X86_LOCAL_APIC
/* If an NMI occurs while we are inside the world switcher the machine will
* crash. The Linux NMI watchdog generates periodic NMIs increasing a counter
* which is compared with another counter increased in the timer interrupt
* handler. We disable the NMI watchdog.
*
* - Linux >= 2.6.21: The watchdog is disabled by default on i386 and x86_64.
* - Linux < 2.6.21: The watchdog is normally enabled by default on x86_64
* and disabled on i386.
*/
# if defined(RT_ARCH_AMD64)
# define DO_DISABLE_NMI 1
# endif
# endif
extern int nmi_active;
# define nmi_atomic_read(P) *(P)
# define nmi_atomic_set(P, V) *(P) = (V)
# define nmi_atomic_dec(P) nmi_atomic_set(P, 0)
# else
# define nmi_atomic_read(P) atomic_read(P)
# define nmi_atomic_set(P, V) atomic_set(P, V)
# define nmi_atomic_dec(P) atomic_dec(P)
# endif
# ifndef X86_FEATURE_ARCH_PERFMON
# endif
# ifndef MSR_ARCH_PERFMON_EVENTSEL0
# define MSR_ARCH_PERFMON_EVENTSEL0 0x186
# endif
# define ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT (1 << 0)
# endif
#endif /* CONFIG_X86_LOCAL_APIC */
#define str(s) #s
/*******************************************************************************
* Defined Constants And Macros *
*******************************************************************************/
/**
* Device extention & session data association structure.
*/
static SUPDRVDEVEXT g_DevExt;
/** Timer structure for the GIP update. */
static VBOXKTIMER g_GipTimer;
/** Pointer to the page structure for the GIP. */
struct page *g_pGipPage;
/** Registered devfs device handle. */
#if defined(CONFIG_DEVFS_FS) && !defined(CONFIG_VBOXDRV_AS_MISC)
static void *g_hDevFsVBoxDrv = NULL;
# else
# endif
#endif
#ifndef CONFIG_VBOXDRV_AS_MISC
/** Module major number */
#define DEVICE_MAJOR 234
/** Saved major device number */
static int g_iModuleMajor;
#endif /* !CONFIG_VBOXDRV_AS_MISC */
/** Module parameter.
* Not prefixed because the name is used by macros and the end of this file. */
static int force_async_tsc = 0;
/** The module name. */
#define DEVICE_NAME "vboxdrv"
#ifdef RT_ARCH_AMD64
/**
* Memory for the executable memory heap (in IPRT).
*/
__asm__(".section execmemory, \"awx\", @progbits\n\t"
".align 32\n\t"
".globl g_abExecMemory\n"
"g_abExecMemory:\n\t"
".zero 1572864\n\t"
".type g_abExecMemory, @object\n\t"
".size g_abExecMemory, 1572864\n\t"
".text\n\t");
#endif
/*******************************************************************************
* Internal Functions *
*******************************************************************************/
#ifdef VBOX_HRTIMER
#else
typedef void (*PFNVBOXKTIMER)(unsigned long);
#endif
static int VBoxDrvLinuxInit(void);
static void VBoxDrvLinuxUnload(void);
#ifdef HAVE_UNLOCKED_IOCTL
#else
static int VBoxDrvLinuxIOCtl(struct inode *pInode, struct file *pFilp, unsigned int uCmd, unsigned long ulArg);
#endif
#ifdef VBOX_HRTIMER
#else
static void VBoxDrvLinuxGipTimer(unsigned long ulUser);
#endif
#ifdef CONFIG_SMP
# ifdef VBOX_HRTIMER
# else
static void VBoxDrvLinuxGipTimerPerCpu(unsigned long ulUser);
# endif
static void VBoxDrvLinuxGipResumePerCpu(void *pvUser);
#endif
static int VBoxDrvLinuxErr2LinuxErr(int);
/** The file_operations structure. */
static struct file_operations gFileOpsVBoxDrv =
{
#ifdef HAVE_UNLOCKED_IOCTL
#else
#endif
};
#ifdef CONFIG_VBOXDRV_AS_MISC
/** The miscdevice structure. */
static struct miscdevice gMiscDevice =
{
# endif
};
#endif
static inline void vbox_ktimer_init(PVBOXKTIMER pTimer, PFNVBOXKTIMER pfnFunction, unsigned long ulData)
{
#ifdef VBOX_HRTIMER
#else
#endif
}
{
#ifdef VBOX_HRTIMER
#else
#endif
}
{
#ifdef VBOX_HRTIMER
#else
if (timer_pending(pTimer))
#endif
}
#ifdef CONFIG_X86_LOCAL_APIC
# ifdef DO_DISABLE_NMI
/** Stop AMD NMI watchdog (x86_64 only). */
static int stop_k7_watchdog(void)
{
wrmsr(MSR_K7_EVNTSEL0, 0, 0);
return 1;
}
/** Stop Intel P4 NMI watchdog (x86_64 only). */
static int stop_p4_watchdog(void)
{
wrmsr(MSR_P4_IQ_CCCR0, 0, 0);
wrmsr(MSR_P4_IQ_CCCR1, 0, 0);
wrmsr(MSR_P4_CRU_ESCR0, 0, 0);
return 1;
}
/** The new method of detecting the event counter */
static int stop_intel_arch_watchdog(void)
{
unsigned ebx;
if (!(ebx & ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT))
wrmsr(MSR_ARCH_PERFMON_EVENTSEL0, 0, 0);
return 1;
}
/** Stop NMI watchdog. */
static void vbox_stop_apic_nmi_watchdog(void *unused)
{
int stopped = 0;
/* only support LOCAL and IO APICs for now */
if ((nmi_watchdog != NMI_LOCAL_APIC) &&
(nmi_watchdog != NMI_IO_APIC))
return;
if (nmi_watchdog == NMI_LOCAL_APIC)
{
switch (boot_cpu_data.x86_vendor)
{
case X86_VENDOR_AMD:
return;
stopped = stop_k7_watchdog();
break;
case X86_VENDOR_INTEL:
{
break;
}
stopped = stop_p4_watchdog();
break;
default:
return;
}
}
if (stopped)
}
/** Disable LAPIC NMI watchdog. */
static void disable_lapic_nmi_watchdog(void)
{
if (nmi_atomic_read(&nmi_active) <= 0)
return;
/* tell do_nmi() and others that we're not active any more */
}
/** Shutdown NMI. */
static void nmi_cpu_shutdown(void * dummy)
{
{
}
}
static void nmi_shutdown(void)
{
}
# endif /* DO_DISABLE_NMI */
#endif /* CONFIG_X86_LOCAL_APIC */
/**
* Initialize module.
*
* @returns appropriate status code.
*/
static int __init VBoxDrvLinuxInit(void)
{
int rc;
bool fAsync;
dprintf(("VBoxDrv::ModuleInit\n"));
#ifdef CONFIG_X86_LOCAL_APIC
/*
* If an NMI occurs while we are inside the world switcher the macine will crash.
* The Linux NMI watchdog generates periodic NMIs increasing a counter which is
* compared with another counter increased in the timer interrupt handler. Therefore
* we don't allow to setup an NMI watchdog.
*/
/*
* First test: NMI actiated? Works only works with Linux 2.6 -- 2.4 does not export
* the nmi_watchdog variable.
*/
# ifdef DO_DISABLE_NMI
if (nmi_atomic_read(&nmi_active) > 0)
{
switch (nmi_watchdog)
{
case NMI_LOCAL_APIC:
break;
case NMI_NONE:
break;
}
if (nmi_atomic_read(&nmi_active) == 0)
{
nmi_shutdown();
}
else
}
# endif /* DO_DISABLE_NMI */
/*
* Permanent IO_APIC mode active? No way to handle this!
*/
if (nmi_watchdog == NMI_IO_APIC)
{
": NMI watchdog in IO_APIC mode active -- refused to load the kernel module!\n"
": Please disable the NMI watchdog by specifying 'nmi_watchdog=0' at kernel\n"
": command line.\n");
return -EINVAL;
}
/*
*/
/*
* Now fall through and see if it actually was enabled before. If so, fail
* as we cannot deactivate it cleanly from here.
*/
# else /* < 2.6.19 */
/*
* Older 2.6 kernels: nmi_watchdog is not initalized by default
*/
if (nmi_watchdog != NMI_NONE)
goto nmi_activated;
# endif
# endif /* >= 2.6.0 && !defined(VBOX_REDHAT_KABI) */
/*
* Second test: Interrupt generated by performance counter not masked and can
* generate an NMI. Works also with Linux 2.4.
*/
{
ver = GET_APIC_VERSION(v);
/* 82489DXs do not report # of LVT entries. */
if (maxlvt >= 4)
{
/* Read status of performance counter IRQ vector */
v = apic_read(APIC_LVTPC);
/* performance counter generates NMI and is not masked? */
{
": NMI watchdog either active or at least initialized. Please disable the NMI\n"
": watchdog by specifying 'nmi_watchdog=0' at kernel command line.\n");
return -EINVAL;
# else /* < 2.6.19 */
# endif
": NMI watchdog active -- refused to load the kernel module! Please disable\n"
": the NMI watchdog by specifying 'nmi_watchdog=0' at kernel command line.\n");
return -EINVAL;
# endif /* >= 2.6.19 */
}
}
}
# endif /* >= 2.6.19 */
#endif /* CONFIG_X86_LOCAL_APIC */
/*
* Check for synchronous/asynchronous TSC mode.
*/
/* no 64-bit arithmetics here, we assume that the TSC difference between the cores is < 2^32 */
if (fAsync)
force_async_tsc = 1;
#ifdef CONFIG_VBOXDRV_AS_MISC
if (rc)
{
return rc;
}
#else /* !CONFIG_VBOXDRV_AS_MISC */
/*
* Register character device.
*/
if (rc < 0)
{
return rc;
}
/*
* Save returned module major number
*/
if (DEVICE_MAJOR != 0)
else
g_iModuleMajor = rc;
rc = 0;
#ifdef CONFIG_DEVFS_FS
/*
* Register a device entry
*/
if (g_hDevFsVBoxDrv == NULL)
{
dprintf(("devfs_register failed!\n"));
}
#endif
#endif /* !CONFIG_VBOXDRV_AS_MISC */
if (!rc)
{
/*
* Initialize the runtime.
* On AMD64 we'll have to donate the high rwx memory block to the exec allocator.
*/
if (RT_SUCCESS(rc))
{
#ifdef RT_ARCH_AMD64
#endif
/*
* Initialize the device extension.
*/
if (RT_SUCCESS(rc))
if (!rc)
{
/*
* Create the GIP page.
*/
if (!rc)
{
#ifdef VBOX_HRTIMER
"'high-res'"
#else
"'normal'"
#endif
".\n",
return rc;
}
}
else
RTR0Term();
}
else
/*
* Failed, cleanup and return the error code.
*/
#if defined(CONFIG_DEVFS_FS) && !defined(CONFIG_VBOXDRV_AS_MISC)
#endif
}
#ifdef CONFIG_VBOXDRV_AS_MISC
#else
#endif
return rc;
}
/**
* Unload the module.
*/
static void __exit VBoxDrvLinuxUnload(void)
{
int rc;
dprintf(("VBoxDrvLinuxUnload\n"));
/*
* I Don't think it's possible to unload a driver which processes have
* opened, at least we'll blindly assume that here.
*/
#ifdef CONFIG_VBOXDRV_AS_MISC
if (rc < 0)
{
}
#else /* !CONFIG_VBOXDRV_AS_MISC */
# ifdef CONFIG_DEVFS_FS
/*
* Unregister a device entry
*/
# endif /* devfs */
#endif /* !CONFIG_VBOXDRV_AS_MISC */
/*
* Destroy GIP, delete the device extension and terminate IPRT.
*/
RTR0Term();
}
/**
*
* @param pInode Pointer to inode info structure.
* @param pFilp Associated file pointer.
*/
{
int rc;
Log(("VBoxDrvLinuxCreate: pFilp=%p pid=%d/%d %s\n", pFilp, RTProcSelf(), current->pid, current->comm));
/*
* Call common code for the rest.
*/
if (!rc)
{
}
Log(("VBoxDrvLinuxCreate: g_DevExt=%p pSession=%p rc=%d/%d (pid=%d/%d %s)\n",
return VBoxDrvLinuxErr2LinuxErr(rc);
}
/**
* Close device.
*
* @param pInode Pointer to inode info structure.
* @param pFilp Associated file pointer.
*/
{
Log(("VBoxDrvLinuxClose: pFilp=%p pSession=%p pid=%d/%d %s\n",
return 0;
}
/**
* Device I/O Control entry point.
*
* @param pFilp Associated file pointer.
* @param uCmd The function specified to ioctl().
* @param ulArg The argument specified to ioctl().
*/
#ifdef HAVE_UNLOCKED_IOCTL
#else
static int VBoxDrvLinuxIOCtl(struct inode *pInode, struct file *pFilp, unsigned int uCmd, unsigned long ulArg)
#endif
{
/*
* Deal with the two high-speed IOCtl that takes it's arguments from
* the session and iCmd, and only returns a VBox status code.
*/
#ifdef HAVE_UNLOCKED_IOCTL
|| uCmd == SUP_IOCTL_FAST_DO_NOP))
#else /* !HAVE_UNLOCKED_IOCTL */
int rc;
|| uCmd == SUP_IOCTL_FAST_DO_NOP))
else
lock_kernel();
return rc;
#endif /* !HAVE_UNLOCKED_IOCTL */
}
/**
* Device I/O Control entry point.
*
* @param pFilp Associated file pointer.
* @param uCmd The function specified to ioctl().
* @param ulArg The argument specified to ioctl().
*/
{
int rc;
Log6(("VBoxDrvLinuxIOCtl: pFilp=%p uCmd=%#x ulArg=%p pid=%d/%d\n", pFilp, uCmd, (void *)ulArg, RTProcSelf(), current->pid));
/*
* Read the header.
*/
{
return -EFAULT;
}
{
Log(("VBoxDrvLinuxIOCtl: bad header magic %#x; uCmd=%#x\n", Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK, uCmd));
return -EINVAL;
}
/*
* Buffer the request.
*/
{
return -E2BIG;
}
{
Log(("VBoxDrvLinuxIOCtl: bad ioctl cbBuf=%#x _IOC_SIZE=%#x; uCmd=%#x.\n", cbBuf, _IOC_SIZE(uCmd), uCmd));
return -EINVAL;
}
if (RT_UNLIKELY(!pHdr))
{
OSDBGPRINT(("VBoxDrvLinuxIOCtl: failed to allocate buffer of %d bytes for uCmd=%#x.\n", cbBuf, uCmd));
return -ENOMEM;
}
{
return -EFAULT;
}
/*
* Process the IOCtl.
*/
/*
* Copy ioctl data and output buffer back to user space.
*/
{
{
}
{
/* this is really bad! */
}
}
else
{
Log(("VBoxDrvLinuxIOCtl: pFilp=%p uCmd=%#x ulArg=%p failed, rc=%d\n", pFilp, uCmd, (void *)ulArg, rc));
}
return rc;
}
/**
* Initializes any OS specific object creator fields.
*/
{
}
/**
* Checks if the session can access the object.
*
* @returns true if a decision has been made.
* @returns false if the default access policy should be applied.
*
* @param pObj The object in question.
* @param pSession The session wanting to access the object.
* @param pszObjName The object name, can be NULL.
* @param prc Where to store the result when returning true.
*/
bool VBOXCALL supdrvOSObjCanAccess(PSUPDRVOBJ pObj, PSUPDRVSESSION pSession, const char *pszObjName, int *prc)
{
return false;
}
/**
* Initializes the GIP.
*
* @returns negative errno.
* @param pDevExt Instance data. GIP stuff may be updated.
*/
{
#ifdef CONFIG_SMP
unsigned i;
#endif
LogFlow(("VBoxDrvLinuxInitGip:\n"));
/*
* Allocate the page.
*/
if (!pPage)
{
Log(("VBoxDrvLinuxInitGip: failed to allocate the GIP page\n"));
return -ENOMEM;
}
/*
* Lock the page.
*/
g_pGipPage = pPage;
/*
* Call common initialization routine.
*/
Log(("VBoxDrvInitGIP: TICK_NSEC=%ld HZ=%d jiffies=%ld now=%lld\n",
/*
* Initialize the timer.
*/
#ifdef CONFIG_SMP
{
}
#endif
return 0;
}
/**
* Terminates the GIP.
*
* @returns negative errno.
* @param pDevExt Instance data. GIP stuff may be updated.
*/
{
#ifdef CONFIG_SMP
unsigned i;
#endif
LogFlow(("VBoxDrvLinuxTermGip:\n"));
/*
* Delete the timer if it's pending.
*/
#ifdef CONFIG_SMP
#endif
/*
* Uninitialize the content.
*/
if (pGip)
/*
* Free the page.
*/
pPage = g_pGipPage;
g_pGipPage = NULL;
if (pPage)
{
__free_pages(pPage, 0);
}
return 0;
}
/**
* Timer callback function.
*
* In ASYNC TSC mode this is called on the primary CPU, and we're
* assuming that the CPU remains online.
*
* @param ulUser The device extension pointer.
*/
#ifdef VBOX_HRTIMER
#else
static void VBoxDrvLinuxGipTimer(unsigned long ulUser)
#endif
{
unsigned long ulNow;
unsigned long ulDiff;
unsigned long SavedFlags;
#ifdef VBOX_HRTIMER
#endif
#ifdef VBOX_HRTIMER
#else
#endif
#ifdef CONFIG_SMP
{
}
else
#endif /* CONFIG_SMP */
{
}
{
#ifdef VBOX_HRTIMER
#else
#endif
}
#ifdef VBOX_HRTIMER
#endif
}
#ifdef CONFIG_SMP
/**
* Timer callback function for the other CPUs.
*
* @param iTimerCPU The APIC ID of this timer.
*/
#ifdef VBOX_HRTIMER
#else
static void VBoxDrvLinuxGipTimerPerCpu(unsigned long iTimerCPU)
#endif
{
unsigned long SavedFlags;
unsigned long ulNow;
# ifdef VBOX_HRTIMER
unsigned long iTimerCPU;
# endif
iCPU = ASMGetApicId();
# ifdef VBOX_HRTIMER
# endif
{
{
{
# ifdef VBOX_HRTIMER
# else
# endif
}
}
else
printk("vboxdrv: error: GIP CPU update timer executing on the wrong CPU: apicid=%d != timer-apicid=%ld (cpuid=%d !=? timer-cpuid=%d)\n",
}
else
printk("vboxdrv: error: APIC ID is bogus (GIP CPU update): apicid=%d max=%lu cpuid=%d\n",
# ifdef VBOX_HRTIMER
# endif
}
#endif /* CONFIG_SMP */
/**
* Maps the GIP into user space.
*
* @returns negative errno.
* @param pDevExt Instance data.
*/
{
int rc = 0;
unsigned long ulAddr;
/*
* Allocate user space mapping and put the physical pages into it.
*/
{
#else
int rc2 = 0;
if (vma)
#else
#endif
else
{
}
#endif
if (rc2)
{
}
}
else
{
}
/*
* Success?
*/
if (!rc)
{
return 0;
}
/*
* Failure, cleanup and be gone.
*/
{
}
return rc;
}
/**
* Maps the GIP into user space.
*
* @returns negative errno.
* @param pDevExt Instance data.
*/
{
{
}
LogFlow(("supdrvOSGipUnmap: returns 0\n"));
return 0;
}
/**
* Resumes the GIP updating.
*
* @param pDevExt Instance data.
*/
{
LogFlow(("supdrvOSGipResume:\n"));
#ifdef CONFIG_SMP
{
#endif
#ifdef CONFIG_SMP
}
else
{
}
#endif
}
#ifdef CONFIG_SMP
/**
* Callback for resuming GIP updating on the other CPUs.
*
* This is only used when the GIP is in async tsc mode.
*
* @param pvUser Pointer to the device instance.
*/
static void VBoxDrvLinuxGipResumePerCpu(void *pvUser)
{
{
printk("vboxdrv: error: apicid=%d max=%lu cpuid=%d\n",
return;
}
}
#endif /* CONFIG_SMP */
/**
* Suspends the GIP updating.
*
* @param pDevExt Instance data.
*/
{
#ifdef CONFIG_SMP
unsigned i;
#endif
LogFlow(("supdrvOSGipSuspend:\n"));
#ifdef CONFIG_SMP
#endif
}
/**
* Get the current CPU count.
* @returns Number of cpus.
*/
unsigned VBOXCALL supdrvOSGetCPUCount(void)
{
#ifdef CONFIG_SMP
# if defined(num_present_cpus) && !defined(VBOX_REDHAT_KABI)
return num_present_cpus();
# elif defined(num_possible_cpus)
return num_possible_cpus();
# else
return smp_num_cpus;
# endif
#else
return 1;
#endif
}
/**
* Force async tsc mode.
* @todo add a module argument for this.
*/
bool VBOXCALL supdrvOSGetForcedAsyncTscMode(void)
{
return force_async_tsc != 0;
}
/**
* Converts a supdrv error code to an linux error code.
*
* @returns corresponding linux error code.
* @param rc supdrv error code (SUPDRV_ERR_* defines).
*/
static int VBoxDrvLinuxErr2LinuxErr(int rc)
{
switch (rc)
{
case 0: return 0;
case SUPDRV_ERR_GENERAL_FAILURE: return -EACCES;
case SUPDRV_ERR_INVALID_PARAM: return -EINVAL;
case SUPDRV_ERR_INVALID_MAGIC: return -EILSEQ;
case SUPDRV_ERR_INVALID_HANDLE: return -ENXIO;
case SUPDRV_ERR_INVALID_POINTER: return -EFAULT;
case SUPDRV_ERR_LOCK_FAILED: return -ENOLCK;
case SUPDRV_ERR_ALREADY_LOADED: return -EEXIST;
case SUPDRV_ERR_PERMISSION_DENIED: return -EPERM;
case SUPDRV_ERR_VERSION_MISMATCH: return -ENOSYS;
case SUPDRV_ERR_IDT_FAILED: return -1000;
}
return -EPERM;
}
{
#if 1
char szMsg[512];
#else
/* forward to printf - needs some more GCC hacking to fix ebp... */
"jmp %1\n\t",
"m" (printk));
#endif
return 0;
}
/** Runtime assert implementation for Linux Ring-0. */
RTDECL(bool) RTAssertDoBreakpoint(void)
{
return true;
}
/** Runtime assert implementation for Linux Ring-0. */
RTDECL(void) AssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction)
{
printk("!!Assertion Failed!!\n"
"Expression: %s\n"
"Location : %s(%d) %s\n",
}
/** Runtime assert implementation for Linux Ring-0. */
{ /* forwarder. */
char msg[256];
}
/* GCC C++ hack. */
unsigned __gxx_personality_v0 = 0xcccccccc;
MODULE_AUTHOR("innotek GmbH");
MODULE_DESCRIPTION("VirtualBox Support Driver");
MODULE_LICENSE("GPL");
#ifdef MODULE_VERSION
#endif
#else
#endif