/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "mozilla/dom/Directory.h" #include "CreateDirectoryTask.h" #include "CreateFileTask.h" #include "FileSystemPermissionRequest.h" #include "GetDirectoryListingTask.h" #include "GetFileOrDirectoryTask.h" #include "RemoveTask.h" #include "nsCharSeparatedTokenizer.h" #include "nsString.h" #include "mozilla/dom/DirectoryBinding.h" #include "mozilla/dom/FileSystemBase.h" #include "mozilla/dom/FileSystemUtils.h" #include "mozilla/dom/OSFileSystem.h" // Resolve the name collision of Microsoft's API name with macros defined in // Windows header files. Undefine the macro of CreateDirectory to avoid // Directory#CreateDirectory being replaced by Directory#CreateDirectoryW. #ifdef CreateDirectory #undef CreateDirectory #endif // Undefine the macro of CreateFile to avoid Directory#CreateFile being replaced // by Directory#CreateFileW. #ifdef CreateFile #undef CreateFile #endif namespace mozilla { namespace dom { namespace { bool TokenizerIgnoreNothing(char16_t /* aChar */) { return false; } bool IsValidRelativeDOMPath(const nsString& aPath, nsTArray& aParts) { // We don't allow empty relative path to access the root. if (aPath.IsEmpty()) { return false; } // Leading and trailing "/" are not allowed. if (aPath.First() == FILESYSTEM_DOM_PATH_SEPARATOR_CHAR || aPath.Last() == FILESYSTEM_DOM_PATH_SEPARATOR_CHAR) { return false; } NS_NAMED_LITERAL_STRING(kCurrentDir, "."); NS_NAMED_LITERAL_STRING(kParentDir, ".."); // Split path and check each path component. nsCharSeparatedTokenizerTemplate tokenizer(aPath, FILESYSTEM_DOM_PATH_SEPARATOR_CHAR); while (tokenizer.hasMoreTokens()) { nsDependentSubstring pathComponent = tokenizer.nextToken(); // The path containing empty components, such as "foo//bar", is invalid. // We don't allow paths, such as "../foo", "foo/./bar" and "foo/../bar", // to walk up the directory. if (pathComponent.IsEmpty() || pathComponent.Equals(kCurrentDir) || pathComponent.Equals(kParentDir)) { return false; } aParts.AppendElement(pathComponent); } return true; } } // anonymous namespace NS_IMPL_CYCLE_COLLECTION_CLASS(Directory) NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(Directory) if (tmp->mFileSystem) { tmp->mFileSystem->Unlink(); tmp->mFileSystem = nullptr; } NS_IMPL_CYCLE_COLLECTION_UNLINK(mParent) NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(Directory) if (tmp->mFileSystem) { tmp->mFileSystem->Traverse(cb); } NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mParent) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTION_TRACE_WRAPPERCACHE(Directory) NS_IMPL_CYCLE_COLLECTING_ADDREF(Directory) NS_IMPL_CYCLE_COLLECTING_RELEASE(Directory) NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(Directory) NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY NS_INTERFACE_MAP_ENTRY(nsISupports) NS_INTERFACE_MAP_END // static already_AddRefed Directory::GetRoot(FileSystemBase* aFileSystem, ErrorResult& aRv) { MOZ_ASSERT(aFileSystem); nsCOMPtr path; aRv = NS_NewNativeLocalFile(NS_ConvertUTF16toUTF8(aFileSystem->LocalOrDeviceStorageRootPath()), true, getter_AddRefs(path)); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } RefPtr task = GetFileOrDirectoryTask::Create(aFileSystem, path, eDOMRootDirectory, true, aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } FileSystemPermissionRequest::RequestForTask(task); return task->GetPromise(); } /* static */ already_AddRefed Directory::Create(nsISupports* aParent, nsIFile* aFile, DirectoryType aType, FileSystemBase* aFileSystem) { MOZ_ASSERT(NS_IsMainThread()); MOZ_ASSERT(aParent); MOZ_ASSERT(aFile); #ifdef DEBUG bool isDir; nsresult rv = aFile->IsDirectory(&isDir); MOZ_ASSERT(NS_SUCCEEDED(rv) && isDir); if (aType == eNotDOMRootDirectory) { RefPtr parent; rv = aFile->GetParent(getter_AddRefs(parent)); // We must have a parent if this is not the root directory. MOZ_ASSERT(NS_SUCCEEDED(rv) && parent); } #endif RefPtr directory = new Directory(aParent, aFile, aType, aFileSystem); return directory.forget(); } Directory::Directory(nsISupports* aParent, nsIFile* aFile, DirectoryType aType, FileSystemBase* aFileSystem) : mParent(aParent) , mFile(aFile) , mType(aType) { MOZ_ASSERT(NS_IsMainThread()); MOZ_ASSERT(aFile); // aFileSystem can be null. In this case we create a OSFileSystem when needed. if (aFileSystem) { // More likely, this is a OSFileSystem. This object keeps a reference of // mParent but it's not cycle collectable and to avoid manual // addref/release, it's better to have 1 object per directory. For this // reason we clone it here. mFileSystem = aFileSystem->Clone(); } } Directory::~Directory() { } nsISupports* Directory::GetParentObject() const { return mParent; } JSObject* Directory::WrapObject(JSContext* aCx, JS::Handle aGivenProto) { return DirectoryBinding::Wrap(aCx, this, aGivenProto); } void Directory::GetName(nsAString& aRetval, ErrorResult& aRv) { aRetval.Truncate(); if (mType == eDOMRootDirectory) { RefPtr fs = GetFileSystem(aRv); if (NS_WARN_IF(aRv.Failed())) { return; } fs->GetRootName(aRetval); return; } aRv = mFile->GetLeafName(aRetval); NS_WARN_IF(aRv.Failed()); } already_AddRefed Directory::CreateFile(const nsAString& aPath, const CreateFileOptions& aOptions, ErrorResult& aRv) { RefPtr blobData; InfallibleTArray arrayData; bool replace = (aOptions.mIfExists == CreateIfExistsMode::Replace); // Get the file content. if (aOptions.mData.WasPassed()) { auto& data = aOptions.mData.Value(); if (data.IsString()) { NS_ConvertUTF16toUTF8 str(data.GetAsString()); arrayData.AppendElements(reinterpret_cast(str.get()), str.Length()); } else if (data.IsArrayBuffer()) { const ArrayBuffer& buffer = data.GetAsArrayBuffer(); buffer.ComputeLengthAndData(); arrayData.AppendElements(buffer.Data(), buffer.Length()); } else if (data.IsArrayBufferView()){ const ArrayBufferView& view = data.GetAsArrayBufferView(); view.ComputeLengthAndData(); arrayData.AppendElements(view.Data(), view.Length()); } else { blobData = data.GetAsBlob(); } } nsCOMPtr realPath; nsresult error = DOMPathToRealPath(aPath, getter_AddRefs(realPath)); RefPtr fs = GetFileSystem(aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } RefPtr task = CreateFileTask::Create(fs, realPath, blobData, arrayData, replace, aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } task->SetError(error); FileSystemPermissionRequest::RequestForTask(task); return task->GetPromise(); } already_AddRefed Directory::CreateDirectory(const nsAString& aPath, ErrorResult& aRv) { nsCOMPtr realPath; nsresult error = DOMPathToRealPath(aPath, getter_AddRefs(realPath)); RefPtr fs = GetFileSystem(aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } RefPtr task = CreateDirectoryTask::Create(fs, realPath, aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } task->SetError(error); FileSystemPermissionRequest::RequestForTask(task); return task->GetPromise(); } already_AddRefed Directory::Get(const nsAString& aPath, ErrorResult& aRv) { nsCOMPtr realPath; nsresult error = DOMPathToRealPath(aPath, getter_AddRefs(realPath)); RefPtr fs = GetFileSystem(aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } RefPtr task = GetFileOrDirectoryTask::Create(fs, realPath, eNotDOMRootDirectory, false, aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } task->SetError(error); FileSystemPermissionRequest::RequestForTask(task); return task->GetPromise(); } already_AddRefed Directory::Remove(const StringOrFileOrDirectory& aPath, ErrorResult& aRv) { return RemoveInternal(aPath, false, aRv); } already_AddRefed Directory::RemoveDeep(const StringOrFileOrDirectory& aPath, ErrorResult& aRv) { return RemoveInternal(aPath, true, aRv); } already_AddRefed Directory::RemoveInternal(const StringOrFileOrDirectory& aPath, bool aRecursive, ErrorResult& aRv) { nsresult error = NS_OK; nsCOMPtr realPath; // Check and get the target path. RefPtr fs = GetFileSystem(aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } // If this is a File if (aPath.IsFile()) { if (!fs->GetRealPath(aPath.GetAsFile().Impl(), getter_AddRefs(realPath))) { error = NS_ERROR_DOM_SECURITY_ERR; } // If this is a string } else if (aPath.IsString()) { error = DOMPathToRealPath(aPath.GetAsString(), getter_AddRefs(realPath)); // Directory } else { MOZ_ASSERT(aPath.IsDirectory()); if (!fs->IsSafeDirectory(&aPath.GetAsDirectory())) { error = NS_ERROR_DOM_SECURITY_ERR; } else { realPath = aPath.GetAsDirectory().mFile; } } // The target must be a descendant of this directory. if (!FileSystemUtils::IsDescendantPath(mFile, realPath)) { error = NS_ERROR_DOM_FILESYSTEM_NO_MODIFICATION_ALLOWED_ERR; } RefPtr task = RemoveTask::Create(fs, mFile, realPath, aRecursive, aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } task->SetError(error); FileSystemPermissionRequest::RequestForTask(task); return task->GetPromise(); } void Directory::GetPath(nsAString& aRetval, ErrorResult& aRv) { // This operation is expensive. Better to cache the result. if (mPath.IsEmpty()) { RefPtr fs = GetFileSystem(aRv); if (NS_WARN_IF(aRv.Failed())) { return; } fs->GetDOMPath(mFile, mType, mPath, aRv); if (NS_WARN_IF(aRv.Failed())) { return; } } aRetval = mPath; } nsresult Directory::GetFullRealPath(nsAString& aPath) { nsresult rv = mFile->GetPath(aPath); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } return NS_OK; } already_AddRefed Directory::GetFilesAndDirectories(ErrorResult& aRv) { RefPtr fs = GetFileSystem(aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } RefPtr task = GetDirectoryListingTask::Create(fs, mFile, mType, mFilters, aRv); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } FileSystemPermissionRequest::RequestForTask(task); return task->GetPromise(); } void Directory::SetContentFilters(const nsAString& aFilters) { mFilters = aFilters; } FileSystemBase* Directory::GetFileSystem(ErrorResult& aRv) { if (!mFileSystem) { // Any subdir inherits the FileSystem of the parent Directory. If we are // here it's because we are dealing with the DOM root. MOZ_ASSERT(mType == eDOMRootDirectory); nsAutoString path; aRv = mFile->GetPath(path); if (NS_WARN_IF(aRv.Failed())) { return nullptr; } RefPtr fs = new OSFileSystem(path); fs->Init(mParent); mFileSystem = fs; } return mFileSystem; } nsresult Directory::DOMPathToRealPath(const nsAString& aPath, nsIFile** aFile) const { nsString relativePath; relativePath = aPath; // Trim white spaces. static const char kWhitespace[] = "\b\t\r\n "; relativePath.Trim(kWhitespace); nsTArray parts; if (!IsValidRelativeDOMPath(relativePath, parts)) { return NS_ERROR_DOM_FILESYSTEM_INVALID_PATH_ERR; } nsCOMPtr file; nsresult rv = mFile->Clone(getter_AddRefs(file)); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } for (uint32_t i = 0; i < parts.Length(); ++i) { rv = file->AppendRelativePath(parts[i]); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } } file.forget(aFile); return NS_OK; } } // namespace dom } // namespace mozilla