VBoxGuest-win.cpp revision 0c802efc285bf77b849eaf660a9c18a0e7f62445
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * VBoxGuest - Windows specifics.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Copyright (C) 2010 Oracle Corporation
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * available from http://www.virtualbox.org. This file is free software;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * you can redistribute it and/or modify it under the terms of the GNU
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * General Public License (GPL) as published by the Free Software
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync/*******************************************************************************
b2640405e06105d868b5fc8f7b676bb680884380vboxsync* Header Files *
b2640405e06105d868b5fc8f7b676bb680884380vboxsync*******************************************************************************/
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * XP DDK #defines ExFreePool to ExFreePoolWithTag. The latter does not exist
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * on NT4, so... The same for ExAllocatePool.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync/*******************************************************************************
b2640405e06105d868b5fc8f7b676bb680884380vboxsync* Defined Constants And Macros *
b2640405e06105d868b5fc8f7b676bb680884380vboxsync*******************************************************************************/
b2640405e06105d868b5fc8f7b676bb680884380vboxsync/*******************************************************************************
b2640405e06105d868b5fc8f7b676bb680884380vboxsync* Entry Points *
b2640405e06105d868b5fc8f7b676bb680884380vboxsync*******************************************************************************/
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinAddDevice(PDRIVER_OBJECT pDrvObj, PDEVICE_OBJECT pDevObj);
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic void vboxguestwinUnload(PDRIVER_OBJECT pDrvObj);
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinCreate(PDEVICE_OBJECT pDevObj, PIRP pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinClose(PDEVICE_OBJECT pDevObj, PIRP pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinIOCtl(PDEVICE_OBJECT pDevObj, PIRP pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinSystemControl(PDEVICE_OBJECT pDevObj, PIRP pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinShutdown(PDEVICE_OBJECT pDevObj, PIRP pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinNotSupportedStub(PDEVICE_OBJECT pDevObj, PIRP pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync/*******************************************************************************
b2640405e06105d868b5fc8f7b676bb680884380vboxsync* Internal Functions *
b2640405e06105d868b5fc8f7b676bb680884380vboxsync*******************************************************************************/
ce95f18112057771f68abe58df709edd7c467db1vboxsync static void vboxguestwinDoTests(void);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync/*******************************************************************************
b2640405e06105d868b5fc8f7b676bb680884380vboxsync* Exported Functions *
b2640405e06105d868b5fc8f7b676bb680884380vboxsync*******************************************************************************/
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncULONG DriverEntry(PDRIVER_OBJECT pDrvObj, PUNICODE_STRING pRegPath);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync#pragma alloc_text (PAGE, vboxguestwinNotSupportedStub)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync#pragma alloc_text (PAGE, vboxguestwinScanPCIResourceList)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync/** The detected Windows version. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Driver entry point.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @returns appropriate status code.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDrvObj Pointer to driver object.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pRegPath Registry base path.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncULONG DriverEntry(PDRIVER_OBJECT pDrvObj, PUNICODE_STRING pRegPath)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::DriverEntry. Driver built: %s %s\n", __DATE__, __TIME__));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync BOOLEAN bCheckedBuild = PsGetVersion(&majorVersion, &minorVersion, &buildNumber, NULL);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::DriverEntry: Running on Windows NT version %d.%d, build %d\n", majorVersion, minorVersion, buildNumber));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::DriverEntry: Running on a Windows checked build (debug)!\n"));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync case 6: /* Windows Vista or Windows 7 (based on minor ver) */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync case 0: /* Note: Also could be Windows 2008 Server! */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync case 1: /* Note: Also could be Windows 2008 Server R2! */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::DriverEntry: Unknown version of Windows (%u.%u), refusing!\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::DriverEntry: Unknown version of Windows (%u.%u), refusing!\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::DriverEntry: At least Windows NT4 required!\n"));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Setup the driver entry points in pDrvObj.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_CREATE] = vboxguestwinCreate;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_CLOSE] = vboxguestwinClose;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_DEVICE_CONTROL] = vboxguestwinIOCtl;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_INTERNAL_DEVICE_CONTROL] = vboxguestwinIOCtl;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_SHUTDOWN] = vboxguestwinShutdown;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_READ] = vboxguestwinNotSupportedStub;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_WRITE] = vboxguestwinNotSupportedStub;
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync rc = vboxguestwinnt4CreateDevice(pDrvObj, NULL /* pDevObj */, pRegPath);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_PNP] = vboxguestwinPnP;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_POWER] = vboxguestwinPower;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->MajorFunction[IRP_MJ_SYSTEM_CONTROL] = vboxguestwinSystemControl;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDrvObj->DriverExtension->AddDevice = (PDRIVER_ADD_DEVICE)vboxguestwinAddDevice;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::DriverEntry returning %#x\n", rc));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Handle request from the Plug & Play subsystem.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @returns NT status code
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDrvObj Driver object
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncstatic NTSTATUS vboxguestwinAddDevice(PDRIVER_OBJECT pDrvObj, PDEVICE_OBJECT pDevObj)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Create device.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync RtlInitUnicodeString(&devName, VBOXGUEST_DEVICE_NAME_NT);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync rc = IoCreateDevice(pDrvObj, sizeof(VBOXGUESTDEVEXT), &devName, FILE_DEVICE_UNKNOWN, 0, FALSE, &pDeviceObject);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Create symbolic link (DOS devices).
b2640405e06105d868b5fc8f7b676bb680884380vboxsync RtlInitUnicodeString(&win32Name, VBOXGUEST_DEVICE_NAME_DOS);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Setup the device extension.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt = (PVBOXGUESTDEVEXT)pDeviceObject->DeviceExtension;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->win.s.pNextLowerDriver = IoAttachDeviceToDeviceStack(pDeviceObject, pDevObj);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestAddDevice: IoAttachDeviceToDeviceStack did not give a nextLowerDriver!\n"));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestAddDevice: IoCreateSymbolicLink failed with rc=%#x!\n", rc));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestAddDevice: IoCreateDevice failed with rc=%#x!\n", rc));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * If we reached this point we're fine with the basic driver setup,
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * so continue to init our own things.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vboxguestwinBugCheckCallback(pDevExt); /* Ignore failure! */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* VBoxGuestPower is pageable; ensure we are not called at elevated IRQL */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Driver is ready now. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Cleanup on error. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestAddDevice: returning with rc = 0x%x\n", rc));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * Debug helper to dump a device resource list.
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * @param pResourceList list of device resources.
ce95f18112057771f68abe58df709edd7c467db1vboxsyncstatic void vboxguestwinShowDeviceResources(PCM_PARTIAL_RESOURCE_LIST pResourceList)
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync PCM_PARTIAL_RESOURCE_DESCRIPTOR resource = pResourceList->PartialDescriptors;
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync static char* aszName[] =
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeNull",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypePort",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeInterrupt",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeMemory",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeDma",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeDeviceSpecific",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeBusNumber",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeDevicePrivate",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeAssignedResource",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync "CmResourceTypeSubAllocateFrom",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinShowDeviceResources: Type %s",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinShowDeviceResources: Start %8X%8.8lX length %X\n",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync resource->u.Port.Start.HighPart, resource->u.Port.Start.LowPart,
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinShowDeviceResources: Level %X, Vector %X, Affinity %X\n",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync resource->u.Interrupt.Level, resource->u.Interrupt.Vector,
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinShowDeviceResources: Channel %d, Port %X\n",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * Global initialisation stuff (PnP + NT4 legacy).
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * @param pDevObj Device object.
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * @param pIrp Request packet.
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsyncNTSTATUS vboxguestwinInit(PDEVICE_OBJECT pDevObj, PIRP pIrp)
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsyncNTSTATUS vboxguestwinInit(PDRIVER_OBJECT pDrvObj, PDEVICE_OBJECT pDevObj, PUNICODE_STRING pRegPath)
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync PIO_STACK_LOCATION pStack = IoGetCurrentIrpStackLocation(pIrp);
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * Let's have a look at what our PCI adapter offers.
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Starting to scan PCI resources of VBoxGuest ...\n"));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync /* Assign the PCI resources. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync RtlInitUnicodeString(&classNameString, L"VBoxGuestAdapter");
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync rc = HalAssignSlotResources(pRegPath, &classNameString,
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync PCIBus, pDevExt->win.s.busNumber, pDevExt->win.s.slotNumber,
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync vboxguestwinShowDeviceResources(&pResourceList->List[0].PartialResourceList);
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync rc = vboxguestwinScanPCIResourceList(pResourceList, pDevExt);
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync if (pStack->Parameters.StartDevice.AllocatedResources->Count > 0)
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync vboxguestwinShowDeviceResources(&pStack->Parameters.StartDevice.AllocatedResources->List[0].PartialResourceList);
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync rc = vboxguestwinScanPCIResourceList(pStack->Parameters.StartDevice.AllocatedResourcesTranslated,
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * Map physical address of VMMDev memory into MMIO region
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * and init the common device extension bits.
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync pDevExt->pVMMDevMemory = (VMMDevMemory *)pvMMIOBase;
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: pvMMIOBase = 0x%p, pDevExt = 0x%p, pDevExt->pVMMDevMemory = 0x%p\n",
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync pvMMIOBase, pDevExt, pDevExt ? pDevExt->pVMMDevMemory : NULL));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Could not init device extension, rc = %Rrc!\n", vrc));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Could not map physical address of VMMDev, rc = 0x%x!\n", rc));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync int vrc = VbglGRAlloc((VMMDevRequestHeader **)&pDevExt->win.s.pPowerStateRequest,
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync sizeof (VMMDevPowerStateRequest), VMMDevReq_SetPowerStatus);
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Alloc for pPowerStateRequest failed, rc = %Rrc\n", vrc));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync * Register DPC and ISR.
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Initializing DPC/ISR ...\n"));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync IoInitializeDpcRequest(pDevExt->win.s.pDeviceObject, vboxguestwinDpcHandler);
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync /* Get an interrupt vector. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync /* Only proceed if the device provides an interrupt. */
4b79f1e3db952307a2b19933efb97ccb871157cfvboxsync Log(("VBoxGuest::vboxguestwinInit: Getting interrupt vector (HAL): Bus: %u, IRQL: %u, Vector: %u\n",
4b79f1e3db952307a2b19933efb97ccb871157cfvboxsync pDevExt->win.s.busNumber, pDevExt->win.s.interruptLevel, pDevExt->win.s.interruptVector));
4b79f1e3db952307a2b19933efb97ccb871157cfvboxsync Log(("VBoxGuest::vboxguestwinInit: HalGetInterruptVector returns vector %u\n", uInterruptVector));
4b79f1e3db952307a2b19933efb97ccb871157cfvboxsync Log(("VBoxGuest::vboxguestwinInit: No interrupt vector found!\n"));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Device does not provide an interrupt!\n"));
4b79f1e3db952307a2b19933efb97ccb871157cfvboxsync Log(("VBoxGuest::vboxguestwinInit: Connecting interrupt ...\n"));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync rc = IoConnectInterrupt(&pDevExt->win.s.pInterruptObject, /* Out: interrupt object. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync (PKSERVICE_ROUTINE)vboxguestwinIsrHandler, /* Our ISR handler. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync pDevExt->win.s.interruptVector, /* Interrupt vector. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync (KIRQL)pDevExt->win.s.interruptLevel, /* Interrupt level. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync (KIRQL)pDevExt->win.s.interruptLevel, /* Interrupt level. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync pDevExt->win.s.interruptMode, /* LevelSensitive or Latched. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync pDevExt->win.s.interruptAffinity, /* CPU affinity. */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Could not connect interrupt, rc = 0x%x\n", rc));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: No interrupt vector found!\n"));
4b79f1e3db952307a2b19933efb97ccb871157cfvboxsync Log(("VBoxGuest::vboxguestwinInit: Allocating kernel session data ...\n"));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync int vrc = VBoxGuestCreateKernelSession(pDevExt, &pDevExt->win.s.pKernelSession);
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Failed to allocated kernel session data! rc = %Rrc\n", rc));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync /* Ready to rumble! */
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Device is ready!\n"));
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync Log(("VBoxGuest::vboxguestwinInit: Returned with rc = 0x%x\n", rc));
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync * Cleans up hardware resources.
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync * Do not delete DevExt here.
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync * @param pDrvObj Driver object.
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsyncNTSTATUS vboxguestwinCleanup(PDEVICE_OBJECT pDevObj)
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
eb4f1fa4c357485330370c0eaba27e5a2af7d9c4vboxsync hlpDeregisterBugCheckCallback(pDevExt); /* ignore failure! */
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync /* According to MSDN we have to unmap previously mapped memory. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Unload the driver.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDrvObj Driver object.
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync /* Destroy device extension and clean up everything else. */
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync if (pDrvObj->DeviceObject && pDrvObj->DeviceObject->DeviceExtension)
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync VBoxGuestDeleteDevExt((PVBOXGUESTDEVEXT)pDrvObj->DeviceObject->DeviceExtension);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * I don't think it's possible to unload a driver which processes have
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * opened, at least we'll blindly assume that here.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync RtlInitUnicodeString(&win32Name, VBOXGUEST_DEVICE_NAME_DOS);
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync#else /* TARGET_NT4 */
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync /* On a PnP driver this routine will be called after
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync * IRP_MN_REMOVE_DEVICE (where we already did the cleanup),
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync * so don't do anything here (yet). */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestUnload: returning\n"));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Create (i.e. Open) file entry point.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pIrp Request packet.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinCreate(PDEVICE_OBJECT pDevObj, PIRP pIrp)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /** @todo AssertPtrReturn(pIrp); */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PIO_STACK_LOCATION pStack = IoGetCurrentIrpStackLocation(pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /** @todo AssertPtrReturn(pStack); */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync Log(("VBoxGuest::vboxguestwinGuestCreate: device is not working currently: %d!\n",
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync else if (pStack->Parameters.Create.Options & FILE_DIRECTORY_FILE)
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync * We are not remotely similar to a directory...
0c802efc285bf77b849eaf660a9c18a0e7f62445vboxsync * (But this is possible.)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestCreate: Uhm, we're not a directory!\n"));
ce95f18112057771f68abe58df709edd7c467db1vboxsync Log(("VBoxGuest::vboxguestwinGuestCreate: File object type = %d\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Create a session object if we have a valid file object. This session object
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * exists for every R3 process.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vrc = VBoxGuestCreateUserSession(pDevExt, &pSession);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* ... otherwise we've been called from R0! */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vrc = VBoxGuestCreateKernelSession(pDevExt, &pSession);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Complete the request! */
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync Log(("VBoxGuest::vboxguestwinGuestCreate: Returning 0x%x\n", rc));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Close file entry point.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pIrp Request packet.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinClose(PDEVICE_OBJECT pDevObj, PIRP pIrp)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PIO_STACK_LOCATION pStack = IoGetCurrentIrpStackLocation(pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestClose: pDevExt=0x%p pFileObj=0x%p FsContext=0x%p\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Close both, R0 and R3 sessions. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTSESSION pSession = (PVBOXGUESTSESSION)pFileObj->FsContext;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Device I/O Control entry point.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pIrp Request packet.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinIOCtl(PDEVICE_OBJECT pDevObj, PIRP pIrp)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PIO_STACK_LOCATION pStack = IoGetCurrentIrpStackLocation(pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync unsigned int uCmd = (unsigned int)pStack->Parameters.DeviceIoControl.IoControlCode;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync char *pBuf = (char *)pIrp->AssociatedIrp.SystemBuffer; /* All requests are buffered. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync size_t cbData = pStack->Parameters.DeviceIoControl.InputBufferLength;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync unsigned cbOut = 0;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Do we have a file object associated?*/
b2640405e06105d868b5fc8f7b676bb680884380vboxsync if (pFileObj) /* ... then we might have a session object as well! */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinIOCtl: uCmd=%u, pDevExt=0x%p, pSession=0x%p\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* We don't have a session associated with the file object? So this seems
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * to be a kernel call then. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinIOCtl: Using kernel session data ...\n"));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * First process Windows specific stuff which cannot be handled
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * by the common code used on all other platforms. In the default case
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * we then finally handle the common cases.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync LogRel(("VBoxGuest::vboxguestwinIOCtl: ENABLE_VRDP_SESSION: Currently: %sabled\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync KUSER_SHARED_DATA *pSharedUserData = (KUSER_SHARED_DATA *)KI_USER_SHARED_DATA;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync LogRel(("VBoxGuest::vboxguestwinIOCtl: ENABLE_VRDP_SESSION: Current active console ID: 0x%08X\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->ulOldActiveConsoleId = pSharedUserData->ActiveConsoleId;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync LogRel(("VBoxGuest::vboxguestwinIOCtl: DISABLE_VRDP_SESSION: Currently: %sabled\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync KUSER_SHARED_DATA *pSharedUserData = (KUSER_SHARED_DATA *)KI_USER_SHARED_DATA;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinIOCtl: DISABLE_VRDP_SESSION: Current active console ID: 0x%08X\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pSharedUserData->ActiveConsoleId = pDevExt->ulOldActiveConsoleId;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Add at least one (bogus) fall through case to shut up MSVC! */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Process the common IOCtls.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync int vrc = VBoxGuestCommonIOCtl(uCmd, pDevExt, pSession, (void*)pBuf, cbData, &cbDataReturned);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestDeviceControl: rc=%Rrc, pBuf=0x%p, cbData=%u, cbDataReturned=%u\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestDeviceControl: Too much output data %u - expected %u!\n", cbDataReturned, cbData));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync //Log(("VBoxGuest::vboxguestwinGuestDeviceControl: returned cbOut=%d rc=%#x\n", cbOut, Status));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * IRP_MJ_SYSTEM_CONTROL handler.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @returns NT status code
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pIrp IRP.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinSystemControl(PDEVICE_OBJECT pDevObj, PIRP pIrp)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestSystemControl\n"));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Always pass it on to the next driver. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync return IoCallDriver(pDevExt->win.s.pNextLowerDriver, pIrp);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * IRP_MJ_SHUTDOWN handler.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @returns NT status code
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pIrp IRP.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinShutdown(PDEVICE_OBJECT pDevObj, PIRP pIrp)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync VMMDevPowerStateRequest *pReq = pDevExt->win.s.pPowerStateRequest;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pReq->header.requestType = VMMDevReq_SetPowerStatus;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestShutdown: Error performing request to VMMDev! "
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Stub function for functions we don't implemented.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @returns STATUS_NOT_SUPPORTED
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pIrp IRP.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinNotSupportedStub(PDEVICE_OBJECT pDevObj, PIRP pIrp)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestNotSupportedStub\n"));
ce95f18112057771f68abe58df709edd7c467db1vboxsync * DPC handler.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pDPC DPC descriptor.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevObj Device object.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pIrp Interrupt request packet.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pContext Context specific pointer.
ce95f18112057771f68abe58df709edd7c467db1vboxsyncvoid vboxguestwinDpcHandler(PKDPC pDPC, PDEVICE_OBJECT pDevObj,
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pDevObj->DeviceExtension;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinGuestDpcHandler: pDevExt=0x%p\n", pDevExt));
ce95f18112057771f68abe58df709edd7c467db1vboxsync /* Process the wake-up list we were asked by the scheduling a DPC
ce95f18112057771f68abe58df709edd7c467db1vboxsync * in vboxguestwinIsrHandler(). */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * ISR handler.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @return BOOLEAN Indicates whether the IRQ came from us (TRUE) or not (FALSE).
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pInterrupt Interrupt that was triggered.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pServiceContext Context specific pointer.
ce95f18112057771f68abe58df709edd7c467db1vboxsyncBOOLEAN vboxguestwinIsrHandler(PKINTERRUPT pInterrupt, PVOID pServiceContext)
ce95f18112057771f68abe58df709edd7c467db1vboxsync PVBOXGUESTDEVEXT pDevExt = (PVBOXGUESTDEVEXT)pServiceContext;
5ea88591f1ca09476c7e97c758f9c52e1dbb6626vboxsync /*Log(("VBoxGuest::vboxguestwinGuestIsrHandler: pDevExt = 0x%p, pVMMDevMemory = 0x%p\n",
5ea88591f1ca09476c7e97c758f9c52e1dbb6626vboxsync pDevExt, pDevExt ? pDevExt->pVMMDevMemory : NULL));*/
ce95f18112057771f68abe58df709edd7c467db1vboxsync /* Enter the common ISR routine and do the actual work. */
ce95f18112057771f68abe58df709edd7c467db1vboxsync /* If we need to wake up some events we do that in a DPC to make
ce95f18112057771f68abe58df709edd7c467db1vboxsync * sure we're called at the right IRQL. */
6de26a0709c5a075db3c7532e7702444cd35afd6vboxsync Log(("VBoxGuest::vboxguestwinGuestIsrHandler: IRQ was taken! pInterrupt = 0x%p, pDevExt = 0x%p\n",
6de26a0709c5a075db3c7532e7702444cd35afd6vboxsync Log(("VBoxGuest::vboxguestwinGuestIsrHandler: Requesting DPC ...\n"));
6de26a0709c5a075db3c7532e7702444cd35afd6vboxsync IoRequestDpc(pDevExt->win.s.pDeviceObject, pDevExt->win.s.pCurrentIrp, NULL);
ad27e1d5e48ca41245120c331cc88b50464813cevboxsync * Overridden routine for mouse polling events. Not
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * used at the moment on Windows.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevExt Device extension structure.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncvoid VBoxGuestNativeISRMousePollEvent(PVBOXGUESTDEVEXT pDevExt)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * Helper to scan the PCI resource list and remember stuff.
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pResList Resource list
b2640405e06105d868b5fc8f7b676bb680884380vboxsync * @param pDevExt Device extension
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinScanPCIResourceList(PCM_RESOURCE_LIST pResList, PVBOXGUESTDEVEXT pDevExt)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Enumerate the resource list. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: Found %d resources\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PCM_PARTIAL_RESOURCE_DESCRIPTOR pPartialData = NULL;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync PVBOXGUESTWINBASEADDRESS pBaseAddress = pDevExt->win.s.pciBaseAddress;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync for (ULONG i = 0; i < pResList->List->PartialResourceList.Count; i++)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pPartialData = &pResList->List->PartialResourceList.PartialDescriptors[i];
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Overflow protection. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: I/O range: Base = %08x:%08x, Length = %08x\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Save the IO port base. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /** @todo Not so good. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->IOPortBase = (RTIOPORT)pPartialData->u.Port.Start.LowPart;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Save resource information. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pBaseAddress->RangeStart = pPartialData->u.Port.Start;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pBaseAddress->RangeLength = pPartialData->u.Port.Length;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: I/O range for VMMDev found! Base = %08x:%08x, Length = %08x\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Next item ... */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: Interrupt: Level = %x, Vector = %x, Mode = %x\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Save information. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->win.s.interruptLevel = pPartialData->u.Interrupt.Level;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->win.s.interruptVector = pPartialData->u.Interrupt.Vector;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->win.s.interruptAffinity = pPartialData->u.Interrupt.Affinity;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Check interrupt mode. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync if (pPartialData->Flags & CM_RESOURCE_INTERRUPT_LATCHED)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Overflow protection. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: Memory range: Base = %08x:%08x, Length = %08x\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* We only care about read/write memory. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /** @todo Reconsider memory type. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync if ( cMMIORange == 0 /* Only care about the first MMIO range (!!!). */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync && (pPartialData->Flags & VBOX_CM_PRE_VISTA_MASK) == CM_RESOURCE_MEMORY_READ_WRITE)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Save physical MMIO base + length for VMMDev. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->win.s.vmmDevPhysMemoryAddress = pPartialData->u.Memory.Start;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->win.s.vmmDevPhysMemoryLength = (ULONG)pPartialData->u.Memory.Length;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Save resource information. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pBaseAddress->RangeStart = pPartialData->u.Memory.Start;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pBaseAddress->RangeLength = pPartialData->u.Memory.Length;
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: Memory range for VMMDev found! Base = %08x:%08x, Length = %08x\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Next item ... */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: Ignoring memory: Flags = %08x\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinScanPCIResourceList: Unhandled resource found, type = %d\n", pPartialData->Type));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Memorize the number of resources found. */
ad27e1d5e48ca41245120c331cc88b50464813cevboxsync * Maps the I/O space from VMMDev to virtual kernel address space.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @return NTSTATUS
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pDevExt The device extension.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param physicalAdr Physical address to map.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param ulLength Length (in bytes) to map.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param ppvMMIOBase Pointer of mapped I/O base.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pcbMMIO Length of mapped I/O base.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncNTSTATUS vboxguestwinMapVMMDevMemory(PVBOXGUESTDEVEXT pDevExt, PHYSICAL_ADDRESS physicalAdr, ULONG ulLength,
b2640405e06105d868b5fc8f7b676bb680884380vboxsync AssertPtrReturn(ppvMMIOBase, VERR_INVALID_POINTER);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* pcbMMIO is optional. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync if (physicalAdr.LowPart > 0) /* We're mapping below 4GB. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync VMMDevMemory *pVMMDevMemory = (VMMDevMemory *)MmMapIoSpace(physicalAdr, ulLength, MmNonCached);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinMapVMMDevMemory: pVMMDevMemory = 0x%x\n", pVMMDevMemory));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinMapVMMDevMemory: VMMDevMemory: Version = 0x%x, Size = %d\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pVMMDevMemory->u32Version, pVMMDevMemory->u32Size));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Check version of the structure; do we have the right memory version? */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync if (pVMMDevMemory->u32Version != VMMDEV_MEMORY_VERSION)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinMapVMMDevMemory: Wrong version (%u), refusing operation!\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Not our version, refuse operation and unmap the memory. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync /* Save results. */
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinMapVMMDevMemory: VMMDevMemory found and mapped! pvMMIOBase = 0x%p\n",
ce95f18112057771f68abe58df709edd7c467db1vboxsync * Unmaps the VMMDev I/O range from kernel space.
ce95f18112057771f68abe58df709edd7c467db1vboxsync * @param pDevExt The device extension.
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncvoid vboxguestwinUnmapVMMDevMemory(PVBOXGUESTDEVEXT pDevExt)
b2640405e06105d868b5fc8f7b676bb680884380vboxsync Log(("VBoxGuest::vboxguestwinUnmapVMMDevMemory: pVMMDevMemory = 0x%x\n", pDevExt->pVMMDevMemory));
b2640405e06105d868b5fc8f7b676bb680884380vboxsync MmUnmapIoSpace((void*)pDevExt->pVMMDevMemory, pDevExt->win.s.vmmDevPhysMemoryLength);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync pDevExt->win.s.vmmDevPhysMemoryAddress.QuadPart = 0;
b2640405e06105d868b5fc8f7b676bb680884380vboxsyncVBOXOSTYPE vboxguestwinVersionToOSType(winVersion_t winVer)
5b9474ab4fc24402eb9e352fb2845b036f0736b6vboxsync /* We don't know, therefore NT family. */
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync/** A quick implementation of AtomicTestAndClear for uint32_t and multiple
ce95f18112057771f68abe58df709edd7c467db1vboxsyncstatic uint32_t vboxugestwinAtomicBitsTestAndClear(void *pu32Bits, uint32_t u32Mask)
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync LogFlowFunc(("*pu32Bits=0x%x, u32Mask=0x%x\n", *(long *)pu32Bits,
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync int iBitOffset = ASMBitFirstSetU32 (u32WorkingMask);
083344b49cc7370da15d3cb7e3a9c9cb2d8dfbb0vboxsync bool fSet = ASMAtomicBitTestAndClear(pu32Bits, iBitOffset - 1);
ce95f18112057771f68abe58df709edd7c467db1vboxsyncstatic void vboxguestwinTestAtomicTestAndClearBitsU32(uint32_t u32Mask, uint32_t u32Bits,
ce95f18112057771f68abe58df709edd7c467db1vboxsync uint32_t u32Result = vboxugestwinAtomicBitsTestAndClear(&u32Bits2, u32Mask);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync AssertLogRelMsgFailed(("%s: TEST FAILED: u32Mask=0x%x, u32Bits (before)=0x%x, u32Bits (after)=0x%x, u32Result=0x%x, u32Exp=ox%x\n",
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vboxguestwinTestAtomicTestAndClearBitsU32(0x00, 0x23, 0);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vboxguestwinTestAtomicTestAndClearBitsU32(0x11, 0, 0);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vboxguestwinTestAtomicTestAndClearBitsU32(0x11, 0x22, 0);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vboxguestwinTestAtomicTestAndClearBitsU32(0x11, 0x23, 0x1);
b2640405e06105d868b5fc8f7b676bb680884380vboxsync vboxguestwinTestAtomicTestAndClearBitsU32(0x11, 0x32, 0x10);