17039e358SDouglas Gregor //===--- LockFileManager.cpp - File-level Locking Utility------------------===//
27039e358SDouglas Gregor //
37039e358SDouglas Gregor //                     The LLVM Compiler Infrastructure
47039e358SDouglas Gregor //
57039e358SDouglas Gregor // This file is distributed under the University of Illinois Open Source
67039e358SDouglas Gregor // License. See LICENSE.TXT for details.
77039e358SDouglas Gregor //
87039e358SDouglas Gregor //===----------------------------------------------------------------------===//
97039e358SDouglas Gregor #include "llvm/Support/LockFileManager.h"
10d78273f4SReid Kleckner #include "llvm/ADT/STLExtras.h"
11d78273f4SReid Kleckner #include "llvm/ADT/StringExtras.h"
127039e358SDouglas Gregor #include "llvm/Support/FileSystem.h"
13d78273f4SReid Kleckner #include "llvm/Support/MemoryBuffer.h"
14531a5be4SArgyrios Kyrtzidis #include "llvm/Support/Path.h"
157039e358SDouglas Gregor #include "llvm/Support/raw_ostream.h"
167039e358SDouglas Gregor #include <sys/stat.h>
17ed0881b2SChandler Carruth #include <sys/types.h>
187039e358SDouglas Gregor #if LLVM_ON_WIN32
197039e358SDouglas Gregor #include <windows.h>
207039e358SDouglas Gregor #endif
217039e358SDouglas Gregor #if LLVM_ON_UNIX
227039e358SDouglas Gregor #include <unistd.h>
237039e358SDouglas Gregor #endif
247039e358SDouglas Gregor using namespace llvm;
257039e358SDouglas Gregor 
267039e358SDouglas Gregor /// \brief Attempt to read the lock file with the given name, if it exists.
277039e358SDouglas Gregor ///
287039e358SDouglas Gregor /// \param LockFileName The name of the lock file to read.
297039e358SDouglas Gregor ///
307039e358SDouglas Gregor /// \returns The process ID of the process that owns this lock file
317039e358SDouglas Gregor Optional<std::pair<std::string, int> >
327039e358SDouglas Gregor LockFileManager::readLockFile(StringRef LockFileName) {
337039e358SDouglas Gregor   // Read the owning host and PID out of the lock file. If it appears that the
347039e358SDouglas Gregor   // owning process is dead, the lock file is invalid.
3556440fd8SAhmed Charles   std::unique_ptr<MemoryBuffer> MB;
3637575693SArgyrios Kyrtzidis   if (MemoryBuffer::getFile(LockFileName, MB)) {
3737575693SArgyrios Kyrtzidis     sys::fs::remove(LockFileName);
387de8ea3dSReid Kleckner     return None;
3937575693SArgyrios Kyrtzidis   }
407de8ea3dSReid Kleckner 
41d78273f4SReid Kleckner   StringRef Hostname;
42d78273f4SReid Kleckner   StringRef PIDStr;
43d6f1f84fSBenjamin Kramer   std::tie(Hostname, PIDStr) = getToken(MB->getBuffer(), " ");
447de8ea3dSReid Kleckner   PIDStr = PIDStr.substr(PIDStr.find_first_not_of(" "));
45d78273f4SReid Kleckner   int PID;
46*44ec0a7dSArgyrios Kyrtzidis   if (!PIDStr.getAsInteger(10, PID)) {
47*44ec0a7dSArgyrios Kyrtzidis     auto Owner = std::make_pair(std::string(Hostname), PID);
48*44ec0a7dSArgyrios Kyrtzidis     if (processStillExecuting(Owner.first, Owner.second))
49*44ec0a7dSArgyrios Kyrtzidis       return Owner;
50*44ec0a7dSArgyrios Kyrtzidis   }
517039e358SDouglas Gregor 
527039e358SDouglas Gregor   // Delete the lock file. It's invalid anyway.
53d78273f4SReid Kleckner   sys::fs::remove(LockFileName);
54ef04593dSDavid Blaikie   return None;
557039e358SDouglas Gregor }
567039e358SDouglas Gregor 
577039e358SDouglas Gregor bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) {
58c439a426SEvgeniy Stepanov #if LLVM_ON_UNIX && !defined(__ANDROID__)
597039e358SDouglas Gregor   char MyHostname[256];
607039e358SDouglas Gregor   MyHostname[255] = 0;
617039e358SDouglas Gregor   MyHostname[0] = 0;
627039e358SDouglas Gregor   gethostname(MyHostname, 255);
637039e358SDouglas Gregor   // Check whether the process is dead. If so, we're done.
647039e358SDouglas Gregor   if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
657039e358SDouglas Gregor     return false;
667039e358SDouglas Gregor #endif
677039e358SDouglas Gregor 
687039e358SDouglas Gregor   return true;
697039e358SDouglas Gregor }
707039e358SDouglas Gregor 
717039e358SDouglas Gregor LockFileManager::LockFileManager(StringRef FileName)
727039e358SDouglas Gregor {
73056eafd4SDouglas Gregor   this->FileName = FileName;
74900e9a3dSArgyrios Kyrtzidis   if (error_code EC = sys::fs::make_absolute(this->FileName)) {
75900e9a3dSArgyrios Kyrtzidis     Error = EC;
76900e9a3dSArgyrios Kyrtzidis     return;
77900e9a3dSArgyrios Kyrtzidis   }
78900e9a3dSArgyrios Kyrtzidis   LockFileName = this->FileName;
797039e358SDouglas Gregor   LockFileName += ".lock";
807039e358SDouglas Gregor 
817039e358SDouglas Gregor   // If the lock file already exists, don't bother to try to create our own
827039e358SDouglas Gregor   // lock file; it won't work anyway. Just figure out who owns this lock file.
837039e358SDouglas Gregor   if ((Owner = readLockFile(LockFileName)))
847039e358SDouglas Gregor     return;
857039e358SDouglas Gregor 
867039e358SDouglas Gregor   // Create a lock file that is unique to this instance.
877039e358SDouglas Gregor   UniqueLockFileName = LockFileName;
887039e358SDouglas Gregor   UniqueLockFileName += "-%%%%%%%%";
897039e358SDouglas Gregor   int UniqueLockFileID;
907039e358SDouglas Gregor   if (error_code EC
91c9d2e5b8SRafael Espindola         = sys::fs::createUniqueFile(UniqueLockFileName.str(),
927039e358SDouglas Gregor                                     UniqueLockFileID,
93c9d2e5b8SRafael Espindola                                     UniqueLockFileName)) {
947039e358SDouglas Gregor     Error = EC;
957039e358SDouglas Gregor     return;
967039e358SDouglas Gregor   }
977039e358SDouglas Gregor 
987039e358SDouglas Gregor   // Write our process ID to our unique lock file.
997039e358SDouglas Gregor   {
1007039e358SDouglas Gregor     raw_fd_ostream Out(UniqueLockFileID, /*shouldClose=*/true);
1017039e358SDouglas Gregor 
1027039e358SDouglas Gregor #if LLVM_ON_UNIX
1037039e358SDouglas Gregor     // FIXME: move getpid() call into LLVM
1047039e358SDouglas Gregor     char hostname[256];
1057039e358SDouglas Gregor     hostname[255] = 0;
1067039e358SDouglas Gregor     hostname[0] = 0;
1077039e358SDouglas Gregor     gethostname(hostname, 255);
1087039e358SDouglas Gregor     Out << hostname << ' ' << getpid();
1097039e358SDouglas Gregor #else
1107039e358SDouglas Gregor     Out << "localhost 1";
1117039e358SDouglas Gregor #endif
1127039e358SDouglas Gregor     Out.close();
1137039e358SDouglas Gregor 
1147039e358SDouglas Gregor     if (Out.has_error()) {
1157039e358SDouglas Gregor       // We failed to write out PID, so make up an excuse, remove the
1167039e358SDouglas Gregor       // unique lock file, and fail.
1177039e358SDouglas Gregor       Error = make_error_code(errc::no_space_on_device);
11881e7fd01SRafael Espindola       sys::fs::remove(UniqueLockFileName.c_str());
1197039e358SDouglas Gregor       return;
1207039e358SDouglas Gregor     }
1217039e358SDouglas Gregor   }
1227039e358SDouglas Gregor 
1234147978cSArgyrios Kyrtzidis   while (1) {
12483f858e5SRafael Espindola     // Create a link from the lock file name. If this succeeds, we're done.
12583f858e5SRafael Espindola     error_code EC =
126900e9a3dSArgyrios Kyrtzidis         sys::fs::create_link(UniqueLockFileName.str(), LockFileName.str());
1277039e358SDouglas Gregor     if (EC == errc::success)
1287039e358SDouglas Gregor       return;
1297039e358SDouglas Gregor 
1304147978cSArgyrios Kyrtzidis     if (EC != errc::file_exists) {
13162a979ccSArgyrios Kyrtzidis       Error = EC;
1324147978cSArgyrios Kyrtzidis       return;
1334147978cSArgyrios Kyrtzidis     }
1344147978cSArgyrios Kyrtzidis 
1354147978cSArgyrios Kyrtzidis     // Someone else managed to create the lock file first. Read the process ID
1364147978cSArgyrios Kyrtzidis     // from the lock file.
1374147978cSArgyrios Kyrtzidis     if ((Owner = readLockFile(LockFileName))) {
1384147978cSArgyrios Kyrtzidis       // Wipe out our unique lock file (it's useless now)
1394147978cSArgyrios Kyrtzidis       sys::fs::remove(UniqueLockFileName.str());
1404147978cSArgyrios Kyrtzidis       return;
1414147978cSArgyrios Kyrtzidis     }
1424147978cSArgyrios Kyrtzidis 
1434147978cSArgyrios Kyrtzidis     if (!sys::fs::exists(LockFileName.str())) {
1444147978cSArgyrios Kyrtzidis       // The previous owner released the lock file before we could read it.
1454147978cSArgyrios Kyrtzidis       // Try to get ownership again.
1464147978cSArgyrios Kyrtzidis       continue;
1474147978cSArgyrios Kyrtzidis     }
1484147978cSArgyrios Kyrtzidis 
1494147978cSArgyrios Kyrtzidis     // There is a lock file that nobody owns; try to clean it up and get
1504147978cSArgyrios Kyrtzidis     // ownership.
1514147978cSArgyrios Kyrtzidis     if ((EC = sys::fs::remove(LockFileName.str()))) {
1524147978cSArgyrios Kyrtzidis       Error = EC;
1534147978cSArgyrios Kyrtzidis       return;
1544147978cSArgyrios Kyrtzidis     }
1554147978cSArgyrios Kyrtzidis   }
1567039e358SDouglas Gregor }
1577039e358SDouglas Gregor 
1587039e358SDouglas Gregor LockFileManager::LockFileState LockFileManager::getState() const {
1597039e358SDouglas Gregor   if (Owner)
1607039e358SDouglas Gregor     return LFS_Shared;
1617039e358SDouglas Gregor 
1627039e358SDouglas Gregor   if (Error)
1637039e358SDouglas Gregor     return LFS_Error;
1647039e358SDouglas Gregor 
1657039e358SDouglas Gregor   return LFS_Owned;
1667039e358SDouglas Gregor }
1677039e358SDouglas Gregor 
1687039e358SDouglas Gregor LockFileManager::~LockFileManager() {
1697039e358SDouglas Gregor   if (getState() != LFS_Owned)
1707039e358SDouglas Gregor     return;
1717039e358SDouglas Gregor 
1727039e358SDouglas Gregor   // Since we own the lock, remove the lock file and our own unique lock file.
17381e7fd01SRafael Espindola   sys::fs::remove(LockFileName.str());
17481e7fd01SRafael Espindola   sys::fs::remove(UniqueLockFileName.str());
1757039e358SDouglas Gregor }
1767039e358SDouglas Gregor 
177*44ec0a7dSArgyrios Kyrtzidis LockFileManager::WaitForUnlockResult LockFileManager::waitForUnlock() {
1787039e358SDouglas Gregor   if (getState() != LFS_Shared)
179*44ec0a7dSArgyrios Kyrtzidis     return Res_Success;
1807039e358SDouglas Gregor 
1817039e358SDouglas Gregor #if LLVM_ON_WIN32
1827039e358SDouglas Gregor   unsigned long Interval = 1;
1837039e358SDouglas Gregor #else
1847039e358SDouglas Gregor   struct timespec Interval;
1857039e358SDouglas Gregor   Interval.tv_sec = 0;
1867039e358SDouglas Gregor   Interval.tv_nsec = 1000000;
1877039e358SDouglas Gregor #endif
1880cb68460SDouglas Gregor   // Don't wait more than five minutes for the file to appear.
1890cb68460SDouglas Gregor   unsigned MaxSeconds = 300;
190056eafd4SDouglas Gregor   bool LockFileGone = false;
1917039e358SDouglas Gregor   do {
1927039e358SDouglas Gregor     // Sleep for the designated interval, to allow the owning process time to
1937039e358SDouglas Gregor     // finish up and remove the lock file.
1947039e358SDouglas Gregor     // FIXME: Should we hook in to system APIs to get a notification when the
1957039e358SDouglas Gregor     // lock file is deleted?
1967039e358SDouglas Gregor #if LLVM_ON_WIN32
1977039e358SDouglas Gregor     Sleep(Interval);
1987039e358SDouglas Gregor #else
1997039e358SDouglas Gregor     nanosleep(&Interval, NULL);
2007039e358SDouglas Gregor #endif
2010cb68460SDouglas Gregor     bool LockFileJustDisappeared = false;
2020cb68460SDouglas Gregor 
2030cb68460SDouglas Gregor     // If the lock file is still expected to be there, check whether it still
2040cb68460SDouglas Gregor     // is.
205056eafd4SDouglas Gregor     if (!LockFileGone) {
2069e7a638bSRafael Espindola       bool Exists;
207056eafd4SDouglas Gregor       if (!sys::fs::exists(LockFileName.str(), Exists) && !Exists) {
208056eafd4SDouglas Gregor         LockFileGone = true;
2090cb68460SDouglas Gregor         LockFileJustDisappeared = true;
210056eafd4SDouglas Gregor       }
211056eafd4SDouglas Gregor     }
2120cb68460SDouglas Gregor 
2130cb68460SDouglas Gregor     // If the lock file is no longer there, check if the original file is
2140cb68460SDouglas Gregor     // available now.
215056eafd4SDouglas Gregor     if (LockFileGone) {
2169e7a638bSRafael Espindola       if (sys::fs::exists(FileName.str())) {
217*44ec0a7dSArgyrios Kyrtzidis         return Res_Success;
218056eafd4SDouglas Gregor       }
2197039e358SDouglas Gregor 
2200cb68460SDouglas Gregor       // The lock file is gone, so now we're waiting for the original file to
2210cb68460SDouglas Gregor       // show up. If this just happened, reset our waiting intervals and keep
2220cb68460SDouglas Gregor       // waiting.
2230cb68460SDouglas Gregor       if (LockFileJustDisappeared) {
2240cb68460SDouglas Gregor         MaxSeconds = 5;
2250cb68460SDouglas Gregor 
2260cb68460SDouglas Gregor #if LLVM_ON_WIN32
2270cb68460SDouglas Gregor         Interval = 1;
2280cb68460SDouglas Gregor #else
2290cb68460SDouglas Gregor         Interval.tv_sec = 0;
2300cb68460SDouglas Gregor         Interval.tv_nsec = 1000000;
2310cb68460SDouglas Gregor #endif
2320cb68460SDouglas Gregor         continue;
2330cb68460SDouglas Gregor       }
2340cb68460SDouglas Gregor     }
2350cb68460SDouglas Gregor 
2360cb68460SDouglas Gregor     // If we're looking for the lock file to disappear, but the process
2370cb68460SDouglas Gregor     // owning the lock died without cleaning up, just bail out.
2380cb68460SDouglas Gregor     if (!LockFileGone &&
2390cb68460SDouglas Gregor         !processStillExecuting((*Owner).first, (*Owner).second)) {
240*44ec0a7dSArgyrios Kyrtzidis       return Res_OwnerDied;
2410cb68460SDouglas Gregor     }
2427039e358SDouglas Gregor 
2437039e358SDouglas Gregor     // Exponentially increase the time we wait for the lock to be removed.
2447039e358SDouglas Gregor #if LLVM_ON_WIN32
2457039e358SDouglas Gregor     Interval *= 2;
2467039e358SDouglas Gregor #else
2477039e358SDouglas Gregor     Interval.tv_sec *= 2;
2487039e358SDouglas Gregor     Interval.tv_nsec *= 2;
2497039e358SDouglas Gregor     if (Interval.tv_nsec >= 1000000000) {
2507039e358SDouglas Gregor       ++Interval.tv_sec;
2517039e358SDouglas Gregor       Interval.tv_nsec -= 1000000000;
2527039e358SDouglas Gregor     }
2537039e358SDouglas Gregor #endif
2547039e358SDouglas Gregor   } while (
2557039e358SDouglas Gregor #if LLVM_ON_WIN32
2567039e358SDouglas Gregor            Interval < MaxSeconds * 1000
2577039e358SDouglas Gregor #else
2587039e358SDouglas Gregor            Interval.tv_sec < (time_t)MaxSeconds
2597039e358SDouglas Gregor #endif
2607039e358SDouglas Gregor            );
2617039e358SDouglas Gregor 
2627039e358SDouglas Gregor   // Give up.
263*44ec0a7dSArgyrios Kyrtzidis   return Res_Timeout;
2647039e358SDouglas Gregor }
265