@@ -63,32 +63,54 @@ - (void)requestAuthorizationWithCompletion:(nonnull void (^)(MPAuthorizationStat
63
63
64
64
#pragma mark - Private
65
65
66
- - (MPAuthorizationStatus)_fullDiskAuthorizationStatus
66
+
67
+ - (MPAuthorizationStatus)_checkFDAUsingFile : (NSString *)path
67
68
{
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 )
74
71
{
75
- path = [self .userHomeFolderPath stringByAppendingPathComponent: @" Library/Safari/Bookmarks.plist" ];
72
+ close (fd);
73
+ return MPAuthorizationStatusAuthorized;
76
74
}
77
75
78
- BOOL fileExists = [self .fileManager fileExistsAtPath: path];
79
- NSData *data = [NSData dataWithContentsOfFile: path];
80
- if (data == nil && fileExists)
76
+ if (errno == EPERM || errno == EACCES)
81
77
{
82
78
return MPAuthorizationStatusDenied;
83
79
}
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)
89
100
{
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
+ }
91
111
}
112
+
113
+ return resultStatus;
92
114
}
93
115
94
116
- (NSString *)userHomeFolderPath
0 commit comments