VirtualBox

Ignore:
Timestamp:
May 4, 2009 9:28:43 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
46830
Message:

Fixes for the kernel driver:

  • Should compile with FreeBSD 8 (not tested)
  • Fix IDC
  • Drag in some functions we need for vboxnetflt
File:
1 edited

Legend:

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

    r18968 r19343  
    5252#include <iprt/process.h>
    5353#include <iprt/assert.h>
     54#include <iprt/uuid.h>
    5455#include <VBox/log.h>
    5556#include <iprt/alloc.h>
    5657#include <iprt/err.h>
    5758
     59#ifdef VBOX_WITH_HARDENING
     60# define VBOXDRV_PERM 0600
     61#else
     62# define VBOXDRV_PERM 0666
     63#endif
    5864
    5965/*******************************************************************************
     
    8692/** Declare the module as a pseudo device. */
    8793DECLARE_MODULE(vboxdrv,     g_VBoxDrvFreeBSDModule, SI_SUB_PSEUDO, SI_ORDER_ANY);
     94MODULE_VERSION(vboxdrv, 1);
    8895
    8996/**
     
    110117static SUPDRVDEVEXT         g_VBoxDrvFreeBSDDevExt;
    111118
    112 
    113 
     119/** Just a dummy global structure containing a bunch of
     120 * function pointers to code which is wanted in the link.
     121 */
     122static PFNRT g_apfnVBoxDrvFreeBSDDeps[] =
     123{
     124    /* Needed for vboxnetflt. */
     125    (PFNRT)RTUuidFromStr,
     126    (PFNRT)RTUuidCompareStr,
     127    NULL
     128};
    114129
    115130/**
     
    243258    if (rc)
    244259    {
    245 #ifdef VBOX_WITH_HARDENING
    246         *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);
    247262#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);
    249264#endif
    250265        if (*ppDev)
     
    546561        if (RT_UNLIKELY(!VALID_PTR(pReq->pSession)))
    547562            return VERR_INVALID_PARAMETER;
    548         if (RT_UNLIKELY(pSession->pDevExt != &g_VBoxDrvFreeBSDModule))
     563        if (RT_UNLIKELY(pSession->pDevExt != &g_VBoxDrvFreeBSDDevExt))
    549564            return VERR_INVALID_PARAMETER;
    550565    }
     
    555570     * Do the job.
    556571     */
    557     return supdrvIDC(uReq, &g_VBoxDrvFreeBSDModule, pSession, pReq);
     572    return supdrvIDC(uReq, &g_VBoxDrvFreeBSDDevExt, pSession, pReq);
    558573}
    559574
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