Changeset 19343 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- May 4, 2009 9:28:43 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46830
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r18968 r19343 52 52 #include <iprt/process.h> 53 53 #include <iprt/assert.h> 54 #include <iprt/uuid.h> 54 55 #include <VBox/log.h> 55 56 #include <iprt/alloc.h> 56 57 #include <iprt/err.h> 57 58 59 #ifdef VBOX_WITH_HARDENING 60 # define VBOXDRV_PERM 0600 61 #else 62 # define VBOXDRV_PERM 0666 63 #endif 58 64 59 65 /******************************************************************************* … … 86 92 /** Declare the module as a pseudo device. */ 87 93 DECLARE_MODULE(vboxdrv, g_VBoxDrvFreeBSDModule, SI_SUB_PSEUDO, SI_ORDER_ANY); 94 MODULE_VERSION(vboxdrv, 1); 88 95 89 96 /** … … 110 117 static SUPDRVDEVEXT g_VBoxDrvFreeBSDDevExt; 111 118 112 113 119 /** Just a dummy global structure containing a bunch of 120 * function pointers to code which is wanted in the link. 121 */ 122 static PFNRT g_apfnVBoxDrvFreeBSDDeps[] = 123 { 124 /* Needed for vboxnetflt. */ 125 (PFNRT)RTUuidFromStr, 126 (PFNRT)RTUuidCompareStr, 127 NULL 128 }; 114 129 115 130 /** … … 243 258 if (rc) 244 259 { 245 #if def VBOX_WITH_HARDENING246 *ppDev = make_dev(&g_VBoxDrvFreeBSDChrDevSW, unit2minor(iUnit), UID_ROOT, GID_WHEEL, 0600, "vboxdrv%d", iUnit);260 #if __FreeBSD_version > 800061 261 *ppDev = make_dev(&g_VBoxDrvFreeBSDChrDevSW, iUnit, UID_ROOT, GID_WHEEL, VBOXDRV_PERM, "vboxdrv%d", iUnit); 247 262 #else 248 *ppDev = make_dev(&g_VBoxDrvFreeBSDChrDevSW, unit2minor(iUnit), UID_ROOT, GID_WHEEL, 0666, "vboxdrv%d", iUnit);263 *ppDev = make_dev(&g_VBoxDrvFreeBSDChrDevSW, unit2minor(iUnit), UID_ROOT, GID_WHEEL, VBOXDRV_PERM, "vboxdrv%d", iUnit); 249 264 #endif 250 265 if (*ppDev) … … 546 561 if (RT_UNLIKELY(!VALID_PTR(pReq->pSession))) 547 562 return VERR_INVALID_PARAMETER; 548 if (RT_UNLIKELY(pSession->pDevExt != &g_VBoxDrvFreeBSD Module))563 if (RT_UNLIKELY(pSession->pDevExt != &g_VBoxDrvFreeBSDDevExt)) 549 564 return VERR_INVALID_PARAMETER; 550 565 } … … 555 570 * Do the job. 556 571 */ 557 return supdrvIDC(uReq, &g_VBoxDrvFreeBSD Module, pSession, pReq);572 return supdrvIDC(uReq, &g_VBoxDrvFreeBSDDevExt, pSession, pReq); 558 573 } 559 574
Note:
See TracChangeset
for help on using the changeset viewer.