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