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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/constants/ash_paths.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "base/system/sys_info.h"
#include "build/branding_buildflags.h"
namespace ash {
namespace {
const base::FilePath::CharType kDefaultAppOrderFileName[] =
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
FILE_PATH_LITERAL("/usr/share/google-chrome/default_app_order.json");
#else
FILE_PATH_LITERAL("/usr/share/chromium/default_app_order.json");
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
const base::FilePath::CharType kMachineHardwareInfoFileName[] =
FILE_PATH_LITERAL("/tmp/machine-info");
const base::FilePath::CharType kUptimeFileName[] =
FILE_PATH_LITERAL("/proc/uptime");
const base::FilePath::CharType kUpdateRebootNeededUptimeFile[] =
FILE_PATH_LITERAL("/run/chrome/update_reboot_needed_uptime");
const base::FilePath::CharType kStartupCustomizationManifestFile[] =
FILE_PATH_LITERAL("/opt/oem/etc/startup_manifest.json");
const base::FilePath::CharType kDeviceLocalAccountExtensionDir[] =
FILE_PATH_LITERAL("/var/cache/device_local_account_extensions");
const base::FilePath::CharType kDeviceLocalAccountExternalDataDir[] =
FILE_PATH_LITERAL("/var/cache/device_local_account_external_policy_data");
const base::FilePath::CharType kDeviceLocalAccountComponentPolicy[] =
FILE_PATH_LITERAL("/var/cache/device_local_account_component_policy");
const base::FilePath::CharType kDeviceDisplayProfileDirectory[] =
FILE_PATH_LITERAL("/var/cache/display_profiles");
const base::FilePath::CharType kDeviceDisplayProfileDirectoryVpd[] =
FILE_PATH_LITERAL("/var/cache/display_profiles/vpd");
const base::FilePath::CharType kDeviceExtensionLocalCache[] =
FILE_PATH_LITERAL("/var/cache/external_cache");
const base::FilePath::CharType kSigninProfileComponentPolicy[] =
FILE_PATH_LITERAL("/var/cache/signin_profile_component_policy");
const base::FilePath::CharType kSigninProfileExtensionsDir[] =
FILE_PATH_LITERAL("/var/cache/signin_profile_extensions");
const base::FilePath::CharType kDevicePolicyExternalDataDir[] =
FILE_PATH_LITERAL("/var/cache/device_policy_external_data");
const base::FilePath::CharType kDevicePolicyScreensaverDataDir[] =
FILE_PATH_LITERAL("/var/cache/managed_screensaver");
const base::FilePath::CharType kDeviceLocalAccountIwaCacheDir[] =
FILE_PATH_LITERAL("/var/cache/device_local_account_iwa");
bool PathProvider(int key, base::FilePath* result) {
switch (key) {
case FILE_DEFAULT_APP_ORDER:
*result = base::FilePath(kDefaultAppOrderFileName);
break;
case FILE_MACHINE_INFO:
*result = base::FilePath(kMachineHardwareInfoFileName);
break;
case FILE_UPTIME:
*result = base::FilePath(kUptimeFileName);
break;
case FILE_UPDATE_REBOOT_NEEDED_UPTIME:
*result = base::FilePath(kUpdateRebootNeededUptimeFile);
break;
case FILE_STARTUP_CUSTOMIZATION_MANIFEST:
*result = base::FilePath(kStartupCustomizationManifestFile);
break;
case DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS:
*result = base::FilePath(kDeviceLocalAccountExtensionDir);
break;
case DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA:
*result = base::FilePath(kDeviceLocalAccountExternalDataDir);
break;
case DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY:
*result = base::FilePath(kDeviceLocalAccountComponentPolicy);
break;
case DIR_DEVICE_DISPLAY_PROFILES:
*result = base::FilePath(kDeviceDisplayProfileDirectory);
break;
case DIR_DEVICE_DISPLAY_PROFILES_VPD:
*result = base::FilePath(kDeviceDisplayProfileDirectoryVpd);
break;
case DIR_DEVICE_EXTENSION_LOCAL_CACHE:
*result = base::FilePath(kDeviceExtensionLocalCache);
break;
case DIR_SIGNIN_PROFILE_COMPONENT_POLICY:
*result = base::FilePath(kSigninProfileComponentPolicy);
break;
case DIR_SIGNIN_PROFILE_EXTENSIONS:
*result = base::FilePath(kSigninProfileExtensionsDir);
break;
case DIR_DEVICE_POLICY_EXTERNAL_DATA:
*result = base::FilePath(kDevicePolicyExternalDataDir);
break;
case DIR_DEVICE_POLICY_SCREENSAVER_DATA:
*result = base::FilePath(kDevicePolicyScreensaverDataDir);
break;
case DIR_DEVICE_LOCAL_ACCOUNT_IWA_CACHE:
*result = base::FilePath(kDeviceLocalAccountIwaCacheDir);
break;
default:
return false;
}
return true;
}
} // namespace
void RegisterPathProvider() {
base::PathService::RegisterProvider(PathProvider, PATH_START, PATH_END);
}
void RegisterStubPathOverrides(const base::FilePath& stubs_dir) {
CHECK(!base::SysInfo::IsRunningOnChromeOS());
// Override these paths on the desktop, so that enrollment and cloud policy
// work and can be tested.
base::FilePath parent = base::MakeAbsoluteFilePath(stubs_dir);
const bool is_absolute = true;
const bool create = false;
base::PathService::OverrideAndCreateIfNeeded(
FILE_MACHINE_INFO, parent.AppendASCII("stub_machine-info"), is_absolute,
create);
base::PathService::Override(
DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS,
parent.AppendASCII("stub_device_local_account_extensions"));
base::PathService::Override(
DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA,
parent.AppendASCII("stub_device_local_account_external_data"));
base::PathService::Override(
DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY,
parent.AppendASCII("stub_device_local_account_component_policy"));
base::PathService::Override(
DIR_DEVICE_EXTENSION_LOCAL_CACHE,
parent.AppendASCII("stub_device_local_extension_cache"));
base::PathService::Override(
DIR_SIGNIN_PROFILE_COMPONENT_POLICY,
parent.AppendASCII("stub_signin_profile_component_policy"));
base::PathService::Override(
DIR_SIGNIN_PROFILE_EXTENSIONS,
parent.AppendASCII("stub_signin_profile_extensions"));
base::PathService::Override(
DIR_DEVICE_POLICY_EXTERNAL_DATA,
parent.AppendASCII("stub_device_policy_external_data"));
base::PathService::Override(
DIR_DEVICE_POLICY_SCREENSAVER_DATA,
parent.AppendASCII("stub_device_policy_screensaver_data"));
}
} // namespace ash
|