blob: 248465737e968cd6f9375a102a4c1b12ba0ba07b [file] [log] [blame]
// Copyright 2013 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 "chrome/browser/chromeos/file_manager/path_util.h"
#include <memory>
#include <utility>
#include "base/barrier_closure.h"
#include "base/base64.h"
#include "base/bind.h"
#include "base/logging.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/system/sys_info.h"
#include "chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h"
#include "chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.h"
#include "chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root_map.h"
#include "chrome/browser/chromeos/arc/fileapi/chrome_content_provider_url_util.h"
#include "chrome/browser/chromeos/crostini/crostini_manager.h"
#include "chrome/browser/chromeos/crostini/crostini_util.h"
#include "chrome/browser/chromeos/drive/drive_integration_service.h"
#include "chrome/browser/chromeos/drive/file_system_util.h"
#include "chrome/browser/chromeos/fileapi/external_file_url_util.h"
#include "chrome/browser/chromeos/fileapi/file_system_backend.h"
#include "chrome/browser/chromeos/profiles/profile_helper.h"
#include "chrome/browser/download/download_prefs.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/grit/generated_resources.h"
#include "chromeos/constants/chromeos_features.h"
#include "components/drive/file_system_core_util.h"
#include "components/user_manager/user.h"
#include "components/user_manager/user_manager.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/escape.h"
#include "net/base/filename_util.h"
#include "storage/browser/fileapi/external_mount_points.h"
#include "ui/base/l10n/l10n_util.h"
#include "url/gurl.h"
namespace file_manager {
namespace util {
namespace {
constexpr char kAndroidFilesMountPointName[] = "android_files";
constexpr char kCrostiniMapGoogleDrive[] = "GoogleDrive";
constexpr char kCrostiniMapMyDrive[] = "MyDrive";
constexpr char kCrostiniMapPlayFiles[] = "PlayFiles";
constexpr char kCrostiniMapTeamDrives[] = "TeamDrives";
constexpr char kFolderNameDownloads[] = "Downloads";
constexpr char kFolderNameMyFiles[] = "MyFiles";
constexpr char kDisplayNameGoogleDrive[] = "Google Drive";
constexpr char kDriveFsDirComputers[] = "Computers";
constexpr char kDriveFsDirRoot[] = "root";
constexpr char kDriveFsDirTeamDrives[] = "team_drives";
// Sync with the root name defined with the file provider in ARC++ side.
constexpr base::FilePath::CharType kArcDownloadRoot[] =
FILE_PATH_LITERAL("/download");
constexpr base::FilePath::CharType kArcExternalFilesRoot[] =
FILE_PATH_LITERAL("/external_files");
// Sync with the removable media provider in ARC++ side.
constexpr char kArcRemovableMediaProviderUrl[] =
"content://org.chromium.arc.removablemediaprovider/";
Profile* GetPrimaryProfile() {
if (!user_manager::UserManager::IsInitialized())
return nullptr;
const auto* primary_user = user_manager::UserManager::Get()->GetPrimaryUser();
if (!primary_user)
return nullptr;
return chromeos::ProfileHelper::Get()->GetProfileByUser(primary_user);
}
// Helper function for |ConvertToContentUrls|.
void OnSingleContentUrlResolved(const base::RepeatingClosure& barrier_closure,
std::vector<GURL>* out_urls,
size_t index,
const GURL& url) {
(*out_urls)[index] = url;
barrier_closure.Run();
}
// Helper function for |ConvertToContentUrls|.
void OnAllContentUrlsResolved(ConvertToContentUrlsCallback callback,
std::unique_ptr<std::vector<GURL>> urls) {
std::move(callback).Run(*urls);
}
// On non-ChromeOS system (test+development), the primary profile uses
// $HOME/Downloads for ease access to local files for debugging.
bool ShouldMountPrimaryUserDownloads(Profile* profile) {
if (!base::SysInfo::IsRunningOnChromeOS() &&
user_manager::UserManager::IsInitialized()) {
const user_manager::User* const user =
chromeos::ProfileHelper::Get()->GetUserByProfile(
profile->GetOriginalProfile());
const user_manager::User* const primary_user =
user_manager::UserManager::Get()->GetPrimaryUser();
return user == primary_user;
}
return false;
}
} // namespace
const base::FilePath::CharType kRemovableMediaPath[] =
FILE_PATH_LITERAL("/media/removable");
const base::FilePath::CharType kAndroidFilesPath[] =
FILE_PATH_LITERAL("/run/arc/sdcard/write/emulated/0");
base::FilePath GetDownloadsFolderForProfile(Profile* profile) {
// Check if FilesApp has a registered path already. This happens for tests.
const std::string mount_point_name =
util::GetDownloadsMountPointName(profile);
storage::ExternalMountPoints* const mount_points =
storage::ExternalMountPoints::GetSystemInstance();
base::FilePath path;
if (mount_points->GetRegisteredPath(mount_point_name, &path)) {
if (base::FeatureList::IsEnabled(chromeos::features::kMyFilesVolume))
return path.AppendASCII(kFolderNameDownloads);
return path;
}
// Return $HOME/Downloads as Download folder.
if (ShouldMountPrimaryUserDownloads(profile))
return DownloadPrefs::GetDefaultDownloadDirectory();
// Return <cryptohome>/MyFiles/Downloads if it feature is enabled.
if (base::FeatureList::IsEnabled(chromeos::features::kMyFilesVolume)) {
return profile->GetPath()
.AppendASCII(kFolderNameMyFiles)
.AppendASCII(kFolderNameDownloads);
}
// Return <cryptohome>/Downloads.
return profile->GetPath().AppendASCII(kFolderNameDownloads);
}
base::FilePath GetMyFilesFolderForProfile(Profile* profile) {
// When MyFilesVolume feature is disabled this should behave just like
// GetDownloadsFolderForProfile.
if (!base::FeatureList::IsEnabled(chromeos::features::kMyFilesVolume))
return GetDownloadsFolderForProfile(profile);
// Check if FilesApp has a registered path already. This happens for tests.
const std::string mount_point_name =
util::GetDownloadsMountPointName(profile);
storage::ExternalMountPoints* const mount_points =
storage::ExternalMountPoints::GetSystemInstance();
base::FilePath path;
if (mount_points->GetRegisteredPath(mount_point_name, &path))
return path;
// Return $HOME/Downloads as MyFiles folder.
if (ShouldMountPrimaryUserDownloads(profile))
return DownloadPrefs::GetDefaultDownloadDirectory();
// Return <cryptohome>/MyFiles.
return profile->GetPath().AppendASCII(kFolderNameMyFiles);
}
bool MigratePathFromOldFormat(Profile* profile,
const base::FilePath& old_base,
const base::FilePath& old_path,
base::FilePath* new_path) {
const base::FilePath new_base = GetMyFilesFolderForProfile(profile);
// Special case, migrating /home/chronos/user which is set early (before a
// profile is attached to the browser process) to default to
// /home/chronos/u-{hash}/MyFiles/Downloads.
if (old_path == old_base &&
old_path == base::FilePath("/home/chronos/user")) {
*new_path = GetDownloadsFolderForProfile(profile);
return true;
}
base::FilePath relative;
if (old_base.AppendRelativePath(old_path, &relative)) {
*new_path = new_base.Append(relative);
return old_path != *new_path;
}
return false;
}
bool MigrateFromDownloadsToMyFiles(Profile* profile,
const base::FilePath& old_path,
base::FilePath* new_path) {
const base::FilePath old_base =
profile->GetPath().Append(kFolderNameDownloads);
const base::FilePath new_base = GetDownloadsFolderForProfile(profile);
if (new_base == old_base)
return false;
base::FilePath relative;
if (old_path == old_base ||
old_base.AppendRelativePath(old_path, &relative)) {
*new_path = new_base.Append(relative);
return old_path != *new_path;
}
return false;
}
bool MigrateToDriveFs(Profile* profile,
const base::FilePath& old_path,
base::FilePath* new_path) {
const auto* user = chromeos::ProfileHelper::Get()->GetUserByProfile(profile);
auto* integration_service =
drive::DriveIntegrationServiceFactory::FindForProfile(profile);
if (!base::FeatureList::IsEnabled(chromeos::features::kDriveFs) ||
!integration_service || !integration_service->is_enabled() || !user ||
!user->GetAccountId().HasAccountIdKey()) {
return false;
}
*new_path = integration_service->GetMountPointPath();
return drive::util::GetDriveMountPointPath(profile).AppendRelativePath(
old_path, new_path);
}
std::string GetDownloadsMountPointName(Profile* profile) {
// To distinguish profiles in multi-profile session, we append user name hash
// to "Downloads". Note that some profiles (like login or test profiles)
// are not associated with an user account. In that case, no suffix is added
// because such a profile never belongs to a multi-profile session.
const user_manager::User* const user =
user_manager::UserManager::IsInitialized()
? chromeos::ProfileHelper::Get()->GetUserByProfile(
profile->GetOriginalProfile())
: nullptr;
const std::string id = user ? "-" + user->username_hash() : "";
return net::EscapeQueryParamValue(kFolderNameDownloads + id, false);
}
const std::string GetAndroidFilesMountPointName() {
return kAndroidFilesMountPointName;
}
std::string GetCrostiniMountPointName(Profile* profile) {
// crostini_<hash>_termina_penguin
return base::JoinString(
{"crostini", crostini::CryptohomeIdForProfile(profile),
crostini::kCrostiniDefaultVmName,
crostini::kCrostiniDefaultContainerName},
"_");
}
base::FilePath GetCrostiniMountDirectory(Profile* profile) {
return base::FilePath("/media/fuse/" + GetCrostiniMountPointName(profile));
}
std::vector<std::string> GetCrostiniMountOptions(
const std::string& hostname,
const std::string& host_private_key,
const std::string& container_public_key) {
const std::string port = "2222";
std::vector<std::string> options;
std::string base64_known_hosts;
std::string base64_identity;
base::Base64Encode(host_private_key, &base64_identity);
base::Base64Encode(
base::StringPrintf("[%s]:%s %s", hostname.c_str(), port.c_str(),
container_public_key.c_str()),
&base64_known_hosts);
options.push_back("UserKnownHostsBase64=" + base64_known_hosts);
options.push_back("IdentityBase64=" + base64_identity);
options.push_back("Port=" + port);
return options;
}
bool ConvertFileSystemURLToPathInsideCrostini(
Profile* profile,
const storage::FileSystemURL& file_system_url,
base::FilePath* inside) {
const std::string& id(file_system_url.mount_filesystem_id());
// File system root requires strip trailing separator.
base::FilePath path =
base::FilePath(file_system_url.virtual_path()).StripTrailingSeparators();
// Include drive if using DriveFS.
std::string mount_point_name_drive;
auto* integration_service =
drive::DriveIntegrationServiceFactory::FindForProfile(profile);
if (base::FeatureList::IsEnabled(chromeos::features::kDriveFs) &&
integration_service) {
mount_point_name_drive =
integration_service->GetMountPointPath().BaseName().value();
}
// Reformat virtual_path() from:
// <mount_label>/path/to/file
// To either:
// /<home-directory>/path/to/file (path is already in crostini volume)
// /ChromeOS/<mapping>/path/to/file (path is shared with crostini)
base::FilePath base_to_exclude(id);
if (id == GetCrostiniMountPointName(profile)) {
// Crostini.
base::Optional<crostini::ContainerInfo> container_info =
crostini::CrostiniManager::GetForProfile(profile)->GetContainerInfo(
crostini::kCrostiniDefaultVmName,
crostini::kCrostiniDefaultContainerName);
if (!container_info) {
return false;
}
*inside = container_info->homedir;
} else if (id == GetDownloadsMountPointName(profile)) {
// MyFiles or Downloads.
if (base::FeatureList::IsEnabled(chromeos::features::kMyFilesVolume)) {
// MyFiles.
*inside =
crostini::ContainerChromeOSBaseDirectory().Append(kFolderNameMyFiles);
} else {
// Map Downloads with MyFiles prefix to allow for seamless change when
// MyFiles feature is turned on.
*inside = crostini::ContainerChromeOSBaseDirectory()
.Append(kFolderNameMyFiles)
.Append(kFolderNameDownloads);
}
} else if (base::FeatureList::IsEnabled(chromeos::features::kDriveFs) &&
id == mount_point_name_drive) {
// DriveFS has some more complicated mappings.
std::vector<base::FilePath::StringType> components;
path.GetComponents(&components);
*inside = crostini::ContainerChromeOSBaseDirectory().Append(
kCrostiniMapGoogleDrive);
if (components.size() >= 2 && components[1] == kDriveFsDirRoot) {
// root -> My Drive.
base_to_exclude = base_to_exclude.Append(kDriveFsDirRoot);
*inside = inside->Append(kCrostiniMapMyDrive);
} else if (components.size() >= 2 &&
components[1] == kDriveFsDirTeamDrives) {
// team_drives -> Team Drives.
base_to_exclude = base_to_exclude.Append(kDriveFsDirTeamDrives);
*inside = inside->Append(kCrostiniMapTeamDrives);
}
} else if (id == chromeos::kSystemMountNameRemovable) {
// Removable.
*inside = crostini::ContainerChromeOSBaseDirectory().Append(
chromeos::kSystemMountNameRemovable);
} else if (id == GetAndroidFilesMountPointName()) {
*inside = crostini::ContainerChromeOSBaseDirectory().Append(
kCrostiniMapPlayFiles);
} else {
return false;
}
return base_to_exclude == path ||
base_to_exclude.AppendRelativePath(path, inside);
}
bool ConvertPathToArcUrl(const base::FilePath& path, GURL* arc_url_out) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// Obtain the primary profile. This information is required because currently
// only the file systems for the primary profile is exposed to ARC.
Profile* primary_profile = GetPrimaryProfile();
if (!primary_profile)
return false;
// Convert paths under primary profile's Downloads directory.
base::FilePath primary_downloads =
GetDownloadsFolderForProfile(primary_profile);
base::FilePath result_path(kArcDownloadRoot);
if (primary_downloads.AppendRelativePath(path, &result_path)) {
// TODO(niwa): Switch to using kFileSystemFileproviderUrl once we completely
// move FileProvider to arc.file_system (b/111816608).
*arc_url_out = GURL(arc::kIntentHelperFileproviderUrl)
.Resolve(net::EscapePath(result_path.AsUTF8Unsafe()));
return true;
}
// Convert paths under Android files root (/run/arc/sdcard/write/emulated/0).
result_path = base::FilePath(kArcExternalFilesRoot);
if (base::FilePath(kAndroidFilesPath)
.AppendRelativePath(path, &result_path)) {
// TODO(niwa): Switch to using kFileSystemFileproviderUrl.
*arc_url_out = GURL(arc::kIntentHelperFileproviderUrl)
.Resolve(net::EscapePath(result_path.AsUTF8Unsafe()));
return true;
}
// Convert paths under /media/removable.
base::FilePath relative_path;
if (base::FilePath(kRemovableMediaPath)
.AppendRelativePath(path, &relative_path)) {
*arc_url_out = GURL(kArcRemovableMediaProviderUrl)
.Resolve(net::EscapePath(relative_path.AsUTF8Unsafe()));
return true;
}
// Convert paths under /special.
GURL external_file_url =
chromeos::CreateExternalFileURLFromPath(primary_profile, path,
/* allow_drivefs = */ true);
if (!external_file_url.is_empty()) {
*arc_url_out = arc::EncodeToChromeContentProviderUrl(external_file_url);
return true;
}
// TODO(kinaba): Add conversion logic once other file systems are supported.
return false;
}
void ConvertToContentUrls(
const std::vector<storage::FileSystemURL>& file_system_urls,
ConvertToContentUrlsCallback callback) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (file_system_urls.empty()) {
std::move(callback).Run(std::vector<GURL>());
return;
}
Profile* profile = GetPrimaryProfile();
auto* documents_provider_root_map =
profile ? arc::ArcDocumentsProviderRootMap::GetForBrowserContext(profile)
: nullptr;
// To keep the original order, prefill |out_urls| with empty URLs and
// specify index when updating it like (*out_urls)[index] = url.
auto out_urls = std::make_unique<std::vector<GURL>>(file_system_urls.size());
auto* out_urls_ptr = out_urls.get();
auto barrier = base::BarrierClosure(
file_system_urls.size(),
base::BindOnce(&OnAllContentUrlsResolved, std::move(callback),
std::move(out_urls)));
auto single_content_url_callback =
base::BindRepeating(&OnSingleContentUrlResolved, barrier, out_urls_ptr);
for (size_t index = 0; index < file_system_urls.size(); ++index) {
const auto& file_system_url = file_system_urls[index];
GURL arc_url;
if (file_system_url.mount_type() == storage::kFileSystemTypeExternal &&
ConvertPathToArcUrl(file_system_url.path(), &arc_url)) {
single_content_url_callback.Run(index, arc_url);
continue;
}
if (!documents_provider_root_map) {
single_content_url_callback.Run(index, GURL());
continue;
}
base::FilePath filepath;
auto* documents_provider_root =
documents_provider_root_map->ParseAndLookup(file_system_url, &filepath);
if (!documents_provider_root) {
single_content_url_callback.Run(index, GURL());
continue;
}
documents_provider_root->ResolveToContentUrl(
filepath, base::BindRepeating(single_content_url_callback, index));
}
}
bool ReplacePrefix(std::string* s,
const std::string& prefix,
const std::string& replacement) {
if (base::StartsWith(*s, prefix, base::CompareCase::SENSITIVE)) {
base::ReplaceFirstSubstringAfterOffset(s, 0, prefix, replacement);
return true;
}
return false;
}
std::string GetPathDisplayTextForSettings(Profile* profile,
const std::string& path) {
std::string result(path);
auto* drive_integration_service =
drive::DriveIntegrationServiceFactory::FindForProfile(profile);
if (drive_integration_service && !drive_integration_service->is_enabled()) {
drive_integration_service = nullptr;
}
if (ReplacePrefix(&result, "/home/chronos/user/Downloads",
kFolderNameDownloads)) {
} else if (ReplacePrefix(&result,
"/home/chronos/" +
profile->GetPath().BaseName().value() +
"/Downloads",
kFolderNameDownloads)) {
} else if (ReplacePrefix(
&result,
std::string("/home/chronos/user/") + kFolderNameMyFiles,
"My files")) {
} else if (ReplacePrefix(&result,
"/home/chronos/" +
profile->GetPath().BaseName().value() + "/" +
kFolderNameMyFiles,
"My files")) {
} else if (drive_integration_service &&
ReplacePrefix(&result,
drive_integration_service->GetMountPointPath()
.Append(kDriveFsDirRoot)
.value(),
base::FilePath(kDisplayNameGoogleDrive)
.Append(l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_DRIVE_MY_DRIVE_LABEL))
.value())) {
} else if (drive_integration_service &&
ReplacePrefix(&result,
drive_integration_service->GetMountPointPath()
.Append(kDriveFsDirTeamDrives)
.value(),
base::FilePath(kDisplayNameGoogleDrive)
.Append(l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_DRIVE_TEAM_DRIVES_LABEL))
.value())) {
} else if (drive_integration_service &&
ReplacePrefix(&result,
drive_integration_service->GetMountPointPath()
.Append(kDriveFsDirComputers)
.value(),
base::FilePath(kDisplayNameGoogleDrive)
.Append(l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_DRIVE_COMPUTERS_LABEL))
.value())) {
} else if (drive_integration_service &&
ReplacePrefix(&result,
drive::util::GetDriveMountPointPath(profile)
.Append(kDriveFsDirRoot)
.value(),
base::FilePath(kDisplayNameGoogleDrive)
.Append(l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_DRIVE_MY_DRIVE_LABEL))
.value())) {
} else if (drive_integration_service &&
ReplacePrefix(&result,
drive::util::GetDriveMountPointPath(profile)
.Append(kDriveFsDirTeamDrives)
.value(),
base::FilePath(kDisplayNameGoogleDrive)
.Append(l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_DRIVE_TEAM_DRIVES_LABEL))
.value())) {
} else if (drive_integration_service &&
ReplacePrefix(&result,
drive::util::GetDriveMountPointPath(profile)
.Append(kDriveFsDirComputers)
.value(),
base::FilePath(kDisplayNameGoogleDrive)
.Append(l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_DRIVE_COMPUTERS_LABEL))
.value())) {
} else if (ReplacePrefix(&result, kAndroidFilesPath,
l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_ANDROID_FILES_ROOT_LABEL))) {
} else if (ReplacePrefix(&result, GetCrostiniMountDirectory(profile).value(),
l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_LINUX_FILES_ROOT_LABEL))) {
} else if (ReplacePrefix(&result, kRemovableMediaPath,
l10n_util::GetStringUTF8(
IDS_FILE_BROWSER_EXTERNAL_STORAGE_ROOT_LABEL))) {
}
base::ReplaceChars(result, "/", " \u203a ", &result);
return result;
}
bool ExtractMountNameAndFullPath(const base::FilePath& absolute_path,
std::string* mount_name,
std::string* full_path) {
DCHECK(absolute_path.IsAbsolute());
DCHECK(mount_name);
DCHECK(full_path);
storage::ExternalMountPoints* mount_points =
storage::ExternalMountPoints::GetSystemInstance();
base::FilePath virtual_path;
if (!mount_points->GetVirtualPath(absolute_path, &virtual_path))
return false;
const std::string& value = virtual_path.value();
size_t pos = value.find(base::FilePath::kSeparators[0]);
*mount_name = value.substr(0, pos);
// Set full_path to '/' if |absolute_path| is a root.
if (pos == std::string::npos) {
*full_path = "/";
} else {
*full_path = value.substr(pos);
}
return true;
}
} // namespace util
} // namespace file_manager