This is an archive of the discontinued LLVM Phabricator instance.

LTO: make tempfiles in LTO cache subject to pruning
AbandonedPublic

Authored by inglorion on Aug 20 2018, 3:34 PM.

Details

Reviewers
rnk
pcc
Summary

CachePruning only considers files with names starting in
"llvmcache-". The LTO cache creates temporary files starting in
"Thin-". This results in surprising behavior, such as running out of
disk space although the cache pruning policy is set to limit the cache
directory to a reasonable size. This change causes the LTO cache to
create temporary files with names that will be handled by the pruner,
avoiding the problem.

Fixes PR38618.

Event Timeline

inglorion created this revision.Aug 20 2018, 3:34 PM
pcc requested changes to this revision.Aug 20 2018, 3:52 PM
pcc added a subscriber: pcc.

The temporary files are deliberately named differently from the cache entries in order to prevent cache pruners from racing with processes that create cache files. If we allow these deletions it would have the effect of causing the call to TempFile::keep to sometimes return no such file or directory, so I'd at least expect to see code handling that case.

Do you know why the temporary files are being left on disk? I wouldn't have expected that to happen because they are being created with delete-on-close.

This revision now requires changes to proceed.Aug 20 2018, 3:52 PM

Do you know why the temporary files are being left on disk? I wouldn't have expected that to happen because they are being created with delete-on-close.

Yes. The problem is that there are two races with delete on close. More discussion and analysis is on PR38616, but it boils down to:

  1. The first race is between when we open the file and we set the DeleteFile flag. We can't use the alternative of opening the file with the FILE_DELETE_ON_CLOSE flag, because we can't clear that one (and so there would be no way to keep a temporary file).
  1. The second race is between when we clear the DeleteFile flag and we rename the file (in the renaming version of TempFile::keep()). We can't atomically perform the flag change and the rename, and we can't do the flag change after the name because this causes everyone who opens the file with its non-temporary name to fail with ERROR_ACCESS_DENIED until we clear the flag (this breaks large parts of the LLVM test suite).

Anyway, thanks for pointing out the reason why the temporary files are named so as to avoid the pruner. I'll do some more thinking.

pcc added a comment.Aug 20 2018, 4:23 PM

Hmm, I was aware of those races, but it's a little surprising that they would be the cause of a significant number of files being left around (since the files exist with their temporary names for the duration that the LLVM backend is running). I could buy that the Windows filesystem is slow enough that the sum of the racy windows would make up a significant fraction of that time, though.

inglorion abandoned this revision.Jan 19 2021, 11:17 AM

Since D94962 was landed, we don't need this one anymore.

Herald added a project: Restricted Project. · View Herald TranscriptJan 19 2021, 11:17 AM