SUPR0IdcClient-win.c revision 73570dbf11c9da31b4f2056a1f6b54f3a7026303
/* $Id$ */
/** @file
* VirtualBox Support Driver - IDC Client Lib, Windows Specific Code.
*/
/*
* Copyright (C) 2008 Sun Microsystems, Inc.
*
* 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.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "../SUPR0IdcClientInternal.h"
/*******************************************************************************
* Defined Constants And Macros *
*******************************************************************************/
/** NT Device name. */
#define DEVICE_NAME_NT L"\\Device\\VBoxDrv"
/**
* Internal I/O Control call worker.
*
* @returns VBox status code.
* @param pDeviceObject The device object to call.
* @param iReq The request.
* @param pReq The request packet.
*/
static int supR0IdcNtCallInternal(PDEVICE_OBJECT pDeviceObject, uint32_t iReq, PSUPDRVIDCREQHDR pReq)
{
int rc;
/*
* Build the request.
*/
pReq, /* InputBuffer */
pReq, /* OutputBuffer */
TRUE, /* InternalDeviceIoControl (=> IRP_MJ_INTERNAL_DEVICE_CONTROL) */
&Event, /* Event */
&IoStatusBlock); /* IoStatusBlock */
if (pIrp)
{
/*
* Call the driver, wait for an async request to complete (should never happen).
*/
if (rcNt == STATUS_PENDING)
{
Executive, /* WaitReason */
KernelMode, /* WaitMode */
FALSE, /* Altertable */
NULL); /* TimeOut */
}
if (NT_SUCCESS(rcNt))
else
}
else
rc = VERR_NO_MEMORY;
return rc;
}
{
int rc;
/*
* Get the device object pointer.
*/
if (NT_SUCCESS(rcNt))
{
/*
* Make the connection call.
*/
if (RT_SUCCESS(rc))
{
return rc;
}
/* only the file object. */
}
else
return rc;
}
{
if (RT_SUCCESS(rc))
{
}
return rc;
}
{
}