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
|
// Copyright 2022 The Emscripten Authors. All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License. Both these licenses can be
// found in the LICENSE file.
#include <string_view>
#include "file.h"
#include "paths.h"
#include "wasmfs.h"
namespace wasmfs::path {
namespace {
static inline constexpr size_t MAX_RECURSIONS = 40;
ParsedFile doParseFile(std::string_view path,
std::shared_ptr<Directory> base,
LinkBehavior links,
size_t& recursions);
ParsedFile getBaseDir(__wasi_fd_t basefd) {
if (basefd == AT_FDCWD) {
return {wasmFS.getCWD()};
}
auto openFile = wasmFS.getFileTable().locked().getEntry(basefd);
if (!openFile) {
return -EBADF;
}
if (auto baseDir = openFile->locked().getFile()->dynCast<Directory>()) {
return {baseDir};
}
return -ENOTDIR;
}
ParsedFile getChild(std::shared_ptr<Directory> dir,
std::string_view name,
LinkBehavior links,
size_t& recursions) {
auto child = dir->locked().getChild(std::string(name));
if (!child) {
return -ENOENT;
}
if (links != NoFollowLinks) {
while (auto link = child->dynCast<Symlink>()) {
if (++recursions > MAX_RECURSIONS) {
return -ELOOP;
}
auto target = link->getTarget();
if (target.empty()) {
return -ENOENT;
}
auto parsed = doParseFile(target, dir, FollowLinks, recursions);
if (auto err = parsed.getError()) {
return err;
}
child = parsed.getFile();
}
}
return child;
}
ParsedParent doParseParent(std::string_view path,
std::shared_ptr<Directory> curr,
size_t& recursions) {
// Empty paths never exist.
if (path.empty()) {
return {-ENOENT};
}
// Handle absolute paths.
if (path.front() == '/') {
curr = wasmFS.getRootDirectory();
path.remove_prefix(1);
}
// Ignore trailing '/'.
while (!path.empty() && path.back() == '/') {
path.remove_suffix(1);
}
// An empty path here means that the path was equivalent to "/" and does not
// contain a child segment for us to return. The root is its own parent, so we
// can handle this by returning (root, ".").
if (path.empty()) {
return {std::make_pair(std::move(curr), std::string_view("."))};
}
while (true) {
// Skip any leading '/' for each segment.
while (!path.empty() && path.front() == '/') {
path.remove_prefix(1);
}
// If this is the leaf segment, return.
size_t segment_end = path.find_first_of('/');
if (segment_end == std::string_view::npos) {
return {std::make_pair(std::move(curr), path)};
}
// Try to descend into the child segment.
// TODO: Check permissions on intermediate directories.
auto segment = path.substr(0, segment_end);
auto child = getChild(curr, segment, FollowLinks, recursions);
if (auto err = child.getError()) {
return err;
}
curr = child.getFile()->dynCast<Directory>();
if (!curr) {
return -ENOTDIR;
}
path.remove_prefix(segment_end);
}
}
ParsedFile doParseFile(std::string_view path,
std::shared_ptr<Directory> base,
LinkBehavior links,
size_t& recursions) {
auto parsed = doParseParent(path, base, recursions);
if (auto err = parsed.getError()) {
return {err};
}
auto& [parent, child] = parsed.getParentChild();
return getChild(parent, child, links, recursions);
}
} // anonymous namespace
ParsedParent parseParent(std::string_view path, __wasi_fd_t basefd) {
auto base = getBaseDir(basefd);
if (auto err = base.getError()) {
return err;
}
size_t recursions = 0;
auto baseDir = base.getFile()->cast<Directory>();
return doParseParent(path, baseDir, recursions);
}
ParsedFile
parseFile(std::string_view path, __wasi_fd_t basefd, LinkBehavior links) {
auto base = getBaseDir(basefd);
if (auto err = base.getError()) {
return err;
}
size_t recursions = 0;
auto baseDir = base.getFile()->cast<Directory>();
return doParseFile(path, baseDir, links, recursions);
}
ParsedFile getFileAt(__wasi_fd_t fd, std::string_view path, int flags) {
if ((flags & AT_EMPTY_PATH) && path.size() == 0) {
// Don't parse a path, just use `dirfd` directly.
if (fd == AT_FDCWD) {
return {wasmFS.getCWD()};
}
auto openFile = wasmFS.getFileTable().locked().getEntry(fd);
if (!openFile) {
return {-EBADF};
}
return {openFile->locked().getFile()};
}
auto links = (flags & AT_SYMLINK_NOFOLLOW) ? NoFollowLinks : FollowLinks;
return path::parseFile(path, fd, links);
}
ParsedFile getFileFrom(std::shared_ptr<Directory> base, std::string_view path) {
size_t recursions = 0;
return doParseFile(path, base, FollowLinks, recursions);
}
} // namespace wasmfs::path
|