/* $Id$ */
/** @file
* VirtualBox Support Library - Darwin specific parts.
*/
/*
* Copyright (C) 2006-2012 Oracle Corporation
*
* 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.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#ifdef IN_SUP_HARDENED_R3
# define LOG_DISABLED
/** @todo RTLOGREL_DISABLED */
#endif
#include "../SUPLibInternal.h"
#include "../SUPDrvIOC.h"
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <mach/mach_port.h>
#include <IOKit/IOKitLib.h>
/*******************************************************************************
* Defined Constants And Macros *
*******************************************************************************/
/** System device name. */
/** User device name. */
/** The IOClass key of the service (see SUPDrv-darwin.cpp / Info.plist). */
/**
* Opens the BSD device node.
*
* @returns VBox status code.
*/
{
/*
* Open the BSD device.
* This will connect to the session created when the SupDrvClient was
* started, so it has to be done after opening the service (IOC v9.1+).
*/
if (hDevice < 0)
{
int rc;
switch (errno)
{
case EPERM:
default: rc = VERR_VM_DRIVER_OPEN_ERROR; break;
}
LogRel(("SUP: Failed to open \"%s\", errno=%d, rc=%Rrc\n", fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, errno, rc));
return rc;
}
/*
* Mark the file handle close on exec.
*/
{
#ifdef IN_SUP_HARDENED_R3
#else
#endif
return rc;
}
return VINF_SUCCESS;
}
/**
* Opens the IOKit service, instantiating org_virtualbox_SupDrvClient.
*
* @returns VBox status code.
*/
{
/*
* Open the IOKit client first - The first step is finding the service.
*/
if (kr != kIOReturnSuccess)
{
return VERR_GENERAL_FAILURE;
}
if (!ClassToMatch)
{
return VERR_GENERAL_FAILURE;
}
/* Create an io_iterator_t for all instances of our drivers class that exist in the IORegistry. */
if (kr != kIOReturnSuccess)
{
return VERR_GENERAL_FAILURE;
}
/* Get the first item in the iterator and release it. */
if (!ServiceObject)
{
LogRel(("SUP: Couldn't find any matches. The kernel module is probably not loaded.\n"));
return VERR_VM_DRIVER_NOT_INSTALLED;
}
/*
* Open the service.
*
* This will cause the user client class in SUPDrv-darwin.cpp to be
* instantiated and create a session for this process.
*/
if (kr != kIOReturnSuccess)
{
pThis->uConnection = 0;
return VERR_VM_DRIVER_OPEN_ERROR;
}
return VINF_SUCCESS;
}
int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted, SUPINITOP *penmWhat, PRTERRINFO pErrInfo)
{
/*
* Nothing to do if pre-inited.
*/
if (fPreInited)
return VINF_SUCCESS;
/*
* Do the job.
*/
if (RT_SUCCESS(rc))
{
if (RT_FAILURE(rc))
{
if (kr != kIOReturnSuccess)
{
AssertFailed();
}
pThis->uConnection = 0;
}
}
return rc;
}
#ifndef IN_SUP_HARDENED_R3
{
/*
* Close the connection to the IOService.
* This will cause the SUPDRVSESSION to be closed (starting IOC 9.1).
*/
if (pThis->uConnection)
{
if (kr != kIOReturnSuccess)
{
AssertFailed();
}
pThis->uConnection = 0;
}
/*
* Check if we're inited at all.
*/
{
AssertFailed();
}
return VINF_SUCCESS;
}
int suplibOsInstall(void)
{
return VERR_NOT_IMPLEMENTED;
}
int suplibOsUninstall(void)
{
return VERR_NOT_IMPLEMENTED;
}
{
return VINF_SUCCESS;
return RTErrConvertFromErrno(errno);
}
{
if (rc == -1)
return rc;
}
{
if (*ppvPages)
{
return VINF_SUCCESS;
}
return RTErrConvertFromErrno(errno);
}
{
return VINF_SUCCESS;
}
#endif /* !IN_SUP_HARDENED_R3 */