Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 1 | //===--------------------- ModuleCache.cpp ----------------------*- C++ -*-===// |
| 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 | |
Zachary Turner | 01c3243 | 2017-02-14 19:06:07 +0000 | [diff] [blame^] | 10 | #include "lldb/Target/ModuleCache.h" |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 11 | |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 12 | #include "lldb/Core/Log.h" |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 13 | #include "lldb/Core/Module.h" |
Tamas Berghammer | 257e13a | 2015-12-10 17:08:23 +0000 | [diff] [blame] | 14 | #include "lldb/Core/ModuleList.h" |
Oleksiy Vyalov | eda270e | 2015-03-12 18:18:03 +0000 | [diff] [blame] | 15 | #include "lldb/Core/ModuleSpec.h" |
Oleksiy Vyalov | 919ef9d | 2015-05-07 15:28:49 +0000 | [diff] [blame] | 16 | #include "lldb/Host/File.h" |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 17 | #include "lldb/Host/FileSystem.h" |
Oleksiy Vyalov | 919ef9d | 2015-05-07 15:28:49 +0000 | [diff] [blame] | 18 | #include "lldb/Host/LockFile.h" |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 19 | #include "llvm/Support/FileSystem.h" |
Oleksiy Vyalov | 280d8dc | 2015-04-15 14:35:10 +0000 | [diff] [blame] | 20 | #include "llvm/Support/FileUtilities.h" |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 21 | |
| 22 | #include <assert.h> |
| 23 | |
| 24 | #include <cstdio> |
Oleksiy Vyalov | 919ef9d | 2015-05-07 15:28:49 +0000 | [diff] [blame] | 25 | |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 26 | using namespace lldb; |
| 27 | using namespace lldb_private; |
| 28 | |
| 29 | namespace { |
| 30 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 31 | const char *kModulesSubdir = ".cache"; |
| 32 | const char *kLockDirName = ".lock"; |
| 33 | const char *kTempFileName = ".temp"; |
| 34 | const char *kTempSymFileName = ".symtemp"; |
| 35 | const char *kSymFileExtension = ".sym"; |
| 36 | const char *kFSIllegalChars = "\\/:*?\"<>|"; |
Oleksiy Vyalov | 3154e77 | 2016-05-24 18:09:05 +0000 | [diff] [blame] | 37 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 38 | std::string GetEscapedHostname(const char *hostname) { |
Jason Molenda | 14699cf | 2016-10-21 02:32:08 +0000 | [diff] [blame] | 39 | if (hostname == nullptr) |
| 40 | hostname = "unknown"; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 41 | std::string result(hostname); |
| 42 | size_t size = result.size(); |
| 43 | for (size_t i = 0; i < size; ++i) { |
| 44 | if ((result[i] >= 1 && result[i] <= 31) || |
| 45 | strchr(kFSIllegalChars, result[i]) != nullptr) |
| 46 | result[i] = '_'; |
| 47 | } |
| 48 | return result; |
Oleksiy Vyalov | 3154e77 | 2016-05-24 18:09:05 +0000 | [diff] [blame] | 49 | } |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 50 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 51 | class ModuleLock { |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 52 | private: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 53 | File m_file; |
| 54 | std::unique_ptr<lldb_private::LockFile> m_lock; |
| 55 | FileSpec m_file_spec; |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 56 | |
| 57 | public: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 58 | ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, Error &error); |
| 59 | void Delete(); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 60 | }; |
| 61 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 62 | FileSpec JoinPath(const FileSpec &path1, const char *path2) { |
| 63 | FileSpec result_spec(path1); |
| 64 | result_spec.AppendPathComponent(path2); |
| 65 | return result_spec; |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 68 | Error MakeDirectory(const FileSpec &dir_path) { |
| 69 | if (dir_path.Exists()) { |
| 70 | if (!dir_path.IsDirectory()) |
| 71 | return Error("Invalid existing path"); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 72 | |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 73 | return Error(); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 74 | } |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 75 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 76 | return FileSystem::MakeDirectory(dir_path, eFilePermissionsDirectoryDefault); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 79 | FileSpec GetModuleDirectory(const FileSpec &root_dir_spec, const UUID &uuid) { |
| 80 | const auto modules_dir_spec = JoinPath(root_dir_spec, kModulesSubdir); |
| 81 | return JoinPath(modules_dir_spec, uuid.GetAsString().c_str()); |
Oleksiy Vyalov | a9ea071 | 2015-05-08 23:54:34 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 84 | FileSpec GetSymbolFileSpec(const FileSpec &module_file_spec) { |
Malcolm Parsons | 771ef6d | 2016-11-02 20:34:10 +0000 | [diff] [blame] | 85 | return FileSpec(module_file_spec.GetPath() + kSymFileExtension, false); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 88 | void DeleteExistingModule(const FileSpec &root_dir_spec, |
| 89 | const FileSpec &sysroot_module_path_spec) { |
| 90 | Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_MODULES)); |
| 91 | UUID module_uuid; |
| 92 | { |
| 93 | auto module_sp = |
| 94 | std::make_shared<Module>(ModuleSpec(sysroot_module_path_spec)); |
| 95 | module_uuid = module_sp->GetUUID(); |
| 96 | } |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 97 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 98 | if (!module_uuid.IsValid()) |
| 99 | return; |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 100 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 101 | Error error; |
| 102 | ModuleLock lock(root_dir_spec, module_uuid, error); |
| 103 | if (error.Fail()) { |
| 104 | if (log) |
| 105 | log->Printf("Failed to lock module %s: %s", |
| 106 | module_uuid.GetAsString().c_str(), error.AsCString()); |
| 107 | } |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 108 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 109 | auto link_count = FileSystem::GetHardlinkCount(sysroot_module_path_spec); |
| 110 | if (link_count == -1) |
| 111 | return; |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 112 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 113 | if (link_count > 2) // module is referred by other hosts. |
| 114 | return; |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 115 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 116 | const auto module_spec_dir = GetModuleDirectory(root_dir_spec, module_uuid); |
| 117 | FileSystem::DeleteDirectory(module_spec_dir, true); |
| 118 | lock.Delete(); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 121 | void DecrementRefExistingModule(const FileSpec &root_dir_spec, |
| 122 | const FileSpec &sysroot_module_path_spec) { |
| 123 | // Remove $platform/.cache/$uuid folder if nobody else references it. |
| 124 | DeleteExistingModule(root_dir_spec, sysroot_module_path_spec); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 125 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 126 | // Remove sysroot link. |
| 127 | FileSystem::Unlink(sysroot_module_path_spec); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 128 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 129 | FileSpec symfile_spec = GetSymbolFileSpec(sysroot_module_path_spec); |
| 130 | if (symfile_spec.Exists()) // delete module's symbol file if exists. |
| 131 | FileSystem::Unlink(symfile_spec); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 134 | Error CreateHostSysRootModuleLink(const FileSpec &root_dir_spec, |
| 135 | const char *hostname, |
| 136 | const FileSpec &platform_module_spec, |
| 137 | const FileSpec &local_module_spec, |
| 138 | bool delete_existing) { |
| 139 | const auto sysroot_module_path_spec = |
| 140 | JoinPath(JoinPath(root_dir_spec, hostname), |
| 141 | platform_module_spec.GetPath().c_str()); |
| 142 | if (sysroot_module_path_spec.Exists()) { |
| 143 | if (!delete_existing) |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 144 | return Error(); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 145 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 146 | DecrementRefExistingModule(root_dir_spec, sysroot_module_path_spec); |
| 147 | } |
Oleksiy Vyalov | a9ea071 | 2015-05-08 23:54:34 +0000 | [diff] [blame] | 148 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 149 | const auto error = MakeDirectory( |
| 150 | FileSpec(sysroot_module_path_spec.GetDirectory().AsCString(), false)); |
| 151 | if (error.Fail()) |
| 152 | return error; |
Oleksiy Vyalov | a9ea071 | 2015-05-08 23:54:34 +0000 | [diff] [blame] | 153 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 154 | return FileSystem::Hardlink(sysroot_module_path_spec, local_module_spec); |
Oleksiy Vyalov | a9ea071 | 2015-05-08 23:54:34 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 157 | } // namespace |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 158 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 159 | ModuleLock::ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, |
| 160 | Error &error) { |
| 161 | const auto lock_dir_spec = JoinPath(root_dir_spec, kLockDirName); |
| 162 | error = MakeDirectory(lock_dir_spec); |
| 163 | if (error.Fail()) |
| 164 | return; |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 165 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 166 | m_file_spec = JoinPath(lock_dir_spec, uuid.GetAsString().c_str()); |
| 167 | m_file.Open(m_file_spec.GetCString(), File::eOpenOptionWrite | |
| 168 | File::eOpenOptionCanCreate | |
| 169 | File::eOpenOptionCloseOnExec); |
| 170 | if (!m_file) { |
| 171 | error.SetErrorToErrno(); |
| 172 | return; |
| 173 | } |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 174 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 175 | m_lock.reset(new lldb_private::LockFile(m_file.GetDescriptor())); |
| 176 | error = m_lock->WriteLock(0, 1); |
| 177 | if (error.Fail()) |
| 178 | error.SetErrorStringWithFormat("Failed to lock file: %s", |
| 179 | error.AsCString()); |
Tamas Berghammer | ec3f92a | 2015-08-12 11:10:25 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 182 | void ModuleLock::Delete() { |
| 183 | if (!m_file) |
| 184 | return; |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 185 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 186 | m_file.Close(); |
| 187 | FileSystem::Unlink(m_file_spec); |
Oleksiy Vyalov | 2b38f33 | 2015-09-18 18:12:39 +0000 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | ///////////////////////////////////////////////////////////////////////// |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 191 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 192 | Error ModuleCache::Put(const FileSpec &root_dir_spec, const char *hostname, |
| 193 | const ModuleSpec &module_spec, const FileSpec &tmp_file, |
| 194 | const FileSpec &target_file) { |
| 195 | const auto module_spec_dir = |
| 196 | GetModuleDirectory(root_dir_spec, module_spec.GetUUID()); |
| 197 | const auto module_file_path = |
| 198 | JoinPath(module_spec_dir, target_file.GetFilename().AsCString()); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 199 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 200 | const auto tmp_file_path = tmp_file.GetPath(); |
Malcolm Parsons | 771ef6d | 2016-11-02 20:34:10 +0000 | [diff] [blame] | 201 | const auto err_code = |
| 202 | llvm::sys::fs::rename(tmp_file_path, module_file_path.GetPath()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 203 | if (err_code) |
| 204 | return Error("Failed to rename file %s to %s: %s", tmp_file_path.c_str(), |
| 205 | module_file_path.GetPath().c_str(), |
| 206 | err_code.message().c_str()); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 207 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 208 | const auto error = CreateHostSysRootModuleLink( |
| 209 | root_dir_spec, hostname, target_file, module_file_path, true); |
| 210 | if (error.Fail()) |
| 211 | return Error("Failed to create link to %s: %s", |
| 212 | module_file_path.GetPath().c_str(), error.AsCString()); |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 213 | return Error(); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 216 | Error ModuleCache::Get(const FileSpec &root_dir_spec, const char *hostname, |
| 217 | const ModuleSpec &module_spec, |
| 218 | ModuleSP &cached_module_sp, bool *did_create_ptr) { |
| 219 | const auto find_it = |
| 220 | m_loaded_modules.find(module_spec.GetUUID().GetAsString()); |
| 221 | if (find_it != m_loaded_modules.end()) { |
| 222 | cached_module_sp = (*find_it).second.lock(); |
| 223 | if (cached_module_sp) |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 224 | return Error(); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 225 | m_loaded_modules.erase(find_it); |
| 226 | } |
Oleksiy Vyalov | eda270e | 2015-03-12 18:18:03 +0000 | [diff] [blame] | 227 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 228 | const auto module_spec_dir = |
| 229 | GetModuleDirectory(root_dir_spec, module_spec.GetUUID()); |
| 230 | const auto module_file_path = JoinPath( |
| 231 | module_spec_dir, module_spec.GetFileSpec().GetFilename().AsCString()); |
Oleksiy Vyalov | eda270e | 2015-03-12 18:18:03 +0000 | [diff] [blame] | 232 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 233 | if (!module_file_path.Exists()) |
| 234 | return Error("Module %s not found", module_file_path.GetPath().c_str()); |
| 235 | if (module_file_path.GetByteSize() != module_spec.GetObjectSize()) |
| 236 | return Error("Module %s has invalid file size", |
| 237 | module_file_path.GetPath().c_str()); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 238 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 239 | // We may have already cached module but downloaded from an another host - in |
| 240 | // this case let's create a link to it. |
| 241 | auto error = CreateHostSysRootModuleLink(root_dir_spec, hostname, |
| 242 | module_spec.GetFileSpec(), |
| 243 | module_file_path, false); |
| 244 | if (error.Fail()) |
| 245 | return Error("Failed to create link to %s: %s", |
| 246 | module_file_path.GetPath().c_str(), error.AsCString()); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 247 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 248 | auto cached_module_spec(module_spec); |
| 249 | cached_module_spec.GetUUID().Clear(); // Clear UUID since it may contain md5 |
| 250 | // content hash instead of real UUID. |
| 251 | cached_module_spec.GetFileSpec() = module_file_path; |
| 252 | cached_module_spec.GetPlatformFileSpec() = module_spec.GetFileSpec(); |
Tamas Berghammer | ec3f92a | 2015-08-12 11:10:25 +0000 | [diff] [blame] | 253 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 254 | error = ModuleList::GetSharedModule(cached_module_spec, cached_module_sp, |
| 255 | nullptr, nullptr, did_create_ptr, false); |
| 256 | if (error.Fail()) |
| 257 | return error; |
Tamas Berghammer | ec3f92a | 2015-08-12 11:10:25 +0000 | [diff] [blame] | 258 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 259 | FileSpec symfile_spec = GetSymbolFileSpec(cached_module_sp->GetFileSpec()); |
| 260 | if (symfile_spec.Exists()) |
| 261 | cached_module_sp->SetSymbolFileFileSpec(symfile_spec); |
Oleksiy Vyalov | eda270e | 2015-03-12 18:18:03 +0000 | [diff] [blame] | 262 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 263 | m_loaded_modules.insert( |
| 264 | std::make_pair(module_spec.GetUUID().GetAsString(), cached_module_sp)); |
| 265 | |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 266 | return Error(); |
Oleksiy Vyalov | 63acdfd | 2015-03-10 01:15:28 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 269 | Error ModuleCache::GetAndPut(const FileSpec &root_dir_spec, |
| 270 | const char *hostname, |
| 271 | const ModuleSpec &module_spec, |
| 272 | const ModuleDownloader &module_downloader, |
| 273 | const SymfileDownloader &symfile_downloader, |
| 274 | lldb::ModuleSP &cached_module_sp, |
| 275 | bool *did_create_ptr) { |
| 276 | const auto module_spec_dir = |
| 277 | GetModuleDirectory(root_dir_spec, module_spec.GetUUID()); |
| 278 | auto error = MakeDirectory(module_spec_dir); |
| 279 | if (error.Fail()) |
| 280 | return error; |
Oleksiy Vyalov | 919ef9d | 2015-05-07 15:28:49 +0000 | [diff] [blame] | 281 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 282 | ModuleLock lock(root_dir_spec, module_spec.GetUUID(), error); |
| 283 | if (error.Fail()) |
| 284 | return Error("Failed to lock module %s: %s", |
| 285 | module_spec.GetUUID().GetAsString().c_str(), |
| 286 | error.AsCString()); |
Oleksiy Vyalov | 919ef9d | 2015-05-07 15:28:49 +0000 | [diff] [blame] | 287 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 288 | const auto escaped_hostname(GetEscapedHostname(hostname)); |
| 289 | // Check local cache for a module. |
| 290 | error = Get(root_dir_spec, escaped_hostname.c_str(), module_spec, |
| 291 | cached_module_sp, did_create_ptr); |
| 292 | if (error.Success()) |
| 293 | return error; |
Oleksiy Vyalov | 280d8dc | 2015-04-15 14:35:10 +0000 | [diff] [blame] | 294 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 295 | const auto tmp_download_file_spec = JoinPath(module_spec_dir, kTempFileName); |
| 296 | error = module_downloader(module_spec, tmp_download_file_spec); |
Malcolm Parsons | 771ef6d | 2016-11-02 20:34:10 +0000 | [diff] [blame] | 297 | llvm::FileRemover tmp_file_remover(tmp_download_file_spec.GetPath()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 298 | if (error.Fail()) |
| 299 | return Error("Failed to download module: %s", error.AsCString()); |
Oleksiy Vyalov | 280d8dc | 2015-04-15 14:35:10 +0000 | [diff] [blame] | 300 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 301 | // Put downloaded file into local module cache. |
| 302 | error = Put(root_dir_spec, escaped_hostname.c_str(), module_spec, |
| 303 | tmp_download_file_spec, module_spec.GetFileSpec()); |
| 304 | if (error.Fail()) |
| 305 | return Error("Failed to put module into cache: %s", error.AsCString()); |
Oleksiy Vyalov | 280d8dc | 2015-04-15 14:35:10 +0000 | [diff] [blame] | 306 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 307 | tmp_file_remover.releaseFile(); |
| 308 | error = Get(root_dir_spec, escaped_hostname.c_str(), module_spec, |
| 309 | cached_module_sp, did_create_ptr); |
| 310 | if (error.Fail()) |
| 311 | return error; |
Tamas Berghammer | ec3f92a | 2015-08-12 11:10:25 +0000 | [diff] [blame] | 312 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 313 | // Fetching a symbol file for the module |
| 314 | const auto tmp_download_sym_file_spec = |
| 315 | JoinPath(module_spec_dir, kTempSymFileName); |
| 316 | error = symfile_downloader(cached_module_sp, tmp_download_sym_file_spec); |
Malcolm Parsons | 771ef6d | 2016-11-02 20:34:10 +0000 | [diff] [blame] | 317 | llvm::FileRemover tmp_symfile_remover(tmp_download_sym_file_spec.GetPath()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 318 | if (error.Fail()) |
| 319 | // Failed to download a symfile but fetching the module was successful. The |
| 320 | // module might |
| 321 | // contain the necessary symbols and the debugging is also possible without |
| 322 | // a symfile. |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 323 | return Error(); |
Tamas Berghammer | ec3f92a | 2015-08-12 11:10:25 +0000 | [diff] [blame] | 324 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 325 | error = Put(root_dir_spec, escaped_hostname.c_str(), module_spec, |
| 326 | tmp_download_sym_file_spec, |
| 327 | GetSymbolFileSpec(module_spec.GetFileSpec())); |
| 328 | if (error.Fail()) |
| 329 | return Error("Failed to put symbol file into cache: %s", error.AsCString()); |
Tamas Berghammer | ec3f92a | 2015-08-12 11:10:25 +0000 | [diff] [blame] | 330 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 331 | tmp_symfile_remover.releaseFile(); |
| 332 | |
| 333 | FileSpec symfile_spec = GetSymbolFileSpec(cached_module_sp->GetFileSpec()); |
| 334 | cached_module_sp->SetSymbolFileFileSpec(symfile_spec); |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 335 | return Error(); |
Oleksiy Vyalov | 280d8dc | 2015-04-15 14:35:10 +0000 | [diff] [blame] | 336 | } |