VirtualBox

Ignore:
Timestamp:
Dec 17, 2009 9:48:33 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
56138
Message:

FreeBSD: Use sysctl instead of procfs to retrieve executable path and arguments. Contributed by Bernhard Froehlich and Baptiste Daroussin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp

    r19924 r25472  
    6767#   define CAP_TO_MASK(cap) RT_BIT(cap)
    6868#  endif
     69# elif defined(RT_OS_FREEBSD)
     70#  include <sys/param.h>
     71#  include <sys/sysctl.h>
    6972# elif defined(RT_OS_SOLARIS)
    7073#  include <priv.h>
     
    326329    int cchLink = readlink(szFileBuf, &g_szSupLibHardenedExePath[0], sizeof(g_szSupLibHardenedExePath) - 1);
    327330# else /* RT_OS_FREEBSD: */
    328     int cchLink = readlink("/proc/curproc/file", &g_szSupLibHardenedExePath[0], sizeof(g_szSupLibHardenedExePath) - 1);
     331    int aiName[4];
     332    size_t cbPath;
     333
     334    aiName[0] = CTL_KERN;
     335    aiName[1] = KERN_PROC;
     336    aiName[2] = KERN_PROC_PATHNAME;
     337    aiName[3] = getpid();
     338
     339    cbPath = sizeof(g_szSupLibHardenedExePath) - 1;
     340    if(sysctl(aiName, RT_ELEMENTS(aiName), g_szSupLibHardenedExePath, &cbPath, NULL, 0) < 0)
     341       supR3HardenedFatal("supR3HardenedExecDir: sysctl failed\n");
     342
     343    int cchLink = strlen(g_szSupLibHardenedExePath);
    329344# endif
    330345    if (cchLink < 0 || cchLink == sizeof(g_szSupLibHardenedExePath) - 1)
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