1 //===-- PlatformAndroid.cpp -----------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "lldb/Core/Module.h" 10 #include "lldb/Core/PluginManager.h" 11 #include "lldb/Core/Section.h" 12 #include "lldb/Core/ValueObject.h" 13 #include "lldb/Host/HostInfo.h" 14 #include "lldb/Utility/Log.h" 15 #include "lldb/Utility/Scalar.h" 16 #include "lldb/Utility/UriParser.h" 17 18 #include "AdbClient.h" 19 #include "PlatformAndroid.h" 20 #include "PlatformAndroidRemoteGDBServer.h" 21 #include "lldb/Target/Target.h" 22 23 using namespace lldb; 24 using namespace lldb_private; 25 using namespace lldb_private::platform_android; 26 using namespace std::chrono; 27 28 LLDB_PLUGIN_DEFINE(PlatformAndroid) 29 30 static uint32_t g_initialize_count = 0; 31 static const unsigned int g_android_default_cache_size = 32 2048; // Fits inside 4k adb packet. 33 34 void PlatformAndroid::Initialize() { 35 PlatformLinux::Initialize(); 36 37 if (g_initialize_count++ == 0) { 38 #if defined(__ANDROID__) 39 PlatformSP default_platform_sp(new PlatformAndroid(true)); 40 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); 41 Platform::SetHostPlatform(default_platform_sp); 42 #endif 43 PluginManager::RegisterPlugin( 44 PlatformAndroid::GetPluginNameStatic(false), 45 PlatformAndroid::GetPluginDescriptionStatic(false), 46 PlatformAndroid::CreateInstance); 47 } 48 } 49 50 void PlatformAndroid::Terminate() { 51 if (g_initialize_count > 0) { 52 if (--g_initialize_count == 0) { 53 PluginManager::UnregisterPlugin(PlatformAndroid::CreateInstance); 54 } 55 } 56 57 PlatformLinux::Terminate(); 58 } 59 60 PlatformSP PlatformAndroid::CreateInstance(bool force, const ArchSpec *arch) { 61 Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM)); 62 if (log) { 63 const char *arch_name; 64 if (arch && arch->GetArchitectureName()) 65 arch_name = arch->GetArchitectureName(); 66 else 67 arch_name = "<null>"; 68 69 const char *triple_cstr = 70 arch ? arch->GetTriple().getTriple().c_str() : "<null>"; 71 72 LLDB_LOGF(log, "PlatformAndroid::%s(force=%s, arch={%s,%s})", __FUNCTION__, 73 force ? "true" : "false", arch_name, triple_cstr); 74 } 75 76 bool create = force; 77 if (!create && arch && arch->IsValid()) { 78 const llvm::Triple &triple = arch->GetTriple(); 79 switch (triple.getVendor()) { 80 case llvm::Triple::PC: 81 create = true; 82 break; 83 84 #if defined(__ANDROID__) 85 // Only accept "unknown" for the vendor if the host is android and if 86 // "unknown" wasn't specified (it was just returned because it was NOT 87 // specified). 88 case llvm::Triple::VendorType::UnknownVendor: 89 create = !arch->TripleVendorWasSpecified(); 90 break; 91 #endif 92 default: 93 break; 94 } 95 96 if (create) { 97 switch (triple.getEnvironment()) { 98 case llvm::Triple::Android: 99 break; 100 101 #if defined(__ANDROID__) 102 // Only accept "unknown" for the OS if the host is android and it 103 // "unknown" wasn't specified (it was just returned because it was NOT 104 // specified) 105 case llvm::Triple::EnvironmentType::UnknownEnvironment: 106 create = !arch->TripleEnvironmentWasSpecified(); 107 break; 108 #endif 109 default: 110 create = false; 111 break; 112 } 113 } 114 } 115 116 if (create) { 117 LLDB_LOGF(log, "PlatformAndroid::%s() creating remote-android platform", 118 __FUNCTION__); 119 return PlatformSP(new PlatformAndroid(false)); 120 } 121 122 LLDB_LOGF( 123 log, "PlatformAndroid::%s() aborting creation of remote-android platform", 124 __FUNCTION__); 125 126 return PlatformSP(); 127 } 128 129 PlatformAndroid::PlatformAndroid(bool is_host) 130 : PlatformLinux(is_host), m_sdk_version(0) {} 131 132 llvm::StringRef PlatformAndroid::GetPluginDescriptionStatic(bool is_host) { 133 if (is_host) 134 return "Local Android user platform plug-in."; 135 return "Remote Android user platform plug-in."; 136 } 137 138 Status PlatformAndroid::ConnectRemote(Args &args) { 139 m_device_id.clear(); 140 141 if (IsHost()) 142 return Status("can't connect to the host platform, always connected"); 143 144 if (!m_remote_platform_sp) 145 m_remote_platform_sp = PlatformSP(new PlatformAndroidRemoteGDBServer()); 146 147 const char *url = args.GetArgumentAtIndex(0); 148 if (!url) 149 return Status("URL is null."); 150 llvm::Optional<URI> parsed_url = URI::Parse(url); 151 if (!parsed_url) 152 return Status("Invalid URL: %s", url); 153 if (parsed_url->hostname != "localhost") 154 m_device_id = parsed_url->hostname.str(); 155 156 auto error = PlatformLinux::ConnectRemote(args); 157 if (error.Success()) { 158 AdbClient adb; 159 error = AdbClient::CreateByDeviceID(m_device_id, adb); 160 if (error.Fail()) 161 return error; 162 163 m_device_id = adb.GetDeviceID(); 164 } 165 return error; 166 } 167 168 Status PlatformAndroid::GetFile(const FileSpec &source, 169 const FileSpec &destination) { 170 if (IsHost() || !m_remote_platform_sp) 171 return PlatformLinux::GetFile(source, destination); 172 173 FileSpec source_spec(source.GetPath(false), FileSpec::Style::posix); 174 if (source_spec.IsRelative()) 175 source_spec = GetRemoteWorkingDirectory().CopyByAppendingPathComponent( 176 source_spec.GetCString(false)); 177 178 Status error; 179 auto sync_service = GetSyncService(error); 180 if (error.Fail()) 181 return error; 182 183 uint32_t mode = 0, size = 0, mtime = 0; 184 error = sync_service->Stat(source_spec, mode, size, mtime); 185 if (error.Fail()) 186 return error; 187 188 if (mode != 0) 189 return sync_service->PullFile(source_spec, destination); 190 191 auto source_file = source_spec.GetCString(false); 192 193 Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM)); 194 LLDB_LOGF(log, "Got mode == 0 on '%s': try to get file via 'shell cat'", 195 source_file); 196 197 if (strchr(source_file, '\'') != nullptr) 198 return Status("Doesn't support single-quotes in filenames"); 199 200 // mode == 0 can signify that adbd cannot access the file due security 201 // constraints - try "cat ..." as a fallback. 202 AdbClient adb(m_device_id); 203 204 char cmd[PATH_MAX]; 205 snprintf(cmd, sizeof(cmd), "cat '%s'", source_file); 206 207 return adb.ShellToFile(cmd, minutes(1), destination); 208 } 209 210 Status PlatformAndroid::PutFile(const FileSpec &source, 211 const FileSpec &destination, uint32_t uid, 212 uint32_t gid) { 213 if (IsHost() || !m_remote_platform_sp) 214 return PlatformLinux::PutFile(source, destination, uid, gid); 215 216 FileSpec destination_spec(destination.GetPath(false), FileSpec::Style::posix); 217 if (destination_spec.IsRelative()) 218 destination_spec = GetRemoteWorkingDirectory().CopyByAppendingPathComponent( 219 destination_spec.GetCString(false)); 220 221 // TODO: Set correct uid and gid on remote file. 222 Status error; 223 auto sync_service = GetSyncService(error); 224 if (error.Fail()) 225 return error; 226 return sync_service->PushFile(source, destination_spec); 227 } 228 229 const char *PlatformAndroid::GetCacheHostname() { return m_device_id.c_str(); } 230 231 Status PlatformAndroid::DownloadModuleSlice(const FileSpec &src_file_spec, 232 const uint64_t src_offset, 233 const uint64_t src_size, 234 const FileSpec &dst_file_spec) { 235 if (src_offset != 0) 236 return Status("Invalid offset - %" PRIu64, src_offset); 237 238 return GetFile(src_file_spec, dst_file_spec); 239 } 240 241 Status PlatformAndroid::DisconnectRemote() { 242 Status error = PlatformLinux::DisconnectRemote(); 243 if (error.Success()) { 244 m_device_id.clear(); 245 m_sdk_version = 0; 246 } 247 return error; 248 } 249 250 uint32_t PlatformAndroid::GetDefaultMemoryCacheLineSize() { 251 return g_android_default_cache_size; 252 } 253 254 uint32_t PlatformAndroid::GetSdkVersion() { 255 if (!IsConnected()) 256 return 0; 257 258 if (m_sdk_version != 0) 259 return m_sdk_version; 260 261 std::string version_string; 262 AdbClient adb(m_device_id); 263 Status error = 264 adb.Shell("getprop ro.build.version.sdk", seconds(5), &version_string); 265 version_string = llvm::StringRef(version_string).trim().str(); 266 267 if (error.Fail() || version_string.empty()) { 268 Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM); 269 LLDB_LOGF(log, "Get SDK version failed. (error: %s, output: %s)", 270 error.AsCString(), version_string.c_str()); 271 return 0; 272 } 273 274 // FIXME: improve error handling 275 llvm::to_integer(version_string, m_sdk_version); 276 return m_sdk_version; 277 } 278 279 Status PlatformAndroid::DownloadSymbolFile(const lldb::ModuleSP &module_sp, 280 const FileSpec &dst_file_spec) { 281 // For oat file we can try to fetch additional debug info from the device 282 ConstString extension = module_sp->GetFileSpec().GetFileNameExtension(); 283 if (extension != ".oat" && extension != ".odex") 284 return Status( 285 "Symbol file downloading only supported for oat and odex files"); 286 287 // If we have no information about the platform file we can't execute oatdump 288 if (!module_sp->GetPlatformFileSpec()) 289 return Status("No platform file specified"); 290 291 // Symbolizer isn't available before SDK version 23 292 if (GetSdkVersion() < 23) 293 return Status("Symbol file generation only supported on SDK 23+"); 294 295 // If we already have symtab then we don't have to try and generate one 296 if (module_sp->GetSectionList()->FindSectionByName(ConstString(".symtab")) != 297 nullptr) 298 return Status("Symtab already available in the module"); 299 300 AdbClient adb(m_device_id); 301 std::string tmpdir; 302 Status error = adb.Shell("mktemp --directory --tmpdir /data/local/tmp", 303 seconds(5), &tmpdir); 304 if (error.Fail() || tmpdir.empty()) 305 return Status("Failed to generate temporary directory on the device (%s)", 306 error.AsCString()); 307 tmpdir = llvm::StringRef(tmpdir).trim().str(); 308 309 // Create file remover for the temporary directory created on the device 310 std::unique_ptr<std::string, std::function<void(std::string *)>> 311 tmpdir_remover(&tmpdir, [&adb](std::string *s) { 312 StreamString command; 313 command.Printf("rm -rf %s", s->c_str()); 314 Status error = adb.Shell(command.GetData(), seconds(5), nullptr); 315 316 Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM)); 317 if (log && error.Fail()) 318 LLDB_LOGF(log, "Failed to remove temp directory: %s", error.AsCString()); 319 }); 320 321 FileSpec symfile_platform_filespec(tmpdir); 322 symfile_platform_filespec.AppendPathComponent("symbolized.oat"); 323 324 // Execute oatdump on the remote device to generate a file with symtab 325 StreamString command; 326 command.Printf("oatdump --symbolize=%s --output=%s", 327 module_sp->GetPlatformFileSpec().GetCString(false), 328 symfile_platform_filespec.GetCString(false)); 329 error = adb.Shell(command.GetData(), minutes(1), nullptr); 330 if (error.Fail()) 331 return Status("Oatdump failed: %s", error.AsCString()); 332 333 // Download the symbolfile from the remote device 334 return GetFile(symfile_platform_filespec, dst_file_spec); 335 } 336 337 bool PlatformAndroid::GetRemoteOSVersion() { 338 m_os_version = llvm::VersionTuple(GetSdkVersion()); 339 return !m_os_version.empty(); 340 } 341 342 llvm::StringRef 343 PlatformAndroid::GetLibdlFunctionDeclarations(lldb_private::Process *process) { 344 SymbolContextList matching_symbols; 345 std::vector<const char *> dl_open_names = { "__dl_dlopen", "dlopen" }; 346 const char *dl_open_name = nullptr; 347 Target &target = process->GetTarget(); 348 for (auto name: dl_open_names) { 349 target.GetImages().FindFunctionSymbols( 350 ConstString(name), eFunctionNameTypeFull, matching_symbols); 351 if (matching_symbols.GetSize()) { 352 dl_open_name = name; 353 break; 354 } 355 } 356 // Older platform versions have the dl function symbols mangled 357 if (dl_open_name == dl_open_names[0]) 358 return R"( 359 extern "C" void* dlopen(const char*, int) asm("__dl_dlopen"); 360 extern "C" void* dlsym(void*, const char*) asm("__dl_dlsym"); 361 extern "C" int dlclose(void*) asm("__dl_dlclose"); 362 extern "C" char* dlerror(void) asm("__dl_dlerror"); 363 )"; 364 365 return PlatformPOSIX::GetLibdlFunctionDeclarations(process); 366 } 367 368 AdbClient::SyncService *PlatformAndroid::GetSyncService(Status &error) { 369 if (m_adb_sync_svc && m_adb_sync_svc->IsConnected()) 370 return m_adb_sync_svc.get(); 371 372 AdbClient adb(m_device_id); 373 m_adb_sync_svc = adb.GetSyncService(error); 374 return (error.Success()) ? m_adb_sync_svc.get() : nullptr; 375 } 376