Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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" |
Reid Kleckner | d78273f | 2013-08-06 22:51:21 +0000 | [diff] [blame] | 10 | #include "llvm/ADT/StringExtras.h" |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 11 | #include "llvm/Support/Errc.h" |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 12 | #include "llvm/Support/FileSystem.h" |
Reid Kleckner | d78273f | 2013-08-06 22:51:21 +0000 | [diff] [blame] | 13 | #include "llvm/Support/MemoryBuffer.h" |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 14 | #include "llvm/Support/raw_ostream.h" |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 15 | #include <sys/stat.h> |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include <sys/types.h> |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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> > |
| 31 | LockFileManager::readLockFile(StringRef LockFileName) { |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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. |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 34 | ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = |
| 35 | MemoryBuffer::getFile(LockFileName); |
| 36 | if (!MBOrErr) { |
Argyrios Kyrtzidis | 3757569 | 2014-03-21 01:25:37 +0000 | [diff] [blame] | 37 | sys::fs::remove(LockFileName); |
Reid Kleckner | 7de8ea3 | 2013-08-07 01:22:04 +0000 | [diff] [blame] | 38 | return None; |
Argyrios Kyrtzidis | 3757569 | 2014-03-21 01:25:37 +0000 | [diff] [blame] | 39 | } |
Rafael Espindola | 3f6481d | 2014-08-01 14:31:55 +0000 | [diff] [blame] | 40 | MemoryBuffer &MB = *MBOrErr.get(); |
Reid Kleckner | 7de8ea3 | 2013-08-07 01:22:04 +0000 | [diff] [blame] | 41 | |
| 42 | StringRef Hostname; |
| 43 | StringRef PIDStr; |
Rafael Espindola | 3f6481d | 2014-08-01 14:31:55 +0000 | [diff] [blame] | 44 | std::tie(Hostname, PIDStr) = getToken(MB.getBuffer(), " "); |
Reid Kleckner | 7de8ea3 | 2013-08-07 01:22:04 +0000 | [diff] [blame] | 45 | PIDStr = PIDStr.substr(PIDStr.find_first_not_of(" ")); |
| 46 | int PID; |
Argyrios Kyrtzidis | 44ec0a7 | 2014-04-06 03:19:31 +0000 | [diff] [blame] | 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 | } |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 52 | |
| 53 | // Delete the lock file. It's invalid anyway. |
Reid Kleckner | d78273f | 2013-08-06 22:51:21 +0000 | [diff] [blame] | 54 | sys::fs::remove(LockFileName); |
David Blaikie | ef04593 | 2013-02-21 00:27:28 +0000 | [diff] [blame] | 55 | return None; |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) { |
Evgeniy Stepanov | c439a42 | 2012-09-04 09:14:45 +0000 | [diff] [blame] | 59 | #if LLVM_ON_UNIX && !defined(__ANDROID__) |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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 | |
| 72 | LockFileManager::LockFileManager(StringRef FileName) |
| 73 | { |
Douglas Gregor | 056eafd | 2013-01-10 02:01:35 +0000 | [diff] [blame] | 74 | this->FileName = FileName; |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 75 | if (std::error_code EC = sys::fs::make_absolute(this->FileName)) { |
Argyrios Kyrtzidis | 900e9a3 | 2014-03-21 21:45:07 +0000 | [diff] [blame] | 76 | Error = EC; |
| 77 | return; |
| 78 | } |
| 79 | LockFileName = this->FileName; |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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; |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 91 | if (std::error_code EC = sys::fs::createUniqueFile( |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 92 | UniqueLockFileName, UniqueLockFileID, UniqueLockFileName)) { |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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. |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 116 | Error = make_error_code(errc::no_space_on_device); |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 117 | sys::fs::remove(UniqueLockFileName); |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 118 | return; |
| 119 | } |
| 120 | } |
| 121 | |
Argyrios Kyrtzidis | 4147978 | 2014-03-06 20:53:58 +0000 | [diff] [blame] | 122 | while (1) { |
Rafael Espindola | 83f858e | 2014-03-11 18:40:24 +0000 | [diff] [blame] | 123 | // Create a link from the lock file name. If this succeeds, we're done. |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 124 | std::error_code EC = |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 125 | sys::fs::create_link(UniqueLockFileName, LockFileName); |
Rafael Espindola | a3f2e3f | 2014-05-31 03:21:04 +0000 | [diff] [blame] | 126 | if (!EC) |
Argyrios Kyrtzidis | 4147978 | 2014-03-06 20:53:58 +0000 | [diff] [blame] | 127 | return; |
Argyrios Kyrtzidis | 62a979c | 2014-03-06 17:37:10 +0000 | [diff] [blame] | 128 | |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 129 | if (EC != errc::file_exists) { |
Argyrios Kyrtzidis | 4147978 | 2014-03-06 20:53:58 +0000 | [diff] [blame] | 130 | Error = EC; |
| 131 | return; |
| 132 | } |
Argyrios Kyrtzidis | 62a979c | 2014-03-06 17:37:10 +0000 | [diff] [blame] | 133 | |
Argyrios Kyrtzidis | 4147978 | 2014-03-06 20:53:58 +0000 | [diff] [blame] | 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) |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 138 | sys::fs::remove(UniqueLockFileName); |
Argyrios Kyrtzidis | 4147978 | 2014-03-06 20:53:58 +0000 | [diff] [blame] | 139 | return; |
| 140 | } |
| 141 | |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 142 | if (!sys::fs::exists(LockFileName)) { |
Argyrios Kyrtzidis | 4147978 | 2014-03-06 20:53:58 +0000 | [diff] [blame] | 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. |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 150 | if ((EC = sys::fs::remove(LockFileName))) { |
Argyrios Kyrtzidis | 4147978 | 2014-03-06 20:53:58 +0000 | [diff] [blame] | 151 | Error = EC; |
| 152 | return; |
| 153 | } |
| 154 | } |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | 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 | |
| 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. |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 172 | sys::fs::remove(LockFileName); |
| 173 | sys::fs::remove(UniqueLockFileName); |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Argyrios Kyrtzidis | 44ec0a7 | 2014-04-06 03:19:31 +0000 | [diff] [blame] | 176 | LockFileManager::WaitForUnlockResult LockFileManager::waitForUnlock() { |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 177 | if (getState() != LFS_Shared) |
Argyrios Kyrtzidis | 44ec0a7 | 2014-04-06 03:19:31 +0000 | [diff] [blame] | 178 | return Res_Success; |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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 |
Argyrios Kyrtzidis | dc8f979 | 2015-03-04 22:54:38 +0000 | [diff] [blame] | 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; |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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 |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 198 | nanosleep(&Interval, nullptr); |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 199 | #endif |
Douglas Gregor | 0cb6846 | 2013-04-05 20:53:57 +0000 | [diff] [blame] | 200 | |
Ben Langmuir | 0897091 | 2015-02-19 18:22:35 +0000 | [diff] [blame] | 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. |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 204 | if (!sys::fs::exists(FileName)) |
Ben Langmuir | 0897091 | 2015-02-19 18:22:35 +0000 | [diff] [blame] | 205 | return Res_OwnerDied; |
| 206 | return Res_Success; |
Douglas Gregor | 056eafd | 2013-01-10 02:01:35 +0000 | [diff] [blame] | 207 | } |
Douglas Gregor | 0cb6846 | 2013-04-05 20:53:57 +0000 | [diff] [blame] | 208 | |
Ben Langmuir | 0897091 | 2015-02-19 18:22:35 +0000 | [diff] [blame] | 209 | // If the process owning the lock died without cleaning up, just bail out. |
| 210 | if (!processStillExecuting((*Owner).first, (*Owner).second)) |
Argyrios Kyrtzidis | 44ec0a7 | 2014-04-06 03:19:31 +0000 | [diff] [blame] | 211 | return Res_OwnerDied; |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 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. |
Argyrios Kyrtzidis | 44ec0a7 | 2014-04-06 03:19:31 +0000 | [diff] [blame] | 233 | return Res_Timeout; |
Douglas Gregor | 7039e35 | 2012-01-29 20:15:10 +0000 | [diff] [blame] | 234 | } |
Ben Langmuir | d2d52de | 2015-02-09 20:34:24 +0000 | [diff] [blame] | 235 | |
| 236 | std::error_code LockFileManager::unsafeRemoveLockFile() { |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 237 | return sys::fs::remove(LockFileName); |
Ben Langmuir | d2d52de | 2015-02-09 20:34:24 +0000 | [diff] [blame] | 238 | } |