blob: 10239a18de0b37eaf5eb132f062a320ed6271d79 (
plain)
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
|
// Copyright (c) 2011 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.
#import <Cocoa/Cocoa.h>
#include <string>
#include "base/basictypes.h"
#include "base/file_path.h"
#include "base/logging.h"
#include "base/sys_string_conversions.h"
#include "policy/policy_constants.h"
namespace {
const char* kUserNamePolicyVarName = "${user_name}";
const char* kMachineNamePolicyVarName = "${machine_name}";
const char* kMacUsersDirectory = "${users}";
const char* kMacDocumentsFolderVarName = "${documents}";
struct MacFolderNamesToSPDMaping {
const char* name;
NSSearchPathDirectory id;
};
// Mapping from variable names to MacOS NSSearchPathDirectory ids.
const MacFolderNamesToSPDMaping mac_folder_mapping[] = {
{ kMacUsersDirectory, NSUserDirectory},
{ kMacDocumentsFolderVarName, NSDocumentDirectory}
};
// Replaces all variable occurrences in the policy string with the respective
// system settings values.
std::string TranslateMacVariablesInPolicy(
const std::string& untranslated_string) {
std::string result(untranslated_string);
// First translate all path variables we recognize.
for (size_t i = 0; i < arraysize(mac_folder_mapping); ++i) {
size_t position = result.find(mac_folder_mapping[i].name);
if (position != std::string::npos) {
NSArray* searchpaths = NSSearchPathForDirectoriesInDomains(
mac_folder_mapping[i].id, NSAllDomainsMask, true);
if ([searchpaths count] > 0) {
NSString *variable_value = [searchpaths objectAtIndex:0];
result.replace(position, strlen(mac_folder_mapping[i].name),
base::SysNSStringToUTF8(variable_value));
}
}
}
// Next translate two special variables ${user_name} and ${machine_name}
size_t position = result.find(kUserNamePolicyVarName);
if (position != std::string::npos) {
NSString* username = NSUserName();
if (username) {
result.replace(position, strlen(kUserNamePolicyVarName),
base::SysNSStringToUTF8(username));
} else {
LOG(ERROR) << "Username variable can not be resolved.";
}
}
position = result.find(kMachineNamePolicyVarName);
if (position != std::string::npos) {
NSString* machinename = [[NSHost currentHost] name];
if (machinename) {
result.replace(position, strlen(kMachineNamePolicyVarName),
base::SysNSStringToUTF8(machinename));
} else {
LOG(ERROR) << "Machine name variable can not be resolved.";
}
}
return result;
}
} // namespace
// Checks if the UserDataDir policy has been set and returns its value in the
// |user_data_dir| parameter. If no policy is set the parameter is not changed.
void CheckUserDataDirPolicy(FilePath* user_data_dir) {
// Since the configuration management infrastructure is not initialized when
// this code runs, read the policy preference directly.
NSString* key = base::SysUTF8ToNSString(policy::key::kUserDataDir);
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
NSString* value = [defaults stringForKey:key];
if (value && [defaults objectIsForcedForKey:key]) {
std::string string_value = base::SysNSStringToUTF8(value);
// Now replace any vars the user might have used.
string_value = TranslateMacVariablesInPolicy(string_value);
*user_data_dir = FilePath(string_value);
}
}
|