1 //===--- 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"
10 #include "llvm/ADT/StringExtras.h"
11 #include "llvm/Support/Errc.h"
12 #include "llvm/Support/FileSystem.h"
13 #include "llvm/Support/MemoryBuffer.h"
14 #include "llvm/Support/raw_ostream.h"
15 #include <sys/stat.h>
16 #include <sys/types.h>
17 #if LLVM_ON_WIN32
18 #include <windows.h>
19 #endif
20 #if LLVM_ON_UNIX
21 #include <unistd.h>
22 #endif
23 using namespace llvm;
24
25 /// \brief Attempt to read the lock file with the given name, if it exists.
26 ///
27 /// \param LockFileName The name of the lock file to read.
28 ///
29 /// \returns The process ID of the process that owns this lock file
30 Optional<std::pair<std::string, int> >
readLockFile(StringRef LockFileName)31 LockFileManager::readLockFile(StringRef LockFileName) {
32 // Read the owning host and PID out of the lock file. If it appears that the
33 // owning process is dead, the lock file is invalid.
34 ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr =
35 MemoryBuffer::getFile(LockFileName);
36 if (!MBOrErr) {
37 sys::fs::remove(LockFileName);
38 return None;
39 }
40 MemoryBuffer &MB = *MBOrErr.get();
41
42 StringRef Hostname;
43 StringRef PIDStr;
44 std::tie(Hostname, PIDStr) = getToken(MB.getBuffer(), " ");
45 PIDStr = PIDStr.substr(PIDStr.find_first_not_of(" "));
46 int PID;
47 if (!PIDStr.getAsInteger(10, PID)) {
48 auto Owner = std::make_pair(std::string(Hostname), PID);
49 if (processStillExecuting(Owner.first, Owner.second))
50 return Owner;
51 }
52
53 // Delete the lock file. It's invalid anyway.
54 sys::fs::remove(LockFileName);
55 return None;
56 }
57
processStillExecuting(StringRef Hostname,int PID)58 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) {
59 #if LLVM_ON_UNIX && !defined(__ANDROID__)
60 char MyHostname[256];
61 MyHostname[255] = 0;
62 MyHostname[0] = 0;
63 gethostname(MyHostname, 255);
64 // Check whether the process is dead. If so, we're done.
65 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
66 return false;
67 #endif
68
69 return true;
70 }
71
LockFileManager(StringRef FileName)72 LockFileManager::LockFileManager(StringRef FileName)
73 {
74 this->FileName = FileName;
75 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) {
76 Error = EC;
77 return;
78 }
79 LockFileName = this->FileName;
80 LockFileName += ".lock";
81
82 // If the lock file already exists, don't bother to try to create our own
83 // lock file; it won't work anyway. Just figure out who owns this lock file.
84 if ((Owner = readLockFile(LockFileName)))
85 return;
86
87 // Create a lock file that is unique to this instance.
88 UniqueLockFileName = LockFileName;
89 UniqueLockFileName += "-%%%%%%%%";
90 int UniqueLockFileID;
91 if (std::error_code EC = sys::fs::createUniqueFile(
92 UniqueLockFileName, UniqueLockFileID, UniqueLockFileName)) {
93 Error = EC;
94 return;
95 }
96
97 // Write our process ID to our unique lock file.
98 {
99 raw_fd_ostream Out(UniqueLockFileID, /*shouldClose=*/true);
100
101 #if LLVM_ON_UNIX
102 // FIXME: move getpid() call into LLVM
103 char hostname[256];
104 hostname[255] = 0;
105 hostname[0] = 0;
106 gethostname(hostname, 255);
107 Out << hostname << ' ' << getpid();
108 #else
109 Out << "localhost 1";
110 #endif
111 Out.close();
112
113 if (Out.has_error()) {
114 // We failed to write out PID, so make up an excuse, remove the
115 // unique lock file, and fail.
116 Error = make_error_code(errc::no_space_on_device);
117 sys::fs::remove(UniqueLockFileName);
118 return;
119 }
120 }
121
122 while (1) {
123 // Create a link from the lock file name. If this succeeds, we're done.
124 std::error_code EC =
125 sys::fs::create_link(UniqueLockFileName, LockFileName);
126 if (!EC)
127 return;
128
129 if (EC != errc::file_exists) {
130 Error = EC;
131 return;
132 }
133
134 // Someone else managed to create the lock file first. Read the process ID
135 // from the lock file.
136 if ((Owner = readLockFile(LockFileName))) {
137 // Wipe out our unique lock file (it's useless now)
138 sys::fs::remove(UniqueLockFileName);
139 return;
140 }
141
142 if (!sys::fs::exists(LockFileName)) {
143 // The previous owner released the lock file before we could read it.
144 // Try to get ownership again.
145 continue;
146 }
147
148 // There is a lock file that nobody owns; try to clean it up and get
149 // ownership.
150 if ((EC = sys::fs::remove(LockFileName))) {
151 Error = EC;
152 return;
153 }
154 }
155 }
156
getState() const157 LockFileManager::LockFileState LockFileManager::getState() const {
158 if (Owner)
159 return LFS_Shared;
160
161 if (Error)
162 return LFS_Error;
163
164 return LFS_Owned;
165 }
166
~LockFileManager()167 LockFileManager::~LockFileManager() {
168 if (getState() != LFS_Owned)
169 return;
170
171 // Since we own the lock, remove the lock file and our own unique lock file.
172 sys::fs::remove(LockFileName);
173 sys::fs::remove(UniqueLockFileName);
174 }
175
waitForUnlock()176 LockFileManager::WaitForUnlockResult LockFileManager::waitForUnlock() {
177 if (getState() != LFS_Shared)
178 return Res_Success;
179
180 #if LLVM_ON_WIN32
181 unsigned long Interval = 1;
182 #else
183 struct timespec Interval;
184 Interval.tv_sec = 0;
185 Interval.tv_nsec = 1000000;
186 #endif
187 // Don't wait more than five minutes per iteration. Total timeout for the file
188 // to appear is ~8.5 mins.
189 const unsigned MaxSeconds = 5*60;
190 do {
191 // Sleep for the designated interval, to allow the owning process time to
192 // finish up and remove the lock file.
193 // FIXME: Should we hook in to system APIs to get a notification when the
194 // lock file is deleted?
195 #if LLVM_ON_WIN32
196 Sleep(Interval);
197 #else
198 nanosleep(&Interval, nullptr);
199 #endif
200
201 if (sys::fs::access(LockFileName.c_str(), sys::fs::AccessMode::Exist) ==
202 errc::no_such_file_or_directory) {
203 // If the original file wasn't created, somone thought the lock was dead.
204 if (!sys::fs::exists(FileName))
205 return Res_OwnerDied;
206 return Res_Success;
207 }
208
209 // If the process owning the lock died without cleaning up, just bail out.
210 if (!processStillExecuting((*Owner).first, (*Owner).second))
211 return Res_OwnerDied;
212
213 // Exponentially increase the time we wait for the lock to be removed.
214 #if LLVM_ON_WIN32
215 Interval *= 2;
216 #else
217 Interval.tv_sec *= 2;
218 Interval.tv_nsec *= 2;
219 if (Interval.tv_nsec >= 1000000000) {
220 ++Interval.tv_sec;
221 Interval.tv_nsec -= 1000000000;
222 }
223 #endif
224 } while (
225 #if LLVM_ON_WIN32
226 Interval < MaxSeconds * 1000
227 #else
228 Interval.tv_sec < (time_t)MaxSeconds
229 #endif
230 );
231
232 // Give up.
233 return Res_Timeout;
234 }
235
unsafeRemoveLockFile()236 std::error_code LockFileManager::unsafeRemoveLockFile() {
237 return sys::fs::remove(LockFileName);
238 }
239