There is now no risk of race conditions on a system with a functioning entropy source, and the bespoke prefixes are either redundant to the default or unnecessary. Change-Id: I6a6a69641211c6bb979ea48ad30aecb1a53d03f0
355 lines
11 KiB
C++
355 lines
11 KiB
C++
#include "lix/libstore/local-store.hh"
|
||
#include "lix/libstore/globals.hh"
|
||
#include "lix/libutil/async.hh"
|
||
#include "lix/libutil/c-calls.hh"
|
||
#include "lix/libutil/logging.hh"
|
||
#include "lix/libutil/repair-flag.hh"
|
||
#include "lix/libutil/result.hh"
|
||
#include "lix/libutil/signals.hh"
|
||
#include "lix/libutil/strings.hh"
|
||
|
||
#include <cstring>
|
||
#include <sys/types.h>
|
||
#include <sys/stat.h>
|
||
#include <unistd.h>
|
||
#include <errno.h>
|
||
|
||
#if __APPLE__
|
||
#include <regex>
|
||
#endif
|
||
|
||
namespace nix {
|
||
|
||
|
||
static void makeWritable(const Path & path)
|
||
{
|
||
auto st = lstat(path);
|
||
if (sys::chmod(path, st.st_mode | S_IWUSR) == -1) {
|
||
throw SysError("changing writability of '%1%'", path);
|
||
}
|
||
}
|
||
|
||
|
||
struct MakeReadOnly
|
||
{
|
||
Path path;
|
||
MakeReadOnly(const PathView path) : path(path) { }
|
||
~MakeReadOnly()
|
||
{
|
||
try {
|
||
/* This will make the path read-only. */
|
||
if (path != "") canonicaliseTimestampAndPermissions(path);
|
||
} catch (...) {
|
||
ignoreExceptionInDestructor();
|
||
}
|
||
}
|
||
};
|
||
|
||
|
||
LocalStore::InodeHash LocalStore::loadInodeHash()
|
||
{
|
||
debug("loading hash inodes in memory");
|
||
InodeHash inodeHash;
|
||
|
||
AutoCloseDir dir(sys::opendir(linksDir));
|
||
if (!dir) throw SysError("opening directory '%1%'", linksDir);
|
||
|
||
struct dirent * dirent;
|
||
while (errno = 0, dirent = readdir(dir.get())) { /* sic */
|
||
checkInterrupt();
|
||
// We don't care if we hit non-hash files, anything goes
|
||
inodeHash.insert(dirent->d_ino);
|
||
}
|
||
if (errno) throw SysError("reading directory '%1%'", linksDir);
|
||
|
||
printMsg(lvlTalkative, "loaded %1% hash inodes", inodeHash.size());
|
||
|
||
return inodeHash;
|
||
}
|
||
|
||
|
||
Strings LocalStore::readDirectoryIgnoringInodes(const Path & path, const InodeHash & inodeHash)
|
||
{
|
||
Strings names;
|
||
|
||
AutoCloseDir dir(sys::opendir(path));
|
||
if (!dir) throw SysError("opening directory '%1%'", path);
|
||
|
||
struct dirent * dirent;
|
||
while (errno = 0, dirent = readdir(dir.get())) { /* sic */
|
||
checkInterrupt();
|
||
|
||
if (inodeHash.count(dirent->d_ino)) {
|
||
debug("'%1%' is already linked", dirent->d_name);
|
||
continue;
|
||
}
|
||
|
||
std::string name = dirent->d_name;
|
||
if (name == "." || name == "..") continue;
|
||
names.push_back(name);
|
||
}
|
||
if (errno) throw SysError("reading directory '%1%'", path);
|
||
|
||
return names;
|
||
}
|
||
|
||
std::optional<struct ::stat> LocalStore::optimisePath_(
|
||
OptimiseStats & stats, const Path & path, OptimizeState & state, RepairFlag repair
|
||
)
|
||
{
|
||
checkInterrupt();
|
||
|
||
auto st = lstat(path);
|
||
|
||
#if __APPLE__
|
||
/* HFS/macOS has some undocumented security feature disabling hardlinking for
|
||
special files within .app dirs. *.app/Contents/PkgInfo and
|
||
*.app/Contents/Resources/\*.lproj seem to be the only paths affected. See
|
||
https://github.com/NixOS/nix/issues/1443 for more discussion. */
|
||
|
||
// NOLINTNEXTLINE(lix-foreign-exceptions): static regex
|
||
if (std::regex_search(path, std::regex("\\.app/Contents/.+$")))
|
||
{
|
||
debug("'%1%' is not allowed to be linked in macOS", path);
|
||
return std::nullopt;
|
||
}
|
||
#endif
|
||
|
||
if (S_ISDIR(st.st_mode)) {
|
||
Strings names = readDirectoryIgnoringInodes(path, state.inodeHash);
|
||
for (auto & i : names) {
|
||
state.paths.push_back(path + "/" + i);
|
||
}
|
||
return std::nullopt;
|
||
}
|
||
|
||
/* We can hard link regular files and maybe symlinks. */
|
||
if (!S_ISREG(st.st_mode)
|
||
#if CAN_LINK_SYMLINK
|
||
&& !S_ISLNK(st.st_mode)
|
||
#endif
|
||
)
|
||
return std::nullopt;
|
||
|
||
/* Sometimes SNAFUs can cause files in the Nix store to be
|
||
modified, in particular when running programs as root under
|
||
NixOS (example: $fontconfig/var/cache being modified). Skip
|
||
those files. FIXME: check the modification time. */
|
||
if (S_ISREG(st.st_mode) && (st.st_mode & S_IWUSR)) {
|
||
printTaggedWarning("skipping suspicious writable file '%1%'", path);
|
||
return std::nullopt;
|
||
}
|
||
|
||
/* This can still happen on top-level files. */
|
||
if (st.st_nlink > 1 && state.inodeHash.count(st.st_ino)) {
|
||
debug("'%s' is already linked, with %d other file(s)", path, st.st_nlink - 2);
|
||
return std::nullopt;
|
||
}
|
||
|
||
/* Hash the file. Note that hashPath() returns the hash over the
|
||
NAR serialisation, which includes the execute bit on the file.
|
||
Thus, executable and non-executable files with the same
|
||
contents *won't* be linked (which is good because otherwise the
|
||
permissions would be screwed up).
|
||
|
||
Also note that if `path' is a symlink, then we're hashing the
|
||
contents of the symlink (i.e. the result of readlink()), not
|
||
the contents of the target (which may not even exist). */
|
||
Hash hash = hashPath(HashType::SHA256, path).first;
|
||
debug("'%1%' has hash '%2%'", path, hash.to_string(Base::Base32, true));
|
||
|
||
/* Check if this is a known hash. */
|
||
Path linkPath = linksDir + "/" + hash.to_string(Base::Base32, false);
|
||
auto stLinkOpt = maybeLstat(linkPath);
|
||
|
||
/* Maybe delete the link, if it has been corrupted. */
|
||
if (stLinkOpt) {
|
||
if (st.st_size != stLinkOpt->st_size
|
||
|| (repair && hash != hashPath(HashType::SHA256, linkPath).first))
|
||
{
|
||
// XXX: Consider overwriting linkPath with our valid version.
|
||
printTaggedWarning("removing corrupted link '%s'", linkPath);
|
||
printTaggedWarning(
|
||
"There may be more corrupted paths."
|
||
"\nYou should run `nix-store --verify --check-contents --repair` to fix them all"
|
||
);
|
||
if (sys::unlink(linkPath) == -1 && errno != ENOENT) {
|
||
throw SysError("cannot unlink '%1%'", linkPath);
|
||
}
|
||
stLinkOpt.reset();
|
||
}
|
||
}
|
||
|
||
if (!stLinkOpt) {
|
||
/* Nope, create a hard link in the links directory. */
|
||
if (sys::link(path, linkPath) == 0) {
|
||
state.inodeHash.insert(st.st_ino);
|
||
return std::nullopt;
|
||
}
|
||
|
||
switch (errno) {
|
||
case EEXIST:
|
||
/* Fall through if another process created ‘linkPath’ before
|
||
we did. */
|
||
stLinkOpt = lstat(linkPath);
|
||
break;
|
||
|
||
case ENOSPC:
|
||
/* On ext4, that probably means the directory index is
|
||
full. When that happens, it's fine to ignore it: we
|
||
just effectively disable deduplication of this
|
||
file. */
|
||
printInfo("cannot link '%s' to '%s': %s", linkPath, path, strerror(errno));
|
||
return std::nullopt;
|
||
|
||
default:
|
||
throw SysError("cannot link '%1%' to '%2%'", linkPath, path);
|
||
}
|
||
}
|
||
|
||
/* Yes! We've seen a file with the same contents. Replace the
|
||
current file with a hard link to that file. */
|
||
if (st.st_ino == stLinkOpt->st_ino) {
|
||
debug("'%1%' is already linked to '%2%'", path, linkPath);
|
||
return std::nullopt;
|
||
}
|
||
|
||
printMsg(lvlTalkative, "linking '%1%' to '%2%'", path, linkPath);
|
||
|
||
/* Make the containing directory writable, but only if it's not
|
||
the store itself (we don't want or need to mess with its
|
||
permissions). */
|
||
const Path dirOfPath(dirOf(path));
|
||
bool mustToggle = dirOfPath != config().realStoreDir.get();
|
||
if (mustToggle) makeWritable(dirOfPath);
|
||
|
||
/* When we're done, make the directory read-only again and reset
|
||
its timestamp back to 0. */
|
||
MakeReadOnly makeReadOnly(mustToggle ? dirOfPath : "");
|
||
|
||
Path tempLink = makeTempPath(config().realStoreDir + "/");
|
||
|
||
if (sys::link(linkPath, tempLink) == -1) {
|
||
if (errno == EMLINK) {
|
||
/* Too many links to the same file (>= 32000 on most file
|
||
systems). This is likely to happen with empty files.
|
||
Just shrug and ignore. */
|
||
if (st.st_size)
|
||
printInfo("'%1%' has maximum number of links", linkPath);
|
||
return std::nullopt;
|
||
}
|
||
throw SysError("cannot link '%1%' to '%2%'", tempLink, linkPath);
|
||
}
|
||
|
||
/* Atomically replace the old file with the new hard link. */
|
||
try {
|
||
renameFile(tempLink, path);
|
||
} catch (SysError & e) {
|
||
if (sys::unlink(tempLink) == -1) {
|
||
printError("unable to unlink '%1%': %2%", tempLink, strerror(errno));
|
||
}
|
||
if (errno == EMLINK) {
|
||
/* Some filesystems generate too many links on the rename,
|
||
rather than on the original link. (Probably it
|
||
temporarily increases the st_nlink field before
|
||
decreasing it again.) */
|
||
debug("'%s' has reached maximum number of links", linkPath);
|
||
return std::nullopt;
|
||
}
|
||
throw;
|
||
}
|
||
|
||
stats.filesLinked++;
|
||
stats.bytesFreed += st.st_size;
|
||
stats.blocksFreed += st.st_blocks;
|
||
return st;
|
||
}
|
||
|
||
kj::Promise<Result<void>> LocalStore::optimiseTree_(
|
||
Activity * act,
|
||
OptimiseStats & stats,
|
||
const Path & path,
|
||
OptimizeState & state,
|
||
RepairFlag repair
|
||
)
|
||
try {
|
||
assert(state.paths.empty());
|
||
|
||
state.paths.push_back(path);
|
||
while (!state.paths.empty()) {
|
||
auto path = std::move(state.paths.front());
|
||
state.paths.pop_front();
|
||
const auto optimized = optimisePath_(stats, path, state, repair);
|
||
if (act && optimized) {
|
||
ACTIVITY_RESULT(*act, resFileLinked, optimized->st_size, optimized->st_blocks);
|
||
}
|
||
}
|
||
co_return result::success();
|
||
} catch (...) {
|
||
co_return result::current_exception();
|
||
}
|
||
|
||
kj::Promise<Result<void>> LocalStore::optimiseStore(OptimiseStats & stats)
|
||
try {
|
||
auto act = logger->startActivity(actOptimiseStore);
|
||
|
||
auto paths = TRY_AWAIT(queryAllValidPaths());
|
||
OptimizeState state{.inodeHash = loadInodeHash()};
|
||
|
||
ACTIVITY_PROGRESS(act, 0, paths.size());
|
||
|
||
uint64_t done = 0;
|
||
|
||
for (auto & i : paths) {
|
||
TRY_AWAIT(addTempRoot(i));
|
||
if (!TRY_AWAIT(isValidPath(i))) continue; /* path was GC'ed, probably */
|
||
{
|
||
auto act = logger->startActivity(
|
||
lvlTalkative, actUnknown, fmt("optimising path '%s'", printStorePath(i))
|
||
);
|
||
TRY_AWAIT(optimiseTree_(
|
||
&act,
|
||
stats,
|
||
config().realStoreDir + "/" + std::string(i.to_string()),
|
||
state,
|
||
NoRepair
|
||
));
|
||
}
|
||
done++;
|
||
ACTIVITY_PROGRESS(act, done, paths.size());
|
||
}
|
||
co_return result::success();
|
||
} catch (...) {
|
||
co_return result::current_exception();
|
||
}
|
||
|
||
kj::Promise<Result<void>> LocalStore::optimiseStore()
|
||
try {
|
||
OptimiseStats stats;
|
||
|
||
TRY_AWAIT(optimiseStore(stats));
|
||
|
||
printInfo("%s freed by hard-linking %d files",
|
||
showBytes(stats.bytesFreed),
|
||
stats.filesLinked);
|
||
co_return result::success();
|
||
} catch (...) {
|
||
co_return result::current_exception();
|
||
}
|
||
|
||
kj::Promise<Result<void>> LocalStore::optimisePath(const Path & path, RepairFlag repair)
|
||
try {
|
||
OptimiseStats stats;
|
||
OptimizeState state;
|
||
|
||
if (settings.autoOptimiseStore) {
|
||
TRY_AWAIT(optimiseTree_(nullptr, stats, path, state, repair));
|
||
}
|
||
co_return result::success();
|
||
} catch (...) {
|
||
co_return result::current_exception();
|
||
}
|
||
|
||
|
||
}
|