Changeset 25472 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Dec 17, 2009 9:48:33 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r19924 r25472 67 67 # define CAP_TO_MASK(cap) RT_BIT(cap) 68 68 # endif 69 # elif defined(RT_OS_FREEBSD) 70 # include <sys/param.h> 71 # include <sys/sysctl.h> 69 72 # elif defined(RT_OS_SOLARIS) 70 73 # include <priv.h> … … 326 329 int cchLink = readlink(szFileBuf, &g_szSupLibHardenedExePath[0], sizeof(g_szSupLibHardenedExePath) - 1); 327 330 # 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); 329 344 # endif 330 345 if (cchLink < 0 || cchLink == sizeof(g_szSupLibHardenedExePath) - 1)
Note:
See TracChangeset
for help on using the changeset viewer.