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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/file_system_access/file_system_access_handle_base.h"
#include <memory>
#include <vector>
#include "base/barrier_callback.h"
#include "base/feature_list.h"
#include "base/files/file_path.h"
#include "base/files/safe_base_name.h"
#include "base/functional/bind.h"
#include "base/strings/strcat.h"
#include "base/strings/utf_string_conversions.h"
#include "content/browser/file_system_access/features.h"
#include "content/browser/file_system_access/file_system_access_directory_handle_impl.h"
#include "content/browser/file_system_access/file_system_access_error.h"
#include "content/browser/file_system_access/file_system_access_file_handle_impl.h"
#include "content/browser/file_system_access/file_system_access_manager_impl.h"
#include "content/browser/file_system_access/file_system_access_safe_move_helper.h"
#include "content/browser/file_system_access/file_system_access_transfer_token_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/file_system_access_permission_context.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_client.h"
#include "mojo/public/cpp/bindings/message.h"
#include "storage/browser/file_system/file_system_operation.h"
#include "storage/browser/file_system/file_system_url.h"
#include "storage/common/file_system/file_system_types.h"
#include "storage/common/file_system/file_system_util.h"
#include "third_party/blink/public/mojom/file_system_access/file_system_access_error.mojom-forward.h"
namespace content {
using LockHandle = FileSystemAccessLockManager::LockHandle;
namespace {
std::string GetURLDisplayName(const storage::FileSystemURL& url) {
return base::UTF16ToUTF8(url.path().BaseName().LossyDisplayName());
}
} // namespace
FileSystemAccessHandleBase::FileSystemAccessHandleBase(
FileSystemAccessManagerImpl* manager,
const BindingContext& context,
const storage::FileSystemURL& url,
const SharedHandleState& handle_state)
: manager_(manager),
context_(context),
url_(url),
handle_state_(handle_state) {
DCHECK(manager_);
// We support sandboxed file system and local file systems on all platforms.
DCHECK(url_.type() == storage::kFileSystemTypeLocal ||
url_.type() == storage::kFileSystemTypeTemporary ||
url_.mount_type() == storage::kFileSystemTypeExternal ||
url_.type() == storage::kFileSystemTypeTest)
<< url_.type();
if (ShouldTrackUsage(url_)) {
DCHECK(url_.mount_type() == storage::kFileSystemTypeLocal ||
url_.mount_type() == storage::kFileSystemTypeExternal)
<< url_.mount_type();
WebContents* web_contents =
WebContentsImpl::FromRenderFrameHostID(context_.frame_id);
if (web_contents) {
web_contents_ = web_contents->GetWeakPtr();
static_cast<WebContentsImpl*>(web_contents_.get())
->IncrementFileSystemAccessHandleCount();
}
}
}
FileSystemAccessHandleBase::~FileSystemAccessHandleBase() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (ShouldTrackUsage(url_) && web_contents_) {
static_cast<WebContentsImpl*>(web_contents_.get())
->DecrementFileSystemAccessHandleCount();
}
}
FileSystemAccessHandleBase::PermissionStatus
FileSystemAccessHandleBase::GetReadPermissionStatus() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return handle_state_.read_grant->GetStatus();
}
FileSystemAccessHandleBase::PermissionStatus
FileSystemAccessHandleBase::GetWritePermissionStatus() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// It is not currently possible to have write only handles, so first check the
// read permission status. See also:
// http://wicg.github.io/file-system-access/#api-filesystemhandle-querypermission
PermissionStatus read_status = GetReadPermissionStatus();
if (read_status != PermissionStatus::GRANTED) {
return read_status;
}
return handle_state_.write_grant->GetStatus();
}
void FileSystemAccessHandleBase::DoGetPermissionStatus(
bool writable,
base::OnceCallback<void(PermissionStatus)> callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
std::move(callback).Run(writable ? GetWritePermissionStatus()
: GetReadPermissionStatus());
}
void FileSystemAccessHandleBase::DoRequestPermission(
bool writable,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr,
PermissionStatus)> callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
PermissionStatus current_status =
writable ? GetWritePermissionStatus() : GetReadPermissionStatus();
// If we already have a valid permission status, just return that. Also just
// return the current permission status if this is called from a worker, as we
// don't support prompting for increased permissions from workers.
//
// Currently the worker check here is redundant because there is no way for
// workers to get File System Access handles. While workers will never be able
// to call chooseEntries(), they will be able to receive existing handles from
// windows via postMessage() and IndexedDB.
if (current_status != PermissionStatus::ASK || context_.is_worker) {
std::move(callback).Run(file_system_access_error::Ok(), current_status);
return;
}
if (!writable) {
handle_state_.read_grant->RequestPermission(
context().frame_id,
FileSystemAccessPermissionGrant::UserActivationState::kRequired,
base::BindOnce(&FileSystemAccessHandleBase::DidRequestPermission,
AsWeakPtr(), writable, std::move(callback)));
return;
}
// Ask for both read and write permission at the same time, the permission
// context should coalesce these into one prompt.
if (GetReadPermissionStatus() == PermissionStatus::ASK) {
// Ignore callback for the read permission request; if the request fails,
// the write permission request probably fails the same way. And we check
// the final permission status after the permission request completes
// anyway.
handle_state_.read_grant->RequestPermission(
context().frame_id,
FileSystemAccessPermissionGrant::UserActivationState::kRequired,
base::DoNothing());
}
handle_state_.write_grant->RequestPermission(
context().frame_id,
FileSystemAccessPermissionGrant::UserActivationState::kRequired,
base::BindOnce(&FileSystemAccessHandleBase::DidRequestPermission,
AsWeakPtr(), writable, std::move(callback)));
}
void FileSystemAccessHandleBase::DidRequestPermission(
bool writable,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr,
PermissionStatus)> callback,
FileSystemAccessPermissionGrant::PermissionRequestOutcome outcome) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
using Outcome = FileSystemAccessPermissionGrant::PermissionRequestOutcome;
switch (outcome) {
case Outcome::kInvalidFrame:
case Outcome::kThirdPartyContext:
std::move(callback).Run(
file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kSecurityError,
"Not allowed to request permissions in this context."),
writable ? GetWritePermissionStatus() : GetReadPermissionStatus());
return;
case Outcome::kNoUserActivation:
std::move(callback).Run(
file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kSecurityError,
"User activation is required to request permissions."),
writable ? GetWritePermissionStatus() : GetReadPermissionStatus());
return;
case Outcome::kBlockedByContentSetting:
case Outcome::kUserGranted:
case Outcome::kUserDenied:
case Outcome::kUserDismissed:
case Outcome::kRequestAborted:
case Outcome::kGrantedByContentSetting:
case Outcome::kGrantedByPersistentPermission:
case Outcome::kGrantedByAncestorPersistentPermission:
case Outcome::kGrantedByRestorePrompt:
std::move(callback).Run(
file_system_access_error::Ok(),
writable ? GetWritePermissionStatus() : GetReadPermissionStatus());
return;
}
NOTREACHED();
}
void FileSystemAccessHandleBase::DoMove(
mojo::PendingRemote<blink::mojom::FileSystemAccessTransferToken>
destination_directory,
const std::string& new_entry_name,
bool has_transient_user_activation,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK_EQ(GetWritePermissionStatus(),
blink::mojom::PermissionStatus::GRANTED);
manager()->ResolveTransferToken(
std::move(destination_directory),
base::BindOnce(&FileSystemAccessHandleBase::DidResolveTokenToMove,
AsWeakPtr(), new_entry_name, has_transient_user_activation,
std::move(callback)));
}
void FileSystemAccessHandleBase::DoRename(
const std::string& new_entry_name,
bool has_transient_user_activation,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// To get this far, we must have write access to the entry being moved.
// Write access to the parent directory is not required for renames.
DCHECK_EQ(GetWritePermissionStatus(),
blink::mojom::PermissionStatus::GRANTED);
if (!manager()->IsSafePathComponent(
url().type(), context_.storage_key.origin(), new_entry_name)) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kInvalidArgument));
return;
}
auto sibling_safe_name =
base::SafeBaseName::Create(storage::StringToFilePath(new_entry_name));
CHECK(sibling_safe_name.has_value());
storage::FileSystemURL destination_url =
url().CreateSibling(*sibling_safe_name);
#if BUILDFLAG(IS_ANDROID)
// Android Content-URIs do not support CreateSibling().
if (!destination_url.is_valid()) {
CHECK(url().path().IsContentUri());
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kInvalidModificationError));
return;
}
#endif
CHECK(destination_url.is_valid());
SharedHandleState destination_shared_handle_state =
url().type() == storage::FileSystemType::kFileSystemTypeTemporary
? manager()->GetSharedHandleStateForSandboxedPath()
: manager()->GetSharedHandleStateForNonSandboxedPath(
content::PathInfo(destination_url.virtual_path(),
new_entry_name),
context().storage_key,
// TODO(crbug.com/40198034): Support directory moves.
FileSystemAccessPermissionContext::HandleType::kFile,
FileSystemAccessPermissionContext::UserAction::kNone);
// Require a user gesture if the write access to the destination is not
// explicitly granted.
bool has_write_access_to_destination =
destination_shared_handle_state.write_grant->GetStatus() ==
PermissionStatus::GRANTED;
if (!has_write_access_to_destination && !has_transient_user_activation) {
// Files in the OPFS always have write access and should never be gated on a
// user gesture requirement.
CHECK_NE(destination_url.type(), storage::kFileSystemTypeTemporary);
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kPermissionDenied));
return;
}
PrepareForMove(std::move(destination_url), has_write_access_to_destination,
has_transient_user_activation, std::move(callback));
}
void FileSystemAccessHandleBase::DidResolveTokenToMove(
const std::string& new_entry_name,
bool has_transient_user_activation,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback,
FileSystemAccessTransferTokenImpl* resolved_destination_directory) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!resolved_destination_directory) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kInvalidArgument));
return;
}
if (resolved_destination_directory->type() !=
FileSystemAccessPermissionContext::HandleType::kDirectory) {
mojo::ReportBadMessage(
"FileSystemHandle::move() was passed a token which is not a directory");
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kInvalidArgument));
return;
}
if (!manager()->IsSafePathComponent(
resolved_destination_directory->url().type(),
context_.storage_key.origin(), new_entry_name)) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kInvalidArgument));
return;
}
std::unique_ptr<FileSystemAccessDirectoryHandleImpl> dir_handle =
resolved_destination_directory->CreateDirectoryHandle(context_);
// Must have write access to the target directory for cross-directory moves.
bool has_write_access_to_parent = dir_handle->GetWritePermissionStatus() ==
blink::mojom::PermissionStatus::GRANTED;
if (!has_write_access_to_parent) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kPermissionDenied));
return;
}
storage::FileSystemURL dest_url;
blink::mojom::FileSystemAccessErrorPtr error =
dir_handle->GetChildURL(new_entry_name, &dest_url);
if (error != file_system_access_error::Ok()) {
std::move(callback).Run(std::move(error));
return;
}
// Disallow moves either to or from a sandboxed file system.
if (url().type() != dest_url.type() &&
(url().type() == storage::FileSystemType::kFileSystemTypeTemporary ||
dest_url.type() == storage::FileSystemType::kFileSystemTypeTemporary)) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kInvalidModificationError));
return;
}
PrepareForMove(std::move(dest_url), has_write_access_to_parent,
has_transient_user_activation, std::move(callback));
}
void FileSystemAccessHandleBase::PrepareForMove(
storage::FileSystemURL destination_url,
bool has_write_access_to_destination,
bool has_transient_user_activation,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// The file can only be moved if we can acquire exclusive locks to both the
// source and destination URLs.
const bool take_destination_lock = destination_url != url();
auto barrier_callback = base::BarrierCallback<scoped_refptr<LockHandle>>(
take_destination_lock ? 2 : 1,
base::BindOnce(&FileSystemAccessHandleBase::DidTakeMoveLocks, AsWeakPtr(),
destination_url, has_transient_user_activation,
has_write_access_to_destination, std::move(callback)));
manager()->TakeLock(context(), url(), manager()->GetExclusiveLockType(),
barrier_callback);
if (take_destination_lock) {
manager()->TakeLock(context(), destination_url,
manager()->GetExclusiveLockType(), barrier_callback);
}
}
void FileSystemAccessHandleBase::DidTakeMoveLocks(
storage::FileSystemURL destination_url,
bool has_transient_user_activation,
bool has_write_access_to_destination,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback,
std::vector<scoped_refptr<LockHandle>> locks) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const auto& source_lock = locks[0];
if (!source_lock) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kNoModificationAllowedError,
base::StrCat(
{"Failed to move ", GetURLDisplayName(url()),
". A FileSystemHandle cannot be moved while it is locked."})));
return;
}
if (locks.size() > 1 && !locks[1]) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kNoModificationAllowedError,
base::StrCat({"Failed to move ", GetURLDisplayName(url()), " to ",
GetURLDisplayName(destination_url),
". A FileSystemHandle cannot be moved to a destination "
"which is locked."})));
return;
}
// Only allow overwriting moves if we have write access to the destination.
if (has_write_access_to_destination) {
DoPerformMoveOperation(destination_url, std::move(locks),
has_transient_user_activation, std::move(callback));
return;
}
// TODO(crbug.com/40198034): Use DirectoryExists() for directory moves.
manager()->DoFileSystemOperation(
FROM_HERE, &storage::FileSystemOperationRunner::FileExists,
base::BindOnce(
&FileSystemAccessHandleBase::ConfirmMoveWillNotOverwriteDestination,
AsWeakPtr(), destination_url, std::move(locks),
has_transient_user_activation, std::move(callback)),
destination_url);
}
void FileSystemAccessHandleBase::ConfirmMoveWillNotOverwriteDestination(
const storage::FileSystemURL& destination_url,
std::vector<scoped_refptr<LockHandle>> locks,
bool has_transient_user_activation,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback,
base::File::Error result) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (result == base::File::FILE_OK ||
result == base::File::FILE_ERROR_EXISTS ||
result == base::File::FILE_ERROR_NOT_EMPTY ||
result == base::File::FILE_ERROR_NOT_A_FILE ||
result == base::File::FILE_ERROR_INVALID_OPERATION) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kInvalidModificationError));
return;
}
DoPerformMoveOperation(destination_url, std::move(locks),
has_transient_user_activation, std::move(callback));
}
void FileSystemAccessHandleBase::DoPerformMoveOperation(
const storage::FileSystemURL& destination_url,
std::vector<scoped_refptr<LockHandle>> locks,
bool has_transient_user_activation,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
auto file_system_access_safe_move_helper =
std::make_unique<FileSystemAccessSafeMoveHelper>(
manager()->AsWeakPtr(), context(), url(), destination_url,
storage::FileSystemOperation::CopyOrMoveOptionSet(),
GetContentClient()->browser()->GetQuarantineConnectionCallback(),
has_transient_user_activation);
// Allows the unique pointer to be bound to the callback so the helper stays
// alive until the operation completes.
FileSystemAccessSafeMoveHelper* raw_helper =
file_system_access_safe_move_helper.get();
raw_helper->Start(base::BindOnce(
&FileSystemAccessHandleBase::DidMove, AsWeakPtr(), destination_url,
std::move(locks), std::move(file_system_access_safe_move_helper),
std::move(callback)));
}
void FileSystemAccessHandleBase::DidMove(
storage::FileSystemURL destination_url,
std::vector<scoped_refptr<LockHandle>> locks,
std::unique_ptr<FileSystemAccessSafeMoveHelper> /*move_helper*/,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback,
blink::mojom::FileSystemAccessErrorPtr result) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (result->status == blink::mojom::FileSystemAccessStatus::kOk) {
// TODO(crbug.com/40790187): Update permission grants appropriately when
// moving into/out of the OPFS. Current state:
// - Moving out of the OPFS: the destination directory is guaranteed to have
// write permission. We _should_ update `handle_state_` to point to this
// directory, but it technically works as-is.
// - Moving into the OPFS: we leave a dangling permission grant at the old
// path. We should clean this up, but since it's effectively a remove()
// this isn't the worst behavior for now.
if (ShouldTrackUsage(url_) && ShouldTrackUsage(destination_url) &&
manager()->permission_context()) {
manager()->permission_context()->NotifyEntryMoved(
context_.storage_key.origin(), content::PathInfo(url_.path()),
content::PathInfo(destination_url.path()));
}
url_ = std::move(destination_url);
}
// Destroy locks so they are released by the time the callback runs.
locks.clear();
std::move(callback).Run(std::move(result));
}
void FileSystemAccessHandleBase::DoRemove(
const storage::FileSystemURL& url,
bool recurse,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK_EQ(GetWritePermissionStatus(),
blink::mojom::PermissionStatus::GRANTED);
// A locked file cannot be removed. Acquire a lock and release it after the
// remove operation completes.
manager()->TakeLock(
context(), url, manager()->GetExclusiveLockType(),
base::BindOnce(&FileSystemAccessHandleBase::DidTakeRemoveLock,
AsWeakPtr(), url, recurse, std::move(callback)));
}
void FileSystemAccessHandleBase::DidTakeRemoveLock(
const storage::FileSystemURL& url,
bool recurse,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)> callback,
scoped_refptr<LockHandle> lock) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!lock) {
std::move(callback).Run(file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kNoModificationAllowedError));
return;
}
// Bind the `lock` to the Remove callback to guarantee the lock is held until
// the operation completes.
auto wrapped_callback = base::BindOnce(
[](scoped_refptr<LockHandle> lock,
base::OnceCallback<void(blink::mojom::FileSystemAccessErrorPtr)>
callback,
base::File::Error result) {
// Destroy lock so it is released by the time the callback runs.
lock.reset();
std::move(callback).Run(
file_system_access_error::FromFileError(result));
},
std::move(lock), std::move(callback));
manager()->DoFileSystemOperation(FROM_HERE,
&storage::FileSystemOperationRunner::Remove,
std::move(wrapped_callback), url, recurse);
}
void FileSystemAccessHandleBase::DoGetCloudIdentifiers(
FileSystemAccessPermissionContext::HandleType handle_type,
ContentBrowserClient::GetCloudIdentifiersCallback callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!base::FeatureList::IsEnabled(
blink::features::kFileSystemAccessGetCloudIdentifiers)) {
mojo::ReportBadMessage(
"feature 'FileSystemAccessGetCloudIdentifiers' not enabled");
std::move(callback).Run(
file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kSecurityError),
{});
return;
}
if (GetReadPermissionStatus() != PermissionStatus::GRANTED) {
std::move(callback).Run(
file_system_access_error::FromStatus(
blink::mojom::FileSystemAccessStatus::kPermissionDenied),
{});
return;
}
GetContentClient()->browser()->GetCloudIdentifiers(url_, handle_type,
std::move(callback));
}
// Calculates the parent URL fom current context, propagating any
// storage bucket overrides from the child.
storage::FileSystemURL FileSystemAccessHandleBase::GetParentURL() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const storage::FileSystemURL child = url();
storage::FileSystemURL parent =
file_system_context()->CreateCrackedFileSystemURL(
child.storage_key(), child.mount_type(),
storage::VirtualPath::DirName(child.virtual_path()));
if (child.bucket()) {
parent.SetBucket(child.bucket().value());
}
return parent;
}
} // namespace content
|