VirtualBox

Changeset 44173 in vbox for trunk/src/VBox/HostDrivers


Ignore:
Timestamp:
Dec 19, 2012 6:12:31 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
82883
Message:

SUPDrv,SUPLib: Introducing /dev/vboxdrvu on darwin (other platforms soon to follow).

Location:
trunk/src/VBox/HostDrivers/Support
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPDrv.c

    r43394 r44173  
    657657 *
    658658 * @returns IPRT status code.
    659  * @param   pDevExt     Device extension.
    660  * @param   fUser       Flag indicating whether this is a user or kernel session.
    661  * @param   ppSession   Where to store the pointer to the session data.
    662  */
    663 int VBOXCALL supdrvCreateSession(PSUPDRVDEVEXT pDevExt, bool fUser, PSUPDRVSESSION *ppSession)
     659 * @param   pDevExt         Device extension.
     660 * @param   fUser           Flag indicating whether this is a user or kernel
     661 *                          session.
     662 * @param   fUnrestricted   Unrestricted access (system) or restricted access
     663 *                          (user)?
     664 * @param   ppSession       Where to store the pointer to the session data.
     665 */
     666int VBOXCALL supdrvCreateSession(PSUPDRVDEVEXT pDevExt, bool fUser, bool fUnrestricted, PSUPDRVSESSION *ppSession)
    664667{
    665668    /*
     
    682685                pSession->pDevExt           = pDevExt;
    683686                pSession->u32Cookie         = BIRD_INV;
     687                pSession->fUnrestricted     = fUnrestricted;
    684688                /*pSession->pLdrUsage         = NULL;
    685689                pSession->pVM               = NULL;
     
    10811085 * @param   pReqHdr     The request header.
    10821086 */
    1083 static int supdrvIOCtlInner(uintptr_t uIOCtl, PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession, PSUPREQHDR pReqHdr)
     1087static int supdrvIOCtlInnerUnrestricted(uintptr_t uIOCtl, PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession, PSUPREQHDR pReqHdr)
    10841088{
    10851089    /*
     
    17581762            PSUPVTCAPS pReq = (PSUPVTCAPS)pReqHdr;
    17591763            REQ_CHECK_SIZES(SUP_IOCTL_VT_CAPS);
    1760             REQ_CHECK_EXPR(SUP_IOCTL_VT_CAPS, pReq->Hdr.cbIn <= SUP_IOCTL_VT_CAPS_SIZE_IN);
    17611764
    17621765            /* execute */
     
    18461849
    18471850/**
    1848  * I/O Control worker.
     1851 * I/O Control inner worker for the restricted operations.
    18491852 *
    18501853 * @returns IPRT status code.
     
    18561859 * @param   pReqHdr     The request header.
    18571860 */
     1861static int supdrvIOCtlInnerRestricted(uintptr_t uIOCtl, PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession, PSUPREQHDR pReqHdr)
     1862{
     1863    /*
     1864     * The switch.
     1865     */
     1866    switch (SUP_CTL_CODE_NO_SIZE(uIOCtl))
     1867    {
     1868        case SUP_CTL_CODE_NO_SIZE(SUP_IOCTL_COOKIE):
     1869        {
     1870            PSUPCOOKIE pReq = (PSUPCOOKIE)pReqHdr;
     1871            REQ_CHECK_SIZES(SUP_IOCTL_COOKIE);
     1872            if (strncmp(pReq->u.In.szMagic, SUPCOOKIE_MAGIC, sizeof(pReq->u.In.szMagic)))
     1873            {
     1874                OSDBGPRINT(("SUP_IOCTL_COOKIE: invalid magic %.16s\n", pReq->u.In.szMagic));
     1875                pReq->Hdr.rc = VERR_INVALID_MAGIC;
     1876                return 0;
     1877            }
     1878
     1879            /*
     1880             * Match the version.
     1881             * The current logic is very simple, match the major interface version.
     1882             */
     1883            if (    pReq->u.In.u32MinVersion > SUPDRV_IOC_VERSION
     1884                ||  (pReq->u.In.u32MinVersion & 0xffff0000) != (SUPDRV_IOC_VERSION & 0xffff0000))
     1885            {
     1886                OSDBGPRINT(("SUP_IOCTL_COOKIE: Version mismatch. Requested: %#x  Min: %#x  Current: %#x\n",
     1887                            pReq->u.In.u32ReqVersion, pReq->u.In.u32MinVersion, SUPDRV_IOC_VERSION));
     1888                pReq->u.Out.u32Cookie         = 0xffffffff;
     1889                pReq->u.Out.u32SessionCookie  = 0xffffffff;
     1890                pReq->u.Out.u32SessionVersion = 0xffffffff;
     1891                pReq->u.Out.u32DriverVersion  = SUPDRV_IOC_VERSION;
     1892                pReq->u.Out.pSession          = NULL;
     1893                pReq->u.Out.cFunctions        = 0;
     1894                pReq->Hdr.rc = VERR_VERSION_MISMATCH;
     1895                return 0;
     1896            }
     1897
     1898            /*
     1899             * Fill in return data and be gone.
     1900             * N.B. The first one to change SUPDRV_IOC_VERSION shall makes sure that
     1901             *      u32SessionVersion <= u32ReqVersion!
     1902             */
     1903            /** @todo Somehow validate the client and negotiate a secure cookie... */
     1904            pReq->u.Out.u32Cookie         = pDevExt->u32Cookie;
     1905            pReq->u.Out.u32SessionCookie  = pSession->u32Cookie;
     1906            pReq->u.Out.u32SessionVersion = SUPDRV_IOC_VERSION;
     1907            pReq->u.Out.u32DriverVersion  = SUPDRV_IOC_VERSION;
     1908            pReq->u.Out.pSession          = pSession;
     1909            pReq->u.Out.cFunctions        = 0;
     1910            pReq->Hdr.rc = VINF_SUCCESS;
     1911            return 0;
     1912        }
     1913
     1914        case SUP_CTL_CODE_NO_SIZE(SUP_IOCTL_VT_CAPS):
     1915        {
     1916            /* validate */
     1917            PSUPVTCAPS pReq = (PSUPVTCAPS)pReqHdr;
     1918            REQ_CHECK_SIZES(SUP_IOCTL_VT_CAPS);
     1919
     1920            /* execute */
     1921            pReq->Hdr.rc = SUPR0QueryVTCaps(pSession, &pReq->u.Out.Caps);
     1922            if (RT_FAILURE(pReq->Hdr.rc))
     1923                pReq->Hdr.cbOut = sizeof(pReq->Hdr);
     1924            return 0;
     1925        }
     1926
     1927        default:
     1928            Log(("Unknown IOCTL %#lx\n", (long)uIOCtl));
     1929            break;
     1930    }
     1931    return VERR_GENERAL_FAILURE;
     1932}
     1933
     1934
     1935/**
     1936 * I/O Control worker.
     1937 *
     1938 * @returns IPRT status code.
     1939 * @retval  VERR_INVALID_PARAMETER if the request is invalid.
     1940 *
     1941 * @param   uIOCtl      Function number.
     1942 * @param   pDevExt     Device extention.
     1943 * @param   pSession    Session data.
     1944 * @param   pReqHdr     The request header.
     1945 */
    18581946int VBOXCALL supdrvIOCtl(uintptr_t uIOCtl, PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession, PSUPREQHDR pReqHdr)
    18591947{
     
    18981986
    18991987    /*
    1900      * Hand it to an inner function to avoid lots of unnecessary return tracepoints
    1901      */
    1902     rc = supdrvIOCtlInner(uIOCtl, pDevExt, pSession, pReqHdr);
     1988     * Hand it to an inner function to avoid lots of unnecessary return tracepoints.
     1989     */
     1990    if (pSession->fUnrestricted)
     1991        rc = supdrvIOCtlInnerUnrestricted(uIOCtl, pDevExt, pSession, pReqHdr);
     1992    else
     1993        rc = supdrvIOCtlInnerRestricted(uIOCtl, pDevExt, pSession, pReqHdr);
    19031994
    19041995    VBOXDRV_IOCTL_RETURN(pSession, uIOCtl, pReqHdr, pReqHdr->rc, rc);
     
    20022093            pReq->u.Out.uDriverRevision = VBOX_SVN_REV;
    20032094
    2004             pReq->Hdr.rc = supdrvCreateSession(pDevExt, false /* fUser */, &pSession);
     2095            pReq->Hdr.rc = supdrvCreateSession(pDevExt, false /* fUser */, true /*fUnrestricted*/, &pSession);
    20052096            if (RT_FAILURE(pReq->Hdr.rc))
    20062097            {
     
    32243315
    32253316
    3226 /** @todo document me */
     3317/**
     3318 * Quries the AMD-V and VT-x capabilities of the calling CPU.
     3319 *
     3320 * @returns VBox status code.
     3321 * @retval  VERR_VMX_NO_VMX
     3322 * @retval  VERR_VMX_MSR_LOCKED_OR_DISABLED
     3323 * @retval  VERR_SVM_NO_SVM
     3324 * @retval  VERR_SVM_DISABLED
     3325 * @retval  VERR_UNSUPPORTED_CPU if not identifiable as an AMD, Intel or VIA
     3326 *          (centaur) CPU.
     3327 *
     3328 * @param   pSession        The session handle.
     3329 * @param   pfCaps          Where to store the capabilities.
     3330 */
    32273331SUPR0DECL(int) SUPR0QueryVTCaps(PSUPDRVSESSION pSession, uint32_t *pfCaps)
    32283332{
     
    32373341    if (ASMHasCpuId())
    32383342    {
    3239         uint32_t u32FeaturesECX;
    3240         uint32_t u32Dummy;
    3241         uint32_t u32FeaturesEDX;
    3242         uint32_t u32VendorEBX, u32VendorECX, u32VendorEDX, u32AMDFeatureEDX, u32AMDFeatureECX;
    3243         uint64_t val;
    3244 
    3245         ASMCpuId(0, &u32Dummy, &u32VendorEBX, &u32VendorECX, &u32VendorEDX);
    3246         ASMCpuId(1, &u32Dummy, &u32Dummy, &u32FeaturesECX, &u32FeaturesEDX);
    3247         /* Query AMD features. */
    3248         ASMCpuId(0x80000001, &u32Dummy, &u32Dummy, &u32AMDFeatureECX, &u32AMDFeatureEDX);
    3249 
    3250         if (    u32VendorEBX == X86_CPUID_VENDOR_INTEL_EBX
    3251             &&  u32VendorECX == X86_CPUID_VENDOR_INTEL_ECX
    3252             &&  u32VendorEDX == X86_CPUID_VENDOR_INTEL_EDX
     3343        uint32_t fFeaturesECX, fFeaturesEDX, uDummy;
     3344        uint32_t uMaxId, uVendorEBX, uVendorECX, uVendorEDX;
     3345        uint64_t u64Value;
     3346
     3347        ASMCpuId(0, &uMaxId, &uVendorEBX, &uVendorECX, &uVendorEDX);
     3348        ASMCpuId(1, &uDummy, &uDummy, &fFeaturesECX, &fFeaturesEDX);
     3349
     3350        if (   ASMIsValidStdRange(uMaxId)
     3351            && (   ASMIsIntelCpuEx(    uVendorEBX, uVendorECX, uVendorEDX)
     3352                || ASMIsViaCentaurCpuEx(uVendorEBX, uVendorECX, uVendorEDX) )
    32533353           )
    32543354        {
    3255             if (    (u32FeaturesECX & X86_CPUID_FEATURE_ECX_VMX)
    3256                  && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_MSR)
    3257                  && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_FXSR)
     3355            if (    (fFeaturesECX & X86_CPUID_FEATURE_ECX_VMX)
     3356                 && (fFeaturesEDX & X86_CPUID_FEATURE_EDX_MSR)
     3357                 && (fFeaturesEDX & X86_CPUID_FEATURE_EDX_FXSR)
    32583358               )
    32593359            {
    3260                 val = ASMRdMsr(MSR_IA32_FEATURE_CONTROL);
    32613360                /*
    32623361                 * Both the LOCK and VMXON bit must be set; otherwise VMXON will generate a #GP.
    32633362                 * Once the lock bit is set, this MSR can no longer be modified.
    32643363                 */
    3265                 if (       (val & (MSR_IA32_FEATURE_CONTROL_VMXON|MSR_IA32_FEATURE_CONTROL_LOCK))
    3266                         ==        (MSR_IA32_FEATURE_CONTROL_VMXON|MSR_IA32_FEATURE_CONTROL_LOCK) /* enabled and locked */
    3267                     ||  !(val & MSR_IA32_FEATURE_CONTROL_LOCK) /* not enabled, but not locked either */
     3364                u64Value = ASMRdMsr(MSR_IA32_FEATURE_CONTROL);
     3365                if (      (u64Value & (MSR_IA32_FEATURE_CONTROL_VMXON | MSR_IA32_FEATURE_CONTROL_LOCK))
     3366                       ==             (MSR_IA32_FEATURE_CONTROL_VMXON | MSR_IA32_FEATURE_CONTROL_LOCK) /* enabled and locked */
     3367                    || !(u64Value & MSR_IA32_FEATURE_CONTROL_LOCK) /* not enabled, but not locked either */
    32683368                   )
    32693369                {
     
    32863386        }
    32873387
    3288         if (    u32VendorEBX == X86_CPUID_VENDOR_AMD_EBX
    3289             &&  u32VendorECX == X86_CPUID_VENDOR_AMD_ECX
    3290             &&  u32VendorEDX == X86_CPUID_VENDOR_AMD_EDX
    3291            )
    3292         {
    3293             if (   (u32AMDFeatureECX & X86_CPUID_AMD_FEATURE_ECX_SVM)
    3294                 && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_MSR)
    3295                 && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_FXSR)
     3388        if (   ASMIsAmdCpuEx(uVendorEBX, uVendorECX, uVendorEDX)
     3389            && ASMIsValidStdRange(uMaxId))
     3390        {
     3391            uint32_t fExtFeaturesEcx, uExtMaxId;
     3392            ASMCpuId(0x80000000, &uExtMaxId, &uDummy, &uDummy, &uDummy);
     3393            ASMCpuId(0x80000001, &uDummy, &uDummy, &fExtFeaturesEcx, &uDummy);
     3394            if (   ASMIsValidExtRange(uExtMaxId)
     3395                && uExtMaxId >= 0x8000000a
     3396                && (fExtFeaturesEcx & X86_CPUID_AMD_FEATURE_ECX_SVM)
     3397                && (fFeaturesEDX    & X86_CPUID_FEATURE_EDX_MSR)
     3398                && (fFeaturesEDX    & X86_CPUID_FEATURE_EDX_FXSR)
    32963399               )
    32973400            {
    32983401                /* Check if SVM is disabled */
    3299                 val = ASMRdMsr(MSR_K8_VM_CR);
    3300                 if (!(val & MSR_K8_VM_CR_SVM_DISABLE))
     3402                u64Value = ASMRdMsr(MSR_K8_VM_CR);
     3403                if (!(u64Value & MSR_K8_VM_CR_SVM_DISABLE))
    33013404                {
    33023405                    *pfCaps |= SUPVTCAPS_AMD_V;
    33033406
    3304                     /* Query AMD features. */
    3305                     ASMCpuId(0x8000000A, &u32Dummy, &u32Dummy, &u32Dummy, &u32FeaturesEDX);
    3306 
    3307                     if (u32FeaturesEDX & AMD_CPUID_SVM_FEATURE_EDX_NESTED_PAGING)
     3407                    /* Query AMD-V features. */
     3408                    uint32_t fSvmFeatures;
     3409                    ASMCpuId(0x8000000a, &uDummy, &uDummy, &uDummy, &fSvmFeatures);
     3410                    if (fSvmFeatures & AMD_CPUID_SVM_FEATURE_EDX_NESTED_PAGING)
    33083411                        *pfCaps |= SUPVTCAPS_NESTED_PAGING;
    33093412
     
    54775580        /* Check for "AuthenticAMD" */
    54785581        ASMCpuId(0, &uEAX, &uEBX, &uECX, &uEDX);
    5479         if (    uEAX >= 1
    5480             &&  uEBX == X86_CPUID_VENDOR_AMD_EBX
    5481             &&  uECX == X86_CPUID_VENDOR_AMD_ECX
    5482             &&  uEDX == X86_CPUID_VENDOR_AMD_EDX)
     5582        if (   uEAX >= 1
     5583            && ASMIsAmdCpuEx(uEBX, uECX, uEDX))
    54835584        {
    54845585            /* Check for APM support and that TscInvariant is cleared. */
  • trunk/src/VBox/HostDrivers/Support/SUPDrvInternal.h

    r43379 r44173  
    407407    /** Session Cookie. */
    408408    uint32_t                        u32Cookie;
     409    /** Set if is an unrestricted session, clear if restricted. */
     410    bool                            fUnrestricted;
    409411
    410412    /** The VM associated with the session. */
     
    675677int  VBOXCALL   supdrvInitDevExt(PSUPDRVDEVEXT pDevExt, size_t cbSession);
    676678void VBOXCALL   supdrvDeleteDevExt(PSUPDRVDEVEXT pDevExt);
    677 int  VBOXCALL   supdrvCreateSession(PSUPDRVDEVEXT pDevExt, bool fUser, PSUPDRVSESSION *ppSession);
     679int  VBOXCALL   supdrvCreateSession(PSUPDRVDEVEXT pDevExt, bool fUser, bool fUnrestricted,  PSUPDRVSESSION *ppSession);
    678680void VBOXCALL   supdrvCloseSession(PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession);
    679681void VBOXCALL   supdrvCleanupSession(PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession);
  • trunk/src/VBox/HostDrivers/Support/SUPLib.cpp

    r43400 r44173  
    55
    66/*
    7  * Copyright (C) 2006-2010 Oracle Corporation
     7 * Copyright (C) 2006-2012 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    9898SUPLIBDATA                      g_supLibData =
    9999{
    100     SUP_HDEVICE_NIL
     100    /*.hDevice              = */    SUP_HDEVICE_NIL,
     101    /*.fUnrestricted        = */    true
    101102#if   defined(RT_OS_DARWIN)
    102     , NULL
     103    ,/* .uConnection        = */    NULL
    103104#elif defined(RT_OS_LINUX)
    104     , false
     105    ,/* .fSysMadviseWorks   = */    false
    105106#endif
    106107};
     
    210211
    211212
    212 SUPR3DECL(int) SUPR3Init(PSUPDRVSESSION *ppSession)
     213SUPR3DECL(int) SUPR3InitEx(bool fUnrestricted, PSUPDRVSESSION *ppSession)
    213214{
    214215    /*
     
    229230        *ppSession = g_pSession;
    230231    if (g_cInits++ > 0)
     232    {
     233        if (fUnrestricted && !g_supLibData.fUnrestricted)
     234        {
     235            g_cInits--;
     236            if (ppSession)
     237                *ppSession = NULL;
     238            return VERR_VM_DRIVER_NOT_ACCESSIBLE; /** @todo different status code? */
     239        }
    231240        return VINF_SUCCESS;
     241    }
    232242
    233243    /*
     
    252262     * Open the support driver.
    253263     */
    254     int rc = suplibOsInit(&g_supLibData, g_fPreInited);
     264    int rc = suplibOsInit(&g_supLibData, g_fPreInited, fUnrestricted);
    255265    if (RT_SUCCESS(rc))
    256266    {
     
    282292                 * Query the functions.
    283293                 */
    284                 PSUPQUERYFUNCS pFuncsReq = (PSUPQUERYFUNCS)RTMemAllocZ(SUP_IOCTL_QUERY_FUNCS_SIZE(CookieReq.u.Out.cFunctions));
    285                 if (pFuncsReq)
     294                PSUPQUERYFUNCS pFuncsReq = NULL;
     295                if (g_supLibData.fUnrestricted)
    286296                {
    287                     pFuncsReq->Hdr.u32Cookie            = CookieReq.u.Out.u32Cookie;
    288                     pFuncsReq->Hdr.u32SessionCookie     = CookieReq.u.Out.u32SessionCookie;
    289                     pFuncsReq->Hdr.cbIn                 = SUP_IOCTL_QUERY_FUNCS_SIZE_IN;
    290                     pFuncsReq->Hdr.cbOut                = SUP_IOCTL_QUERY_FUNCS_SIZE_OUT(CookieReq.u.Out.cFunctions);
    291                     pFuncsReq->Hdr.fFlags               = SUPREQHDR_FLAGS_DEFAULT;
    292                     pFuncsReq->Hdr.rc                   = VERR_INTERNAL_ERROR;
    293                     rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_QUERY_FUNCS(CookieReq.u.Out.cFunctions), pFuncsReq, SUP_IOCTL_QUERY_FUNCS_SIZE(CookieReq.u.Out.cFunctions));
    294                     if (RT_SUCCESS(rc))
    295                         rc = pFuncsReq->Hdr.rc;
    296                     if (RT_SUCCESS(rc))
     297                    pFuncsReq = (PSUPQUERYFUNCS)RTMemAllocZ(SUP_IOCTL_QUERY_FUNCS_SIZE(CookieReq.u.Out.cFunctions));
     298                    if (pFuncsReq)
    297299                    {
    298                         /*
    299                          * Map the GIP into userspace.
    300                          */
    301                         Assert(!g_pSUPGlobalInfoPage);
    302                         SUPGIPMAP GipMapReq;
    303                         GipMapReq.Hdr.u32Cookie         = CookieReq.u.Out.u32Cookie;
    304                         GipMapReq.Hdr.u32SessionCookie  = CookieReq.u.Out.u32SessionCookie;
    305                         GipMapReq.Hdr.cbIn              = SUP_IOCTL_GIP_MAP_SIZE_IN;
    306                         GipMapReq.Hdr.cbOut             = SUP_IOCTL_GIP_MAP_SIZE_OUT;
    307                         GipMapReq.Hdr.fFlags            = SUPREQHDR_FLAGS_DEFAULT;
    308                         GipMapReq.Hdr.rc                = VERR_INTERNAL_ERROR;
    309                         GipMapReq.u.Out.HCPhysGip       = NIL_RTHCPHYS;
    310                         GipMapReq.u.Out.pGipR0          = NIL_RTR0PTR;
    311                         GipMapReq.u.Out.pGipR3          = NULL;
    312                         rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_GIP_MAP, &GipMapReq, SUP_IOCTL_GIP_MAP_SIZE);
     300                        pFuncsReq->Hdr.u32Cookie            = CookieReq.u.Out.u32Cookie;
     301                        pFuncsReq->Hdr.u32SessionCookie     = CookieReq.u.Out.u32SessionCookie;
     302                        pFuncsReq->Hdr.cbIn                 = SUP_IOCTL_QUERY_FUNCS_SIZE_IN;
     303                        pFuncsReq->Hdr.cbOut                = SUP_IOCTL_QUERY_FUNCS_SIZE_OUT(CookieReq.u.Out.cFunctions);
     304                        pFuncsReq->Hdr.fFlags               = SUPREQHDR_FLAGS_DEFAULT;
     305                        pFuncsReq->Hdr.rc                   = VERR_INTERNAL_ERROR;
     306                        rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_QUERY_FUNCS(CookieReq.u.Out.cFunctions), pFuncsReq,
     307                                           SUP_IOCTL_QUERY_FUNCS_SIZE(CookieReq.u.Out.cFunctions));
    313308                        if (RT_SUCCESS(rc))
    314                             rc = GipMapReq.Hdr.rc;
     309                            rc = pFuncsReq->Hdr.rc;
    315310                        if (RT_SUCCESS(rc))
    316311                        {
    317                             AssertRelease(GipMapReq.u.Out.pGipR3->u32Magic == SUPGLOBALINFOPAGE_MAGIC);
    318                             AssertRelease(GipMapReq.u.Out.pGipR3->u32Version >= SUPGLOBALINFOPAGE_VERSION);
    319 
    320312                            /*
    321                              * Set the globals and return success.
     313                             * Map the GIP into userspace.
    322314                             */
    323                             ASMAtomicXchgSize(&g_HCPhysSUPGlobalInfoPage, GipMapReq.u.Out.HCPhysGip);
    324                             ASMAtomicCmpXchgPtr((void * volatile *)&g_pSUPGlobalInfoPage, GipMapReq.u.Out.pGipR3, NULL);
    325                             ASMAtomicCmpXchgPtr((void * volatile *)&g_pSUPGlobalInfoPageR0, (void *)GipMapReq.u.Out.pGipR0, NULL);
    326 
    327                             g_u32Cookie         = CookieReq.u.Out.u32Cookie;
    328                             g_u32SessionCookie  = CookieReq.u.Out.u32SessionCookie;
    329                             g_pSession          = CookieReq.u.Out.pSession;
    330                             g_pFunctions        = pFuncsReq;
    331                             if (ppSession)
    332                                 *ppSession = CookieReq.u.Out.pSession;
    333                             return VINF_SUCCESS;
     315                            Assert(!g_pSUPGlobalInfoPage);
     316                            SUPGIPMAP GipMapReq;
     317                            GipMapReq.Hdr.u32Cookie         = CookieReq.u.Out.u32Cookie;
     318                            GipMapReq.Hdr.u32SessionCookie  = CookieReq.u.Out.u32SessionCookie;
     319                            GipMapReq.Hdr.cbIn              = SUP_IOCTL_GIP_MAP_SIZE_IN;
     320                            GipMapReq.Hdr.cbOut             = SUP_IOCTL_GIP_MAP_SIZE_OUT;
     321                            GipMapReq.Hdr.fFlags            = SUPREQHDR_FLAGS_DEFAULT;
     322                            GipMapReq.Hdr.rc                = VERR_INTERNAL_ERROR;
     323                            GipMapReq.u.Out.HCPhysGip       = NIL_RTHCPHYS;
     324                            GipMapReq.u.Out.pGipR0          = NIL_RTR0PTR;
     325                            GipMapReq.u.Out.pGipR3          = NULL;
     326                            rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_GIP_MAP, &GipMapReq, SUP_IOCTL_GIP_MAP_SIZE);
     327                            if (RT_SUCCESS(rc))
     328                                rc = GipMapReq.Hdr.rc;
     329                            if (RT_SUCCESS(rc))
     330                            {
     331                                /*
     332                                 * Set the GIP globals.
     333                                 */
     334                                AssertRelease(GipMapReq.u.Out.pGipR3->u32Magic == SUPGLOBALINFOPAGE_MAGIC);
     335                                AssertRelease(GipMapReq.u.Out.pGipR3->u32Version >= SUPGLOBALINFOPAGE_VERSION);
     336
     337                                ASMAtomicXchgSize(&g_HCPhysSUPGlobalInfoPage, GipMapReq.u.Out.HCPhysGip);
     338                                ASMAtomicCmpXchgPtr((void * volatile *)&g_pSUPGlobalInfoPage, GipMapReq.u.Out.pGipR3, NULL);
     339                                ASMAtomicCmpXchgPtr((void * volatile *)&g_pSUPGlobalInfoPageR0, (void *)GipMapReq.u.Out.pGipR0, NULL);
     340                            }
    334341                        }
    335342                    }
    336 
    337                     /* bailout */
    338                     RTMemFree(pFuncsReq);
     343                    else
     344                        rc = VERR_NO_MEMORY;
    339345                }
    340                 else
    341                     rc = VERR_NO_MEMORY;
     346
     347                if (RT_SUCCESS(rc))
     348                {
     349                    /*
     350                     * Set the globals and return success.
     351                     */
     352                    g_u32Cookie         = CookieReq.u.Out.u32Cookie;
     353                    g_u32SessionCookie  = CookieReq.u.Out.u32SessionCookie;
     354                    g_pSession          = CookieReq.u.Out.pSession;
     355                    g_pFunctions        = pFuncsReq;
     356                    if (ppSession)
     357                        *ppSession = CookieReq.u.Out.pSession;
     358                    return VINF_SUCCESS;
     359                }
     360
     361                /* bailout */
     362                RTMemFree(pFuncsReq);
    342363            }
    343364            else
     
    371392
    372393    return rc;
     394}
     395
     396
     397SUPR3DECL(int) SUPR3Init(PSUPDRVSESSION *ppSession)
     398{
     399    return SUPR3InitEx(true, ppSession);
    373400}
    374401
  • trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h

    r38636 r44173  
    190190    int                 hDevice;
    191191#endif
     192    /** Indicates whether we have unrestricted (true) or restricted access to the
     193     * support device. */
     194    bool                fUnrestricted;
    192195#if   defined(RT_OS_DARWIN)
    193196    /** The connection to the VBoxSupDrv service. */
     
    264267int     suplibOsInstall(void);
    265268int     suplibOsUninstall(void);
    266 int     suplibOsInit(PSUPLIBDATA pThis, bool fPreInited);
     269int     suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted);
    267270int     suplibOsTerm(PSUPLIBDATA pThis);
    268271int     suplibOsIOCtl(PSUPLIBDATA pThis, uintptr_t uFunction, void *pvReq, size_t cbReq);
  • trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp

    r39538 r44173  
    578578static void supR3HardenedMainOpenDevice(void)
    579579{
    580     int rc = suplibOsInit(&g_SupPreInitData.Data, false);
     580    int rc = suplibOsInit(&g_SupPreInitData.Data, false /*fPreInit*/, true /*fUnrestricted*/);
    581581    if (RT_SUCCESS(rc))
    582582        return;
  • trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp

    r43394 r44173  
    55
    66/*
    7  * Copyright (C) 2006-2007 Oracle Corporation
     7 * Copyright (C) 2006-2012 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    8080*******************************************************************************/
    8181
    82 /** The module name. */
    83 #define DEVICE_NAME    "vboxdrv"
     82/** The system device node name. */
     83#define DEVICE_NAME_SYS     "vboxdrv"
     84/** The user device node name. */
     85#define DEVICE_NAME_USR     "vboxdrvu"
    8486
    8587
     
    203205/** Major device number. */
    204206static int              g_iMajorDeviceNo = -1;
    205 /** Registered devfs device handle. */
    206 static void            *g_hDevFsDevice = NULL;
     207/** Registered devfs device handle for the system device. */
     208static void            *g_hDevFsDeviceSys = NULL;
     209/** Registered devfs device handle for the user device. */
     210static void            *g_hDevFsDeviceUsr = NULL;
    207211
    208212/** Spinlock protecting g_apSessionHashTab. */
     
    261265                {
    262266#ifdef VBOX_WITH_HARDENING
    263                     g_hDevFsDevice = devfs_make_node(makedev(g_iMajorDeviceNo, 0), DEVFS_CHAR,
    264                                                      UID_ROOT, GID_WHEEL, 0600, DEVICE_NAME);
     267                    g_hDevFsDeviceSys = devfs_make_node(makedev(g_iMajorDeviceNo, 0), DEVFS_CHAR,
     268                                                        UID_ROOT, GID_WHEEL, 0600, DEVICE_NAME_SYS);
    265269#else
    266                     g_hDevFsDevice = devfs_make_node(makedev(g_iMajorDeviceNo, 0), DEVFS_CHAR,
    267                                                      UID_ROOT, GID_WHEEL, 0666, DEVICE_NAME);
     270                    g_hDevFsDeviceSys = devfs_make_node(makedev(g_iMajorDeviceNo, 0), DEVFS_CHAR,
     271                                                        UID_ROOT, GID_WHEEL, 0666, DEVICE_NAME_SYS);
    268272#endif
    269                     if (g_hDevFsDevice)
     273                    if (g_hDevFsDeviceSys)
    270274                    {
    271                         LogRel(("VBoxDrv: version " VBOX_VERSION_STRING " r%d; IOCtl version %#x; IDC version %#x; dev major=%d\n",
    272                                 VBOX_SVN_REV, SUPDRV_IOC_VERSION, SUPDRV_IDC_VERSION, g_iMajorDeviceNo));
    273 
    274                         /* Register a sleep/wakeup notification callback */
    275                         g_pSleepNotifier = registerPrioritySleepWakeInterest(&VBoxDrvDarwinSleepHandler, &g_DevExt, NULL);
    276                         if (g_pSleepNotifier == NULL)
    277                             LogRel(("VBoxDrv: register for sleep/wakeup events failed\n"));
    278 
    279                         /* Find kernel symbols that are kind of optional. */
    280                         vboxdrvDarwinResolveSymbols();
    281                         return KMOD_RETURN_SUCCESS;
     275                        g_hDevFsDeviceUsr = devfs_make_node(makedev(g_iMajorDeviceNo, 1), DEVFS_CHAR,
     276                                                            UID_ROOT, GID_WHEEL, 0666, DEVICE_NAME_USR);
     277                        if (g_hDevFsDeviceUsr)
     278                        {
     279                            LogRel(("VBoxDrv: version " VBOX_VERSION_STRING " r%d; IOCtl version %#x; IDC version %#x; dev major=%d\n",
     280                                    VBOX_SVN_REV, SUPDRV_IOC_VERSION, SUPDRV_IDC_VERSION, g_iMajorDeviceNo));
     281
     282                            /* Register a sleep/wakeup notification callback */
     283                            g_pSleepNotifier = registerPrioritySleepWakeInterest(&VBoxDrvDarwinSleepHandler, &g_DevExt, NULL);
     284                            if (g_pSleepNotifier == NULL)
     285                                LogRel(("VBoxDrv: register for sleep/wakeup events failed\n"));
     286
     287                            /* Find kernel symbols that are kind of optional. */
     288                            vboxdrvDarwinResolveSymbols();
     289                            return KMOD_RETURN_SUCCESS;
     290                        }
     291
     292                        LogRel(("VBoxDrv: devfs_make_node(makedev(%d,1),,,,%s) failed\n", g_iMajorDeviceNo, DEVICE_NAME_USR));
     293                        devfs_remove(g_hDevFsDeviceSys);
     294                        g_hDevFsDeviceSys = NULL;
    282295                    }
    283 
    284                     LogRel(("VBoxDrv: devfs_make_node(makedev(%d,0),,,,%s) failed\n", g_iMajorDeviceNo, DEVICE_NAME));
     296                    else
     297                        LogRel(("VBoxDrv: devfs_make_node(makedev(%d,0),,,,%s) failed\n", g_iMajorDeviceNo, DEVICE_NAME_SYS));
     298
    285299                    cdevsw_remove(g_iMajorDeviceNo, &g_DevCW);
    286300                    g_iMajorDeviceNo = -1;
     
    360374    }
    361375
    362     devfs_remove(g_hDevFsDevice);
    363     g_hDevFsDevice = NULL;
     376    devfs_remove(g_hDevFsDeviceUsr);
     377    g_hDevFsDeviceUsr = NULL;
     378
     379    devfs_remove(g_hDevFsDeviceSys);
     380    g_hDevFsDeviceSys = NULL;
    364381
    365382    rc = cdevsw_remove(g_iMajorDeviceNo, &g_DevCW);
     
    386403 * Device open. Called on open /dev/vboxdrv
    387404 *
    388  * @param   pInode      Pointer to inode info structure.
    389  * @param   pFilp       Associated file pointer.
     405 * @param   Dev         The device number.
     406 * @param   fFlags      ???.
     407 * @param   fDevType    ???.
     408 * @param   pProcess    The process issuing this request.
    390409 */
    391410static int VBoxDrvDarwinOpen(dev_t Dev, int fFlags, int fDevType, struct proc *pProcess)
     
    399418
    400419    /*
     420     * Only two minor devices numbers are allowed.
     421     */
     422    if (minor(Dev) != 0 && minor(Dev) != 1)
     423        return EACCES;
     424
     425    /*
    401426     * Find the session created by org_virtualbox_SupDrvClient, fail
    402427     * if no such session, and mark it as opened. We set the uid & gid
    403428     * here too, since that is more straight forward at this point.
    404429     */
     430    const bool      fUnrestricted = minor(Dev) == 0;
    405431    int             rc = VINF_SUCCESS;
    406432    PSUPDRVSESSION  pSession = NULL;
     
    420446
    421447        pSession = g_apSessionHashTab[iHash];
    422         if (pSession && pSession->Process != Process)
    423         {
    424             do pSession = pSession->pNextHash;
    425             while (pSession && pSession->Process != Process);
    426         }
     448        while (pSession && pSession->Process != Process)
     449            pSession = pSession->pNextHash;
    427450        if (pSession)
    428451        {
     
    430453            {
    431454                pSession->fOpened = true;
     455                pSession->fUnrestricted = fUnrestricted;
    432456                pSession->Uid = Uid;
    433457                pSession->Gid = Gid;
     
    488512static int VBoxDrvDarwinIOCtl(dev_t Dev, u_long iCmd, caddr_t pData, int fFlags, struct proc *pProcess)
    489513{
     514    const bool          fUnrestricted = minor(Dev) == 0;
    490515    const RTPROCESS     Process = proc_pid(pProcess);
    491516    const unsigned      iHash = SESSION_HASH(Process);
     
    497522    RTSpinlockAcquire(g_Spinlock);
    498523    pSession = g_apSessionHashTab[iHash];
    499     if (pSession && pSession->Process != Process)
    500     {
    501         do pSession = pSession->pNextHash;
    502         while (pSession && pSession->Process != Process);
    503     }
     524    while (pSession && pSession->Process != Process && pSession->fUnrestricted == fUnrestricted && pSession->fOpened)
     525        pSession = pSession->pNextHash;
    504526    RTSpinlockReleaseNoInts(g_Spinlock);
    505527    if (!pSession)
     
    514536     * the session and iCmd, and only returns a VBox status code.
    515537     */
    516     if (    iCmd == SUP_IOCTL_FAST_DO_RAW_RUN
    517         ||  iCmd == SUP_IOCTL_FAST_DO_HM_RUN
    518         ||  iCmd == SUP_IOCTL_FAST_DO_NOP)
     538    if (   (    iCmd == SUP_IOCTL_FAST_DO_RAW_RUN
     539            ||  iCmd == SUP_IOCTL_FAST_DO_HM_RUN
     540            ||  iCmd == SUP_IOCTL_FAST_DO_NOP)
     541        && fUnrestricted)
    519542        return supdrvIOCtlFast(iCmd, *(uint32_t *)pData, &g_DevExt, pSession);
    520543    return VBoxDrvDarwinIOCtlSlow(pSession, iCmd, pData, pProcess);
     
    10941117             * Create a new session.
    10951118             */
    1096             int rc = supdrvCreateSession(&g_DevExt, true /* fUser */, &m_pSession);
     1119            int rc = supdrvCreateSession(&g_DevExt, true /* fUser */, false /*fUnrestricted*/, &m_pSession);
    10971120            if (RT_SUCCESS(rc))
    10981121            {
    10991122                m_pSession->fOpened = false;
    1100                 /* The Uid and Gid fields are set on open. */
     1123                /* The Uid, Gid and fUnrestricted fields are set on open. */
    11011124
    11021125                /*
    11031126                 * Insert it into the hash table, checking that there isn't
    1104                  * already one for this process first.
     1127                 * already one for this process first. (One session per proc!)
    11051128                 */
    11061129                unsigned iHash = SESSION_HASH(m_pSession->Process);
     
    11471170/**
    11481171 * Common worker for clientClose and VBoxDrvDarwinClose.
    1149  *
    1150  * It will
    11511172 */
    11521173/* static */ void org_virtualbox_SupDrvClient::sessionClose(RTPROCESS Process)
    11531174{
    11541175    /*
    1155      * Look for the session.
     1176     * Find the session and remove it from the hash table.
     1177     *
     1178     * Note! Only one session per process. (Both start() and
     1179     * VBoxDrvDarwinOpen makes sure this is so.)
    11561180     */
    11571181    const unsigned  iHash = SESSION_HASH(Process);
  • trunk/src/VBox/HostDrivers/Support/darwin/SUPLib-darwin.cpp

    r37596 r44173  
    6262*   Defined Constants And Macros                                               *
    6363*******************************************************************************/
    64 /** BSD Device name. */
    65 #define DEVICE_NAME     "/dev/vboxdrv"
     64/** System device name. */
     65#define DEVICE_NAME_SYS "/dev/vboxdrv"
     66/** User device name. */
     67#define DEVICE_NAME_USR "/dev/vboxdrvu"
    6668/** The IOClass key of the service (see SUPDrv-darwin.cpp / Info.plist). */
    6769#define IOCLASS_NAME    "org_virtualbox_SupDrv"
     
    7476 * @returns VBox status code.
    7577 */
    76 static int suplibDarwinOpenDevice(PSUPLIBDATA pThis)
     78static int suplibDarwinOpenDevice(PSUPLIBDATA pThis, bool fUnrestricted)
    7779{
    7880    /*
     
    8183     * started, so it has to be done after opening the service (IOC v9.1+).
    8284     */
    83     int hDevice = open(DEVICE_NAME, O_RDWR, 0);
     85    int hDevice = open(fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, O_RDWR, 0);
    8486    if (hDevice < 0)
    8587    {
     
    9395            default:        rc = VERR_VM_DRIVER_OPEN_ERROR; break;
    9496        }
    95         LogRel(("SUP: Failed to open \"%s\", errno=%d, rc=%Rrc\n", DEVICE_NAME, errno, rc));
     97        LogRel(("SUP: Failed to open \"%s\", errno=%d, rc=%Rrc\n", fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, errno, rc));
    9698        return rc;
    9799    }
     
    113115    }
    114116
    115     pThis->hDevice = hDevice;
     117    pThis->hDevice       = hDevice;
     118    pThis->fUnrestricted = fUnrestricted;
    116119    return VINF_SUCCESS;
    117120}
     
    183186
    184187
    185 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited)
     188int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted)
    186189{
    187190    /*
     
    198201    if (RT_SUCCESS(rc))
    199202    {
    200         rc = suplibDarwinOpenDevice(pThis);
     203        rc = suplibDarwinOpenDevice(pThis, fUnrestricted);
    201204        if (RT_FAILURE(rc))
    202205        {
  • trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c

    r43435 r44173  
    230230     * Create a new session.
    231231     */
    232     rc = supdrvCreateSession(&g_VBoxDrvFreeBSDDevExt, true /* fUser */, &pSession);
     232    rc = supdrvCreateSession(&g_VBoxDrvFreeBSDDevExt, true /* fUser */, true /*fUnrestricted*/, &pSession);
    233233    if (RT_SUCCESS(rc))
    234234    {
  • trunk/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp

    r39521 r44173  
    6161*   Defined Constants And Macros                                               *
    6262*******************************************************************************/
    63 /** FreeBSD base device name. */
    64 #define DEVICE_NAME     "/dev/vboxdrv"
     63/** System device name. */
     64#define DEVICE_NAME_SYS "/dev/vboxdrv"
     65/** User device name. */
     66#define DEVICE_NAME_USR "/dev/vboxdrvu"
    6567
    6668
    6769
    68 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited)
     70int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted)
    6971{
    7072    /*
     
    7779     * Try open the BSD device.
    7880     */
    79     int hDevice = open(DEVICE_NAME, O_RDWR, 0);
     81    int hDevice = open(fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, O_RDWR, 0);
    8082    if (hDevice < 0)
    8183    {
     
    8991            default:        rc = VERR_VM_DRIVER_OPEN_ERROR; break;
    9092        }
    91         LogRel(("Failed to open \"%s\", errno=%d, rc=%Rrc\n", DEVICE_NAME, errno, rc));
     93        LogRel(("Failed to open \"%s\", errno=%d, rc=%Rrc\n", fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, errno, rc));
    9294        return rc;
    9395    }
     
    112114     * We're done.
    113115     */
    114     pThis->hDevice = hDevice;
     116    pThis->hDevice       = hDevice;
     117    pThis->fUnrestricted = fUnrestricted;
    115118    return VINF_SUCCESS;
    116119}
  • trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c

    r43394 r44173  
    436436     * Call common code for the rest.
    437437     */
    438     rc = supdrvCreateSession(&g_DevExt, true /* fUser */, &pSession);
     438    rc = supdrvCreateSession(&g_DevExt, true /* fUser */, true /*fUnrestricted*/, &pSession);
    439439    if (!rc)
    440440    {
  • trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp

    r39091 r44173  
    6262*   Defined Constants And Macros                                               *
    6363*******************************************************************************/
    64 /** Unix Device name. */
    65 #define DEVICE_NAME     "/dev/vboxdrv"
     64/** System device name. */
     65#define DEVICE_NAME_SYS     "/dev/vboxdrv"
     66/** User device name. */
     67#define DEVICE_NAME_USR     "/dev/vboxdrvu"
    6668
    6769/* define MADV_DONTFORK if it's missing from the system headers. */
     
    7274
    7375
    74 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited)
     76int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted)
    7577{
    7678    /*
     
    9395     * Try open the device.
    9496     */
    95     int hDevice = open(DEVICE_NAME, O_RDWR, 0);
     97    int hDevice = open(fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, O_RDWR, 0);
    9698    if (hDevice < 0)
    9799    {
     
    99101         * Try load the device.
    100102         */
    101         hDevice = open(DEVICE_NAME, O_RDWR, 0);
     103        hDevice = open(fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, O_RDWR, 0);
    102104        if (hDevice < 0)
    103105        {
     
    133135     * We're done.
    134136     */
    135     pThis->hDevice = hDevice;
     137    pThis->hDevice       = hDevice;
     138    pThis->fUnrestricted = fUnrestricted;
    136139    return VINF_SUCCESS;
    137140}
  • trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp

    r41067 r44173  
    151151     * Create a new session.
    152152     */
    153     rc = supdrvCreateSession(&g_DevExt, true /* fUser */, &pSession);
     153    rc = supdrvCreateSession(&g_DevExt, true /* fUser */, true /*fUnrestricted*/, &pSession);
    154154    if (RT_SUCCESS(rc))
    155155    {
  • trunk/src/VBox/HostDrivers/Support/os2/SUPLib-os2.cpp

    r37596 r44173  
    6666
    6767
    68 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited)
     68int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted)
    6969{
    7070    /*
     
    101101
    102102    pThis->hDevice = hDevice;
     103    pThis->fUnrestricted = true;
    103104    return VINF_SUCCESS;
    104105}
  • trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c

    r43394 r44173  
    197197int _init(void)
    198198{
    199     LogFlowFunc((DEVICE_NAME ":_init\n"));
     199    LogFlowFunc(("vboxdrv:_init\n"));
    200200
    201201    /*
     
    206206        pModCtl->mod_loadflags |= MOD_NOAUTOUNLOAD;
    207207    else
    208         LogRel((DEVICE_NAME ":failed to disable autounloading!\n"));
     208        LogRel(("vboxdrv: failed to disable autounloading!\n"));
    209209
    210210    /*
     
    235235
    236236                    ddi_soft_state_fini(&g_pVBoxDrvSolarisState);
    237                     LogRel((DEVICE_NAME ":mod_install failed! rc=%d\n", rc));
     237                    LogRel(("vboxdrv: mod_install failed! rc=%d\n", rc));
    238238                }
    239239                else
    240                     LogRel((DEVICE_NAME ":failed to initialize soft state.\n"));
     240                    LogRel(("vboxdrv: failed to initialize soft state.\n"));
    241241
    242242                RTSpinlockDestroy(g_Spinlock);
     
    245245            else
    246246            {
    247                 LogRel((DEVICE_NAME ":VBoxDrvSolarisAttach: RTSpinlockCreate failed\n"));
     247                LogRel(("VBoxDrvSolarisAttach: RTSpinlockCreate failed\n"));
    248248                rc = RTErrConvertToErrno(rc);
    249249            }
     
    252252        else
    253253        {
    254             LogRel((DEVICE_NAME ":VBoxDrvSolarisAttach: supdrvInitDevExt failed\n"));
     254            LogRel(("VBoxDrvSolarisAttach: supdrvInitDevExt failed\n"));
    255255            rc = RTErrConvertToErrno(rc);
    256256        }
     
    259259    else
    260260    {
    261         LogRel((DEVICE_NAME ":VBoxDrvSolarisAttach: failed to init R0Drv\n"));
     261        LogRel(("VBoxDrvSolarisAttach: failed to init R0Drv\n"));
    262262        rc = RTErrConvertToErrno(rc);
    263263    }
     
    270270int _fini(void)
    271271{
    272     LogFlowFunc((DEVICE_NAME ":_fini\n"));
     272    LogFlowFunc(("vboxdrv:_fini\n"));
    273273
    274274    /*
     
    296296int _info(struct modinfo *pModInfo)
    297297{
    298     LogFlowFunc((DEVICE_NAME ":_info\n"));
     298    LogFlowFunc(("vboxdrv:_info\n"));
    299299    int e = mod_info(&g_VBoxDrvSolarisModLinkage, pModInfo);
    300300    return e;
     
    312312static int VBoxDrvSolarisAttach(dev_info_t *pDip, ddi_attach_cmd_t enmCmd)
    313313{
    314     LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisAttach\n"));
     314    LogFlowFunc(("VBoxDrvSolarisAttach\n"));
    315315
    316316    switch (enmCmd)
     
    325325            if (ddi_soft_state_zalloc(g_pVBoxDrvSolarisState, instance) != DDI_SUCCESS)
    326326            {
    327                 LogRel((DEVICE_NAME ":VBoxDrvSolarisAttach: state alloc failed\n"));
     327                LogRel(("VBoxDrvSolarisAttach: state alloc failed\n"));
    328328                return DDI_FAILURE;
    329329            }
     
    338338                                "pm-hardware-state", "needs-suspend-resume", sizeof("needs-suspend-resume"));
    339339            if (rc != DDI_PROP_SUCCESS)
    340                 LogRel((DEVICE_NAME ":Suspend/Resume notification registration failed.\n"));
     340                LogRel(("vboxdrv: Suspend/Resume notification registration failed.\n"));
    341341
    342342            /*
     
    372372#endif
    373373            RTPowerSignalEvent(RTPOWEREVENT_RESUME);
    374             LogFlow((DEVICE_NAME ": Awakened from suspend.\n"));
     374            LogFlow(("vboxdrv: Awakened from suspend.\n"));
    375375            return DDI_SUCCESS;
    376376        }
     
    394394static int VBoxDrvSolarisDetach(dev_info_t *pDip, ddi_detach_cmd_t enmCmd)
    395395{
    396     LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisDetach\n"));
     396    LogFlowFunc(("VBoxDrvSolarisDetach\n"));
    397397    switch (enmCmd)
    398398    {
     
    421421#endif
    422422            RTPowerSignalEvent(RTPOWEREVENT_SUSPEND);
    423             LogFlow((DEVICE_NAME ": Falling to suspend mode.\n"));
     423            LogFlow(("vboxdrv: Falling to suspend mode.\n"));
    424424            return DDI_SUCCESS;
    425425
     
    440440    int                 rc;
    441441    PSUPDRVSESSION      pSession;
    442     LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisOpen: pDev=%p:%#x\n", pDev, *pDev));
     442    LogFlowFunc(("VBoxDrvSolarisOpen: pDev=%p:%#x\n", pDev, *pDev));
    443443
    444444#ifndef USE_SESSION_HASH
     
    462462    if (!pState)
    463463    {
    464         LogRel((DEVICE_NAME ":VBoxDrvSolarisOpen: too many open instances.\n"));
     464        LogRel(("VBoxDrvSolarisOpen: too many open instances.\n"));
    465465        return ENXIO;
    466466    }
     
    469469     * Create a new session.
    470470     */
    471     rc = supdrvCreateSession(&g_DevExt, true /* fUser */, &pSession);
     471    rc = supdrvCreateSession(&g_DevExt, true /* fUser */, true /*fUnrestricted*/, &pSession);
    472472    if (RT_SUCCESS(rc))
    473473    {
     
    477477        pState->pSession = pSession;
    478478        *pDev = makedevice(getmajor(*pDev), iOpenInstance);
    479         LogFlow((DEVICE_NAME ":VBoxDrvSolarisOpen: Dev=%#x pSession=%p pid=%d r0proc=%p thread=%p\n",
    480                     *pDev, pSession, RTProcSelf(), RTR0ProcHandleSelf(), RTThreadNativeSelf() ));
     479        LogFlow(("VBoxDrvSolarisOpen: Dev=%#x pSession=%p pid=%d r0proc=%p thread=%p\n",
     480                 *pDev, pSession, RTProcSelf(), RTR0ProcHandleSelf(), RTThreadNativeSelf() ));
    481481        return 0;
    482482    }
     
    491491     * in VBoxDrvSolarisIOCtlSlow() while calling supdrvIOCtl()
    492492     */
    493     rc = supdrvCreateSession(&g_DevExt, true /* fUser */, &pSession);
     493    rc = supdrvCreateSession(&g_DevExt, true /* fUser */, true /*fUnrestricted*/, &pSession);
    494494    if (RT_SUCCESS(rc))
    495495    {
     
    507507        g_apSessionHashTab[iHash] = pSession;
    508508        RTSpinlockReleaseNoInts(g_Spinlock);
    509         LogFlow((DEVICE_NAME ":VBoxDrvSolarisOpen success\n"));
     509        LogFlow(("VBoxDrvSolarisOpen success\n"));
    510510    }
    511511
     
    520520    if (instance >= DEVICE_MAXINSTANCES)
    521521    {
    522         LogRel((DEVICE_NAME ":VBoxDrvSolarisOpen: All instances exhausted\n"));
     522        LogRel(("VBoxDrvSolarisOpen: All instances exhausted\n"));
    523523        return ENXIO;
    524524    }
     
    533533static int VBoxDrvSolarisClose(dev_t Dev, int flag, int otyp, cred_t *cred)
    534534{
    535     LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisClose: Dev=%#x\n", Dev));
     535    LogFlowFunc(("VBoxDrvSolarisClose: Dev=%#x\n", Dev));
    536536
    537537#ifndef USE_SESSION_HASH
     
    542542    if (!pState)
    543543    {
    544         LogRel((DEVICE_NAME ":VBoxDrvSolarisClose: no state data for %#x (%d)\n", Dev, getminor(Dev)));
     544        LogRel(("VBoxDrvSolarisClose: no state data for %#x (%d)\n", Dev, getminor(Dev)));
    545545        return EFAULT;
    546546    }
     
    552552    if (!pSession)
    553553    {
    554         LogRel((DEVICE_NAME ":VBoxDrvSolarisClose: no session in state data for %#x (%d)\n", Dev, getminor(Dev)));
     554        LogRel(("VBoxDrvSolarisClose: no session in state data for %#x (%d)\n", Dev, getminor(Dev)));
    555555        return EFAULT;
    556556    }
    557     LogFlow((DEVICE_NAME ":VBoxDrvSolarisClose: Dev=%#x pSession=%p pid=%d r0proc=%p thread=%p\n",
     557    LogFlow(("VBoxDrvSolarisClose: Dev=%#x pSession=%p pid=%d r0proc=%p thread=%p\n",
    558558            Dev, pSession, RTProcSelf(), RTR0ProcHandleSelf(), RTThreadNativeSelf() ));
    559559
     
    597597    if (!pSession)
    598598    {
    599         LogRel((DEVICE_NAME ":VBoxDrvSolarisClose: WHAT?!? pSession == NULL! This must be a mistake... pid=%d (close)\n",
    600                     (int)Process));
     599        LogRel(("VBoxDrvSolarisClose: WHAT?!? pSession == NULL! This must be a mistake... pid=%d (close)\n", (int)Process));
    601600        return EFAULT;
    602601    }
     
    613612static int VBoxDrvSolarisRead(dev_t Dev, struct uio *pUio, cred_t *pCred)
    614613{
    615     LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisRead"));
     614    LogFlowFunc(("VBoxDrvSolarisRead"));
    616615    return 0;
    617616}
     
    620619static int VBoxDrvSolarisWrite(dev_t Dev, struct uio *pUio, cred_t *pCred)
    621620{
    622     LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisWrite"));
     621    LogFlowFunc(("VBoxDrvSolarisWrite"));
    623622    return 0;
    624623}
     
    646645    if (!pState)
    647646    {
    648         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtl: no state data for %#x (%d)\n", Dev, getminor(Dev)));
     647        LogRel(("VBoxDrvSolarisIOCtl: no state data for %#x (%d)\n", Dev, getminor(Dev)));
    649648        return EINVAL;
    650649    }
     
    653652    if (!pSession)
    654653    {
    655         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtl: no session in state data for %#x (%d)\n", Dev, getminor(Dev)));
     654        LogRel(("VBoxDrvSolarisIOCtl: no session in state data for %#x (%d)\n", Dev, getminor(Dev)));
    656655        return DDI_SUCCESS;
    657656    }
     
    674673    if (!pSession)
    675674    {
    676         LogRel((DEVICE_NAME ":VBoxSupDrvIOCtl: WHAT?!? pSession == NULL! This must be a mistake... pid=%d iCmd=%#x\n",
     675        LogRel(("VBoxSupDrvIOCtl: WHAT?!? pSession == NULL! This must be a mistake... pid=%d iCmd=%#x\n",
    677676                    (int)Process, Cmd));
    678677        return EINVAL;
     
    732731    if (RT_UNLIKELY(IOCPARM_LEN(iCmd) != sizeof(StackBuf.Hdr)))
    733732    {
    734         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: iCmd=%#x len %d expected %d\n", iCmd, IOCPARM_LEN(iCmd), sizeof(StackBuf.Hdr)));
     733        LogRel(("VBoxDrvSolarisIOCtlSlow: iCmd=%#x len %d expected %d\n", iCmd, IOCPARM_LEN(iCmd), sizeof(StackBuf.Hdr)));
    735734        return EINVAL;
    736735    }
     
    738737    if (RT_UNLIKELY(rc))
    739738    {
    740         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: ddi_copyin(,%#lx,) failed; iCmd=%#x. rc=%d\n", iArg, iCmd, rc));
     739        LogRel(("VBoxDrvSolarisIOCtlSlow: ddi_copyin(,%#lx,) failed; iCmd=%#x. rc=%d\n", iArg, iCmd, rc));
    741740        return EFAULT;
    742741    }
    743742    if (RT_UNLIKELY((StackBuf.Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK) != SUPREQHDR_FLAGS_MAGIC))
    744743    {
    745         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: bad header magic %#x; iCmd=%#x\n", StackBuf.Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK, iCmd));
     744        LogRel(("VBoxDrvSolarisIOCtlSlow: bad header magic %#x; iCmd=%#x\n", StackBuf.Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK, iCmd));
    746745        return EINVAL;
    747746    }
     
    751750                    ||  cbBuf > _1M*16))
    752751    {
    753         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: max(%#x,%#x); iCmd=%#x\n", StackBuf.Hdr.cbIn, StackBuf.Hdr.cbOut, iCmd));
     752        LogRel(("VBoxDrvSolarisIOCtlSlow: max(%#x,%#x); iCmd=%#x\n", StackBuf.Hdr.cbIn, StackBuf.Hdr.cbOut, iCmd));
    754753        return EINVAL;
    755754    }
     
    765764        if (RT_UNLIKELY(!pHdr))
    766765        {
    767             LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: failed to allocate buffer of %d bytes for iCmd=%#x.\n", cbBuf, iCmd));
     766            LogRel(("VBoxDrvSolarisIOCtlSlow: failed to allocate buffer of %d bytes for iCmd=%#x.\n", cbBuf, iCmd));
    768767            return ENOMEM;
    769768        }
     
    772771    if (RT_UNLIKELY(rc))
    773772    {
    774         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: copy_from_user(,%#lx, %#x) failed; iCmd=%#x. rc=%d\n", iArg, cbBuf, iCmd, rc));
     773        LogRel(("VBoxDrvSolarisIOCtlSlow: copy_from_user(,%#lx, %#x) failed; iCmd=%#x. rc=%d\n", iArg, cbBuf, iCmd, rc));
    775774        if (pHdr != &StackBuf.Hdr)
    776775            RTMemFree(pHdr);
     
    791790        if (RT_UNLIKELY(cbOut > cbBuf))
    792791        {
    793             LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: too much output! %#x > %#x; iCmd=%#x!\n", cbOut, cbBuf, iCmd));
     792            LogRel(("VBoxDrvSolarisIOCtlSlow: too much output! %#x > %#x; iCmd=%#x!\n", cbOut, cbBuf, iCmd));
    794793            cbOut = cbBuf;
    795794        }
     
    798797        {
    799798            /* this is really bad */
    800             LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: ddi_copyout(,%p,%d) failed. rc=%d\n", (void *)iArg, cbBuf, rc));
     799            LogRel(("VBoxDrvSolarisIOCtlSlow: ddi_copyout(,%p,%d) failed. rc=%d\n", (void *)iArg, cbBuf, rc));
    801800            rc = EFAULT;
    802801        }
  • trunk/src/VBox/HostDrivers/Support/solaris/SUPLib-solaris.cpp

    r41774 r44173  
    6565*   Defined Constants And Macros                                               *
    6666*******************************************************************************/
    67 /** Solaris device link. */
    68 #define DEVICE_NAME     "/dev/vboxdrv"
    69 
    70 
    71 
    72 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited)
     67/** Solaris device link - system. */
     68#define DEVICE_NAME_SYS     "/dev/vboxdrv"
     69/** Solaris device link - user. */
     70#define DEVICE_NAME_USR     "/dev/vboxdrvu"
     71
     72
     73
     74int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted)
    7375{
    7476    /*
     
    102104     * Try to open the device.
    103105     */
    104     int hDevice = open(DEVICE_NAME, O_RDWR, 0);
     106    int hDevice = open(fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR, O_RDWR, 0);
    105107    if (hDevice < 0)
    106108    {
     
    134136    }
    135137
    136     pThis->hDevice = hDevice;
     138    pThis->hDevice       = hDevice;
     139    pThis->fUnrestricted = fUnrestricted;
    137140    return VINF_SUCCESS;
    138141}
  • trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp

    r43394 r44173  
    265265        pFileObj->FsContext = NULL;
    266266        PSUPDRVSESSION pSession;
    267         int rc = supdrvCreateSession(pDevExt, true /*fUser*/, &pSession);
     267        int rc = supdrvCreateSession(pDevExt, true /*fUser*/, true /*fUnrestricted*/, &pSession);
    268268        if (!rc)
    269269            pFileObj->FsContext = pSession;
  • trunk/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp

    r37596 r44173  
    5757/** The support service name. */
    5858#define SERVICE_NAME    "VBoxDrv"
    59 /** Win32 Device name. */
    60 #define DEVICE_NAME     "\\\\.\\VBoxDrv"
     59/** Win32 Device name - system. */
     60#define DEVICE_NAME_SYS "\\\\.\\VBoxDrv"
     61/** Win32 Device name - user. */
     62#define DEVICE_NAME_USR "\\\\.\\VBoxDrvU"
    6163/** NT Device name. */
    6264#define DEVICE_NAME_NT   L"\\Device\\VBoxDrv"
     
    7880
    7981
    80 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited)
     82int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted)
    8183{
    8284    /*
     
    8991     * Try open the device.
    9092     */
    91     HANDLE hDevice = CreateFile(DEVICE_NAME,
     93    HANDLE hDevice = CreateFile(fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR,
    9294                                GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
    9395                                NULL,
     
    103105        suplibOsStartService();
    104106
    105         hDevice = CreateFile(DEVICE_NAME,
     107        hDevice = CreateFile(fUnrestricted ? DEVICE_NAME_SYS : DEVICE_NAME_USR,
    106108                             GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
    107109                             NULL,
     
    139141     * We're done.
    140142     */
    141     pThis->hDevice = hDevice;
     143    pThis->hDevice       = hDevice;
     144    pThis->fUnrestricted = fUnrestricted;
    142145    return VINF_SUCCESS;
    143146}
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette