blob: 0ca2792c17779e5a660f706d785923431217e6cf [file] [log] [blame]
Greg Clayton944b8282011-08-22 22:30:57 +00001//===-- DynamicLoaderDarwinKernel.cpp -----------------------------*- C++ -*-===//
Greg Clayton7b242382011-07-08 00:48:09 +00002//
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
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Greg Clayton7b242382011-07-08 00:48:09 +000012#include "lldb/Breakpoint/StoppointCallbackContext.h"
13#include "lldb/Core/DataBuffer.h"
14#include "lldb/Core/DataBufferHeap.h"
Greg Clayton07e66e32011-07-20 03:41:06 +000015#include "lldb/Core/Debugger.h"
Greg Clayton7b242382011-07-08 00:48:09 +000016#include "lldb/Core/Log.h"
17#include "lldb/Core/Module.h"
Greg Clayton1f746072012-08-29 21:13:06 +000018#include "lldb/Core/ModuleSpec.h"
Greg Clayton7b242382011-07-08 00:48:09 +000019#include "lldb/Core/PluginManager.h"
Greg Clayton1f746072012-08-29 21:13:06 +000020#include "lldb/Core/Section.h"
Greg Clayton7b242382011-07-08 00:48:09 +000021#include "lldb/Core/State.h"
Jason Molenda68b36072012-10-02 03:49:41 +000022#include "lldb/Host/Symbols.h"
Greg Clayton7b242382011-07-08 00:48:09 +000023#include "lldb/Symbol/ObjectFile.h"
Greg Clayton7b242382011-07-08 00:48:09 +000024#include "lldb/Target/RegisterContext.h"
Jason Molenda68b36072012-10-02 03:49:41 +000025#include "lldb/Target/StackFrame.h"
Greg Clayton7b242382011-07-08 00:48:09 +000026#include "lldb/Target/Target.h"
27#include "lldb/Target/Thread.h"
28#include "lldb/Target/ThreadPlanRunToAddress.h"
Jason Molenda68b36072012-10-02 03:49:41 +000029
Greg Clayton7b242382011-07-08 00:48:09 +000030
Greg Clayton944b8282011-08-22 22:30:57 +000031#include "DynamicLoaderDarwinKernel.h"
Greg Clayton7b242382011-07-08 00:48:09 +000032
33//#define ENABLE_DEBUG_PRINTF // COMMENT THIS LINE OUT PRIOR TO CHECKIN
34#ifdef ENABLE_DEBUG_PRINTF
35#include <stdio.h>
36#define DEBUG_PRINTF(fmt, ...) printf(fmt, ## __VA_ARGS__)
37#else
38#define DEBUG_PRINTF(fmt, ...)
39#endif
40
41using namespace lldb;
42using namespace lldb_private;
43
Jason Molenda6ba6d3d2013-01-30 04:39:32 +000044// Progressively greater amounts of scanning we will allow
45// For some targets very early in startup, we can't do any random reads of memory or we can crash the device
46// so a setting is needed that can completely disable the KASLR scans.
47
48enum KASLRScanType
49{
50 eKASLRScanNone = 0, // No reading into the inferior at all
51 eKASLRScanLowgloAddresses, // Check one word of memory for a possible kernel addr, then see if a kernel is there
Jason Molenda63969222013-01-30 04:48:16 +000052 eKASLRScanNearPC, // Scan backwards from the current $pc looking for kernel; checking at 96 locations total
Jason Molenda6ba6d3d2013-01-30 04:39:32 +000053 eKASLRScanExhaustiveScan // Scan through the entire possible kernel address range looking for a kernel
54};
55
56OptionEnumValueElement
57g_kaslr_kernel_scan_enum_values[] =
58{
59 { eKASLRScanNone, "none", "Do not read memory looking for a Darwin kernel when attaching." },
60 { eKASLRScanLowgloAddresses, "basic", "Check for the Darwin kernel's load addr in the lowglo page (boot-args=debug) only." },
61 { eKASLRScanNearPC, "fast-scan", "Scan near the pc value on attach to find the Darwin kernel's load address."},
62 { eKASLRScanExhaustiveScan, "exhaustive-scan", "Scan through the entire potential address range of Darwin kernel (only on 32-bit targets)."},
63 { 0, NULL, NULL }
64};
65
Greg Claytone8cd0c92012-10-19 18:02:49 +000066static PropertyDefinition
67g_properties[] =
68{
Greg Clayton66763ee2012-10-19 20:53:18 +000069 { "load-kexts" , OptionValue::eTypeBoolean, true, true, NULL, NULL, "Automatically loads kext images when attaching to a kernel." },
Jason Molenda6ba6d3d2013-01-30 04:39:32 +000070 { "scan-type", OptionValue::eTypeEnum, true, eKASLRScanNearPC, NULL, g_kaslr_kernel_scan_enum_values, "Control how many reads lldb will make while searching for a Darwin kernel on attach." },
Greg Clayton66763ee2012-10-19 20:53:18 +000071 { NULL , OptionValue::eTypeInvalid, false, 0 , NULL, NULL, NULL }
Greg Claytone8cd0c92012-10-19 18:02:49 +000072};
73
74enum {
Jason Molenda6ba6d3d2013-01-30 04:39:32 +000075 ePropertyLoadKexts,
76 ePropertyScanType
Greg Claytone8cd0c92012-10-19 18:02:49 +000077};
78
79class DynamicLoaderDarwinKernelProperties : public Properties
80{
81public:
82
83 static ConstString &
84 GetSettingName ()
85 {
Greg Clayton468ea4e2012-10-19 18:14:47 +000086 static ConstString g_setting_name("darwin-kernel");
Greg Claytone8cd0c92012-10-19 18:02:49 +000087 return g_setting_name;
88 }
89
90 DynamicLoaderDarwinKernelProperties() :
91 Properties ()
92 {
93 m_collection_sp.reset (new OptionValueProperties(GetSettingName()));
94 m_collection_sp->Initialize(g_properties);
95 }
96
97 virtual
98 ~DynamicLoaderDarwinKernelProperties()
99 {
100 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000101
Greg Claytone8cd0c92012-10-19 18:02:49 +0000102 bool
Greg Clayton66763ee2012-10-19 20:53:18 +0000103 GetLoadKexts() const
Greg Claytone8cd0c92012-10-19 18:02:49 +0000104 {
Greg Clayton66763ee2012-10-19 20:53:18 +0000105 const uint32_t idx = ePropertyLoadKexts;
Greg Claytone8cd0c92012-10-19 18:02:49 +0000106 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
107 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000108
109 KASLRScanType
110 GetScanType() const
111 {
112 const uint32_t idx = ePropertyScanType;
Jason Molenda63969222013-01-30 04:48:16 +0000113 return (KASLRScanType) m_collection_sp->GetPropertyAtIndexAsEnumeration (NULL, idx, g_properties[idx].default_uint_value);
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000114 }
115
116
Greg Claytone8cd0c92012-10-19 18:02:49 +0000117};
118
119typedef STD_SHARED_PTR(DynamicLoaderDarwinKernelProperties) DynamicLoaderDarwinKernelPropertiesSP;
120
121static const DynamicLoaderDarwinKernelPropertiesSP &
122GetGlobalProperties()
123{
124 static DynamicLoaderDarwinKernelPropertiesSP g_settings_sp;
125 if (!g_settings_sp)
126 g_settings_sp.reset (new DynamicLoaderDarwinKernelProperties ());
127 return g_settings_sp;
128}
129
Greg Clayton7b242382011-07-08 00:48:09 +0000130//----------------------------------------------------------------------
131// Create an instance of this class. This function is filled into
132// the plugin info class that gets handed out by the plugin factory and
133// allows the lldb to instantiate an instance of this class.
134//----------------------------------------------------------------------
135DynamicLoader *
Greg Clayton944b8282011-08-22 22:30:57 +0000136DynamicLoaderDarwinKernel::CreateInstance (Process* process, bool force)
Greg Clayton7b242382011-07-08 00:48:09 +0000137{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000138 if (!force)
Greg Clayton7b242382011-07-08 00:48:09 +0000139 {
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000140 // If the user provided an executable binary and it is not a kernel,
141 // this plugin should not create an instance.
Greg Claytonaa149cb2011-08-11 02:48:45 +0000142 Module* exe_module = process->GetTarget().GetExecutableModulePointer();
Greg Claytondf0b7d52011-07-08 04:11:42 +0000143 if (exe_module)
144 {
145 ObjectFile *object_file = exe_module->GetObjectFile();
146 if (object_file)
147 {
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000148 if (object_file->GetStrata() != ObjectFile::eStrataKernel)
149 {
150 return NULL;
151 }
Greg Claytondf0b7d52011-07-08 04:11:42 +0000152 }
153 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000154
155 // If the target's architecture does not look like an Apple environment,
156 // this plugin should not create an instance.
157 const llvm::Triple &triple_ref = process->GetTarget().GetArchitecture().GetTriple();
158 switch (triple_ref.getOS())
Greg Claytondf0b7d52011-07-08 04:11:42 +0000159 {
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000160 case llvm::Triple::Darwin:
161 case llvm::Triple::MacOSX:
162 case llvm::Triple::IOS:
163 if (triple_ref.getVendor() != llvm::Triple::Apple)
164 {
165 return NULL;
166 }
167 break;
168 // If we have triple like armv7-unknown-unknown, we should try looking for a Darwin kernel.
169 case llvm::Triple::UnknownOS:
170 break;
171 default:
172 return NULL;
173 break;
174 }
175 }
176
177 // At this point if there is an ExecutableModule, it is a kernel and the Target is some variant of an Apple system.
178 // If the Process hasn't provided the kernel load address, we need to look around in memory to find it.
179
180 addr_t kernel_load_address = process->GetImageInfoAddress();
181 if (kernel_load_address == LLDB_INVALID_ADDRESS)
182 {
183 kernel_load_address = SearchForKernelAtSameLoadAddr (process);
184 if (kernel_load_address == LLDB_INVALID_ADDRESS)
185 {
186 kernel_load_address = SearchForKernelWithDebugHints (process);
187 if (kernel_load_address == LLDB_INVALID_ADDRESS)
Greg Clayton70512312012-05-08 01:45:38 +0000188 {
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000189 kernel_load_address = SearchForKernelNearPC (process);
190 if (kernel_load_address == LLDB_INVALID_ADDRESS)
191 {
192 kernel_load_address = SearchForKernelViaExhaustiveSearch (process);
193 }
Greg Clayton70512312012-05-08 01:45:38 +0000194 }
Greg Claytondf0b7d52011-07-08 04:11:42 +0000195 }
Greg Clayton7b242382011-07-08 00:48:09 +0000196 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000197
198 if (kernel_load_address != LLDB_INVALID_ADDRESS)
Sean Callanan90539452011-09-20 23:01:51 +0000199 {
200 process->SetCanJIT(false);
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000201 return new DynamicLoaderDarwinKernel (process, kernel_load_address);
Sean Callanan90539452011-09-20 23:01:51 +0000202 }
Greg Clayton7b242382011-07-08 00:48:09 +0000203 return NULL;
204}
205
206//----------------------------------------------------------------------
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000207// Check if the kernel binary is loaded in memory without a slide.
208// First verify that the ExecutableModule is a kernel before we proceed.
209// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
210//----------------------------------------------------------------------
211lldb::addr_t
212DynamicLoaderDarwinKernel::SearchForKernelAtSameLoadAddr (Process *process)
213{
214 Module *exe_module = process->GetTarget().GetExecutableModulePointer();
215 if (exe_module == NULL)
216 return LLDB_INVALID_ADDRESS;
217
218 ObjectFile *exe_objfile = exe_module->GetObjectFile();
219 if (exe_objfile == NULL)
220 return LLDB_INVALID_ADDRESS;
221
222 if (exe_objfile->GetType() != ObjectFile::eTypeExecutable || exe_objfile->GetStrata() != ObjectFile::eStrataKernel)
223 return LLDB_INVALID_ADDRESS;
224
225 if (!exe_objfile->GetHeaderAddress().IsValid())
226 return LLDB_INVALID_ADDRESS;
227
228 if (CheckForKernelImageAtAddress (exe_objfile->GetHeaderAddress().GetFileAddress(), process) == exe_module->GetUUID())
229 return exe_objfile->GetHeaderAddress().GetFileAddress();
230
231 return LLDB_INVALID_ADDRESS;
232}
233
234//----------------------------------------------------------------------
235// If the debug flag is included in the boot-args nvram setting, the kernel's load address
236// will be noted in the lowglo page at a fixed address
237// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
238//----------------------------------------------------------------------
239lldb::addr_t
240DynamicLoaderDarwinKernel::SearchForKernelWithDebugHints (Process *process)
241{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000242 if (GetGlobalProperties()->GetScanType() == eKASLRScanNone)
243 return LLDB_INVALID_ADDRESS;
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000244
245 Error read_err;
246 addr_t addr = LLDB_INVALID_ADDRESS;
247 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
248 {
249 addr = process->ReadUnsignedIntegerFromMemory (0xffffff8000002010ULL, 8, LLDB_INVALID_ADDRESS, read_err);
250 }
251 else
252 {
253 addr = process->ReadUnsignedIntegerFromMemory (0xffff0110, 4, LLDB_INVALID_ADDRESS, read_err);
254 }
255
256 if (addr == 0)
257 addr = LLDB_INVALID_ADDRESS;
258
259 if (addr != LLDB_INVALID_ADDRESS)
260 {
261 if (CheckForKernelImageAtAddress (addr, process).IsValid())
262 return addr;
263 }
264
265 return LLDB_INVALID_ADDRESS;
266}
267
268//----------------------------------------------------------------------
269// If the kernel is currently executing when lldb attaches, and we don't have
270// a better way of finding the kernel's load address, try searching backwards
271// from the current pc value looking for the kernel's Mach header in memory.
272// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
273//----------------------------------------------------------------------
274lldb::addr_t
275DynamicLoaderDarwinKernel::SearchForKernelNearPC (Process *process)
276{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000277 if (GetGlobalProperties()->GetScanType() == eKASLRScanNone
278 || GetGlobalProperties()->GetScanType() == eKASLRScanLowgloAddresses)
279 {
280 return LLDB_INVALID_ADDRESS;
281 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000282
283 ThreadSP thread = process->GetThreadList().GetSelectedThread ();
284 if (thread.get() == NULL)
285 return LLDB_INVALID_ADDRESS;
286 addr_t pc = thread->GetRegisterContext ()->GetPC(LLDB_INVALID_ADDRESS);
287
288 if (pc == LLDB_INVALID_ADDRESS)
289 return LLDB_INVALID_ADDRESS;
290
291 addr_t kernel_range_low, kernel_range_high;
292 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
293 {
294 kernel_range_low = 1ULL << 63;
295 kernel_range_high = UINT64_MAX;
296 }
297 else
298 {
299 kernel_range_low = 1ULL << 31;
300 kernel_range_high = UINT32_MAX;
301 }
302
303 // Outside the normal kernel address range, this is probably userland code running right now
304 if (pc < kernel_range_low)
305 LLDB_INVALID_ADDRESS;
306
307 // The kernel will load at at one megabyte boundary (0x100000), or at that boundary plus
308 // an offset of one page (0x1000) or two, depending on the device.
309
310 // Round the current pc down to the nearest one megabyte boundary - the place where we will start searching.
311 addr_t addr = pc & ~0xfffff;
312
313 int i = 0;
314 while (i < 32 && pc >= kernel_range_low)
315 {
316 if (CheckForKernelImageAtAddress (addr, process).IsValid())
317 return addr;
318 if (CheckForKernelImageAtAddress (addr + 0x1000, process).IsValid())
319 return addr + 0x1000;
320 if (CheckForKernelImageAtAddress (addr + 0x2000, process).IsValid())
321 return addr + 0x2000;
322 i++;
323 addr -= 0x100000;
324 }
325
326 return LLDB_INVALID_ADDRESS;
327}
328
329//----------------------------------------------------------------------
330// Scan through the valid address range for a kernel binary.
331// This is uselessly slow in 64-bit environments so we don't even try it.
332// This scan is not enabled by default even for 32-bit targets.
333// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
334//----------------------------------------------------------------------
335lldb::addr_t
336DynamicLoaderDarwinKernel::SearchForKernelViaExhaustiveSearch (Process *process)
337{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000338 if (GetGlobalProperties()->GetScanType() != eKASLRScanExhaustiveScan)
339 {
340 return LLDB_INVALID_ADDRESS;
341 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000342
343 addr_t kernel_range_low, kernel_range_high;
344 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
345 {
346 kernel_range_low = 1ULL << 63;
347 kernel_range_high = UINT64_MAX;
348 }
349 else
350 {
351 kernel_range_low = 1ULL << 31;
352 kernel_range_high = UINT32_MAX;
353 }
354
355 // Stepping through memory at one-megabyte resolution looking for a kernel
356 // rarely works (fast enough) with a 64-bit address space -- for now, let's
357 // not even bother. We may be attaching to something which *isn't* a kernel
358 // and we don't want to spin for minutes on-end looking for a kernel.
359 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
360 return LLDB_INVALID_ADDRESS;
361
362 addr_t addr = kernel_range_low;
363
364 while (addr >= kernel_range_low && addr < kernel_range_high)
365 {
366 if (CheckForKernelImageAtAddress (addr, process).IsValid())
367 return addr;
368 if (CheckForKernelImageAtAddress (addr + 0x1000, process).IsValid())
369 return addr + 0x1000;
370 if (CheckForKernelImageAtAddress (addr + 0x2000, process).IsValid())
371 return addr + 0x2000;
372 addr += 0x100000;
373 }
374 return LLDB_INVALID_ADDRESS;
375}
376
377//----------------------------------------------------------------------
378// Given an address in memory, look to see if there is a kernel image at that
379// address.
380// Returns a UUID; if a kernel was not found at that address, UUID.IsValid() will be false.
381//----------------------------------------------------------------------
382lldb_private::UUID
383DynamicLoaderDarwinKernel::CheckForKernelImageAtAddress (lldb::addr_t addr, Process *process)
384{
385 if (addr == LLDB_INVALID_ADDRESS)
386 return UUID();
387
388 // First try a quick test -- read the first 4 bytes and see if there is a valid Mach-O magic field there
389 // (the first field of the mach_header/mach_header_64 struct).
390
391 Error read_error;
392 uint64_t result = process->ReadUnsignedIntegerFromMemory (addr, 4, LLDB_INVALID_ADDRESS, read_error);
393 if (result != llvm::MachO::HeaderMagic64
394 && result != llvm::MachO::HeaderMagic32
395 && result != llvm::MachO::HeaderMagic32Swapped
396 && result != llvm::MachO::HeaderMagic64Swapped)
397 {
398 return UUID();
399 }
400
401 // Read the mach header and see whether it looks like a kernel
402 llvm::MachO::mach_header header;
403 if (process->DoReadMemory (addr, &header, sizeof(header), read_error) != sizeof(header))
404 return UUID();
405
406 if (header.magic == llvm::MachO::HeaderMagic32Swapped ||
407 header.magic == llvm::MachO::HeaderMagic64Swapped)
408 {
409 header.magic = llvm::ByteSwap_32(header.magic);
410 header.cputype = llvm::ByteSwap_32(header.cputype);
411 header.cpusubtype = llvm::ByteSwap_32(header.cpusubtype);
412 header.filetype = llvm::ByteSwap_32(header.filetype);
413 header.ncmds = llvm::ByteSwap_32(header.ncmds);
414 header.sizeofcmds = llvm::ByteSwap_32(header.sizeofcmds);
415 header.flags = llvm::ByteSwap_32(header.flags);
416 }
417
418 // A kernel is an executable which does not have the dynamic link object flag set.
419 if (header.filetype == llvm::MachO::HeaderFileTypeExecutable
420 && (header.flags & llvm::MachO::HeaderFlagBitIsDynamicLinkObject) == 0)
421 {
422 // Create a full module to get the UUID
Greg Clayton39f7ee82013-02-01 21:38:35 +0000423 ModuleSP memory_module_sp = process->ReadModuleFromMemory (FileSpec ("temp_mach_kernel", false), addr);
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000424 if (!memory_module_sp.get())
425 return UUID();
426
427 ObjectFile *exe_objfile = memory_module_sp->GetObjectFile();
428 if (exe_objfile == NULL)
429 return UUID();
430
431 if (exe_objfile->GetType() == ObjectFile::eTypeExecutable && exe_objfile->GetStrata() == ObjectFile::eStrataKernel)
432 {
433 return memory_module_sp->GetUUID();
434 }
435 }
436
437 return UUID();
438}
439
440//----------------------------------------------------------------------
Greg Clayton7b242382011-07-08 00:48:09 +0000441// Constructor
442//----------------------------------------------------------------------
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000443DynamicLoaderDarwinKernel::DynamicLoaderDarwinKernel (Process* process, lldb::addr_t kernel_addr) :
Greg Clayton7b242382011-07-08 00:48:09 +0000444 DynamicLoader(process),
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000445 m_kernel_load_address (kernel_addr),
Greg Clayton7b242382011-07-08 00:48:09 +0000446 m_kernel(),
Greg Claytond16e1e52011-07-12 17:06:17 +0000447 m_kext_summary_header_ptr_addr (),
Greg Clayton0d9fc762011-07-08 03:21:57 +0000448 m_kext_summary_header_addr (),
Greg Clayton7b242382011-07-08 00:48:09 +0000449 m_kext_summary_header (),
Jason Molenda306bd0a2013-02-19 05:42:46 +0000450 m_known_kexts (),
Daniel Dunbara08823f2011-10-31 22:50:49 +0000451 m_mutex(Mutex::eMutexTypeRecursive),
452 m_break_id (LLDB_INVALID_BREAK_ID)
Greg Clayton7b242382011-07-08 00:48:09 +0000453{
454}
455
456//----------------------------------------------------------------------
457// Destructor
458//----------------------------------------------------------------------
Greg Clayton944b8282011-08-22 22:30:57 +0000459DynamicLoaderDarwinKernel::~DynamicLoaderDarwinKernel()
Greg Clayton7b242382011-07-08 00:48:09 +0000460{
461 Clear(true);
462}
463
Greg Clayton374972e2011-07-09 17:15:55 +0000464void
Greg Clayton944b8282011-08-22 22:30:57 +0000465DynamicLoaderDarwinKernel::UpdateIfNeeded()
Greg Clayton374972e2011-07-09 17:15:55 +0000466{
467 LoadKernelModuleIfNeeded();
468 SetNotificationBreakpointIfNeeded ();
469}
Greg Clayton7b242382011-07-08 00:48:09 +0000470//------------------------------------------------------------------
471/// Called after attaching a process.
472///
473/// Allow DynamicLoader plug-ins to execute some code after
474/// attaching to a process.
475//------------------------------------------------------------------
476void
Greg Clayton944b8282011-08-22 22:30:57 +0000477DynamicLoaderDarwinKernel::DidAttach ()
Greg Clayton7b242382011-07-08 00:48:09 +0000478{
479 PrivateInitialize(m_process);
Greg Clayton374972e2011-07-09 17:15:55 +0000480 UpdateIfNeeded();
Greg Clayton7b242382011-07-08 00:48:09 +0000481}
482
483//------------------------------------------------------------------
484/// Called after attaching a process.
485///
486/// Allow DynamicLoader plug-ins to execute some code after
487/// attaching to a process.
488//------------------------------------------------------------------
489void
Greg Clayton944b8282011-08-22 22:30:57 +0000490DynamicLoaderDarwinKernel::DidLaunch ()
Greg Clayton7b242382011-07-08 00:48:09 +0000491{
492 PrivateInitialize(m_process);
Greg Clayton374972e2011-07-09 17:15:55 +0000493 UpdateIfNeeded();
Greg Clayton7b242382011-07-08 00:48:09 +0000494}
495
496
497//----------------------------------------------------------------------
498// Clear out the state of this class.
499//----------------------------------------------------------------------
500void
Greg Clayton944b8282011-08-22 22:30:57 +0000501DynamicLoaderDarwinKernel::Clear (bool clear_process)
Greg Clayton7b242382011-07-08 00:48:09 +0000502{
503 Mutex::Locker locker(m_mutex);
504
505 if (m_process->IsAlive() && LLDB_BREAK_ID_IS_VALID(m_break_id))
506 m_process->ClearBreakpointSiteByID(m_break_id);
507
508 if (clear_process)
509 m_process = NULL;
Jason Molenda306bd0a2013-02-19 05:42:46 +0000510 m_kernel.Clear();
511 m_known_kexts.clear();
Greg Claytond16e1e52011-07-12 17:06:17 +0000512 m_kext_summary_header_ptr_addr.Clear();
Greg Clayton0d9fc762011-07-08 03:21:57 +0000513 m_kext_summary_header_addr.Clear();
Greg Clayton7b242382011-07-08 00:48:09 +0000514 m_break_id = LLDB_INVALID_BREAK_ID;
515}
516
Greg Clayton7b242382011-07-08 00:48:09 +0000517
Greg Claytonc859e2d2012-02-13 23:10:39 +0000518bool
Jason Molenda306bd0a2013-02-19 05:42:46 +0000519DynamicLoaderDarwinKernel::KextImageInfo::LoadImageAtFileAddress (Process *process)
Greg Clayton2af282a2012-03-21 04:25:00 +0000520{
521 if (IsLoaded())
522 return true;
523
Jason Molenda306bd0a2013-02-19 05:42:46 +0000524 if (m_module_sp)
Greg Clayton2af282a2012-03-21 04:25:00 +0000525 {
526 bool changed = false;
Jason Molenda306bd0a2013-02-19 05:42:46 +0000527 if (m_module_sp->SetLoadAddress (process->GetTarget(), 0, changed))
528 m_load_process_stop_id = process->GetStopID();
Greg Clayton2af282a2012-03-21 04:25:00 +0000529 }
530 return false;
531}
532
Jason Molenda306bd0a2013-02-19 05:42:46 +0000533void
534DynamicLoaderDarwinKernel::KextImageInfo::SetModule (ModuleSP module_sp)
535{
536 m_module_sp = module_sp;
537 if (module_sp.get() && module_sp->GetObjectFile())
538 {
539 if (module_sp->GetObjectFile()->GetType() == ObjectFile::eTypeExecutable
540 && module_sp->GetObjectFile()->GetStrata() == ObjectFile::eStrataKernel)
541 {
542 m_kernel_image = true;
543 }
544 else
545 {
546 m_kernel_image = false;
547 }
548 }
549}
550
551ModuleSP
552DynamicLoaderDarwinKernel::KextImageInfo::GetModule ()
553{
554 return m_module_sp;
555}
556
557void
558DynamicLoaderDarwinKernel::KextImageInfo::SetLoadAddress (addr_t load_addr)
559{
560 m_load_address = load_addr;
561}
562
563addr_t
564DynamicLoaderDarwinKernel::KextImageInfo::GetLoadAddress () const
565{
566 return m_load_address;
567}
568
569uint64_t
570DynamicLoaderDarwinKernel::KextImageInfo::GetSize () const
571{
572 return m_size;
573}
574
575void
576DynamicLoaderDarwinKernel::KextImageInfo::SetSize (uint64_t size)
577{
578 m_size = size;
579}
580
581uint32_t
582DynamicLoaderDarwinKernel::KextImageInfo::GetProcessStopId () const
583{
584 return m_load_process_stop_id;
585}
586
587void
588DynamicLoaderDarwinKernel::KextImageInfo::SetProcessStopId (uint32_t stop_id)
589{
590 m_load_process_stop_id = stop_id;
591}
592
Greg Clayton2af282a2012-03-21 04:25:00 +0000593bool
Jason Molenda306bd0a2013-02-19 05:42:46 +0000594DynamicLoaderDarwinKernel::KextImageInfo::operator== (const KextImageInfo &rhs)
595{
596 if (m_uuid.IsValid() || rhs.GetUUID().IsValid())
597 {
598 if (m_uuid == rhs.GetUUID())
599 {
600 return true;
601 }
602 return false;
603 }
604
605 if (m_name == rhs.GetName() && m_load_address == rhs.GetLoadAddress())
606 return true;
607
608 return false;
609}
610
611void
612DynamicLoaderDarwinKernel::KextImageInfo::SetName (const char *name)
613{
614 m_name = name;
615}
616
617std::string
618DynamicLoaderDarwinKernel::KextImageInfo::GetName () const
619{
620 return m_name;
621}
622
623void
624DynamicLoaderDarwinKernel::KextImageInfo::SetUUID (const UUID &uuid)
625{
626 m_uuid = uuid;
627}
628
629UUID
630DynamicLoaderDarwinKernel::KextImageInfo::GetUUID () const
631{
632 return m_uuid;
633}
634
635// Given the m_load_address from the kext summaries, and a UUID, try to create an in-memory
636// Module at that address. Require that the MemoryModule have a matching UUID and detect
637// if this MemoryModule is a kernel or a kext.
638//
639// Returns true if m_memory_module_sp is now set to a valid Module.
640
641bool
642DynamicLoaderDarwinKernel::KextImageInfo::ReadMemoryModule (Process *process)
643{
644 if (m_memory_module_sp.get() != NULL)
645 return true;
646 if (m_load_address == LLDB_INVALID_ADDRESS)
647 return false;
648
649 FileSpec file_spec;
650 file_spec.SetFile (m_name.c_str(), false);
651
652 ModuleSP memory_module_sp = process->ReadModuleFromMemory (file_spec, m_load_address);
653
654 if (memory_module_sp.get() == NULL)
655 return false;
656
657 bool is_kernel = false;
658 if (memory_module_sp->GetObjectFile())
659 {
660 if (memory_module_sp->GetObjectFile()->GetType() == ObjectFile::eTypeExecutable
661 && memory_module_sp->GetObjectFile()->GetStrata() == ObjectFile::eStrataKernel)
662 {
663 is_kernel = true;
664 }
665 else if (memory_module_sp->GetObjectFile()->GetType() == ObjectFile::eTypeSharedLibrary)
666 {
667 is_kernel = false;
668 }
669 }
670
671 // If the kernel specified what UUID we should find at this load address,
672 // require that the memory module have a matching UUID or something has gone
673 // wrong and we should discard it.
674 if (m_uuid.IsValid())
675 {
676 if (m_uuid != memory_module_sp->GetUUID())
677 {
678 return false;
679 }
680 }
681
682 // If the in-memory Module has a UUID, let's use that.
683 if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid())
684 {
685 m_uuid = memory_module_sp->GetUUID();
686 }
687
688 m_memory_module_sp = memory_module_sp;
689 m_kernel_image = is_kernel;
690 if (is_kernel)
691 {
692 if (memory_module_sp->GetArchitecture().IsValid())
693 {
694 process->GetTarget().SetArchitecture(memory_module_sp->GetArchitecture());
695 }
696 }
697
698 return true;
699}
700
701bool
702DynamicLoaderDarwinKernel::KextImageInfo::IsKernel () const
703{
704 return m_kernel_image == true;
705}
706
707void
708DynamicLoaderDarwinKernel::KextImageInfo::SetIsKernel (bool is_kernel)
709{
710 m_kernel_image = is_kernel;
711}
712
713bool
714DynamicLoaderDarwinKernel::KextImageInfo::LoadImageUsingMemoryModule (Process *process)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000715{
716 if (IsLoaded())
717 return true;
718
Greg Claytonc859e2d2012-02-13 23:10:39 +0000719
720 Target &target = process->GetTarget();
Jason Molenda87a04b22012-10-19 03:40:45 +0000721
Jason Molenda306bd0a2013-02-19 05:42:46 +0000722 // If we don't have / can't create a memory module for this kext, don't try to load it - we won't
723 // have the correct segment load addresses.
724 if (!ReadMemoryModule (process))
Jason Molenda87a04b22012-10-19 03:40:45 +0000725 {
726 return false;
727 }
728
Jason Molenda306bd0a2013-02-19 05:42:46 +0000729 // If this is a kext and the user asked us to ignore kexts, don't try to load it.
730 if (!IsKernel() && GetGlobalProperties()->GetLoadKexts() == false)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000731 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000732 return false;
Greg Claytonc859e2d2012-02-13 23:10:39 +0000733 }
734
Jason Molenda306bd0a2013-02-19 05:42:46 +0000735 bool uuid_is_valid = m_uuid.IsValid();
736
737 if (!m_module_sp)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000738 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000739 // See if the kext has already been loaded into the target, probably by the user doing target modules add.
740 const ModuleList &target_images = target.GetImages();
741 m_module_sp = target_images.FindModule(m_uuid);
742
743 // Search for the kext on the local filesystem via the UUID
744 if (!m_module_sp && uuid_is_valid)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000745 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000746 ModuleSpec module_spec;
747 module_spec.GetUUID() = m_uuid;
748 module_spec.GetArchitecture() = target.GetArchitecture();
Jason Molenda53667f52012-10-06 02:02:26 +0000749
Jason Molenda306bd0a2013-02-19 05:42:46 +0000750 // For the kernel, we really do need an on-disk file copy of the binary.
751 bool force_symbols_search = false;
752 if (IsKernel())
Greg Claytonb9a01b32012-02-26 05:51:37 +0000753 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000754 force_symbols_search = true;
755 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000756
Jason Molenda306bd0a2013-02-19 05:42:46 +0000757 if (Symbols::DownloadObjectAndSymbolFile (module_spec, force_symbols_search))
758 {
759 if (module_spec.GetFileSpec().Exists())
Jason Molendabb860bd2012-10-09 01:17:11 +0000760 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000761 m_module_sp.reset(new Module (module_spec.GetFileSpec(), target.GetArchitecture()));
762 if (m_module_sp.get() && m_module_sp->MatchesModuleSpec (module_spec))
Jason Molendabb860bd2012-10-09 01:17:11 +0000763 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000764 ModuleList loaded_module_list;
765 loaded_module_list.Append (m_module_sp);
766 target.ModulesDidLoad (loaded_module_list);
Jason Molendabb860bd2012-10-09 01:17:11 +0000767 }
768 }
Jason Molenda306bd0a2013-02-19 05:42:46 +0000769 }
770
771 // Failing that, ask the Target to find this file on the local system, if possible.
772 // This will search in the list of currently-loaded files, look in the
773 // standard search paths on the system, and on a Mac it will try calling
774 // the DebugSymbols framework with the UUID to find the binary via its
775 // search methods.
776 if (!m_module_sp)
777 {
778 m_module_sp = target.GetSharedModule (module_spec);
779 }
780 }
Jason Molenda65d57a32012-12-01 06:13:29 +0000781
Jason Molenda306bd0a2013-02-19 05:42:46 +0000782 // If we managed to find a module, append it to the target's list of images.
783 // If we also have a memory module, require that they have matching UUIDs
784 if (m_module_sp)
785 {
786 bool uuid_match_ok = true;
787 if (m_memory_module_sp)
788 {
789 if (m_module_sp->GetUUID() != m_memory_module_sp->GetUUID())
Jason Molenda65d57a32012-12-01 06:13:29 +0000790 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000791 uuid_match_ok = false;
792 }
793 }
794 if (uuid_match_ok)
795 {
796 target.GetImages().Append(m_module_sp);
797 if (IsKernel() && target.GetExecutableModulePointer() != m_module_sp.get())
798 {
799 target.SetExecutableModule (m_module_sp, false);
Jason Molenda65d57a32012-12-01 06:13:29 +0000800 }
Greg Claytonb9a01b32012-02-26 05:51:37 +0000801 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000802 }
803 }
804
805
Greg Clayton67408532012-12-11 01:20:51 +0000806 static ConstString g_section_name_LINKEDIT ("__LINKEDIT");
807
Jason Molenda306bd0a2013-02-19 05:42:46 +0000808 if (m_memory_module_sp && m_module_sp)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000809 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000810 if (m_module_sp->GetUUID() == m_memory_module_sp->GetUUID())
Greg Claytonc859e2d2012-02-13 23:10:39 +0000811 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000812 ObjectFile *ondisk_object_file = m_module_sp->GetObjectFile();
813 ObjectFile *memory_object_file = m_memory_module_sp->GetObjectFile();
Greg Clayton67408532012-12-11 01:20:51 +0000814
Jason Molendabb860bd2012-10-09 01:17:11 +0000815 if (memory_object_file && ondisk_object_file)
816 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000817 // The memory_module for kexts may have an invalid __LINKEDIT seg; skip it.
818 const bool ignore_linkedit = !IsKernel ();
Greg Clayton67408532012-12-11 01:20:51 +0000819
Jason Molendabb860bd2012-10-09 01:17:11 +0000820 SectionList *ondisk_section_list = ondisk_object_file->GetSectionList ();
821 SectionList *memory_section_list = memory_object_file->GetSectionList ();
822 if (memory_section_list && ondisk_section_list)
823 {
824 const uint32_t num_ondisk_sections = ondisk_section_list->GetSize();
825 // There may be CTF sections in the memory image so we can't
826 // always just compare the number of sections (which are actually
827 // segments in mach-o parlance)
828 uint32_t sect_idx = 0;
829
830 // Use the memory_module's addresses for each section to set the
831 // file module's load address as appropriate. We don't want to use
832 // a single slide value for the entire kext - different segments may
833 // be slid different amounts by the kext loader.
834
835 uint32_t num_sections_loaded = 0;
836 for (sect_idx=0; sect_idx<num_ondisk_sections; ++sect_idx)
837 {
838 SectionSP ondisk_section_sp(ondisk_section_list->GetSectionAtIndex(sect_idx));
839 if (ondisk_section_sp)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000840 {
Greg Clayton67408532012-12-11 01:20:51 +0000841 // Don't ever load __LINKEDIT as it may or may not be actually
842 // mapped into memory and there is no current way to tell.
843 // I filed rdar://problem/12851706 to track being able to tell
844 // if the __LINKEDIT is actually mapped, but until then, we need
845 // to not load the __LINKEDIT
846 if (ignore_linkedit && ondisk_section_sp->GetName() == g_section_name_LINKEDIT)
847 continue;
848
Jason Molendabb860bd2012-10-09 01:17:11 +0000849 const Section *memory_section = memory_section_list->FindSectionByName(ondisk_section_sp->GetName()).get();
850 if (memory_section)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000851 {
Jason Molendabb860bd2012-10-09 01:17:11 +0000852 target.GetSectionLoadList().SetSectionLoadAddress (ondisk_section_sp, memory_section->GetFileAddress());
853 ++num_sections_loaded;
Greg Claytonc859e2d2012-02-13 23:10:39 +0000854 }
855 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000856 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000857 if (num_sections_loaded > 0)
Jason Molenda306bd0a2013-02-19 05:42:46 +0000858 m_load_process_stop_id = process->GetStopID();
Greg Claytonc859e2d2012-02-13 23:10:39 +0000859 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000860 m_module_sp.reset(); // No sections were loaded
Greg Claytonc859e2d2012-02-13 23:10:39 +0000861 }
862 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000863 m_module_sp.reset(); // One or both section lists
Greg Claytonc859e2d2012-02-13 23:10:39 +0000864 }
865 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000866 m_module_sp.reset(); // One or both object files missing
Greg Claytonc859e2d2012-02-13 23:10:39 +0000867 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000868 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000869 m_module_sp.reset(); // UUID mismatch
Greg Claytonc859e2d2012-02-13 23:10:39 +0000870 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000871
Greg Claytonc859e2d2012-02-13 23:10:39 +0000872 bool is_loaded = IsLoaded();
873
Jason Molenda306bd0a2013-02-19 05:42:46 +0000874 if (is_loaded && m_module_sp && IsKernel())
Jason Molenda68b36072012-10-02 03:49:41 +0000875 {
876 Stream *s = &target.GetDebugger().GetOutputStream();
877 if (s)
878 {
879 char uuidbuf[64];
Jason Molenda306bd0a2013-02-19 05:42:46 +0000880 s->Printf ("Kernel UUID: %s\n", m_module_sp->GetUUID().GetAsCString(uuidbuf, sizeof (uuidbuf)));
881 s->Printf ("Load Address: 0x%" PRIx64 "\n", m_load_address);
882 if (m_module_sp->GetFileSpec().GetDirectory().IsEmpty())
Jason Molenda743e43962012-10-02 22:23:42 +0000883 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000884 s->Printf ("Loaded kernel file %s\n", m_module_sp->GetFileSpec().GetFilename().AsCString());
Jason Molenda743e43962012-10-02 22:23:42 +0000885 }
886 else
887 {
888 s->Printf ("Loaded kernel file %s/%s\n",
Jason Molenda306bd0a2013-02-19 05:42:46 +0000889 m_module_sp->GetFileSpec().GetDirectory().AsCString(),
890 m_module_sp->GetFileSpec().GetFilename().AsCString());
Jason Molenda743e43962012-10-02 22:23:42 +0000891 }
Jason Molenda68b36072012-10-02 03:49:41 +0000892 s->Flush ();
893 }
894 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000895 return is_loaded;
896}
897
Greg Clayton1f746072012-08-29 21:13:06 +0000898uint32_t
Jason Molenda306bd0a2013-02-19 05:42:46 +0000899DynamicLoaderDarwinKernel::KextImageInfo::GetAddressByteSize ()
Greg Clayton1f746072012-08-29 21:13:06 +0000900{
Jason Molenda306bd0a2013-02-19 05:42:46 +0000901 if (m_memory_module_sp)
902 return m_memory_module_sp->GetArchitecture().GetAddressByteSize();
903 if (m_module_sp)
904 return m_module_sp->GetArchitecture().GetAddressByteSize();
Greg Clayton1f746072012-08-29 21:13:06 +0000905 return 0;
906}
907
908lldb::ByteOrder
Jason Molenda306bd0a2013-02-19 05:42:46 +0000909DynamicLoaderDarwinKernel::KextImageInfo::GetByteOrder()
Greg Clayton1f746072012-08-29 21:13:06 +0000910{
Jason Molenda306bd0a2013-02-19 05:42:46 +0000911 if (m_memory_module_sp)
912 return m_memory_module_sp->GetArchitecture().GetByteOrder();
913 if (m_module_sp)
914 return m_module_sp->GetArchitecture().GetByteOrder();
Greg Clayton1f746072012-08-29 21:13:06 +0000915 return lldb::endian::InlHostByteOrder();
916}
917
918lldb_private::ArchSpec
Jason Molenda306bd0a2013-02-19 05:42:46 +0000919DynamicLoaderDarwinKernel::KextImageInfo::GetArchitecture () const
Greg Clayton1f746072012-08-29 21:13:06 +0000920{
Jason Molenda306bd0a2013-02-19 05:42:46 +0000921 if (m_memory_module_sp)
922 return m_memory_module_sp->GetArchitecture();
923 if (m_module_sp)
924 return m_module_sp->GetArchitecture();
Greg Clayton1f746072012-08-29 21:13:06 +0000925 return lldb_private::ArchSpec ();
926}
927
928
Greg Clayton7b242382011-07-08 00:48:09 +0000929//----------------------------------------------------------------------
930// Load the kernel module and initialize the "m_kernel" member. Return
931// true _only_ if the kernel is loaded the first time through (subsequent
932// calls to this function should return false after the kernel has been
933// already loaded).
934//----------------------------------------------------------------------
Greg Clayton374972e2011-07-09 17:15:55 +0000935void
Greg Clayton944b8282011-08-22 22:30:57 +0000936DynamicLoaderDarwinKernel::LoadKernelModuleIfNeeded()
Greg Clayton7b242382011-07-08 00:48:09 +0000937{
Greg Claytond16e1e52011-07-12 17:06:17 +0000938 if (!m_kext_summary_header_ptr_addr.IsValid())
Greg Clayton7b242382011-07-08 00:48:09 +0000939 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000940 m_kernel.Clear();
941 m_kernel.SetModule (m_process->GetTarget().GetExecutableModule());
942 m_kernel.SetIsKernel(true);
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000943
944 ConstString kernel_name("mach_kernel");
Jason Molenda306bd0a2013-02-19 05:42:46 +0000945 if (m_kernel.GetModule().get()
946 && m_kernel.GetModule()->GetObjectFile()
947 && !m_kernel.GetModule()->GetObjectFile()->GetFileSpec().GetFilename().IsEmpty())
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000948 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000949 kernel_name = m_kernel.GetModule()->GetObjectFile()->GetFileSpec().GetFilename();
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000950 }
Jason Molenda306bd0a2013-02-19 05:42:46 +0000951 m_kernel.SetName (kernel_name.AsCString());
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000952
Jason Molenda306bd0a2013-02-19 05:42:46 +0000953 if (m_kernel.GetLoadAddress() == LLDB_INVALID_ADDRESS)
Greg Clayton7b242382011-07-08 00:48:09 +0000954 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000955 m_kernel.SetLoadAddress(m_kernel_load_address);
956 if (m_kernel.GetLoadAddress() == LLDB_INVALID_ADDRESS && m_kernel.GetModule())
Greg Clayton7b242382011-07-08 00:48:09 +0000957 {
Greg Claytonc859e2d2012-02-13 23:10:39 +0000958 // We didn't get a hint from the process, so we will
959 // try the kernel at the address that it exists at in
960 // the file if we have one
Jason Molenda306bd0a2013-02-19 05:42:46 +0000961 ObjectFile *kernel_object_file = m_kernel.GetModule()->GetObjectFile();
Greg Claytonc859e2d2012-02-13 23:10:39 +0000962 if (kernel_object_file)
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000963 {
964 addr_t load_address = kernel_object_file->GetHeaderAddress().GetLoadAddress(&m_process->GetTarget());
965 addr_t file_address = kernel_object_file->GetHeaderAddress().GetFileAddress();
966 if (load_address != LLDB_INVALID_ADDRESS && load_address != 0)
967 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000968 m_kernel.SetLoadAddress (load_address);
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000969 if (load_address != file_address)
970 {
971 // Don't accidentally relocate the kernel to the File address --
972 // the Load address has already been set to its actual in-memory address.
973 // Mark it as IsLoaded.
Jason Molenda306bd0a2013-02-19 05:42:46 +0000974 m_kernel.SetProcessStopId (m_process->GetStopID());
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000975 }
976 }
977 else
978 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000979 m_kernel.SetLoadAddress(file_address);
Jason Molenda4bd4e7e2012-09-29 04:02:01 +0000980 }
981 }
Greg Clayton7b242382011-07-08 00:48:09 +0000982 }
983 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000984
Jason Molenda306bd0a2013-02-19 05:42:46 +0000985 if (m_kernel.GetLoadAddress() != LLDB_INVALID_ADDRESS)
Greg Clayton2af282a2012-03-21 04:25:00 +0000986 {
987 if (!m_kernel.LoadImageUsingMemoryModule (m_process))
988 {
989 m_kernel.LoadImageAtFileAddress (m_process);
990 }
991 }
Greg Clayton7b242382011-07-08 00:48:09 +0000992
Jason Molenda306bd0a2013-02-19 05:42:46 +0000993 if (m_kernel.IsLoaded() && m_kernel.GetModule())
Greg Clayton7b242382011-07-08 00:48:09 +0000994 {
Greg Claytonc859e2d2012-02-13 23:10:39 +0000995 static ConstString kext_summary_symbol ("gLoadedKextSummaries");
Jason Molenda306bd0a2013-02-19 05:42:46 +0000996 const Symbol *symbol = m_kernel.GetModule()->FindFirstSymbolWithNameAndType (kext_summary_symbol, eSymbolTypeData);
Greg Claytonc859e2d2012-02-13 23:10:39 +0000997 if (symbol)
998 {
Greg Claytone7612132012-03-07 21:03:09 +0000999 m_kext_summary_header_ptr_addr = symbol->GetAddress();
Greg Claytonc859e2d2012-02-13 23:10:39 +00001000 // Update all image infos
1001 ReadAllKextSummaries ();
1002 }
Greg Clayton7b242382011-07-08 00:48:09 +00001003 }
1004 else
Greg Clayton7b242382011-07-08 00:48:09 +00001005 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001006 m_kernel.Clear();
Greg Clayton7b242382011-07-08 00:48:09 +00001007 }
1008 }
Greg Clayton7b242382011-07-08 00:48:09 +00001009}
1010
Greg Clayton7b242382011-07-08 00:48:09 +00001011//----------------------------------------------------------------------
1012// Static callback function that gets called when our DYLD notification
1013// breakpoint gets hit. We update all of our image infos and then
1014// let our super class DynamicLoader class decide if we should stop
1015// or not (based on global preference).
1016//----------------------------------------------------------------------
1017bool
Greg Clayton944b8282011-08-22 22:30:57 +00001018DynamicLoaderDarwinKernel::BreakpointHitCallback (void *baton,
Greg Clayton374972e2011-07-09 17:15:55 +00001019 StoppointCallbackContext *context,
1020 user_id_t break_id,
1021 user_id_t break_loc_id)
Greg Clayton0d9fc762011-07-08 03:21:57 +00001022{
Greg Clayton944b8282011-08-22 22:30:57 +00001023 return static_cast<DynamicLoaderDarwinKernel*>(baton)->BreakpointHit (context, break_id, break_loc_id);
Greg Clayton7b242382011-07-08 00:48:09 +00001024}
1025
1026bool
Greg Clayton944b8282011-08-22 22:30:57 +00001027DynamicLoaderDarwinKernel::BreakpointHit (StoppointCallbackContext *context,
Greg Clayton374972e2011-07-09 17:15:55 +00001028 user_id_t break_id,
1029 user_id_t break_loc_id)
1030{
Greg Claytond16e1e52011-07-12 17:06:17 +00001031 LogSP log(GetLogIfAnyCategoriesSet (LIBLLDB_LOG_DYNAMIC_LOADER));
1032 if (log)
Greg Clayton944b8282011-08-22 22:30:57 +00001033 log->Printf ("DynamicLoaderDarwinKernel::BreakpointHit (...)\n");
Greg Claytond16e1e52011-07-12 17:06:17 +00001034
Greg Clayton374972e2011-07-09 17:15:55 +00001035 ReadAllKextSummaries ();
Greg Claytond16e1e52011-07-12 17:06:17 +00001036
1037 if (log)
1038 PutToLog(log.get());
1039
Greg Clayton374972e2011-07-09 17:15:55 +00001040 return GetStopWhenImagesChange();
1041}
1042
1043
1044bool
Greg Clayton944b8282011-08-22 22:30:57 +00001045DynamicLoaderDarwinKernel::ReadKextSummaryHeader ()
Greg Clayton7b242382011-07-08 00:48:09 +00001046{
1047 Mutex::Locker locker(m_mutex);
1048
1049 // the all image infos is already valid for this process stop ID
Greg Clayton7b242382011-07-08 00:48:09 +00001050
Greg Claytond16e1e52011-07-12 17:06:17 +00001051 if (m_kext_summary_header_ptr_addr.IsValid())
Greg Clayton7b242382011-07-08 00:48:09 +00001052 {
1053 const uint32_t addr_size = m_kernel.GetAddressByteSize ();
1054 const ByteOrder byte_order = m_kernel.GetByteOrder();
1055 Error error;
1056 // Read enough bytes for a "OSKextLoadedKextSummaryHeader" structure
1057 // which is currenty 4 uint32_t and a pointer.
1058 uint8_t buf[24];
1059 DataExtractor data (buf, sizeof(buf), byte_order, addr_size);
1060 const size_t count = 4 * sizeof(uint32_t) + addr_size;
Greg Clayton0d9fc762011-07-08 03:21:57 +00001061 const bool prefer_file_cache = false;
Greg Claytond16e1e52011-07-12 17:06:17 +00001062 if (m_process->GetTarget().ReadPointerFromMemory (m_kext_summary_header_ptr_addr,
1063 prefer_file_cache,
1064 error,
1065 m_kext_summary_header_addr))
Greg Clayton7b242382011-07-08 00:48:09 +00001066 {
Greg Claytond16e1e52011-07-12 17:06:17 +00001067 // We got a valid address for our kext summary header and make sure it isn't NULL
1068 if (m_kext_summary_header_addr.IsValid() &&
1069 m_kext_summary_header_addr.GetFileAddress() != 0)
1070 {
1071 const size_t bytes_read = m_process->GetTarget().ReadMemory (m_kext_summary_header_addr, prefer_file_cache, buf, count, error);
1072 if (bytes_read == count)
1073 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001074 lldb::offset_t offset = 0;
Greg Claytona63d08c2011-07-19 03:57:15 +00001075 m_kext_summary_header.version = data.GetU32(&offset);
1076 if (m_kext_summary_header.version >= 2)
1077 {
1078 m_kext_summary_header.entry_size = data.GetU32(&offset);
1079 }
1080 else
1081 {
1082 // Versions less than 2 didn't have an entry size, it was hard coded
1083 m_kext_summary_header.entry_size = KERNEL_MODULE_ENTRY_SIZE_VERSION_1;
1084 }
1085 m_kext_summary_header.entry_count = data.GetU32(&offset);
Greg Claytond16e1e52011-07-12 17:06:17 +00001086 return true;
1087 }
1088 }
Greg Clayton7b242382011-07-08 00:48:09 +00001089 }
1090 }
Greg Claytond16e1e52011-07-12 17:06:17 +00001091 m_kext_summary_header_addr.Clear();
Greg Clayton7b242382011-07-08 00:48:09 +00001092 return false;
1093}
1094
Jason Molenda306bd0a2013-02-19 05:42:46 +00001095// We've either (a) just attached to a new kernel, or (b) the kexts-changed breakpoint was hit
1096// and we need to figure out what kexts have been added or removed.
1097// Read the kext summaries from the inferior kernel memory, compare them against the
1098// m_known_kexts vector and update the m_known_kexts vector as needed to keep in sync with the
1099// inferior.
Greg Clayton7b242382011-07-08 00:48:09 +00001100
1101bool
Jason Molenda306bd0a2013-02-19 05:42:46 +00001102DynamicLoaderDarwinKernel::ParseKextSummaries (const Address &kext_summary_addr, uint32_t count)
Greg Clayton7b242382011-07-08 00:48:09 +00001103{
Jason Molenda306bd0a2013-02-19 05:42:46 +00001104 KextImageInfo::collection kext_summaries;
Greg Clayton374972e2011-07-09 17:15:55 +00001105 LogSP log(GetLogIfAnyCategoriesSet (LIBLLDB_LOG_DYNAMIC_LOADER));
Greg Clayton7b242382011-07-08 00:48:09 +00001106 if (log)
Jason Molenda306bd0a2013-02-19 05:42:46 +00001107 log->Printf ("Kexts-changed breakpoint hit, there are %d kexts currently.\n", count);
Greg Clayton7b242382011-07-08 00:48:09 +00001108
1109 Mutex::Locker locker(m_mutex);
Greg Clayton7b242382011-07-08 00:48:09 +00001110
1111 if (!ReadKextSummaries (kext_summary_addr, count, kext_summaries))
1112 return false;
1113
Jason Molenda306bd0a2013-02-19 05:42:46 +00001114 // By default, all kexts we've loaded in the past are marked as "remove" and all of the kexts
1115 // we just found out about from ReadKextSummaries are marked as "add".
1116 std::vector<bool> to_be_removed(m_known_kexts.size(), true);
1117 std::vector<bool> to_be_added(count, true);
1118
1119 int number_of_new_kexts_being_added = 0;
1120 int number_of_old_kexts_being_removed = m_known_kexts.size();
1121
1122 const uint32_t new_kexts_size = kext_summaries.size();
1123 const uint32_t old_kexts_size = m_known_kexts.size();
1124
1125 // The m_known_kexts vector may have entries that have been Cleared,
1126 // or are a kernel.
1127 for (uint32_t old_kext = 0; old_kext < old_kexts_size; old_kext++)
1128 {
1129 bool ignore = false;
1130 KextImageInfo &image_info = m_known_kexts[old_kext];
1131 if (image_info.IsKernel())
1132 {
1133 ignore = true;
1134 }
1135 else if (image_info.GetLoadAddress() == LLDB_INVALID_ADDRESS && !image_info.GetModule())
1136 {
1137 ignore = true;
1138 }
1139
1140 if (ignore)
1141 {
1142 number_of_old_kexts_being_removed--;
1143 to_be_removed[old_kext] = false;
1144 }
1145 }
1146
1147 // Scan over the list of kexts we just read from the kernel, note those that
1148 // need to be added and those already loaded.
1149 for (uint32_t new_kext = 0; new_kext < new_kexts_size; new_kext++)
1150 {
1151 bool add_this_one = true;
1152 for (uint32_t old_kext = 0; old_kext < old_kexts_size; old_kext++)
1153 {
1154 if (m_known_kexts[old_kext] == kext_summaries[new_kext])
1155 {
1156 // We already have this kext, don't re-load it.
1157 to_be_added[new_kext] = false;
1158 // This kext is still present, do not remove it.
1159 to_be_removed[old_kext] = false;
1160
1161 number_of_old_kexts_being_removed--;
1162 add_this_one = false;
1163 break;
1164 }
1165 }
1166 if (add_this_one)
1167 {
1168 number_of_new_kexts_being_added++;
1169 }
1170 }
1171
1172 if (number_of_new_kexts_being_added == 0 && number_of_old_kexts_being_removed == 0)
1173 return true;
1174
Greg Clayton07e66e32011-07-20 03:41:06 +00001175 Stream *s = &m_process->GetTarget().GetDebugger().GetOutputStream();
Jason Molenda68b36072012-10-02 03:49:41 +00001176 if (s)
Greg Clayton7b242382011-07-08 00:48:09 +00001177 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001178 if (number_of_new_kexts_being_added > 0 && number_of_old_kexts_being_removed > 0)
1179 {
1180 s->Printf ("Loading %d kext modules and unloading %d kext modules ", number_of_new_kexts_being_added, number_of_old_kexts_being_removed);
1181 }
1182 else if (number_of_new_kexts_being_added > 0)
1183 {
1184 s->Printf ("Loading %d kext modules ", number_of_new_kexts_being_added);
1185 }
1186 else if (number_of_old_kexts_being_removed > 0)
1187 {
1188 s->Printf ("Unloading %d kext modules ", number_of_old_kexts_being_removed);
1189 }
Greg Clayton7b242382011-07-08 00:48:09 +00001190 }
Jason Molenda306bd0a2013-02-19 05:42:46 +00001191
1192 if (log)
1193 log->Printf ("DynamicLoaderDarwinKernel::ParseKextSummaries: %d kexts added, %d kexts removed", number_of_new_kexts_being_added, number_of_old_kexts_being_removed);
1194
1195 if (number_of_new_kexts_being_added > 0)
1196 {
1197 ModuleList loaded_module_list;
1198
1199 const uint32_t num_of_new_kexts = kext_summaries.size();
1200 for (uint32_t new_kext = 0; new_kext < num_of_new_kexts; new_kext++)
1201 {
1202 if (to_be_added[new_kext] == true)
1203 {
1204 KextImageInfo &image_info = kext_summaries[new_kext];
1205 if (!image_info.LoadImageUsingMemoryModule (m_process))
1206 image_info.LoadImageAtFileAddress (m_process);
1207
1208 m_known_kexts.push_back(image_info);
1209
1210 if (image_info.GetModule() && m_process->GetStopID() == image_info.GetProcessStopId())
1211 loaded_module_list.AppendIfNeeded (image_info.GetModule());
1212
1213 if (s)
1214 s->Printf (".");
1215
1216 if (log)
1217 kext_summaries[new_kext].PutToLog (log.get());
1218 }
1219 }
1220 m_process->GetTarget().ModulesDidLoad (loaded_module_list);
1221 }
1222
1223 if (number_of_old_kexts_being_removed > 0)
1224 {
1225 ModuleList loaded_module_list;
1226 const uint32_t num_of_old_kexts = m_known_kexts.size();
1227 for (uint32_t old_kext = 0; old_kext < num_of_old_kexts; old_kext++)
1228 {
1229 ModuleList unloaded_module_list;
1230 if (to_be_removed[old_kext])
1231 {
1232 KextImageInfo &image_info = m_known_kexts[old_kext];
1233 // You can't unload the kernel.
1234 if (!image_info.IsKernel())
1235 {
1236 if (image_info.GetModule())
1237 {
1238 unloaded_module_list.AppendIfNeeded (image_info.GetModule());
1239 }
1240 if (s)
1241 s->Printf (".");
1242 image_info.Clear();
1243 // should pull it out of the KextImageInfos vector but that would mutate the list and invalidate
1244 // the to_be_removed bool vector; leaving it in place once Cleared() is relatively harmless.
1245 }
1246 }
1247 m_process->GetTarget().ModulesDidUnload (unloaded_module_list);
1248 }
1249 }
1250
Jason Molenda68b36072012-10-02 03:49:41 +00001251 if (s)
1252 {
1253 s->Printf (" done.\n");
1254 s->Flush ();
1255 }
1256
Jason Molenda306bd0a2013-02-19 05:42:46 +00001257 return true;
Greg Clayton7b242382011-07-08 00:48:09 +00001258}
1259
Jason Molenda306bd0a2013-02-19 05:42:46 +00001260// Adds the modules in image_infos to m_known_kexts.
Greg Clayton7b242382011-07-08 00:48:09 +00001261
1262bool
Jason Molenda306bd0a2013-02-19 05:42:46 +00001263DynamicLoaderDarwinKernel::AddModulesUsingImageInfos (KextImageInfo::collection &image_infos)
Greg Clayton7b242382011-07-08 00:48:09 +00001264{
1265 // Now add these images to the main list.
1266 ModuleList loaded_module_list;
Greg Clayton7b242382011-07-08 00:48:09 +00001267
1268 for (uint32_t idx = 0; idx < image_infos.size(); ++idx)
1269 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001270 KextImageInfo &image_info = image_infos[idx];
1271 m_known_kexts.push_back(image_info);
Greg Clayton7b242382011-07-08 00:48:09 +00001272
Jason Molenda306bd0a2013-02-19 05:42:46 +00001273 if (image_info.GetModule() && m_process->GetStopID() == image_info.GetProcessStopId())
1274 loaded_module_list.AppendIfNeeded (image_infos[idx].GetModule());
Greg Clayton7b242382011-07-08 00:48:09 +00001275 }
1276
Enrico Granata17598482012-11-08 02:22:02 +00001277 m_process->GetTarget().ModulesDidLoad (loaded_module_list);
Greg Clayton7b242382011-07-08 00:48:09 +00001278 return true;
1279}
1280
Greg Clayton7b242382011-07-08 00:48:09 +00001281
1282uint32_t
Greg Clayton944b8282011-08-22 22:30:57 +00001283DynamicLoaderDarwinKernel::ReadKextSummaries (const Address &kext_summary_addr,
Greg Clayton7b242382011-07-08 00:48:09 +00001284 uint32_t image_infos_count,
Jason Molenda306bd0a2013-02-19 05:42:46 +00001285 KextImageInfo::collection &image_infos)
Greg Clayton7b242382011-07-08 00:48:09 +00001286{
1287 const ByteOrder endian = m_kernel.GetByteOrder();
1288 const uint32_t addr_size = m_kernel.GetAddressByteSize();
1289
1290 image_infos.resize(image_infos_count);
1291 const size_t count = image_infos.size() * m_kext_summary_header.entry_size;
1292 DataBufferHeap data(count, 0);
1293 Error error;
Greg Clayton5b882162011-07-21 01:12:01 +00001294
Greg Clayton0d9fc762011-07-08 03:21:57 +00001295 const bool prefer_file_cache = false;
1296 const size_t bytes_read = m_process->GetTarget().ReadMemory (kext_summary_addr,
1297 prefer_file_cache,
1298 data.GetBytes(),
1299 data.GetByteSize(),
1300 error);
Greg Clayton7b242382011-07-08 00:48:09 +00001301 if (bytes_read == count)
1302 {
Greg Claytona63d08c2011-07-19 03:57:15 +00001303
Greg Clayton7b242382011-07-08 00:48:09 +00001304 DataExtractor extractor (data.GetBytes(), data.GetByteSize(), endian, addr_size);
1305 uint32_t i=0;
Greg Claytona63d08c2011-07-19 03:57:15 +00001306 for (uint32_t kext_summary_offset = 0;
1307 i < image_infos.size() && extractor.ValidOffsetForDataOfSize(kext_summary_offset, m_kext_summary_header.entry_size);
1308 ++i, kext_summary_offset += m_kext_summary_header.entry_size)
Greg Clayton7b242382011-07-08 00:48:09 +00001309 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001310 lldb::offset_t offset = kext_summary_offset;
Greg Clayton7b242382011-07-08 00:48:09 +00001311 const void *name_data = extractor.GetData(&offset, KERNEL_MODULE_MAX_NAME);
1312 if (name_data == NULL)
1313 break;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001314 image_infos[i].SetName ((const char *) name_data);
1315 UUID uuid (extractor.GetData (&offset, 16), 16);
1316 image_infos[i].SetUUID (uuid);
1317 image_infos[i].SetLoadAddress (extractor.GetU64(&offset));
1318 image_infos[i].SetSize (extractor.GetU64(&offset));
Greg Clayton7b242382011-07-08 00:48:09 +00001319 }
1320 if (i < image_infos.size())
1321 image_infos.resize(i);
1322 }
1323 else
1324 {
1325 image_infos.clear();
1326 }
1327 return image_infos.size();
1328}
1329
1330bool
Greg Clayton944b8282011-08-22 22:30:57 +00001331DynamicLoaderDarwinKernel::ReadAllKextSummaries ()
Greg Clayton7b242382011-07-08 00:48:09 +00001332{
Greg Clayton374972e2011-07-09 17:15:55 +00001333 LogSP log(GetLogIfAnyCategoriesSet (LIBLLDB_LOG_DYNAMIC_LOADER));
Greg Clayton7b242382011-07-08 00:48:09 +00001334
1335 Mutex::Locker locker(m_mutex);
Greg Clayton374972e2011-07-09 17:15:55 +00001336
Greg Clayton7b242382011-07-08 00:48:09 +00001337 if (ReadKextSummaryHeader ())
1338 {
Greg Clayton374972e2011-07-09 17:15:55 +00001339 if (m_kext_summary_header.entry_count > 0 && m_kext_summary_header_addr.IsValid())
Greg Clayton7b242382011-07-08 00:48:09 +00001340 {
Greg Clayton0d9fc762011-07-08 03:21:57 +00001341 Address summary_addr (m_kext_summary_header_addr);
Greg Claytona63d08c2011-07-19 03:57:15 +00001342 summary_addr.Slide(m_kext_summary_header.GetSize());
Greg Clayton0d9fc762011-07-08 03:21:57 +00001343 if (!ParseKextSummaries (summary_addr, m_kext_summary_header.entry_count))
Greg Clayton7b242382011-07-08 00:48:09 +00001344 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001345 m_known_kexts.clear();
Greg Clayton7b242382011-07-08 00:48:09 +00001346 }
1347 return true;
1348 }
1349 }
1350 return false;
1351}
1352
1353//----------------------------------------------------------------------
Greg Clayton7b242382011-07-08 00:48:09 +00001354// Dump an image info structure to the file handle provided.
1355//----------------------------------------------------------------------
1356void
Jason Molenda306bd0a2013-02-19 05:42:46 +00001357DynamicLoaderDarwinKernel::KextImageInfo::PutToLog (Log *log) const
Greg Clayton7b242382011-07-08 00:48:09 +00001358{
1359 if (log == NULL)
1360 return;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001361 const uint8_t *u = (uint8_t *) m_uuid.GetBytes();
Greg Clayton7b242382011-07-08 00:48:09 +00001362
Jason Molenda306bd0a2013-02-19 05:42:46 +00001363 if (m_load_address == LLDB_INVALID_ADDRESS)
Greg Clayton7b242382011-07-08 00:48:09 +00001364 {
1365 if (u)
1366 {
Greg Claytona63d08c2011-07-19 03:57:15 +00001367 log->Printf("\tuuid=%2.2X%2.2X%2.2X%2.2X-%2.2X%2.2X-%2.2X%2.2X-%2.2X%2.2X-%2.2X%2.2X%2.2X%2.2X%2.2X%2.2X name=\"%s\" (UNLOADED)",
Greg Clayton7b242382011-07-08 00:48:09 +00001368 u[ 0], u[ 1], u[ 2], u[ 3],
1369 u[ 4], u[ 5], u[ 6], u[ 7],
1370 u[ 8], u[ 9], u[10], u[11],
1371 u[12], u[13], u[14], u[15],
Jason Molenda306bd0a2013-02-19 05:42:46 +00001372 m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001373 }
1374 else
Jason Molenda306bd0a2013-02-19 05:42:46 +00001375 log->Printf("\tname=\"%s\" (UNLOADED)", m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001376 }
1377 else
1378 {
1379 if (u)
1380 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001381 log->Printf("\taddr=0x%16.16" PRIx64 " size=0x%16.16" PRIx64 " uuid=%2.2X%2.2X%2.2X%2.2X-%2.2X%2.2X-%2.2X%2.2X-%2.2X%2.2X-%2.2X%2.2X%2.2X%2.2X%2.2X%2.2X name=\"%s\"",
1382 m_load_address, m_size,
Greg Claytona63d08c2011-07-19 03:57:15 +00001383 u[ 0], u[ 1], u[ 2], u[ 3], u[ 4], u[ 5], u[ 6], u[ 7],
1384 u[ 8], u[ 9], u[10], u[11], u[12], u[13], u[14], u[15],
Jason Molenda306bd0a2013-02-19 05:42:46 +00001385 m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001386 }
1387 else
1388 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001389 log->Printf("\t[0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ") name=\"%s\"",
1390 m_load_address, m_load_address+m_size, m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001391 }
Greg Clayton7b242382011-07-08 00:48:09 +00001392 }
1393}
1394
1395//----------------------------------------------------------------------
1396// Dump the _dyld_all_image_infos members and all current image infos
1397// that we have parsed to the file handle provided.
1398//----------------------------------------------------------------------
1399void
Greg Clayton944b8282011-08-22 22:30:57 +00001400DynamicLoaderDarwinKernel::PutToLog(Log *log) const
Greg Clayton7b242382011-07-08 00:48:09 +00001401{
1402 if (log == NULL)
1403 return;
1404
1405 Mutex::Locker locker(m_mutex);
Daniel Malead01b2952012-11-29 21:49:15 +00001406 log->Printf("gLoadedKextSummaries = 0x%16.16" PRIx64 " { version=%u, entry_size=%u, entry_count=%u }",
Greg Clayton0d9fc762011-07-08 03:21:57 +00001407 m_kext_summary_header_addr.GetFileAddress(),
Greg Clayton7b242382011-07-08 00:48:09 +00001408 m_kext_summary_header.version,
1409 m_kext_summary_header.entry_size,
Greg Claytona63d08c2011-07-19 03:57:15 +00001410 m_kext_summary_header.entry_count);
Greg Clayton7b242382011-07-08 00:48:09 +00001411
1412 size_t i;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001413 const size_t count = m_known_kexts.size();
Greg Clayton7b242382011-07-08 00:48:09 +00001414 if (count > 0)
1415 {
1416 log->PutCString("Loaded:");
1417 for (i = 0; i<count; i++)
Jason Molenda306bd0a2013-02-19 05:42:46 +00001418 m_known_kexts[i].PutToLog(log);
Greg Clayton7b242382011-07-08 00:48:09 +00001419 }
1420}
1421
1422void
Greg Clayton944b8282011-08-22 22:30:57 +00001423DynamicLoaderDarwinKernel::PrivateInitialize(Process *process)
Greg Clayton7b242382011-07-08 00:48:09 +00001424{
Greg Clayton944b8282011-08-22 22:30:57 +00001425 DEBUG_PRINTF("DynamicLoaderDarwinKernel::%s() process state = %s\n", __FUNCTION__, StateAsCString(m_process->GetState()));
Greg Clayton7b242382011-07-08 00:48:09 +00001426 Clear(true);
1427 m_process = process;
Greg Clayton7b242382011-07-08 00:48:09 +00001428}
1429
Greg Clayton374972e2011-07-09 17:15:55 +00001430void
Greg Clayton944b8282011-08-22 22:30:57 +00001431DynamicLoaderDarwinKernel::SetNotificationBreakpointIfNeeded ()
Greg Clayton7b242382011-07-08 00:48:09 +00001432{
Jason Molenda306bd0a2013-02-19 05:42:46 +00001433 if (m_break_id == LLDB_INVALID_BREAK_ID && m_kernel.GetModule())
Greg Clayton374972e2011-07-09 17:15:55 +00001434 {
Greg Clayton944b8282011-08-22 22:30:57 +00001435 DEBUG_PRINTF("DynamicLoaderDarwinKernel::%s() process state = %s\n", __FUNCTION__, StateAsCString(m_process->GetState()));
Greg Clayton374972e2011-07-09 17:15:55 +00001436
Greg Claytond16e1e52011-07-12 17:06:17 +00001437
Jim Inghama8558b62012-05-22 00:12:20 +00001438 const bool internal_bp = true;
Greg Claytond16e1e52011-07-12 17:06:17 +00001439 const LazyBool skip_prologue = eLazyBoolNo;
Jim Ingham969795f2011-09-21 01:17:13 +00001440 FileSpecList module_spec_list;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001441 module_spec_list.Append (m_kernel.GetModule()->GetFileSpec());
Jim Ingham969795f2011-09-21 01:17:13 +00001442 Breakpoint *bp = m_process->GetTarget().CreateBreakpoint (&module_spec_list,
Jim Ingham87df91b2011-09-23 00:54:11 +00001443 NULL,
Greg Clayton374972e2011-07-09 17:15:55 +00001444 "OSKextLoadedKextSummariesUpdated",
1445 eFunctionNameTypeFull,
Jim Inghama8558b62012-05-22 00:12:20 +00001446 skip_prologue,
1447 internal_bp).get();
Greg Clayton374972e2011-07-09 17:15:55 +00001448
Greg Clayton944b8282011-08-22 22:30:57 +00001449 bp->SetCallback (DynamicLoaderDarwinKernel::BreakpointHitCallback, this, true);
Greg Clayton374972e2011-07-09 17:15:55 +00001450 m_break_id = bp->GetID();
1451 }
Greg Clayton7b242382011-07-08 00:48:09 +00001452}
1453
1454//----------------------------------------------------------------------
1455// Member function that gets called when the process state changes.
1456//----------------------------------------------------------------------
1457void
Greg Clayton944b8282011-08-22 22:30:57 +00001458DynamicLoaderDarwinKernel::PrivateProcessStateChanged (Process *process, StateType state)
Greg Clayton7b242382011-07-08 00:48:09 +00001459{
Greg Clayton944b8282011-08-22 22:30:57 +00001460 DEBUG_PRINTF("DynamicLoaderDarwinKernel::%s(%s)\n", __FUNCTION__, StateAsCString(state));
Greg Clayton7b242382011-07-08 00:48:09 +00001461 switch (state)
1462 {
1463 case eStateConnected:
1464 case eStateAttaching:
1465 case eStateLaunching:
1466 case eStateInvalid:
1467 case eStateUnloaded:
1468 case eStateExited:
1469 case eStateDetached:
1470 Clear(false);
1471 break;
1472
1473 case eStateStopped:
Greg Clayton374972e2011-07-09 17:15:55 +00001474 UpdateIfNeeded();
Greg Clayton7b242382011-07-08 00:48:09 +00001475 break;
1476
1477 case eStateRunning:
1478 case eStateStepping:
1479 case eStateCrashed:
1480 case eStateSuspended:
1481 break;
Greg Clayton7b242382011-07-08 00:48:09 +00001482 }
1483}
1484
1485ThreadPlanSP
Greg Clayton944b8282011-08-22 22:30:57 +00001486DynamicLoaderDarwinKernel::GetStepThroughTrampolinePlan (Thread &thread, bool stop_others)
Greg Clayton7b242382011-07-08 00:48:09 +00001487{
1488 ThreadPlanSP thread_plan_sp;
Greg Clayton374972e2011-07-09 17:15:55 +00001489 LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
1490 if (log)
1491 log->Printf ("Could not find symbol for step through.");
Greg Clayton7b242382011-07-08 00:48:09 +00001492 return thread_plan_sp;
1493}
1494
1495Error
Greg Clayton944b8282011-08-22 22:30:57 +00001496DynamicLoaderDarwinKernel::CanLoadImage ()
Greg Clayton7b242382011-07-08 00:48:09 +00001497{
1498 Error error;
1499 error.SetErrorString("always unsafe to load or unload shared libraries in the darwin kernel");
1500 return error;
1501}
1502
1503void
Greg Clayton944b8282011-08-22 22:30:57 +00001504DynamicLoaderDarwinKernel::Initialize()
Greg Clayton7b242382011-07-08 00:48:09 +00001505{
1506 PluginManager::RegisterPlugin (GetPluginNameStatic(),
1507 GetPluginDescriptionStatic(),
Greg Claytone8cd0c92012-10-19 18:02:49 +00001508 CreateInstance,
1509 DebuggerInitialize);
Greg Clayton7b242382011-07-08 00:48:09 +00001510}
1511
1512void
Greg Clayton944b8282011-08-22 22:30:57 +00001513DynamicLoaderDarwinKernel::Terminate()
Greg Clayton7b242382011-07-08 00:48:09 +00001514{
1515 PluginManager::UnregisterPlugin (CreateInstance);
1516}
1517
Greg Claytone8cd0c92012-10-19 18:02:49 +00001518void
1519DynamicLoaderDarwinKernel::DebuggerInitialize (lldb_private::Debugger &debugger)
1520{
1521 if (!PluginManager::GetSettingForDynamicLoaderPlugin (debugger, DynamicLoaderDarwinKernelProperties::GetSettingName()))
1522 {
1523 const bool is_global_setting = true;
1524 PluginManager::CreateSettingForDynamicLoaderPlugin (debugger,
1525 GetGlobalProperties()->GetValueProperties(),
1526 ConstString ("Properties for the DynamicLoaderDarwinKernel plug-in."),
1527 is_global_setting);
1528 }
1529}
Greg Clayton7b242382011-07-08 00:48:09 +00001530
1531const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001532DynamicLoaderDarwinKernel::GetPluginNameStatic()
Greg Clayton7b242382011-07-08 00:48:09 +00001533{
Greg Clayton468ea4e2012-10-19 18:14:47 +00001534 return "dynamic-loader.darwin-kernel";
Greg Clayton7b242382011-07-08 00:48:09 +00001535}
1536
1537const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001538DynamicLoaderDarwinKernel::GetPluginDescriptionStatic()
Greg Clayton7b242382011-07-08 00:48:09 +00001539{
1540 return "Dynamic loader plug-in that watches for shared library loads/unloads in the MacOSX kernel.";
1541}
1542
1543
1544//------------------------------------------------------------------
1545// PluginInterface protocol
1546//------------------------------------------------------------------
1547const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001548DynamicLoaderDarwinKernel::GetPluginName()
Greg Clayton7b242382011-07-08 00:48:09 +00001549{
Greg Clayton944b8282011-08-22 22:30:57 +00001550 return "DynamicLoaderDarwinKernel";
Greg Clayton7b242382011-07-08 00:48:09 +00001551}
1552
1553const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001554DynamicLoaderDarwinKernel::GetShortPluginName()
Greg Clayton7b242382011-07-08 00:48:09 +00001555{
1556 return GetPluginNameStatic();
1557}
1558
1559uint32_t
Greg Clayton944b8282011-08-22 22:30:57 +00001560DynamicLoaderDarwinKernel::GetPluginVersion()
Greg Clayton7b242382011-07-08 00:48:09 +00001561{
1562 return 1;
1563}
1564
Greg Clayton1f746072012-08-29 21:13:06 +00001565lldb::ByteOrder
1566DynamicLoaderDarwinKernel::GetByteOrderFromMagic (uint32_t magic)
1567{
1568 switch (magic)
1569 {
1570 case llvm::MachO::HeaderMagic32:
1571 case llvm::MachO::HeaderMagic64:
1572 return lldb::endian::InlHostByteOrder();
1573
1574 case llvm::MachO::HeaderMagic32Swapped:
1575 case llvm::MachO::HeaderMagic64Swapped:
1576 if (lldb::endian::InlHostByteOrder() == lldb::eByteOrderBig)
1577 return lldb::eByteOrderLittle;
1578 else
1579 return lldb::eByteOrderBig;
1580
1581 default:
1582 break;
1583 }
1584 return lldb::eByteOrderInvalid;
1585}
1586