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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
// 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 "chrome/browser/media_galleries/fileapi/media_file_system_backend.h"
#include <string>
#include <utility>
#include <vector>
#include "base/check_op.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/lazy_instance.h"
#include "base/notreached.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/lazy_thread_pool_task_runner.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/single_thread_task_runner.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/media_galleries/fileapi/media_file_validator_factory.h"
#include "chrome/browser/media_galleries/fileapi/media_path_filter.h"
#include "chrome/browser/media_galleries/fileapi/native_media_file_util.h"
#include "chrome/browser/media_galleries/media_file_system_registry.h"
#include "chrome/browser/profiles/profile.h"
#include "components/download/public/common/quarantine_connection.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/extension_registry.h"
#include "storage/browser/file_system/copy_or_move_file_validator.h"
#include "storage/browser/file_system/file_stream_reader.h"
#include "storage/browser/file_system/file_stream_writer.h"
#include "storage/browser/file_system/file_system_context.h"
#include "storage/browser/file_system/file_system_operation.h"
#include "storage/browser/file_system/file_system_operation_context.h"
#include "storage/browser/file_system/file_system_url.h"
#include "storage/browser/file_system/native_file_util.h"
#include "storage/common/file_system/file_system_types.h"
#include "storage/common/file_system/file_system_util.h"
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_CHROMEOS)
#include "chrome/browser/media_galleries/fileapi/device_media_async_file_util.h"
#endif
using storage::FileSystemContext;
using storage::FileSystemURL;
namespace {
const char kMediaGalleryMountPrefix[] = "media_galleries-";
base::LazyThreadPoolSequencedTaskRunner g_media_task_runner =
LAZY_THREAD_POOL_SEQUENCED_TASK_RUNNER_INITIALIZER(
base::TaskTraits(base::MayBlock(),
base::TaskPriority::USER_VISIBLE,
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN));
void OnPreferencesInit(
const content::WebContents::Getter& web_contents_getter,
const extensions::Extension* extension,
MediaGalleryPrefId pref_id,
base::OnceCallback<void(base::File::Error result)> callback) {
content::WebContents* contents = web_contents_getter.Run();
if (!contents) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback), base::File::FILE_ERROR_FAILED));
return;
}
MediaFileSystemRegistry* registry =
g_browser_process->media_file_system_registry();
registry->RegisterMediaFileSystemForExtension(contents, extension, pref_id,
std::move(callback));
}
void AttemptAutoMountOnUIThread(
const content::WebContents::Getter& web_contents_getter,
const std::string& storage_domain,
const std::string& mount_point,
base::OnceCallback<void(base::File::Error result)> callback) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
content::WebContents* web_contents = web_contents_getter.Run();
if (web_contents) {
Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
extensions::ExtensionRegistry* extension_registry =
extensions::ExtensionRegistry::Get(profile);
const extensions::Extension* extension =
extension_registry->enabled_extensions().GetByID(storage_domain);
std::string expected_mount_prefix =
MediaFileSystemBackend::ConstructMountName(
profile->GetPath(), storage_domain, kInvalidMediaGalleryPrefId);
MediaGalleryPrefId pref_id = kInvalidMediaGalleryPrefId;
if (extension && extension->id() == storage_domain &&
base::StartsWith(mount_point, expected_mount_prefix,
base::CompareCase::SENSITIVE) &&
base::StringToUint64(mount_point.substr(expected_mount_prefix.size()),
&pref_id) &&
pref_id != kInvalidMediaGalleryPrefId) {
MediaGalleriesPreferences* preferences =
g_browser_process->media_file_system_registry()->GetPreferences(
profile);
// Pass the WebContentsGetter to the closure to prevent a use-after-free
// in the case that the web_contents is destroyed before the closure runs.
preferences->EnsureInitialized(base::BindOnce(
&OnPreferencesInit, web_contents_getter, base::RetainedRef(extension),
pref_id, std::move(callback)));
return;
}
}
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback), base::File::FILE_ERROR_NOT_FOUND));
}
content::WebContents* GetWebContentsFromFrameTreeNodeID(
content::FrameTreeNodeId frame_tree_node_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
return content::WebContents::FromFrameTreeNodeId(frame_tree_node_id);
}
} // namespace
MediaFileSystemBackend::MediaFileSystemBackend(
const base::FilePath& profile_path,
download::QuarantineConnectionCallback quarantine_connection_callback)
: profile_path_(profile_path),
media_copy_or_move_file_validator_factory_(
std::make_unique<MediaFileValidatorFactory>(
std::move(quarantine_connection_callback))),
native_media_file_util_(
std::make_unique<NativeMediaFileUtil>(g_media_task_runner.Get()))
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_CHROMEOS)
,
device_media_async_file_util_(
DeviceMediaAsyncFileUtil::Create(profile_path_,
APPLY_MEDIA_FILE_VALIDATION))
#endif
{
}
MediaFileSystemBackend::~MediaFileSystemBackend() = default;
// static
void MediaFileSystemBackend::AssertCurrentlyOnMediaSequence() {
#if DCHECK_IS_ON()
DCHECK(g_media_task_runner.Get()->RunsTasksInCurrentSequence());
#endif
}
// static
scoped_refptr<base::SequencedTaskRunner>
MediaFileSystemBackend::MediaTaskRunner() {
return g_media_task_runner.Get();
}
// static
std::string MediaFileSystemBackend::ConstructMountName(
const base::FilePath& profile_path,
const std::string& extension_id,
MediaGalleryPrefId pref_id) {
std::string name(kMediaGalleryMountPrefix);
name.append(profile_path.BaseName().MaybeAsASCII());
name.append("-");
name.append(extension_id);
name.append("-");
if (pref_id != kInvalidMediaGalleryPrefId)
name.append(base::NumberToString(pref_id));
base::ReplaceChars(name, " /", "_", &name);
return name;
}
// static
bool MediaFileSystemBackend::AttemptAutoMountForURLRequest(
const storage::FileSystemRequestInfo& request_info,
const storage::FileSystemURL& filesystem_url,
base::OnceCallback<void(base::File::Error result)> callback) {
if (request_info.storage_domain.empty() ||
filesystem_url.type() != storage::kFileSystemTypeExternal ||
request_info.storage_domain != filesystem_url.origin().host()) {
return false;
}
const base::FilePath& virtual_path = filesystem_url.path();
if (virtual_path.ReferencesParent())
return false;
std::vector<base::FilePath::StringType> components =
virtual_path.GetComponents();
if (components.empty())
return false;
std::string mount_point = base::FilePath(components[0]).AsUTF8Unsafe();
if (!base::StartsWith(mount_point, kMediaGalleryMountPrefix,
base::CompareCase::SENSITIVE))
return false;
content::WebContents::Getter web_contents_getter =
base::BindRepeating(&GetWebContentsFromFrameTreeNodeID,
content::FrameTreeNodeId(request_info.content_id));
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&AttemptAutoMountOnUIThread, web_contents_getter,
request_info.storage_domain, mount_point,
std::move(callback)));
return true;
}
bool MediaFileSystemBackend::CanHandleType(storage::FileSystemType type) const {
switch (type) {
case storage::kFileSystemTypeLocalMedia:
case storage::kFileSystemTypeDeviceMedia:
return true;
default:
return false;
}
}
void MediaFileSystemBackend::Initialize(storage::FileSystemContext* context) {
}
void MediaFileSystemBackend::ResolveURL(const FileSystemURL& url,
storage::OpenFileSystemMode mode,
ResolveURLCallback callback) {
// We never allow opening a new FileSystem via usual ResolveURL.
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), GURL(), std::string(),
base::File::FILE_ERROR_SECURITY));
}
storage::AsyncFileUtil* MediaFileSystemBackend::GetAsyncFileUtil(
storage::FileSystemType type) {
// We count file system usages here, because we want to count (per session)
// when the file system is actually used for I/O, rather than merely present.
switch (type) {
case storage::kFileSystemTypeLocalMedia:
return native_media_file_util_.get();
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_CHROMEOS)
case storage::kFileSystemTypeDeviceMedia:
return device_media_async_file_util_.get();
#endif
default:
NOTREACHED();
}
}
storage::WatcherManager* MediaFileSystemBackend::GetWatcherManager(
storage::FileSystemType type) {
return nullptr;
}
storage::CopyOrMoveFileValidatorFactory*
MediaFileSystemBackend::GetCopyOrMoveFileValidatorFactory(
storage::FileSystemType type,
base::File::Error* error_code) {
DCHECK(error_code);
*error_code = base::File::FILE_OK;
switch (type) {
case storage::kFileSystemTypeLocalMedia:
case storage::kFileSystemTypeDeviceMedia:
if (!media_copy_or_move_file_validator_factory_) {
*error_code = base::File::FILE_ERROR_SECURITY;
return nullptr;
}
return media_copy_or_move_file_validator_factory_.get();
default:
NOTREACHED();
}
}
std::unique_ptr<storage::FileSystemOperation>
MediaFileSystemBackend::CreateFileSystemOperation(
storage::OperationType type,
const FileSystemURL& url,
FileSystemContext* context,
base::File::Error* error_code) const {
std::unique_ptr<storage::FileSystemOperationContext> operation_context(
std::make_unique<storage::FileSystemOperationContext>(
context, MediaTaskRunner().get()));
return storage::FileSystemOperation::Create(type, url, context,
std::move(operation_context));
}
bool MediaFileSystemBackend::SupportsStreaming(
const storage::FileSystemURL& url) const {
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_CHROMEOS)
if (url.type() == storage::kFileSystemTypeDeviceMedia)
return device_media_async_file_util_->SupportsStreaming(url);
#endif
return false;
}
bool MediaFileSystemBackend::HasInplaceCopyImplementation(
storage::FileSystemType type) const {
DCHECK(type == storage::kFileSystemTypeLocalMedia ||
type == storage::kFileSystemTypeDeviceMedia);
return true;
}
std::unique_ptr<storage::FileStreamReader>
MediaFileSystemBackend::CreateFileStreamReader(
const FileSystemURL& url,
int64_t offset,
int64_t max_bytes_to_read,
const base::Time& expected_modification_time,
FileSystemContext* context,
file_access::ScopedFileAccessDelegate::
RequestFilesAccessIOCallback /*file_access*/) const {
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_CHROMEOS)
if (url.type() == storage::kFileSystemTypeDeviceMedia) {
std::unique_ptr<storage::FileStreamReader> reader =
device_media_async_file_util_->GetFileStreamReader(
url, offset, expected_modification_time, context);
DCHECK(reader);
return reader;
}
#endif
return storage::FileStreamReader::CreateForLocalFile(
context->default_file_task_runner(), url.path(), offset,
expected_modification_time);
}
std::unique_ptr<storage::FileStreamWriter>
MediaFileSystemBackend::CreateFileStreamWriter(
const FileSystemURL& url,
int64_t offset,
FileSystemContext* context) const {
return storage::FileStreamWriter::CreateForLocalFile(
context->default_file_task_runner(), url.path(), offset,
storage::FileStreamWriter::OPEN_EXISTING_FILE);
}
storage::FileSystemQuotaUtil* MediaFileSystemBackend::GetQuotaUtil() {
// No quota support.
return nullptr;
}
const storage::UpdateObserverList* MediaFileSystemBackend::GetUpdateObservers(
storage::FileSystemType type) const {
return nullptr;
}
const storage::ChangeObserverList* MediaFileSystemBackend::GetChangeObservers(
storage::FileSystemType type) const {
return nullptr;
}
const storage::AccessObserverList* MediaFileSystemBackend::GetAccessObservers(
storage::FileSystemType type) const {
return nullptr;
}
|