Skip to content

Commit 11e588c

Browse files
committed
Use multiple files for FDA check
1 parent 13f267d commit 11e588c

File tree

2 files changed

+40
-17
lines changed

2 files changed

+40
-17
lines changed

PermissionsKit/Private/FullDiskAccess/MPFullDiskAccessAuthorizer.m

+39-17
Original file line numberDiff line numberDiff line change
@@ -63,32 +63,54 @@ - (void)requestAuthorizationWithCompletion:(nonnull void (^)(MPAuthorizationStat
6363

6464
#pragma mark - Private
6565

66-
- (MPAuthorizationStatus)_fullDiskAuthorizationStatus
66+
67+
- (MPAuthorizationStatus)_checkFDAUsingFile:(NSString *)path
6768
{
68-
NSString *path;
69-
if (@available(macOS 10.15, *))
70-
{
71-
path = [self.userHomeFolderPath stringByAppendingPathComponent:@"Library/Safari/CloudTabs.db"];
72-
}
73-
else
69+
int fd = open([path cStringUsingEncoding:kCFStringEncodingUTF8], O_RDONLY);
70+
if (fd != -1)
7471
{
75-
path = [self.userHomeFolderPath stringByAppendingPathComponent:@"Library/Safari/Bookmarks.plist"];
72+
close(fd);
73+
return MPAuthorizationStatusAuthorized;
7674
}
7775

78-
BOOL fileExists = [self.fileManager fileExistsAtPath:path];
79-
NSData *data = [NSData dataWithContentsOfFile:path];
80-
if (data == nil && fileExists)
76+
if (errno == EPERM || errno == EACCES)
8177
{
8278
return MPAuthorizationStatusDenied;
8379
}
84-
else if (fileExists)
85-
{
86-
return MPAuthorizationStatusAuthorized;
87-
}
88-
else
80+
81+
return MPAuthorizationStatusNotDetermined;
82+
}
83+
84+
- (MPAuthorizationStatus)_fullDiskAuthorizationStatus
85+
{
86+
// We can't use just a single file to test FDA because:
87+
// a) the file might not exist
88+
// b) user might not have access to file even thought FDA is enabled
89+
// Therefore, if any of these files is readable - we have FDA,
90+
// otherwise if any exists, but can't be read, - we don't
91+
NSArray<NSString *> *testFiles = @[
92+
[self.userHomeFolderPath stringByAppendingPathComponent:@"Library/Safari/CloudTabs.db"],
93+
[self.userHomeFolderPath stringByAppendingPathComponent:@"Library/Safari/Bookmarks.plist"],
94+
@"/Library/Application Support/com.apple.TCC/TCC.db",
95+
@"/Library/Preferences/com.apple.TimeMachine.plist",
96+
];
97+
98+
MPAuthorizationStatus resultStatus = MPAuthorizationStatusNotDetermined;
99+
for (NSString *file in testFiles)
89100
{
90-
return MPAuthorizationStatusNotDetermined;
101+
MPAuthorizationStatus status = [self _checkFDAUsingFile: file];
102+
if (status == MPAuthorizationStatusAuthorized)
103+
{
104+
resultStatus = MPAuthorizationStatusAuthorized;
105+
break;
106+
}
107+
if (status == MPAuthorizationStatusDenied)
108+
{
109+
resultStatus = MPAuthorizationStatusDenied;
110+
}
91111
}
112+
113+
return resultStatus;
92114
}
93115

94116
- (NSString *)userHomeFolderPath

PermissionsKitTestApp/AppDelegate.m

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ - (NSString *)_stringFromStatus:(MPAuthorizationStatus)authorizationStatus
5959
case MPAuthorizationStatusDenied: return @"Denied";
6060
case MPAuthorizationStatusAuthorized: return @"Authorized";
6161
case MPAuthorizationStatusNotDetermined: return @"Not determined";
62+
case MPAuthorizationStatusLimited: return @"Limited";
6263
}
6364
}
6465

0 commit comments

Comments
 (0)