1 //===-- BreakpointResolverName.cpp ------------------------------*- C++ -*-===// 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/Breakpoint/BreakpointResolverName.h" 10 11 #include "Plugins/Language/CPlusPlus/CPlusPlusLanguage.h" 12 #include "Plugins/Language/ObjC/ObjCLanguage.h" 13 #include "lldb/Breakpoint/BreakpointLocation.h" 14 #include "lldb/Core/Architecture.h" 15 #include "lldb/Core/Module.h" 16 #include "lldb/Symbol/Block.h" 17 #include "lldb/Symbol/Function.h" 18 #include "lldb/Symbol/Symbol.h" 19 #include "lldb/Symbol/SymbolContext.h" 20 #include "lldb/Target/Target.h" 21 #include "lldb/Utility/Log.h" 22 #include "lldb/Utility/StreamString.h" 23 24 using namespace lldb; 25 using namespace lldb_private; 26 27 BreakpointResolverName::BreakpointResolverName( 28 Breakpoint *bkpt, const char *name_cstr, FunctionNameType name_type_mask, 29 LanguageType language, Breakpoint::MatchType type, lldb::addr_t offset, 30 bool skip_prologue) 31 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset), 32 m_class_name(), m_regex(), m_match_type(type), m_language(language), 33 m_skip_prologue(skip_prologue) { 34 if (m_match_type == Breakpoint::Regexp) { 35 if (!m_regex.Compile(llvm::StringRef::withNullAsEmpty(name_cstr))) { 36 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS)); 37 38 if (log) 39 log->Warning("function name regexp: \"%s\" did not compile.", 40 name_cstr); 41 } 42 } else { 43 AddNameLookup(ConstString(name_cstr), name_type_mask); 44 } 45 } 46 47 BreakpointResolverName::BreakpointResolverName( 48 Breakpoint *bkpt, const char *names[], size_t num_names, 49 FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset, 50 bool skip_prologue) 51 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset), 52 m_match_type(Breakpoint::Exact), m_language(language), 53 m_skip_prologue(skip_prologue) { 54 for (size_t i = 0; i < num_names; i++) { 55 AddNameLookup(ConstString(names[i]), name_type_mask); 56 } 57 } 58 59 BreakpointResolverName::BreakpointResolverName(Breakpoint *bkpt, 60 std::vector<std::string> names, 61 FunctionNameType name_type_mask, 62 LanguageType language, 63 lldb::addr_t offset, 64 bool skip_prologue) 65 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset), 66 m_match_type(Breakpoint::Exact), m_language(language), 67 m_skip_prologue(skip_prologue) { 68 for (const std::string &name : names) { 69 AddNameLookup(ConstString(name.c_str(), name.size()), name_type_mask); 70 } 71 } 72 73 BreakpointResolverName::BreakpointResolverName(Breakpoint *bkpt, 74 RegularExpression &func_regex, 75 lldb::LanguageType language, 76 lldb::addr_t offset, 77 bool skip_prologue) 78 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset), 79 m_class_name(nullptr), m_regex(func_regex), 80 m_match_type(Breakpoint::Regexp), m_language(language), 81 m_skip_prologue(skip_prologue) {} 82 83 BreakpointResolverName::~BreakpointResolverName() = default; 84 85 BreakpointResolverName::BreakpointResolverName( 86 const BreakpointResolverName &rhs) 87 : BreakpointResolver(rhs.m_breakpoint, BreakpointResolver::NameResolver, 88 rhs.m_offset), 89 m_lookups(rhs.m_lookups), m_class_name(rhs.m_class_name), 90 m_regex(rhs.m_regex), m_match_type(rhs.m_match_type), 91 m_language(rhs.m_language), m_skip_prologue(rhs.m_skip_prologue) {} 92 93 BreakpointResolver *BreakpointResolverName::CreateFromStructuredData( 94 Breakpoint *bkpt, const StructuredData::Dictionary &options_dict, 95 Status &error) { 96 LanguageType language = eLanguageTypeUnknown; 97 llvm::StringRef language_name; 98 bool success = options_dict.GetValueForKeyAsString( 99 GetKey(OptionNames::LanguageName), language_name); 100 if (success) { 101 language = Language::GetLanguageTypeFromString(language_name); 102 if (language == eLanguageTypeUnknown) { 103 error.SetErrorStringWithFormatv("BRN::CFSD: Unknown language: {0}.", 104 language_name); 105 return nullptr; 106 } 107 } 108 109 lldb::addr_t offset = 0; 110 success = 111 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Offset), offset); 112 if (!success) { 113 error.SetErrorStringWithFormat("BRN::CFSD: Missing offset entry."); 114 return nullptr; 115 } 116 117 bool skip_prologue; 118 success = options_dict.GetValueForKeyAsBoolean( 119 GetKey(OptionNames::SkipPrologue), skip_prologue); 120 if (!success) { 121 error.SetErrorStringWithFormat("BRN::CFSD: Missing Skip prologue entry."); 122 return nullptr; 123 } 124 125 llvm::StringRef regex_text; 126 success = options_dict.GetValueForKeyAsString( 127 GetKey(OptionNames::RegexString), regex_text); 128 if (success) { 129 RegularExpression regex(regex_text); 130 return new BreakpointResolverName(bkpt, regex, language, offset, 131 skip_prologue); 132 } else { 133 StructuredData::Array *names_array; 134 success = options_dict.GetValueForKeyAsArray( 135 GetKey(OptionNames::SymbolNameArray), names_array); 136 if (!success) { 137 error.SetErrorStringWithFormat("BRN::CFSD: Missing symbol names entry."); 138 return nullptr; 139 } 140 StructuredData::Array *names_mask_array; 141 success = options_dict.GetValueForKeyAsArray( 142 GetKey(OptionNames::NameMaskArray), names_mask_array); 143 if (!success) { 144 error.SetErrorStringWithFormat( 145 "BRN::CFSD: Missing symbol names mask entry."); 146 return nullptr; 147 } 148 149 size_t num_elem = names_array->GetSize(); 150 if (num_elem != names_mask_array->GetSize()) { 151 error.SetErrorString( 152 "BRN::CFSD: names and names mask arrays have different sizes."); 153 return nullptr; 154 } 155 156 if (num_elem == 0) { 157 error.SetErrorString( 158 "BRN::CFSD: no name entry in a breakpoint by name breakpoint."); 159 return nullptr; 160 } 161 std::vector<std::string> names; 162 std::vector<FunctionNameType> name_masks; 163 for (size_t i = 0; i < num_elem; i++) { 164 llvm::StringRef name; 165 166 success = names_array->GetItemAtIndexAsString(i, name); 167 if (!success) { 168 error.SetErrorString("BRN::CFSD: name entry is not a string."); 169 return nullptr; 170 } 171 std::underlying_type<FunctionNameType>::type fnt; 172 success = names_mask_array->GetItemAtIndexAsInteger(i, fnt); 173 if (!success) { 174 error.SetErrorString("BRN::CFSD: name mask entry is not an integer."); 175 return nullptr; 176 } 177 names.push_back(name); 178 name_masks.push_back(static_cast<FunctionNameType>(fnt)); 179 } 180 181 BreakpointResolverName *resolver = new BreakpointResolverName( 182 bkpt, names[0].c_str(), name_masks[0], language, 183 Breakpoint::MatchType::Exact, offset, skip_prologue); 184 for (size_t i = 1; i < num_elem; i++) { 185 resolver->AddNameLookup(ConstString(names[i]), name_masks[i]); 186 } 187 return resolver; 188 } 189 } 190 191 StructuredData::ObjectSP BreakpointResolverName::SerializeToStructuredData() { 192 StructuredData::DictionarySP options_dict_sp( 193 new StructuredData::Dictionary()); 194 195 if (m_regex.IsValid()) { 196 options_dict_sp->AddStringItem(GetKey(OptionNames::RegexString), 197 m_regex.GetText()); 198 } else { 199 StructuredData::ArraySP names_sp(new StructuredData::Array()); 200 StructuredData::ArraySP name_masks_sp(new StructuredData::Array()); 201 for (auto lookup : m_lookups) { 202 names_sp->AddItem(StructuredData::StringSP( 203 new StructuredData::String(lookup.GetName().AsCString()))); 204 name_masks_sp->AddItem(StructuredData::IntegerSP( 205 new StructuredData::Integer(lookup.GetNameTypeMask()))); 206 } 207 options_dict_sp->AddItem(GetKey(OptionNames::SymbolNameArray), names_sp); 208 options_dict_sp->AddItem(GetKey(OptionNames::NameMaskArray), name_masks_sp); 209 } 210 if (m_language != eLanguageTypeUnknown) 211 options_dict_sp->AddStringItem( 212 GetKey(OptionNames::LanguageName), 213 Language::GetNameForLanguageType(m_language)); 214 options_dict_sp->AddBooleanItem(GetKey(OptionNames::SkipPrologue), 215 m_skip_prologue); 216 217 return WrapOptionsDict(options_dict_sp); 218 } 219 220 void BreakpointResolverName::AddNameLookup(ConstString name, 221 FunctionNameType name_type_mask) { 222 ObjCLanguage::MethodName objc_method(name.GetCString(), false); 223 if (objc_method.IsValid(false)) { 224 std::vector<ConstString> objc_names; 225 objc_method.GetFullNames(objc_names, true); 226 for (ConstString objc_name : objc_names) { 227 Module::LookupInfo lookup; 228 lookup.SetName(name); 229 lookup.SetLookupName(objc_name); 230 lookup.SetNameTypeMask(eFunctionNameTypeFull); 231 m_lookups.push_back(lookup); 232 } 233 } else { 234 Module::LookupInfo lookup(name, name_type_mask, m_language); 235 m_lookups.push_back(lookup); 236 } 237 } 238 239 // FIXME: Right now we look at the module level, and call the module's 240 // "FindFunctions". 241 // Greg says he will add function tables, maybe at the CompileUnit level to 242 // accelerate function lookup. At that point, we should switch the depth to 243 // CompileUnit, and look in these tables. 244 245 Searcher::CallbackReturn 246 BreakpointResolverName::SearchCallback(SearchFilter &filter, 247 SymbolContext &context, Address *addr, 248 bool containing) { 249 SymbolContextList func_list; 250 // SymbolContextList sym_list; 251 252 uint32_t i; 253 bool new_location; 254 Address break_addr; 255 assert(m_breakpoint != nullptr); 256 257 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS)); 258 259 if (m_class_name) { 260 if (log) 261 log->Warning("Class/method function specification not supported yet.\n"); 262 return Searcher::eCallbackReturnStop; 263 } 264 bool filter_by_cu = 265 (filter.GetFilterRequiredItems() & eSymbolContextCompUnit) != 0; 266 bool filter_by_language = (m_language != eLanguageTypeUnknown); 267 const bool include_symbols = !filter_by_cu; 268 const bool include_inlines = true; 269 const bool append = true; 270 271 switch (m_match_type) { 272 case Breakpoint::Exact: 273 if (context.module_sp) { 274 for (const auto &lookup : m_lookups) { 275 const size_t start_func_idx = func_list.GetSize(); 276 context.module_sp->FindFunctions( 277 lookup.GetLookupName(), nullptr, lookup.GetNameTypeMask(), 278 include_symbols, include_inlines, append, func_list); 279 280 const size_t end_func_idx = func_list.GetSize(); 281 282 if (start_func_idx < end_func_idx) 283 lookup.Prune(func_list, start_func_idx); 284 } 285 } 286 break; 287 case Breakpoint::Regexp: 288 if (context.module_sp) { 289 context.module_sp->FindFunctions( 290 m_regex, 291 !filter_by_cu, // include symbols only if we aren't filtering by CU 292 include_inlines, append, func_list); 293 } 294 break; 295 case Breakpoint::Glob: 296 if (log) 297 log->Warning("glob is not supported yet."); 298 break; 299 } 300 301 // If the filter specifies a Compilation Unit, remove the ones that don't 302 // pass at this point. 303 if (filter_by_cu || filter_by_language) { 304 uint32_t num_functions = func_list.GetSize(); 305 306 for (size_t idx = 0; idx < num_functions; idx++) { 307 bool remove_it = false; 308 SymbolContext sc; 309 func_list.GetContextAtIndex(idx, sc); 310 if (filter_by_cu) { 311 if (!sc.comp_unit || !filter.CompUnitPasses(*sc.comp_unit)) 312 remove_it = true; 313 } 314 315 if (filter_by_language) { 316 LanguageType sym_language = sc.GetLanguage(); 317 if ((Language::GetPrimaryLanguage(sym_language) != 318 Language::GetPrimaryLanguage(m_language)) && 319 (sym_language != eLanguageTypeUnknown)) { 320 remove_it = true; 321 } 322 } 323 324 if (remove_it) { 325 func_list.RemoveContextAtIndex(idx); 326 num_functions--; 327 idx--; 328 } 329 } 330 } 331 332 // Remove any duplicates between the function list and the symbol list 333 SymbolContext sc; 334 if (func_list.GetSize()) { 335 for (i = 0; i < func_list.GetSize(); i++) { 336 if (func_list.GetContextAtIndex(i, sc)) { 337 bool is_reexported = false; 338 339 if (sc.block && sc.block->GetInlinedFunctionInfo()) { 340 if (!sc.block->GetStartAddress(break_addr)) 341 break_addr.Clear(); 342 } else if (sc.function) { 343 break_addr = sc.function->GetAddressRange().GetBaseAddress(); 344 if (m_skip_prologue && break_addr.IsValid()) { 345 const uint32_t prologue_byte_size = 346 sc.function->GetPrologueByteSize(); 347 if (prologue_byte_size) 348 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size); 349 } 350 } else if (sc.symbol) { 351 if (sc.symbol->GetType() == eSymbolTypeReExported) { 352 const Symbol *actual_symbol = 353 sc.symbol->ResolveReExportedSymbol(m_breakpoint->GetTarget()); 354 if (actual_symbol) { 355 is_reexported = true; 356 break_addr = actual_symbol->GetAddress(); 357 } 358 } else { 359 break_addr = sc.symbol->GetAddress(); 360 } 361 362 if (m_skip_prologue && break_addr.IsValid()) { 363 const uint32_t prologue_byte_size = 364 sc.symbol->GetPrologueByteSize(); 365 if (prologue_byte_size) 366 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size); 367 else { 368 const Architecture *arch = 369 m_breakpoint->GetTarget().GetArchitecturePlugin(); 370 if (arch) 371 arch->AdjustBreakpointAddress(*sc.symbol, break_addr); 372 } 373 } 374 } 375 376 if (break_addr.IsValid()) { 377 if (filter.AddressPasses(break_addr)) { 378 BreakpointLocationSP bp_loc_sp( 379 AddLocation(break_addr, &new_location)); 380 bp_loc_sp->SetIsReExported(is_reexported); 381 if (bp_loc_sp && new_location && !m_breakpoint->IsInternal()) { 382 if (log) { 383 StreamString s; 384 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); 385 log->Printf("Added location: %s\n", s.GetData()); 386 } 387 } 388 } 389 } 390 } 391 } 392 } 393 394 return Searcher::eCallbackReturnContinue; 395 } 396 397 lldb::SearchDepth BreakpointResolverName::GetDepth() { 398 return lldb::eSearchDepthModule; 399 } 400 401 void BreakpointResolverName::GetDescription(Stream *s) { 402 if (m_match_type == Breakpoint::Regexp) 403 s->Printf("regex = '%s'", m_regex.GetText().str().c_str()); 404 else { 405 size_t num_names = m_lookups.size(); 406 if (num_names == 1) 407 s->Printf("name = '%s'", m_lookups[0].GetName().GetCString()); 408 else { 409 s->Printf("names = {"); 410 for (size_t i = 0; i < num_names; i++) { 411 s->Printf("%s'%s'", (i == 0 ? "" : ", "), 412 m_lookups[i].GetName().GetCString()); 413 } 414 s->Printf("}"); 415 } 416 } 417 if (m_language != eLanguageTypeUnknown) { 418 s->Printf(", language = %s", Language::GetNameForLanguageType(m_language)); 419 } 420 } 421 422 void BreakpointResolverName::Dump(Stream *s) const {} 423 424 lldb::BreakpointResolverSP 425 BreakpointResolverName::CopyForBreakpoint(Breakpoint &breakpoint) { 426 lldb::BreakpointResolverSP ret_sp(new BreakpointResolverName(*this)); 427 ret_sp->SetBreakpoint(&breakpoint); 428 return ret_sp; 429 } 430