mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-05-21 21:30:48 -05:00
macOS: run APFS formatter elevated
APFS volume creation can still fail with Permission denied after preparing the raw and block device aliases because newfs_apfs performs privileged APFS container and volume operations beyond opening the device nodes. Route APFS formatting through the elevated CoreService path for non-root macOS runs. Keep the elevated interface narrow by sending only the target device and invoking user UID/GID, validate the device path on the privileged side, rebuild the formatter arguments there, and execute /sbin/newfs_apfs by absolute path to avoid PATH shadowing. Pass -U/-G so the created filesystem preserves the invoking user ownership. Apply the same path to GUI and text-mode creation.
This commit is contained in:
@@ -69,6 +69,14 @@ namespace VeraCrypt
|
||||
HostDeviceList HostDevices;
|
||||
};
|
||||
|
||||
#ifdef TC_MACOSX
|
||||
struct ExecuteMacOSXAPFSFormatterResponse : CoreServiceResponse
|
||||
{
|
||||
ExecuteMacOSXAPFSFormatterResponse () { }
|
||||
TC_SERIALIZABLE (ExecuteMacOSXAPFSFormatterResponse);
|
||||
};
|
||||
#endif
|
||||
|
||||
struct MountVolumeResponse : CoreServiceResponse
|
||||
{
|
||||
MountVolumeResponse () { }
|
||||
|
||||
Reference in New Issue
Block a user