mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-30 23:13:31 +01:00
MacOSX : Support detection of OSXFUSE and the presence of MacFUSE compatibility layer.
This commit is contained in:
parent
7aceaf124e
commit
8ee17fd727
@ -15,6 +15,7 @@
|
|||||||
#include <sys/sysctl.h>
|
#include <sys/sysctl.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
#include "CoreMacOSX.h"
|
#include "CoreMacOSX.h"
|
||||||
#include "Driver/Fuse/FuseService.h"
|
#include "Driver/Fuse/FuseService.h"
|
||||||
#include "Core/Unix/CoreServiceProxy.h"
|
#include "Core/Unix/CoreServiceProxy.h"
|
||||||
@ -111,9 +112,29 @@ namespace VeraCrypt
|
|||||||
// Check FUSE version
|
// Check FUSE version
|
||||||
char fuseVersionString[MAXHOSTNAMELEN + 1] = { 0 };
|
char fuseVersionString[MAXHOSTNAMELEN + 1] = { 0 };
|
||||||
size_t fuseVersionStringLength = MAXHOSTNAMELEN;
|
size_t fuseVersionStringLength = MAXHOSTNAMELEN;
|
||||||
|
int status;
|
||||||
|
bool bIsOSXFuse = false;
|
||||||
|
|
||||||
if (sysctlbyname ("macfuse.version.number", fuseVersionString, &fuseVersionStringLength, NULL, 0) != 0)
|
if ((status = sysctlbyname ("macfuse.version.number", fuseVersionString, &fuseVersionStringLength, NULL, 0)) != 0)
|
||||||
throw HigherFuseVersionRequired (SRC_POS);
|
{
|
||||||
|
fuseVersionStringLength = MAXHOSTNAMELEN;
|
||||||
|
if ((status = sysctlbyname ("osxfuse.version.number", fuseVersionString, &fuseVersionStringLength, NULL, 0)) != 0)
|
||||||
|
{
|
||||||
|
throw HigherFuseVersionRequired (SRC_POS);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// look for compatibility mode
|
||||||
|
struct stat sb;
|
||||||
|
if ((0 == stat("/usr/local/lib/libfuse.dylib", &sb)) && (0 == stat("/Library/Frameworks/MacFUSE.framework/MacFUSE", &sb)))
|
||||||
|
{
|
||||||
|
bIsOSXFuse = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
throw HigherFuseVersionRequired (SRC_POS);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
vector <string> fuseVersion = StringConverter::Split (string (fuseVersionString), ".");
|
vector <string> fuseVersion = StringConverter::Split (string (fuseVersionString), ".");
|
||||||
if (fuseVersion.size() < 2)
|
if (fuseVersion.size() < 2)
|
||||||
@ -122,7 +143,12 @@ namespace VeraCrypt
|
|||||||
uint32 fuseVersionMajor = StringConverter::ToUInt32 (fuseVersion[0]);
|
uint32 fuseVersionMajor = StringConverter::ToUInt32 (fuseVersion[0]);
|
||||||
uint32 fuseVersionMinor = StringConverter::ToUInt32 (fuseVersion[1]);
|
uint32 fuseVersionMinor = StringConverter::ToUInt32 (fuseVersion[1]);
|
||||||
|
|
||||||
if (fuseVersionMajor < 1 || (fuseVersionMajor == 1 && fuseVersionMinor < 3))
|
if (bIsOSXFuse)
|
||||||
|
{
|
||||||
|
if (fuseVersionMajor < 2 || (fuseVersionMajor == 2 && fuseVersionMinor < 5))
|
||||||
|
throw HigherFuseVersionRequired (SRC_POS);
|
||||||
|
}
|
||||||
|
else if (fuseVersionMajor < 1 || (fuseVersionMajor == 1 && fuseVersionMinor < 3))
|
||||||
throw HigherFuseVersionRequired (SRC_POS);
|
throw HigherFuseVersionRequired (SRC_POS);
|
||||||
|
|
||||||
// Mount volume image
|
// Mount volume image
|
||||||
|
Loading…
Reference in New Issue
Block a user