blob: 0ca631cb63466d61c2d1085a3720efe646ccbd93 [file] [log] [blame]
Douglas Gregor7039e352012-01-29 20:15:10 +00001//===--- LockFileManager.cpp - File-level Locking Utility------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#include "llvm/Support/LockFileManager.h"
Reid Klecknerd78273f2013-08-06 22:51:21 +000010#include "llvm/ADT/STLExtras.h"
11#include "llvm/ADT/StringExtras.h"
Douglas Gregor7039e352012-01-29 20:15:10 +000012#include "llvm/Support/FileSystem.h"
Reid Klecknerd78273f2013-08-06 22:51:21 +000013#include "llvm/Support/MemoryBuffer.h"
Argyrios Kyrtzidis531a5be2014-03-21 02:31:56 +000014#include "llvm/Support/Path.h"
Douglas Gregor7039e352012-01-29 20:15:10 +000015#include "llvm/Support/raw_ostream.h"
Douglas Gregor7039e352012-01-29 20:15:10 +000016#include <sys/stat.h>
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include <sys/types.h>
Douglas Gregor7039e352012-01-29 20:15:10 +000018#if LLVM_ON_WIN32
19#include <windows.h>
20#endif
21#if LLVM_ON_UNIX
22#include <unistd.h>
23#endif
24using namespace llvm;
25
26/// \brief Attempt to read the lock file with the given name, if it exists.
27///
28/// \param LockFileName The name of the lock file to read.
29///
30/// \returns The process ID of the process that owns this lock file
31Optional<std::pair<std::string, int> >
32LockFileManager::readLockFile(StringRef LockFileName) {
Douglas Gregor7039e352012-01-29 20:15:10 +000033 // Read the owning host and PID out of the lock file. If it appears that the
34 // owning process is dead, the lock file is invalid.
Ahmed Charles56440fd2014-03-06 05:51:42 +000035 std::unique_ptr<MemoryBuffer> MB;
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +000036 if (MemoryBuffer::getFile(LockFileName, MB)) {
37 sys::fs::remove(LockFileName);
Reid Kleckner7de8ea32013-08-07 01:22:04 +000038 return None;
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +000039 }
Reid Kleckner7de8ea32013-08-07 01:22:04 +000040
41 StringRef Hostname;
42 StringRef PIDStr;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +000043 std::tie(Hostname, PIDStr) = getToken(MB->getBuffer(), " ");
Reid Kleckner7de8ea32013-08-07 01:22:04 +000044 PIDStr = PIDStr.substr(PIDStr.find_first_not_of(" "));
45 int PID;
Argyrios Kyrtzidis44ec0a72014-04-06 03:19:31 +000046 if (!PIDStr.getAsInteger(10, PID)) {
47 auto Owner = std::make_pair(std::string(Hostname), PID);
48 if (processStillExecuting(Owner.first, Owner.second))
49 return Owner;
50 }
Douglas Gregor7039e352012-01-29 20:15:10 +000051
52 // Delete the lock file. It's invalid anyway.
Reid Klecknerd78273f2013-08-06 22:51:21 +000053 sys::fs::remove(LockFileName);
David Blaikieef045932013-02-21 00:27:28 +000054 return None;
Douglas Gregor7039e352012-01-29 20:15:10 +000055}
56
57bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) {
Evgeniy Stepanovc439a422012-09-04 09:14:45 +000058#if LLVM_ON_UNIX && !defined(__ANDROID__)
Douglas Gregor7039e352012-01-29 20:15:10 +000059 char MyHostname[256];
60 MyHostname[255] = 0;
61 MyHostname[0] = 0;
62 gethostname(MyHostname, 255);
63 // Check whether the process is dead. If so, we're done.
64 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
65 return false;
66#endif
67
68 return true;
69}
70
71LockFileManager::LockFileManager(StringRef FileName)
72{
Douglas Gregor056eafd2013-01-10 02:01:35 +000073 this->FileName = FileName;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000074 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) {
Argyrios Kyrtzidis900e9a32014-03-21 21:45:07 +000075 Error = EC;
76 return;
77 }
78 LockFileName = this->FileName;
Douglas Gregor7039e352012-01-29 20:15:10 +000079 LockFileName += ".lock";
80
81 // If the lock file already exists, don't bother to try to create our own
82 // lock file; it won't work anyway. Just figure out who owns this lock file.
83 if ((Owner = readLockFile(LockFileName)))
84 return;
85
86 // Create a lock file that is unique to this instance.
87 UniqueLockFileName = LockFileName;
88 UniqueLockFileName += "-%%%%%%%%";
89 int UniqueLockFileID;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000090 if (std::error_code EC = sys::fs::createUniqueFile(
91 UniqueLockFileName.str(), UniqueLockFileID, UniqueLockFileName)) {
Douglas Gregor7039e352012-01-29 20:15:10 +000092 Error = EC;
93 return;
94 }
95
96 // Write our process ID to our unique lock file.
97 {
98 raw_fd_ostream Out(UniqueLockFileID, /*shouldClose=*/true);
99
100#if LLVM_ON_UNIX
101 // FIXME: move getpid() call into LLVM
102 char hostname[256];
103 hostname[255] = 0;
104 hostname[0] = 0;
105 gethostname(hostname, 255);
106 Out << hostname << ' ' << getpid();
107#else
108 Out << "localhost 1";
109#endif
110 Out.close();
111
112 if (Out.has_error()) {
113 // We failed to write out PID, so make up an excuse, remove the
114 // unique lock file, and fail.
Rafael Espindolaed6882b2014-06-12 11:58:49 +0000115 Error = std::make_error_code(std::errc::no_space_on_device);
Rafael Espindola81e7fd02014-01-10 21:40:29 +0000116 sys::fs::remove(UniqueLockFileName.c_str());
Douglas Gregor7039e352012-01-29 20:15:10 +0000117 return;
118 }
119 }
120
Argyrios Kyrtzidis41479782014-03-06 20:53:58 +0000121 while (1) {
Rafael Espindola83f858e2014-03-11 18:40:24 +0000122 // Create a link from the lock file name. If this succeeds, we're done.
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000123 std::error_code EC =
Argyrios Kyrtzidis900e9a32014-03-21 21:45:07 +0000124 sys::fs::create_link(UniqueLockFileName.str(), LockFileName.str());
Rafael Espindolaa3f2e3f2014-05-31 03:21:04 +0000125 if (!EC)
Argyrios Kyrtzidis41479782014-03-06 20:53:58 +0000126 return;
Argyrios Kyrtzidis62a979c2014-03-06 17:37:10 +0000127
Rafael Espindola5c4f8292014-06-11 19:05:50 +0000128 if (EC != std::errc::file_exists) {
Argyrios Kyrtzidis41479782014-03-06 20:53:58 +0000129 Error = EC;
130 return;
131 }
Argyrios Kyrtzidis62a979c2014-03-06 17:37:10 +0000132
Argyrios Kyrtzidis41479782014-03-06 20:53:58 +0000133 // Someone else managed to create the lock file first. Read the process ID
134 // from the lock file.
135 if ((Owner = readLockFile(LockFileName))) {
136 // Wipe out our unique lock file (it's useless now)
137 sys::fs::remove(UniqueLockFileName.str());
138 return;
139 }
140
141 if (!sys::fs::exists(LockFileName.str())) {
142 // The previous owner released the lock file before we could read it.
143 // Try to get ownership again.
144 continue;
145 }
146
147 // There is a lock file that nobody owns; try to clean it up and get
148 // ownership.
149 if ((EC = sys::fs::remove(LockFileName.str()))) {
150 Error = EC;
151 return;
152 }
153 }
Douglas Gregor7039e352012-01-29 20:15:10 +0000154}
155
156LockFileManager::LockFileState LockFileManager::getState() const {
157 if (Owner)
158 return LFS_Shared;
159
160 if (Error)
161 return LFS_Error;
162
163 return LFS_Owned;
164}
165
166LockFileManager::~LockFileManager() {
167 if (getState() != LFS_Owned)
168 return;
169
170 // Since we own the lock, remove the lock file and our own unique lock file.
Rafael Espindola81e7fd02014-01-10 21:40:29 +0000171 sys::fs::remove(LockFileName.str());
172 sys::fs::remove(UniqueLockFileName.str());
Douglas Gregor7039e352012-01-29 20:15:10 +0000173}
174
Argyrios Kyrtzidis44ec0a72014-04-06 03:19:31 +0000175LockFileManager::WaitForUnlockResult LockFileManager::waitForUnlock() {
Douglas Gregor7039e352012-01-29 20:15:10 +0000176 if (getState() != LFS_Shared)
Argyrios Kyrtzidis44ec0a72014-04-06 03:19:31 +0000177 return Res_Success;
Douglas Gregor7039e352012-01-29 20:15:10 +0000178
179#if LLVM_ON_WIN32
180 unsigned long Interval = 1;
181#else
182 struct timespec Interval;
183 Interval.tv_sec = 0;
184 Interval.tv_nsec = 1000000;
185#endif
Douglas Gregor0cb68462013-04-05 20:53:57 +0000186 // Don't wait more than five minutes for the file to appear.
187 unsigned MaxSeconds = 300;
Douglas Gregor056eafd2013-01-10 02:01:35 +0000188 bool LockFileGone = false;
Douglas Gregor7039e352012-01-29 20:15:10 +0000189 do {
190 // Sleep for the designated interval, to allow the owning process time to
191 // finish up and remove the lock file.
192 // FIXME: Should we hook in to system APIs to get a notification when the
193 // lock file is deleted?
194#if LLVM_ON_WIN32
195 Sleep(Interval);
196#else
Craig Topperc10719f2014-04-07 04:17:22 +0000197 nanosleep(&Interval, nullptr);
Douglas Gregor7039e352012-01-29 20:15:10 +0000198#endif
Douglas Gregor0cb68462013-04-05 20:53:57 +0000199 bool LockFileJustDisappeared = false;
200
201 // If the lock file is still expected to be there, check whether it still
202 // is.
Douglas Gregor056eafd2013-01-10 02:01:35 +0000203 if (!LockFileGone) {
Rafael Espindola9e7a6382014-02-13 04:00:35 +0000204 bool Exists;
Douglas Gregor056eafd2013-01-10 02:01:35 +0000205 if (!sys::fs::exists(LockFileName.str(), Exists) && !Exists) {
206 LockFileGone = true;
Douglas Gregor0cb68462013-04-05 20:53:57 +0000207 LockFileJustDisappeared = true;
Douglas Gregor056eafd2013-01-10 02:01:35 +0000208 }
209 }
Douglas Gregor0cb68462013-04-05 20:53:57 +0000210
211 // If the lock file is no longer there, check if the original file is
212 // available now.
Douglas Gregor056eafd2013-01-10 02:01:35 +0000213 if (LockFileGone) {
Rafael Espindola9e7a6382014-02-13 04:00:35 +0000214 if (sys::fs::exists(FileName.str())) {
Argyrios Kyrtzidis44ec0a72014-04-06 03:19:31 +0000215 return Res_Success;
Douglas Gregor0cb68462013-04-05 20:53:57 +0000216 }
217
218 // The lock file is gone, so now we're waiting for the original file to
219 // show up. If this just happened, reset our waiting intervals and keep
220 // waiting.
221 if (LockFileJustDisappeared) {
222 MaxSeconds = 5;
223
224#if LLVM_ON_WIN32
225 Interval = 1;
226#else
227 Interval.tv_sec = 0;
228 Interval.tv_nsec = 1000000;
229#endif
230 continue;
231 }
Douglas Gregor056eafd2013-01-10 02:01:35 +0000232 }
Douglas Gregor7039e352012-01-29 20:15:10 +0000233
Douglas Gregor0cb68462013-04-05 20:53:57 +0000234 // If we're looking for the lock file to disappear, but the process
235 // owning the lock died without cleaning up, just bail out.
236 if (!LockFileGone &&
237 !processStillExecuting((*Owner).first, (*Owner).second)) {
Argyrios Kyrtzidis44ec0a72014-04-06 03:19:31 +0000238 return Res_OwnerDied;
Douglas Gregor0cb68462013-04-05 20:53:57 +0000239 }
Douglas Gregor7039e352012-01-29 20:15:10 +0000240
241 // Exponentially increase the time we wait for the lock to be removed.
242#if LLVM_ON_WIN32
243 Interval *= 2;
244#else
245 Interval.tv_sec *= 2;
246 Interval.tv_nsec *= 2;
247 if (Interval.tv_nsec >= 1000000000) {
248 ++Interval.tv_sec;
249 Interval.tv_nsec -= 1000000000;
250 }
251#endif
252 } while (
253#if LLVM_ON_WIN32
254 Interval < MaxSeconds * 1000
255#else
256 Interval.tv_sec < (time_t)MaxSeconds
257#endif
258 );
259
260 // Give up.
Argyrios Kyrtzidis44ec0a72014-04-06 03:19:31 +0000261 return Res_Timeout;
Douglas Gregor7039e352012-01-29 20:15:10 +0000262}