1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/enterprise_util.h"
#import <OpenDirectory/OpenDirectory.h>
#include <string>
#include <vector>
#include "base/logging.h"
#include "base/mac/foundation_util.h"
#include "base/process/launch.h"
#include "base/stl_util.h"
#include "base/strings/string_split.h"
#include "base/strings/sys_string_conversions.h"
namespace base {
bool IsMachineExternallyManaged() {
DeviceUserDomainJoinState join_state = AreDeviceAndUserJoinedToDomain();
return join_state.device_joined || join_state.user_joined;
}
MacDeviceManagementStateOld IsDeviceRegisteredWithManagementOld() {
@autoreleasepool {
std::vector<std::string> profiler_argv{"/usr/sbin/system_profiler",
"SPConfigurationProfileDataType",
"-detailLevel",
"mini",
"-timeout",
"15",
"-xml"};
std::string profiler_stdout;
if (!GetAppOutput(profiler_argv, &profiler_stdout)) {
LOG(WARNING) << "Could not get system_profiler output.";
return MacDeviceManagementStateOld::kFailureAPIUnavailable;
};
NSArray* root = base::mac::ObjCCast<NSArray>([NSPropertyListSerialization
propertyListWithData:[SysUTF8ToNSString(profiler_stdout)
dataUsingEncoding:NSUTF8StringEncoding]
options:NSPropertyListImmutable
format:nil
error:nil]);
if (!root) {
LOG(WARNING) << "Could not parse system_profiler output.";
return MacDeviceManagementStateOld::kFailureUnableToParseResult;
};
for (NSDictionary* results in root) {
for (NSDictionary* dict in results[@"_items"]) {
for (NSDictionary* device_config_profiles in dict[@"_items"]) {
for (NSDictionary* profile_item in
device_config_profiles[@"_items"]) {
if (![profile_item[@"_name"] isEqual:@"com.apple.mdm"])
continue;
NSString* payload_data =
profile_item[@"spconfigprofile_payload_data"];
NSDictionary* payload_data_dict = base::mac::ObjCCast<
NSDictionary>([NSPropertyListSerialization
propertyListWithData:[payload_data
dataUsingEncoding:NSUTF8StringEncoding]
options:NSPropertyListImmutable
format:nil
error:nil]);
if (!payload_data_dict)
continue;
// Verify that the URL validates.
if ([NSURL URLWithString:payload_data_dict[@"CheckInURL"]])
return MacDeviceManagementStateOld::kMDMEnrollment;
}
}
}
}
return MacDeviceManagementStateOld::kNoEnrollment;
}
}
MacDeviceManagementStateNew IsDeviceRegisteredWithManagementNew() {
if (@available(macOS 10.13.4, *)) {
std::vector<std::string> profiles_argv{"/usr/bin/profiles", "status",
"-type", "enrollment"};
std::string profiles_stdout;
if (!GetAppOutput(profiles_argv, &profiles_stdout)) {
LOG(WARNING) << "Could not get profiles output.";
return MacDeviceManagementStateNew::kFailureAPIUnavailable;
}
std::vector<StringPiece> lines = SplitStringPiece(
profiles_stdout, "\n", TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
bool enrolled_via_dep = false;
bool mdm_enrollment_not_approved = false;
bool mdm_enrollment_user_approved = false;
for (const auto& line : lines) {
std::vector<StringPiece> halves =
SplitStringPiece(line, ":", TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
if (halves.size() != 2)
return MacDeviceManagementStateNew::kFailureUnableToParseResult;
StringPiece property = halves[0];
StringPiece state = halves[1];
if (property == "Enrolled via DEP") {
if (state == "Yes")
enrolled_via_dep = true;
else if (state != "No")
return MacDeviceManagementStateNew::kFailureUnableToParseResult;
} else if (property == "MDM enrollment") {
if (state == "Yes")
mdm_enrollment_not_approved = true;
else if (state == "Yes (User Approved)")
mdm_enrollment_user_approved = true;
else if (state != "No")
return MacDeviceManagementStateNew::kFailureUnableToParseResult;
} else {
// Ignore any other output lines, for future extensibility.
}
}
if (!enrolled_via_dep && !mdm_enrollment_not_approved &&
!mdm_enrollment_user_approved) {
return MacDeviceManagementStateNew::kNoEnrollment;
}
if (!enrolled_via_dep && mdm_enrollment_not_approved &&
!mdm_enrollment_user_approved) {
return MacDeviceManagementStateNew::kLimitedMDMEnrollment;
}
if (!enrolled_via_dep && !mdm_enrollment_not_approved &&
mdm_enrollment_user_approved) {
return MacDeviceManagementStateNew::kFullMDMEnrollment;
}
if (enrolled_via_dep && !mdm_enrollment_not_approved &&
mdm_enrollment_user_approved) {
return MacDeviceManagementStateNew::kDEPMDMEnrollment;
}
return MacDeviceManagementStateNew::kFailureUnableToParseResult;
} else {
return MacDeviceManagementStateNew::kFailureAPIUnavailable;
}
}
DeviceUserDomainJoinState AreDeviceAndUserJoinedToDomain() {
DeviceUserDomainJoinState state{false, false};
@autoreleasepool {
ODSession* session = [ODSession defaultSession];
if (session == nil) {
DLOG(WARNING) << "ODSession default session is nil.";
return state;
}
NSError* error = nil;
NSArray<NSString*>* all_node_names =
[session nodeNamesAndReturnError:&error];
if (!all_node_names) {
DLOG(WARNING) << "ODSession failed to give node names: "
<< error.localizedDescription.UTF8String;
return state;
}
NSUInteger num_nodes = all_node_names.count;
if (num_nodes < 3) {
DLOG(WARNING) << "ODSession returned too few node names: "
<< all_node_names.description.UTF8String;
return state;
}
if (num_nodes > 3) {
// Non-enterprise machines have:"/Search", "/Search/Contacts",
// "/Local/Default". Everything else would be enterprise management.
state.device_joined = true;
}
ODNode* node = [ODNode nodeWithSession:session
type:kODNodeTypeAuthentication
error:&error];
if (node == nil) {
DLOG(WARNING) << "ODSession cannot obtain the authentication node: "
<< error.localizedDescription.UTF8String;
return state;
}
// Now check the currently logged on user.
ODQuery* query = [ODQuery queryWithNode:node
forRecordTypes:kODRecordTypeUsers
attribute:kODAttributeTypeRecordName
matchType:kODMatchEqualTo
queryValues:NSUserName()
returnAttributes:kODAttributeTypeAllAttributes
maximumResults:0
error:&error];
if (query == nil) {
DLOG(WARNING) << "ODSession cannot create user query: "
<< mac::NSToCFCast(error);
return state;
}
NSArray* results = [query resultsAllowingPartial:NO error:&error];
if (!results) {
DLOG(WARNING) << "ODSession cannot obtain current user node: "
<< error.localizedDescription.UTF8String;
return state;
}
if (results.count != 1) {
DLOG(WARNING) << @"ODSession unexpected number of user nodes: "
<< results.count;
}
for (id element in results) {
ODRecord* record = mac::ObjCCastStrict<ODRecord>(element);
NSArray* attributes =
[record valuesForAttribute:kODAttributeTypeMetaRecordName error:nil];
for (id attribute in attributes) {
NSString* attribute_value = mac::ObjCCastStrict<NSString>(attribute);
// Example: "uid=johnsmith,ou=People,dc=chromium,dc=org
NSRange domain_controller =
[attribute_value rangeOfString:@"(^|,)\\s*dc="
options:NSRegularExpressionSearch];
if (domain_controller.length > 0) {
state.user_joined = true;
}
}
// Scan alternative identities.
attributes =
[record valuesForAttribute:kODAttributeTypeAltSecurityIdentities
error:nil];
for (id attribute in attributes) {
NSString* attribute_value = mac::ObjCCastStrict<NSString>(attribute);
NSRange icloud =
[attribute_value rangeOfString:@"CN=com.apple.idms.appleid.prd"
options:NSCaseInsensitiveSearch];
if (!icloud.length) {
// Any alternative identity that is not iCloud is likely enterprise
// management.
state.user_joined = true;
}
}
}
}
return state;
}
} // namespace base
|