Commit 33c8a425 authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

mountmgr: Avoid unnecessary permission prompts on macOS 10.15 and newer.

On macOS 10.15 and newer, trying to open the device node of a removable drive will trigger an "<app> would like to access files on a removable volume" permission prompt, even if the user doesn't have permissions to access the device node (which is almost always the case). Check the value of access() (recommended by Apple for this purpose) before opening devices. Signed-off-by: 's avatarBrendan Shanks <bshanks@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent f7edc328
......@@ -26,6 +26,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/time.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
......@@ -1026,6 +1027,14 @@ static BOOL get_volume_device_info( struct volume *volume )
if (!unix_device)
return FALSE;
#ifdef __APPLE__
if (access( unix_device, R_OK ))
{
WARN("Unable to open %s, not accessible\n", debugstr_a(unix_device));
return FALSE;
}
#endif
if (!(name = wine_get_dos_file_name( unix_device )))
{
ERR("Failed to convert %s to NT, err %u\n", debugstr_a(unix_device), GetLastError());
......
......@@ -25,6 +25,7 @@
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
......@@ -150,7 +151,8 @@ static void appeared_callback( DADiskRef disk, void *context )
else
if (guid_ptr) add_volume( device, device, mount_point, DEVICE_HARDDISK_VOL, guid_ptr, NULL );
if ((fd = open( device, O_RDONLY )) >= 0)
if (!access( device, R_OK ) &&
(fd = open( device, O_RDONLY )) >= 0)
{
dk_scsi_identify_t dsi;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment