2010-06-09 00:52:24 +08:00
|
|
|
//===-- Symbols.cpp ---------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/Host/Symbols.h"
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
#include <dirent.h>
|
2012-10-31 05:26:30 +08:00
|
|
|
#include <pwd.h>
|
2014-04-03 06:53:21 +08:00
|
|
|
#include "lldb/Utility/SafeMachO.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
|
|
|
|
// Project includes
|
|
|
|
#include "lldb/Core/ArchSpec.h"
|
|
|
|
#include "lldb/Core/DataBuffer.h"
|
|
|
|
#include "lldb/Core/DataExtractor.h"
|
2015-07-25 10:39:42 +08:00
|
|
|
#include "lldb/Core/Log.h"
|
2012-02-26 13:51:37 +08:00
|
|
|
#include "lldb/Core/Module.h"
|
<rdar://problem/11757916>
Make breakpoint setting by file and line much more efficient by only looking for inlined breakpoint locations if we are setting a breakpoint in anything but a source implementation file. Implementing this complex for a many reasons. Turns out that parsing compile units lazily had some issues with respect to how we need to do things with DWARF in .o files. So the fixes in the checkin for this makes these changes:
- Add a new setting called "target.inline-breakpoint-strategy" which can be set to "never", "always", or "headers". "never" will never try and set any inlined breakpoints (fastest). "always" always looks for inlined breakpoint locations (slowest, but most accurate). "headers", which is the default setting, will only look for inlined breakpoint locations if the breakpoint is set in what are consudered to be header files, which is realy defined as "not in an implementation source file".
- modify the breakpoint setting by file and line to check the current "target.inline-breakpoint-strategy" setting and act accordingly
- Modify compile units to be able to get their language and other info lazily. This allows us to create compile units from the debug map and not have to fill all of the details in, and then lazily discover this information as we go on debuggging. This is needed to avoid parsing all .o files when setting breakpoints in implementation only files (no inlines). Otherwise we would need to parse the .o file, the object file (mach-o in our case) and the symbol file (DWARF in the object file) just to see what the compile unit was.
- modify the "SymbolFileDWARFDebugMap" to subclass lldb_private::Module so that the virtual "GetObjectFile()" and "GetSymbolVendor()" functions can be intercepted when the .o file contenst are later lazilly needed. Prior to this fix, when we first instantiated the "SymbolFileDWARFDebugMap" class, we would also make modules, object files and symbol files for every .o file in the debug map because we needed to fix up the sections in the .o files with information that is in the executable debug map. Now we lazily do this in the DebugMapModule::GetObjectFile()
Cleaned up header includes a bit as well.
llvm-svn: 162860
2012-08-30 05:13:06 +08:00
|
|
|
#include "lldb/Core/ModuleSpec.h"
|
2012-08-22 08:18:43 +08:00
|
|
|
#include "lldb/Core/StreamString.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Timer.h"
|
|
|
|
#include "lldb/Core/UUID.h"
|
2011-02-01 09:31:41 +08:00
|
|
|
#include "lldb/Host/Endian.h"
|
2012-02-01 09:49:50 +08:00
|
|
|
#include "lldb/Host/Host.h"
|
2015-04-25 02:09:54 +08:00
|
|
|
#include "lldb/Symbol/ObjectFile.h"
|
2011-02-01 13:15:02 +08:00
|
|
|
#include "lldb/Utility/CleanUp.h"
|
2011-11-01 06:50:53 +08:00
|
|
|
#include "Host/macosx/cfcpp/CFCBundle.h"
|
2012-09-27 11:13:55 +08:00
|
|
|
#include "Host/macosx/cfcpp/CFCData.h"
|
2010-07-10 04:39:50 +08:00
|
|
|
#include "Host/macosx/cfcpp/CFCReleaser.h"
|
2011-04-12 13:54:46 +08:00
|
|
|
#include "Host/macosx/cfcpp/CFCString.h"
|
2010-09-09 07:01:14 +08:00
|
|
|
#include "mach/machine.h"
|
2010-07-10 04:39:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
2010-07-22 06:12:05 +08:00
|
|
|
using namespace llvm::MachO;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2014-07-09 09:29:05 +08:00
|
|
|
#if !defined (__arm__) && !defined (__arm64__) && !defined (__aarch64__) // No DebugSymbols on the iOS devices
|
2010-06-09 00:52:24 +08:00
|
|
|
extern "C" {
|
2010-07-10 04:39:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
CFURLRef DBGCopyFullDSYMURLForUUID (CFUUIDRef uuid, CFURLRef exec_url);
|
|
|
|
CFDictionaryRef DBGCopyDSYMPropertyLists (CFURLRef dsym_url);
|
2010-07-10 04:39:50 +08:00
|
|
|
|
|
|
|
}
|
2011-11-04 11:34:56 +08:00
|
|
|
#endif
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2015-04-25 02:09:54 +08:00
|
|
|
int
|
2010-06-09 00:52:24 +08:00
|
|
|
LocateMacOSXFilesUsingDebugSymbols
|
|
|
|
(
|
2012-02-26 13:51:37 +08:00
|
|
|
const ModuleSpec &module_spec,
|
2015-10-09 05:48:35 +08:00
|
|
|
ModuleSpec &return_module_spec
|
2010-06-09 00:52:24 +08:00
|
|
|
)
|
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
return_module_spec = module_spec;
|
|
|
|
return_module_spec.GetFileSpec().Clear();
|
|
|
|
return_module_spec.GetSymbolFileSpec().Clear();
|
2015-10-01 17:03:33 +08:00
|
|
|
|
2015-10-09 05:48:35 +08:00
|
|
|
int items_found = 0;
|
2015-10-01 17:03:33 +08:00
|
|
|
|
2014-07-09 09:29:05 +08:00
|
|
|
#if !defined (__arm__) && !defined (__arm64__) && !defined (__aarch64__) // No DebugSymbols on the iOS devices
|
2011-11-04 11:34:56 +08:00
|
|
|
|
2012-02-26 13:51:37 +08:00
|
|
|
const UUID *uuid = module_spec.GetUUIDPtr();
|
|
|
|
const ArchSpec *arch = module_spec.GetArchitecturePtr();
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (uuid && uuid->IsValid())
|
|
|
|
{
|
|
|
|
// Try and locate the dSYM file using DebugSymbols first
|
|
|
|
const UInt8 *module_uuid = (const UInt8 *)uuid->GetBytes();
|
|
|
|
if (module_uuid != NULL)
|
|
|
|
{
|
2011-07-19 11:57:15 +08:00
|
|
|
CFCReleaser<CFUUIDRef> module_uuid_ref(::CFUUIDCreateWithBytes (NULL,
|
2010-06-09 00:52:24 +08:00
|
|
|
module_uuid[0],
|
|
|
|
module_uuid[1],
|
|
|
|
module_uuid[2],
|
|
|
|
module_uuid[3],
|
|
|
|
module_uuid[4],
|
|
|
|
module_uuid[5],
|
|
|
|
module_uuid[6],
|
|
|
|
module_uuid[7],
|
|
|
|
module_uuid[8],
|
|
|
|
module_uuid[9],
|
|
|
|
module_uuid[10],
|
|
|
|
module_uuid[11],
|
|
|
|
module_uuid[12],
|
|
|
|
module_uuid[13],
|
|
|
|
module_uuid[14],
|
|
|
|
module_uuid[15]));
|
|
|
|
|
|
|
|
if (module_uuid_ref.get())
|
|
|
|
{
|
|
|
|
CFCReleaser<CFURLRef> exec_url;
|
2012-02-26 13:51:37 +08:00
|
|
|
const FileSpec *exec_fspec = module_spec.GetFileSpecPtr();
|
2015-07-25 10:39:42 +08:00
|
|
|
Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
|
2010-06-09 00:52:24 +08:00
|
|
|
if (exec_fspec)
|
|
|
|
{
|
|
|
|
char exec_cf_path[PATH_MAX];
|
|
|
|
if (exec_fspec->GetPath(exec_cf_path, sizeof(exec_cf_path)))
|
|
|
|
exec_url.reset(::CFURLCreateFromFileSystemRepresentation (NULL,
|
|
|
|
(const UInt8 *)exec_cf_path,
|
|
|
|
strlen(exec_cf_path),
|
|
|
|
FALSE));
|
|
|
|
}
|
2015-10-01 17:03:33 +08:00
|
|
|
|
|
|
|
CFCReleaser<CFURLRef> dsym_url (::DBGCopyFullDSYMURLForUUID(module_uuid_ref.get(), exec_url.get()));
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
|
|
if (dsym_url.get())
|
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
if (::CFURLGetFileSystemRepresentation (dsym_url.get(), true, (UInt8*)path, sizeof(path)-1))
|
|
|
|
{
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("DebugSymbols framework returned dSYM path of %s for UUID %s -- looking for the dSYM", path, uuid->GetAsString().c_str());
|
|
|
|
}
|
|
|
|
FileSpec dsym_filespec(path, path[0] == '~');
|
|
|
|
|
|
|
|
if (dsym_filespec.GetFileType () == FileSpec::eFileTypeDirectory)
|
|
|
|
{
|
|
|
|
dsym_filespec = Symbols::FindSymbolFileInBundle (dsym_filespec, uuid, arch);
|
|
|
|
++items_found;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++items_found;
|
|
|
|
}
|
|
|
|
return_module_spec.GetSymbolFileSpec() = dsym_filespec;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool success = false;
|
|
|
|
if (log)
|
2015-10-01 13:37:22 +08:00
|
|
|
{
|
2015-10-01 17:03:33 +08:00
|
|
|
if (::CFURLGetFileSystemRepresentation (dsym_url.get(), true, (UInt8*)path, sizeof(path)-1))
|
2015-10-01 13:37:22 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
log->Printf ("DebugSymbols framework returned dSYM path of %s for UUID %s -- looking for an exec file", path, uuid->GetAsString().c_str());
|
|
|
|
}
|
2015-10-01 17:03:33 +08:00
|
|
|
|
2015-10-09 05:48:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CFCReleaser<CFDictionaryRef> dict(::DBGCopyDSYMPropertyLists (dsym_url.get()));
|
|
|
|
CFDictionaryRef uuid_dict = NULL;
|
|
|
|
if (dict.get())
|
|
|
|
{
|
|
|
|
CFCString uuid_cfstr (uuid->GetAsString().c_str());
|
|
|
|
uuid_dict = static_cast<CFDictionaryRef>(::CFDictionaryGetValue (dict.get(), uuid_cfstr.get()));
|
|
|
|
}
|
|
|
|
if (uuid_dict)
|
|
|
|
{
|
|
|
|
CFStringRef exec_cf_path = static_cast<CFStringRef>(::CFDictionaryGetValue (uuid_dict, CFSTR("DBGSymbolRichExecutable")));
|
|
|
|
if (exec_cf_path && ::CFStringGetFileSystemRepresentation (exec_cf_path, path, sizeof(path)))
|
|
|
|
{
|
|
|
|
if (log)
|
2015-10-01 17:03:33 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
log->Printf ("plist bundle has exec path of %s for UUID %s", path, uuid->GetAsString().c_str());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2015-10-09 05:48:35 +08:00
|
|
|
++items_found;
|
|
|
|
FileSpec exec_filespec (path, path[0] == '~');
|
|
|
|
if (exec_filespec.Exists())
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
success = true;
|
|
|
|
return_module_spec.GetFileSpec() = exec_filespec;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-09 05:48:35 +08:00
|
|
|
if (!success)
|
2012-03-16 05:01:31 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
// No dictionary, check near the dSYM bundle for an executable that matches...
|
|
|
|
if (::CFURLGetFileSystemRepresentation (dsym_url.get(), true, (UInt8*)path, sizeof(path)-1))
|
2015-10-01 17:03:33 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
char *dsym_extension_pos = ::strstr (path, ".dSYM");
|
|
|
|
if (dsym_extension_pos)
|
2012-03-16 05:01:31 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
*dsym_extension_pos = '\0';
|
2015-07-25 10:39:42 +08:00
|
|
|
if (log)
|
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
log->Printf ("Looking for executable binary next to dSYM bundle with name with name %s", path);
|
2015-07-25 10:39:42 +08:00
|
|
|
}
|
2015-10-09 05:48:35 +08:00
|
|
|
FileSpec file_spec (path, true);
|
|
|
|
ModuleSpecList module_specs;
|
|
|
|
ModuleSpec matched_module_spec;
|
|
|
|
switch (file_spec.GetFileType())
|
2011-07-19 11:57:15 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
case FileSpec::eFileTypeDirectory: // Bundle directory?
|
|
|
|
{
|
|
|
|
CFCBundle bundle (path);
|
|
|
|
CFCReleaser<CFURLRef> bundle_exe_url (bundle.CopyExecutableURL ());
|
|
|
|
if (bundle_exe_url.get())
|
2011-07-19 11:57:15 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
if (::CFURLGetFileSystemRepresentation (bundle_exe_url.get(), true, (UInt8*)path, sizeof(path)-1))
|
2011-07-19 11:57:15 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
FileSpec bundle_exe_file_spec (path, true);
|
|
|
|
if (ObjectFile::GetModuleSpecifications(bundle_exe_file_spec, 0, 0, module_specs) &&
|
|
|
|
module_specs.FindMatchingModuleSpec(module_spec, matched_module_spec))
|
2015-10-01 17:03:33 +08:00
|
|
|
|
2015-10-09 05:48:35 +08:00
|
|
|
{
|
|
|
|
++items_found;
|
|
|
|
return_module_spec.GetFileSpec() = bundle_exe_file_spec;
|
|
|
|
if (log)
|
2011-07-19 11:57:15 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
log->Printf ("Executable binary %s next to dSYM is compatible; using", path);
|
2011-07-19 11:57:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-09 05:48:35 +08:00
|
|
|
}
|
|
|
|
break;
|
2015-04-25 02:09:54 +08:00
|
|
|
|
2015-10-09 05:48:35 +08:00
|
|
|
case FileSpec::eFileTypePipe: // Forget pipes
|
|
|
|
case FileSpec::eFileTypeSocket: // We can't process socket files
|
|
|
|
case FileSpec::eFileTypeInvalid: // File doesn't exist...
|
|
|
|
break;
|
2011-07-19 11:57:15 +08:00
|
|
|
|
2015-10-09 05:48:35 +08:00
|
|
|
case FileSpec::eFileTypeUnknown:
|
|
|
|
case FileSpec::eFileTypeRegular:
|
|
|
|
case FileSpec::eFileTypeSymbolicLink:
|
|
|
|
case FileSpec::eFileTypeOther:
|
|
|
|
if (ObjectFile::GetModuleSpecifications(file_spec, 0, 0, module_specs) &&
|
|
|
|
module_specs.FindMatchingModuleSpec(module_spec, matched_module_spec))
|
2015-04-25 02:09:54 +08:00
|
|
|
|
2015-10-09 05:48:35 +08:00
|
|
|
{
|
|
|
|
++items_found;
|
|
|
|
return_module_spec.GetFileSpec() = file_spec;
|
|
|
|
if (log)
|
2011-07-19 11:57:15 +08:00
|
|
|
{
|
2015-10-09 05:48:35 +08:00
|
|
|
log->Printf ("Executable binary %s next to dSYM is compatible; using", path);
|
2011-07-19 11:57:15 +08:00
|
|
|
}
|
2015-10-09 05:48:35 +08:00
|
|
|
}
|
|
|
|
break;
|
2011-07-19 11:57:15 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-09 09:29:05 +08:00
|
|
|
#endif // #if !defined (__arm__) && !defined (__arm64__) && !defined (__aarch64__)
|
2011-11-04 11:34:56 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return items_found;
|
|
|
|
}
|
|
|
|
|
2015-04-25 02:09:54 +08:00
|
|
|
FileSpec
|
|
|
|
Symbols::FindSymbolFileInBundle (const FileSpec& dsym_bundle_fspec,
|
|
|
|
const lldb_private::UUID *uuid,
|
|
|
|
const ArchSpec *arch)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
|
|
FileSpec dsym_fspec;
|
|
|
|
|
|
|
|
if (dsym_bundle_fspec.GetPath(path, sizeof(path)))
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
::strncat (path, "/Contents/Resources/DWARF", sizeof(path) - strlen(path) - 1);
|
|
|
|
|
|
|
|
lldb_utility::CleanUp <DIR *, int> dirp (opendir(path), NULL, closedir);
|
|
|
|
if (dirp.is_valid())
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
dsym_fspec.GetDirectory().SetCString(path);
|
|
|
|
struct dirent* dp;
|
|
|
|
while ((dp = readdir(dirp.get())) != NULL)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
// Only search directories
|
|
|
|
if (dp->d_type == DT_DIR || dp->d_type == DT_UNKNOWN)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
if (dp->d_namlen == 1 && dp->d_name[0] == '.')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (dp->d_namlen == 2 && dp->d_name[0] == '.' && dp->d_name[1] == '.')
|
|
|
|
continue;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2015-04-25 02:09:54 +08:00
|
|
|
if (dp->d_type == DT_REG || dp->d_type == DT_UNKNOWN)
|
|
|
|
{
|
|
|
|
dsym_fspec.GetFilename().SetCString(dp->d_name);
|
|
|
|
ModuleSpecList module_specs;
|
|
|
|
if (ObjectFile::GetModuleSpecifications(dsym_fspec, 0, 0, module_specs))
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
ModuleSpec spec;
|
|
|
|
for (size_t i = 0; i < module_specs.GetSize(); ++i)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
assert(module_specs.GetModuleSpecAtIndex(i, spec));
|
|
|
|
if ((uuid == NULL || (spec.GetUUIDPtr() && spec.GetUUID() == *uuid)) &&
|
|
|
|
(arch == NULL || (spec.GetArchitecturePtr() && spec.GetArchitecture().IsCompatibleMatch(*arch))))
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2015-04-25 02:09:54 +08:00
|
|
|
return dsym_fspec;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dsym_fspec.Clear();
|
2015-04-25 02:09:54 +08:00
|
|
|
return dsym_fspec;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2012-09-27 11:13:55 +08:00
|
|
|
|
2012-09-28 06:26:11 +08:00
|
|
|
static bool
|
|
|
|
GetModuleSpecInfoFromUUIDDictionary (CFDictionaryRef uuid_dict, ModuleSpec &module_spec)
|
|
|
|
{
|
2015-07-25 10:39:42 +08:00
|
|
|
Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
|
2012-09-28 06:26:11 +08:00
|
|
|
bool success = false;
|
|
|
|
if (uuid_dict != NULL && CFGetTypeID (uuid_dict) == CFDictionaryGetTypeID ())
|
|
|
|
{
|
|
|
|
std::string str;
|
|
|
|
CFStringRef cf_str;
|
|
|
|
|
|
|
|
cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGSymbolRichExecutable"));
|
|
|
|
if (cf_str && CFGetTypeID (cf_str) == CFStringGetTypeID ())
|
|
|
|
{
|
|
|
|
if (CFCString::FileSystemRepresentation(cf_str, str))
|
2015-07-25 10:39:42 +08:00
|
|
|
{
|
2012-09-28 06:26:11 +08:00
|
|
|
module_spec.GetFileSpec().SetFile (str.c_str(), true);
|
2015-07-25 10:39:42 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("From dsymForUUID plist: Symbol rich executable is at '%s'", str.c_str());
|
|
|
|
}
|
|
|
|
}
|
2012-09-28 06:26:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGDSYMPath"));
|
|
|
|
if (cf_str && CFGetTypeID (cf_str) == CFStringGetTypeID ())
|
|
|
|
{
|
|
|
|
if (CFCString::FileSystemRepresentation(cf_str, str))
|
|
|
|
{
|
|
|
|
module_spec.GetSymbolFileSpec().SetFile (str.c_str(), true);
|
|
|
|
success = true;
|
2015-07-25 10:39:42 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("From dsymForUUID plist: dSYM is at '%s'", str.c_str());
|
|
|
|
}
|
2012-09-28 06:26:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGArchitecture"));
|
|
|
|
if (cf_str && CFGetTypeID (cf_str) == CFStringGetTypeID ())
|
|
|
|
{
|
|
|
|
if (CFCString::FileSystemRepresentation(cf_str, str))
|
|
|
|
module_spec.GetArchitecture().SetTriple(str.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string DBGBuildSourcePath;
|
|
|
|
std::string DBGSourcePath;
|
|
|
|
|
|
|
|
cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGBuildSourcePath"));
|
|
|
|
if (cf_str && CFGetTypeID (cf_str) == CFStringGetTypeID ())
|
|
|
|
{
|
|
|
|
CFCString::FileSystemRepresentation(cf_str, DBGBuildSourcePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGSourcePath"));
|
|
|
|
if (cf_str && CFGetTypeID (cf_str) == CFStringGetTypeID ())
|
|
|
|
{
|
|
|
|
CFCString::FileSystemRepresentation(cf_str, DBGSourcePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DBGBuildSourcePath.empty() && !DBGSourcePath.empty())
|
|
|
|
{
|
|
|
|
module_spec.GetSourceMappingList().Append (ConstString(DBGBuildSourcePath.c_str()), ConstString(DBGSourcePath.c_str()), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
2012-09-27 11:13:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
bool
|
2012-10-09 09:17:11 +08:00
|
|
|
Symbols::DownloadObjectAndSymbolFile (ModuleSpec &module_spec, bool force_lookup)
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
|
|
|
bool success = false;
|
|
|
|
const UUID *uuid_ptr = module_spec.GetUUIDPtr();
|
2012-09-28 06:26:11 +08:00
|
|
|
const FileSpec *file_spec_ptr = module_spec.GetFileSpecPtr();
|
2012-10-09 09:17:11 +08:00
|
|
|
|
|
|
|
// It's expensive to check for the DBGShellCommands defaults setting, only do it once per
|
|
|
|
// lldb run and cache the result.
|
|
|
|
static bool g_have_checked_for_dbgshell_command = false;
|
|
|
|
static const char *g_dbgshell_command = NULL;
|
|
|
|
if (g_have_checked_for_dbgshell_command == false)
|
|
|
|
{
|
|
|
|
g_have_checked_for_dbgshell_command = true;
|
|
|
|
CFTypeRef defaults_setting = CFPreferencesCopyAppValue (CFSTR ("DBGShellCommands"), CFSTR ("com.apple.DebugSymbols"));
|
|
|
|
if (defaults_setting && CFGetTypeID (defaults_setting) == CFStringGetTypeID())
|
|
|
|
{
|
|
|
|
char cstr_buf[PATH_MAX];
|
|
|
|
if (CFStringGetCString ((CFStringRef) defaults_setting, cstr_buf, sizeof (cstr_buf), kCFStringEncodingUTF8))
|
|
|
|
{
|
|
|
|
g_dbgshell_command = strdup (cstr_buf); // this malloc'ed memory will never be freed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (defaults_setting)
|
|
|
|
{
|
|
|
|
CFRelease (defaults_setting);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// When g_dbgshell_command is NULL, the user has not enabled the use of an external program
|
|
|
|
// to find the symbols, don't run it for them.
|
|
|
|
if (force_lookup == false && g_dbgshell_command == NULL)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-09-28 06:26:11 +08:00
|
|
|
if (uuid_ptr || (file_spec_ptr && file_spec_ptr->Exists()))
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
|
|
|
static bool g_located_dsym_for_uuid_exe = false;
|
|
|
|
static bool g_dsym_for_uuid_exe_exists = false;
|
|
|
|
static char g_dsym_for_uuid_exe_path[PATH_MAX];
|
|
|
|
if (!g_located_dsym_for_uuid_exe)
|
|
|
|
{
|
|
|
|
g_located_dsym_for_uuid_exe = true;
|
|
|
|
const char *dsym_for_uuid_exe_path_cstr = getenv("LLDB_APPLE_DSYMFORUUID_EXECUTABLE");
|
|
|
|
FileSpec dsym_for_uuid_exe_spec;
|
|
|
|
if (dsym_for_uuid_exe_path_cstr)
|
|
|
|
{
|
|
|
|
dsym_for_uuid_exe_spec.SetFile(dsym_for_uuid_exe_path_cstr, true);
|
|
|
|
g_dsym_for_uuid_exe_exists = dsym_for_uuid_exe_spec.Exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_dsym_for_uuid_exe_exists)
|
|
|
|
{
|
2012-10-31 05:26:30 +08:00
|
|
|
dsym_for_uuid_exe_spec.SetFile("/usr/local/bin/dsymForUUID", false);
|
2012-09-27 11:13:55 +08:00
|
|
|
g_dsym_for_uuid_exe_exists = dsym_for_uuid_exe_spec.Exists();
|
|
|
|
if (!g_dsym_for_uuid_exe_exists)
|
|
|
|
{
|
2013-01-26 02:06:21 +08:00
|
|
|
long bufsize;
|
2012-10-31 05:26:30 +08:00
|
|
|
if ((bufsize = sysconf(_SC_GETPW_R_SIZE_MAX)) != -1)
|
|
|
|
{
|
|
|
|
char buffer[bufsize];
|
|
|
|
struct passwd pwd;
|
|
|
|
struct passwd *tilde_rc = NULL;
|
|
|
|
// we are a library so we need to use the reentrant version of getpwnam()
|
|
|
|
if (getpwnam_r ("rc", &pwd, buffer, bufsize, &tilde_rc) == 0
|
|
|
|
&& tilde_rc
|
|
|
|
&& tilde_rc->pw_dir)
|
|
|
|
{
|
|
|
|
std::string dsymforuuid_path(tilde_rc->pw_dir);
|
|
|
|
dsymforuuid_path += "/bin/dsymForUUID";
|
|
|
|
dsym_for_uuid_exe_spec.SetFile(dsymforuuid_path.c_str(), false);
|
|
|
|
g_dsym_for_uuid_exe_exists = dsym_for_uuid_exe_spec.Exists();
|
|
|
|
}
|
|
|
|
}
|
2012-09-27 11:13:55 +08:00
|
|
|
}
|
|
|
|
}
|
2012-10-09 09:17:11 +08:00
|
|
|
if (!g_dsym_for_uuid_exe_exists && g_dbgshell_command != NULL)
|
|
|
|
{
|
|
|
|
dsym_for_uuid_exe_spec.SetFile(g_dbgshell_command, true);
|
|
|
|
g_dsym_for_uuid_exe_exists = dsym_for_uuid_exe_spec.Exists();
|
|
|
|
}
|
|
|
|
|
2012-09-27 11:13:55 +08:00
|
|
|
if (g_dsym_for_uuid_exe_exists)
|
|
|
|
dsym_for_uuid_exe_spec.GetPath (g_dsym_for_uuid_exe_path, sizeof(g_dsym_for_uuid_exe_path));
|
|
|
|
}
|
|
|
|
if (g_dsym_for_uuid_exe_exists)
|
|
|
|
{
|
2013-05-04 07:56:12 +08:00
|
|
|
std::string uuid_str;
|
2012-09-28 06:26:11 +08:00
|
|
|
char file_path[PATH_MAX];
|
|
|
|
file_path[0] = '\0';
|
|
|
|
|
|
|
|
if (uuid_ptr)
|
2013-05-04 07:56:12 +08:00
|
|
|
uuid_str = uuid_ptr->GetAsString();
|
2012-09-28 06:26:11 +08:00
|
|
|
|
|
|
|
if (file_spec_ptr)
|
|
|
|
file_spec_ptr->GetPath(file_path, sizeof(file_path));
|
|
|
|
|
|
|
|
StreamString command;
|
2013-05-04 07:56:12 +08:00
|
|
|
if (!uuid_str.empty())
|
2015-11-06 08:55:17 +08:00
|
|
|
command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, uuid_str.c_str());
|
2014-10-17 09:38:10 +08:00
|
|
|
else if (file_path[0] != '\0')
|
2015-11-06 08:55:17 +08:00
|
|
|
command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, file_path);
|
2012-09-28 06:26:11 +08:00
|
|
|
|
|
|
|
if (!command.GetString().empty())
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
2015-07-25 10:39:42 +08:00
|
|
|
Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
|
2012-09-28 06:26:11 +08:00
|
|
|
int exit_status = -1;
|
|
|
|
int signo = -1;
|
|
|
|
std::string command_output;
|
2015-07-25 10:39:42 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
if (!uuid_str.empty())
|
|
|
|
log->Printf("Calling %s with UUID %s to find dSYM", g_dsym_for_uuid_exe_path, uuid_str.c_str());
|
|
|
|
else if (file_path[0] != '\0')
|
|
|
|
log->Printf("Calling %s with file %s to find dSYM", g_dsym_for_uuid_exe_path, file_path);
|
|
|
|
}
|
2012-09-28 06:26:11 +08:00
|
|
|
Error error = Host::RunShellCommand (command.GetData(),
|
|
|
|
NULL, // current working directory
|
|
|
|
&exit_status, // Exit status
|
|
|
|
&signo, // Signal int *
|
|
|
|
&command_output, // Command output
|
|
|
|
30, // Large timeout to allow for long dsym download times
|
2015-01-16 01:55:24 +08:00
|
|
|
false); // Don't run in a shell (we don't need shell expansion)
|
2012-09-28 06:26:11 +08:00
|
|
|
if (error.Success() && exit_status == 0 && !command_output.empty())
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
2012-09-28 06:26:11 +08:00
|
|
|
CFCData data (CFDataCreateWithBytesNoCopy (NULL,
|
|
|
|
(const UInt8 *)command_output.data(),
|
|
|
|
command_output.size(),
|
|
|
|
kCFAllocatorNull));
|
|
|
|
|
|
|
|
CFCReleaser<CFDictionaryRef> plist((CFDictionaryRef)::CFPropertyListCreateFromXMLData (NULL, data.get(), kCFPropertyListImmutable, NULL));
|
|
|
|
|
2013-02-09 07:17:17 +08:00
|
|
|
if (plist.get() && CFGetTypeID (plist.get()) == CFDictionaryGetTypeID ())
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
2013-05-04 07:56:12 +08:00
|
|
|
if (!uuid_str.empty())
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
2013-05-04 07:56:12 +08:00
|
|
|
CFCString uuid_cfstr(uuid_str.c_str());
|
2012-09-28 06:26:11 +08:00
|
|
|
CFDictionaryRef uuid_dict = (CFDictionaryRef)CFDictionaryGetValue (plist.get(), uuid_cfstr.get());
|
|
|
|
success = GetModuleSpecInfoFromUUIDDictionary (uuid_dict, module_spec);
|
2012-09-27 11:13:55 +08:00
|
|
|
}
|
2012-09-28 06:26:11 +08:00
|
|
|
else
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
2012-09-28 06:26:11 +08:00
|
|
|
const CFIndex num_values = ::CFDictionaryGetCount(plist.get());
|
|
|
|
if (num_values > 0)
|
2012-09-27 11:13:55 +08:00
|
|
|
{
|
2012-09-28 06:26:11 +08:00
|
|
|
std::vector<CFStringRef> keys (num_values, NULL);
|
|
|
|
std::vector<CFDictionaryRef> values (num_values, NULL);
|
|
|
|
::CFDictionaryGetKeysAndValues(plist.get(), NULL, (const void **)&values[0]);
|
|
|
|
if (num_values == 1)
|
|
|
|
{
|
|
|
|
return GetModuleSpecInfoFromUUIDDictionary (values[0], module_spec);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (CFIndex i=0; i<num_values; ++i)
|
|
|
|
{
|
|
|
|
ModuleSpec curr_module_spec;
|
|
|
|
if (GetModuleSpecInfoFromUUIDDictionary (values[i], curr_module_spec))
|
|
|
|
{
|
2012-12-14 06:07:14 +08:00
|
|
|
if (module_spec.GetArchitecture().IsCompatibleMatch(curr_module_spec.GetArchitecture()))
|
2012-09-28 06:26:11 +08:00
|
|
|
{
|
|
|
|
module_spec = curr_module_spec;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-27 11:13:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-25 10:39:42 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
if (!uuid_str.empty())
|
|
|
|
log->Printf("Called %s on %s, no matches", g_dsym_for_uuid_exe_path, uuid_str.c_str());
|
|
|
|
else if (file_path[0] != '\0')
|
|
|
|
log->Printf("Called %s on %s, no matches", g_dsym_for_uuid_exe_path, file_path);
|
|
|
|
}
|
|
|
|
}
|
2012-09-27 11:13:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|