blob: a05e9e09d01e46bdda9677d451b1e74d86ae2808 [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
Greg Clayton7b0992d2013-04-18 22:45:39 +0000119typedef std::shared_ptr<DynamicLoaderDarwinKernelProperties> DynamicLoaderDarwinKernelPropertiesSP;
Greg Claytone8cd0c92012-10-19 18:02:49 +0000120
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
Jason Molenda503d0182013-03-02 07:19:32 +0000180 addr_t kernel_load_address = SearchForDarwinKernel (process);
181 if (kernel_load_address != LLDB_INVALID_ADDRESS)
182 {
183 process->SetCanJIT(false);
184 return new DynamicLoaderDarwinKernel (process, kernel_load_address);
185 }
186 return NULL;
187}
188
189lldb::addr_t
190DynamicLoaderDarwinKernel::SearchForDarwinKernel (Process *process)
191{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000192 addr_t kernel_load_address = process->GetImageInfoAddress();
193 if (kernel_load_address == LLDB_INVALID_ADDRESS)
194 {
195 kernel_load_address = SearchForKernelAtSameLoadAddr (process);
196 if (kernel_load_address == LLDB_INVALID_ADDRESS)
197 {
198 kernel_load_address = SearchForKernelWithDebugHints (process);
199 if (kernel_load_address == LLDB_INVALID_ADDRESS)
Greg Clayton70512312012-05-08 01:45:38 +0000200 {
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000201 kernel_load_address = SearchForKernelNearPC (process);
202 if (kernel_load_address == LLDB_INVALID_ADDRESS)
203 {
204 kernel_load_address = SearchForKernelViaExhaustiveSearch (process);
205 }
Greg Clayton70512312012-05-08 01:45:38 +0000206 }
Greg Claytondf0b7d52011-07-08 04:11:42 +0000207 }
Greg Clayton7b242382011-07-08 00:48:09 +0000208 }
Jason Molenda503d0182013-03-02 07:19:32 +0000209 return kernel_load_address;
Greg Clayton7b242382011-07-08 00:48:09 +0000210}
211
212//----------------------------------------------------------------------
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000213// Check if the kernel binary is loaded in memory without a slide.
214// First verify that the ExecutableModule is a kernel before we proceed.
215// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
216//----------------------------------------------------------------------
217lldb::addr_t
218DynamicLoaderDarwinKernel::SearchForKernelAtSameLoadAddr (Process *process)
219{
220 Module *exe_module = process->GetTarget().GetExecutableModulePointer();
221 if (exe_module == NULL)
222 return LLDB_INVALID_ADDRESS;
223
224 ObjectFile *exe_objfile = exe_module->GetObjectFile();
225 if (exe_objfile == NULL)
226 return LLDB_INVALID_ADDRESS;
227
228 if (exe_objfile->GetType() != ObjectFile::eTypeExecutable || exe_objfile->GetStrata() != ObjectFile::eStrataKernel)
229 return LLDB_INVALID_ADDRESS;
230
231 if (!exe_objfile->GetHeaderAddress().IsValid())
232 return LLDB_INVALID_ADDRESS;
233
234 if (CheckForKernelImageAtAddress (exe_objfile->GetHeaderAddress().GetFileAddress(), process) == exe_module->GetUUID())
235 return exe_objfile->GetHeaderAddress().GetFileAddress();
236
237 return LLDB_INVALID_ADDRESS;
238}
239
240//----------------------------------------------------------------------
241// If the debug flag is included in the boot-args nvram setting, the kernel's load address
242// will be noted in the lowglo page at a fixed address
243// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
244//----------------------------------------------------------------------
245lldb::addr_t
246DynamicLoaderDarwinKernel::SearchForKernelWithDebugHints (Process *process)
247{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000248 if (GetGlobalProperties()->GetScanType() == eKASLRScanNone)
249 return LLDB_INVALID_ADDRESS;
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000250
251 Error read_err;
252 addr_t addr = LLDB_INVALID_ADDRESS;
253 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
254 {
255 addr = process->ReadUnsignedIntegerFromMemory (0xffffff8000002010ULL, 8, LLDB_INVALID_ADDRESS, read_err);
256 }
257 else
258 {
259 addr = process->ReadUnsignedIntegerFromMemory (0xffff0110, 4, LLDB_INVALID_ADDRESS, read_err);
260 }
261
262 if (addr == 0)
263 addr = LLDB_INVALID_ADDRESS;
264
265 if (addr != LLDB_INVALID_ADDRESS)
266 {
267 if (CheckForKernelImageAtAddress (addr, process).IsValid())
268 return addr;
269 }
270
271 return LLDB_INVALID_ADDRESS;
272}
273
274//----------------------------------------------------------------------
275// If the kernel is currently executing when lldb attaches, and we don't have
276// a better way of finding the kernel's load address, try searching backwards
277// from the current pc value looking for the kernel's Mach header in memory.
278// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
279//----------------------------------------------------------------------
280lldb::addr_t
281DynamicLoaderDarwinKernel::SearchForKernelNearPC (Process *process)
282{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000283 if (GetGlobalProperties()->GetScanType() == eKASLRScanNone
284 || GetGlobalProperties()->GetScanType() == eKASLRScanLowgloAddresses)
285 {
286 return LLDB_INVALID_ADDRESS;
287 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000288
289 ThreadSP thread = process->GetThreadList().GetSelectedThread ();
290 if (thread.get() == NULL)
291 return LLDB_INVALID_ADDRESS;
292 addr_t pc = thread->GetRegisterContext ()->GetPC(LLDB_INVALID_ADDRESS);
293
294 if (pc == LLDB_INVALID_ADDRESS)
295 return LLDB_INVALID_ADDRESS;
296
Jason Molenda44edbf12013-04-19 00:50:28 +0000297 addr_t kernel_range_low;
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000298 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
299 {
300 kernel_range_low = 1ULL << 63;
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000301 }
302 else
303 {
304 kernel_range_low = 1ULL << 31;
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000305 }
306
307 // Outside the normal kernel address range, this is probably userland code running right now
308 if (pc < kernel_range_low)
Jason Molenda44edbf12013-04-19 00:50:28 +0000309 return LLDB_INVALID_ADDRESS;
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000310
311 // The kernel will load at at one megabyte boundary (0x100000), or at that boundary plus
312 // an offset of one page (0x1000) or two, depending on the device.
313
314 // Round the current pc down to the nearest one megabyte boundary - the place where we will start searching.
315 addr_t addr = pc & ~0xfffff;
316
317 int i = 0;
318 while (i < 32 && pc >= kernel_range_low)
319 {
320 if (CheckForKernelImageAtAddress (addr, process).IsValid())
321 return addr;
322 if (CheckForKernelImageAtAddress (addr + 0x1000, process).IsValid())
323 return addr + 0x1000;
324 if (CheckForKernelImageAtAddress (addr + 0x2000, process).IsValid())
325 return addr + 0x2000;
326 i++;
327 addr -= 0x100000;
328 }
329
330 return LLDB_INVALID_ADDRESS;
331}
332
333//----------------------------------------------------------------------
334// Scan through the valid address range for a kernel binary.
335// This is uselessly slow in 64-bit environments so we don't even try it.
336// This scan is not enabled by default even for 32-bit targets.
337// Returns the address of the kernel if one was found, else LLDB_INVALID_ADDRESS.
338//----------------------------------------------------------------------
339lldb::addr_t
340DynamicLoaderDarwinKernel::SearchForKernelViaExhaustiveSearch (Process *process)
341{
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000342 if (GetGlobalProperties()->GetScanType() != eKASLRScanExhaustiveScan)
343 {
344 return LLDB_INVALID_ADDRESS;
345 }
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000346
347 addr_t kernel_range_low, kernel_range_high;
348 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
349 {
350 kernel_range_low = 1ULL << 63;
351 kernel_range_high = UINT64_MAX;
352 }
353 else
354 {
355 kernel_range_low = 1ULL << 31;
356 kernel_range_high = UINT32_MAX;
357 }
358
359 // Stepping through memory at one-megabyte resolution looking for a kernel
360 // rarely works (fast enough) with a 64-bit address space -- for now, let's
361 // not even bother. We may be attaching to something which *isn't* a kernel
362 // and we don't want to spin for minutes on-end looking for a kernel.
363 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8)
364 return LLDB_INVALID_ADDRESS;
365
366 addr_t addr = kernel_range_low;
367
368 while (addr >= kernel_range_low && addr < kernel_range_high)
369 {
370 if (CheckForKernelImageAtAddress (addr, process).IsValid())
371 return addr;
372 if (CheckForKernelImageAtAddress (addr + 0x1000, process).IsValid())
373 return addr + 0x1000;
374 if (CheckForKernelImageAtAddress (addr + 0x2000, process).IsValid())
375 return addr + 0x2000;
376 addr += 0x100000;
377 }
378 return LLDB_INVALID_ADDRESS;
379}
380
381//----------------------------------------------------------------------
382// Given an address in memory, look to see if there is a kernel image at that
383// address.
384// Returns a UUID; if a kernel was not found at that address, UUID.IsValid() will be false.
385//----------------------------------------------------------------------
386lldb_private::UUID
387DynamicLoaderDarwinKernel::CheckForKernelImageAtAddress (lldb::addr_t addr, Process *process)
388{
389 if (addr == LLDB_INVALID_ADDRESS)
390 return UUID();
391
392 // First try a quick test -- read the first 4 bytes and see if there is a valid Mach-O magic field there
393 // (the first field of the mach_header/mach_header_64 struct).
394
395 Error read_error;
396 uint64_t result = process->ReadUnsignedIntegerFromMemory (addr, 4, LLDB_INVALID_ADDRESS, read_error);
397 if (result != llvm::MachO::HeaderMagic64
398 && result != llvm::MachO::HeaderMagic32
399 && result != llvm::MachO::HeaderMagic32Swapped
400 && result != llvm::MachO::HeaderMagic64Swapped)
401 {
402 return UUID();
403 }
404
405 // Read the mach header and see whether it looks like a kernel
406 llvm::MachO::mach_header header;
407 if (process->DoReadMemory (addr, &header, sizeof(header), read_error) != sizeof(header))
408 return UUID();
409
410 if (header.magic == llvm::MachO::HeaderMagic32Swapped ||
411 header.magic == llvm::MachO::HeaderMagic64Swapped)
412 {
413 header.magic = llvm::ByteSwap_32(header.magic);
414 header.cputype = llvm::ByteSwap_32(header.cputype);
415 header.cpusubtype = llvm::ByteSwap_32(header.cpusubtype);
416 header.filetype = llvm::ByteSwap_32(header.filetype);
417 header.ncmds = llvm::ByteSwap_32(header.ncmds);
418 header.sizeofcmds = llvm::ByteSwap_32(header.sizeofcmds);
419 header.flags = llvm::ByteSwap_32(header.flags);
420 }
421
422 // A kernel is an executable which does not have the dynamic link object flag set.
423 if (header.filetype == llvm::MachO::HeaderFileTypeExecutable
424 && (header.flags & llvm::MachO::HeaderFlagBitIsDynamicLinkObject) == 0)
425 {
426 // Create a full module to get the UUID
Greg Clayton39f7ee82013-02-01 21:38:35 +0000427 ModuleSP memory_module_sp = process->ReadModuleFromMemory (FileSpec ("temp_mach_kernel", false), addr);
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000428 if (!memory_module_sp.get())
429 return UUID();
430
431 ObjectFile *exe_objfile = memory_module_sp->GetObjectFile();
432 if (exe_objfile == NULL)
433 return UUID();
434
435 if (exe_objfile->GetType() == ObjectFile::eTypeExecutable && exe_objfile->GetStrata() == ObjectFile::eStrataKernel)
436 {
437 return memory_module_sp->GetUUID();
438 }
439 }
440
441 return UUID();
442}
443
444//----------------------------------------------------------------------
Greg Clayton7b242382011-07-08 00:48:09 +0000445// Constructor
446//----------------------------------------------------------------------
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000447DynamicLoaderDarwinKernel::DynamicLoaderDarwinKernel (Process* process, lldb::addr_t kernel_addr) :
Greg Clayton7b242382011-07-08 00:48:09 +0000448 DynamicLoader(process),
Jason Molenda6ba6d3d2013-01-30 04:39:32 +0000449 m_kernel_load_address (kernel_addr),
Greg Clayton7b242382011-07-08 00:48:09 +0000450 m_kernel(),
Greg Claytond16e1e52011-07-12 17:06:17 +0000451 m_kext_summary_header_ptr_addr (),
Greg Clayton0d9fc762011-07-08 03:21:57 +0000452 m_kext_summary_header_addr (),
Greg Clayton7b242382011-07-08 00:48:09 +0000453 m_kext_summary_header (),
Jason Molenda306bd0a2013-02-19 05:42:46 +0000454 m_known_kexts (),
Daniel Dunbara08823f2011-10-31 22:50:49 +0000455 m_mutex(Mutex::eMutexTypeRecursive),
456 m_break_id (LLDB_INVALID_BREAK_ID)
Greg Clayton7b242382011-07-08 00:48:09 +0000457{
Jason Molenda1c627542013-04-05 01:03:25 +0000458 PlatformSP platform_sp(Platform::FindPlugin (process, "darwin-kernel"));
459 // Only select the darwin-kernel Platform if we've been asked to load kexts.
460 // It can take some time to scan over all of the kext info.plists and that
461 // shouldn't be done if kext loading is explicitly disabled.
462 if (platform_sp.get() && GetGlobalProperties()->GetLoadKexts())
463 {
464 process->GetTarget().SetPlatform (platform_sp);
Jason Molenda1c627542013-04-05 01:03:25 +0000465 }
Greg Clayton7b242382011-07-08 00:48:09 +0000466}
467
468//----------------------------------------------------------------------
469// Destructor
470//----------------------------------------------------------------------
Greg Clayton944b8282011-08-22 22:30:57 +0000471DynamicLoaderDarwinKernel::~DynamicLoaderDarwinKernel()
Greg Clayton7b242382011-07-08 00:48:09 +0000472{
473 Clear(true);
474}
475
Greg Clayton374972e2011-07-09 17:15:55 +0000476void
Greg Clayton944b8282011-08-22 22:30:57 +0000477DynamicLoaderDarwinKernel::UpdateIfNeeded()
Greg Clayton374972e2011-07-09 17:15:55 +0000478{
479 LoadKernelModuleIfNeeded();
480 SetNotificationBreakpointIfNeeded ();
481}
Greg Clayton7b242382011-07-08 00:48:09 +0000482//------------------------------------------------------------------
483/// Called after attaching a process.
484///
485/// Allow DynamicLoader plug-ins to execute some code after
486/// attaching to a process.
487//------------------------------------------------------------------
488void
Greg Clayton944b8282011-08-22 22:30:57 +0000489DynamicLoaderDarwinKernel::DidAttach ()
Greg Clayton7b242382011-07-08 00:48:09 +0000490{
491 PrivateInitialize(m_process);
Greg Clayton374972e2011-07-09 17:15:55 +0000492 UpdateIfNeeded();
Greg Clayton7b242382011-07-08 00:48:09 +0000493}
494
495//------------------------------------------------------------------
496/// Called after attaching a process.
497///
498/// Allow DynamicLoader plug-ins to execute some code after
499/// attaching to a process.
500//------------------------------------------------------------------
501void
Greg Clayton944b8282011-08-22 22:30:57 +0000502DynamicLoaderDarwinKernel::DidLaunch ()
Greg Clayton7b242382011-07-08 00:48:09 +0000503{
504 PrivateInitialize(m_process);
Greg Clayton374972e2011-07-09 17:15:55 +0000505 UpdateIfNeeded();
Greg Clayton7b242382011-07-08 00:48:09 +0000506}
507
508
509//----------------------------------------------------------------------
510// Clear out the state of this class.
511//----------------------------------------------------------------------
512void
Greg Clayton944b8282011-08-22 22:30:57 +0000513DynamicLoaderDarwinKernel::Clear (bool clear_process)
Greg Clayton7b242382011-07-08 00:48:09 +0000514{
515 Mutex::Locker locker(m_mutex);
516
517 if (m_process->IsAlive() && LLDB_BREAK_ID_IS_VALID(m_break_id))
518 m_process->ClearBreakpointSiteByID(m_break_id);
519
520 if (clear_process)
521 m_process = NULL;
Jason Molenda306bd0a2013-02-19 05:42:46 +0000522 m_kernel.Clear();
523 m_known_kexts.clear();
Greg Claytond16e1e52011-07-12 17:06:17 +0000524 m_kext_summary_header_ptr_addr.Clear();
Greg Clayton0d9fc762011-07-08 03:21:57 +0000525 m_kext_summary_header_addr.Clear();
Greg Clayton7b242382011-07-08 00:48:09 +0000526 m_break_id = LLDB_INVALID_BREAK_ID;
527}
528
Greg Clayton7b242382011-07-08 00:48:09 +0000529
Greg Claytonc859e2d2012-02-13 23:10:39 +0000530bool
Jason Molenda306bd0a2013-02-19 05:42:46 +0000531DynamicLoaderDarwinKernel::KextImageInfo::LoadImageAtFileAddress (Process *process)
Greg Clayton2af282a2012-03-21 04:25:00 +0000532{
533 if (IsLoaded())
534 return true;
535
Jason Molenda306bd0a2013-02-19 05:42:46 +0000536 if (m_module_sp)
Greg Clayton2af282a2012-03-21 04:25:00 +0000537 {
538 bool changed = false;
Jason Molenda306bd0a2013-02-19 05:42:46 +0000539 if (m_module_sp->SetLoadAddress (process->GetTarget(), 0, changed))
540 m_load_process_stop_id = process->GetStopID();
Greg Clayton2af282a2012-03-21 04:25:00 +0000541 }
542 return false;
543}
544
Jason Molenda306bd0a2013-02-19 05:42:46 +0000545void
546DynamicLoaderDarwinKernel::KextImageInfo::SetModule (ModuleSP module_sp)
547{
548 m_module_sp = module_sp;
549 if (module_sp.get() && module_sp->GetObjectFile())
550 {
551 if (module_sp->GetObjectFile()->GetType() == ObjectFile::eTypeExecutable
552 && module_sp->GetObjectFile()->GetStrata() == ObjectFile::eStrataKernel)
553 {
554 m_kernel_image = true;
555 }
556 else
557 {
558 m_kernel_image = false;
559 }
560 }
561}
562
563ModuleSP
564DynamicLoaderDarwinKernel::KextImageInfo::GetModule ()
565{
566 return m_module_sp;
567}
568
569void
570DynamicLoaderDarwinKernel::KextImageInfo::SetLoadAddress (addr_t load_addr)
571{
572 m_load_address = load_addr;
573}
574
575addr_t
576DynamicLoaderDarwinKernel::KextImageInfo::GetLoadAddress () const
577{
578 return m_load_address;
579}
580
581uint64_t
582DynamicLoaderDarwinKernel::KextImageInfo::GetSize () const
583{
584 return m_size;
585}
586
587void
588DynamicLoaderDarwinKernel::KextImageInfo::SetSize (uint64_t size)
589{
590 m_size = size;
591}
592
593uint32_t
594DynamicLoaderDarwinKernel::KextImageInfo::GetProcessStopId () const
595{
596 return m_load_process_stop_id;
597}
598
599void
600DynamicLoaderDarwinKernel::KextImageInfo::SetProcessStopId (uint32_t stop_id)
601{
602 m_load_process_stop_id = stop_id;
603}
604
Greg Clayton2af282a2012-03-21 04:25:00 +0000605bool
Jason Molenda306bd0a2013-02-19 05:42:46 +0000606DynamicLoaderDarwinKernel::KextImageInfo::operator== (const KextImageInfo &rhs)
607{
608 if (m_uuid.IsValid() || rhs.GetUUID().IsValid())
609 {
610 if (m_uuid == rhs.GetUUID())
611 {
612 return true;
613 }
614 return false;
615 }
616
617 if (m_name == rhs.GetName() && m_load_address == rhs.GetLoadAddress())
618 return true;
619
620 return false;
621}
622
623void
624DynamicLoaderDarwinKernel::KextImageInfo::SetName (const char *name)
625{
626 m_name = name;
627}
628
629std::string
630DynamicLoaderDarwinKernel::KextImageInfo::GetName () const
631{
632 return m_name;
633}
634
635void
636DynamicLoaderDarwinKernel::KextImageInfo::SetUUID (const UUID &uuid)
637{
638 m_uuid = uuid;
639}
640
641UUID
642DynamicLoaderDarwinKernel::KextImageInfo::GetUUID () const
643{
644 return m_uuid;
645}
646
647// Given the m_load_address from the kext summaries, and a UUID, try to create an in-memory
648// Module at that address. Require that the MemoryModule have a matching UUID and detect
649// if this MemoryModule is a kernel or a kext.
650//
651// Returns true if m_memory_module_sp is now set to a valid Module.
652
653bool
654DynamicLoaderDarwinKernel::KextImageInfo::ReadMemoryModule (Process *process)
655{
656 if (m_memory_module_sp.get() != NULL)
657 return true;
658 if (m_load_address == LLDB_INVALID_ADDRESS)
659 return false;
660
661 FileSpec file_spec;
662 file_spec.SetFile (m_name.c_str(), false);
663
664 ModuleSP memory_module_sp = process->ReadModuleFromMemory (file_spec, m_load_address);
665
666 if (memory_module_sp.get() == NULL)
667 return false;
668
669 bool is_kernel = false;
670 if (memory_module_sp->GetObjectFile())
671 {
672 if (memory_module_sp->GetObjectFile()->GetType() == ObjectFile::eTypeExecutable
673 && memory_module_sp->GetObjectFile()->GetStrata() == ObjectFile::eStrataKernel)
674 {
675 is_kernel = true;
676 }
677 else if (memory_module_sp->GetObjectFile()->GetType() == ObjectFile::eTypeSharedLibrary)
678 {
679 is_kernel = false;
680 }
681 }
682
Jason Molenda38e70d12013-02-27 03:07:49 +0000683 // If this is a kext, and the kernel specified what UUID we should find at this
684 // load address, require that the memory module have a matching UUID or something
685 // has gone wrong and we should discard it.
Jason Molenda306bd0a2013-02-19 05:42:46 +0000686 if (m_uuid.IsValid())
687 {
688 if (m_uuid != memory_module_sp->GetUUID())
689 {
690 return false;
691 }
692 }
693
694 // If the in-memory Module has a UUID, let's use that.
695 if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid())
696 {
697 m_uuid = memory_module_sp->GetUUID();
698 }
699
700 m_memory_module_sp = memory_module_sp;
701 m_kernel_image = is_kernel;
702 if (is_kernel)
703 {
Jason Molenda38e70d12013-02-27 03:07:49 +0000704 if (memory_module_sp->GetArchitecture().IsValid())
Jason Molenda306bd0a2013-02-19 05:42:46 +0000705 {
706 process->GetTarget().SetArchitecture(memory_module_sp->GetArchitecture());
707 }
Jason Molenda38e70d12013-02-27 03:07:49 +0000708 if (m_uuid.IsValid())
709 {
710 Module* exe_module = process->GetTarget().GetExecutableModulePointer();
711 if (exe_module && exe_module->GetUUID().IsValid())
712 {
713 if (m_uuid != exe_module->GetUUID())
714 {
715 Stream *s = &process->GetTarget().GetDebugger().GetOutputStream();
716 if (s)
717 {
718 char memory_module_uuidbuf[64];
719 char exe_module_uuidbuf[64];
720 s->Printf ("warning: Host-side kernel file has Mach-O UUID of %s but remote kernel has a UUID of %s -- a mismatched kernel file will result in a poor debugger experience.\n",
721 exe_module->GetUUID().GetAsCString(exe_module_uuidbuf, sizeof (exe_module_uuidbuf)),
722 m_uuid.GetAsCString(memory_module_uuidbuf, sizeof (memory_module_uuidbuf)));
723 s->Flush ();
724 }
725 }
726 }
727 }
Jason Molenda306bd0a2013-02-19 05:42:46 +0000728 }
729
730 return true;
731}
732
733bool
734DynamicLoaderDarwinKernel::KextImageInfo::IsKernel () const
735{
736 return m_kernel_image == true;
737}
738
739void
740DynamicLoaderDarwinKernel::KextImageInfo::SetIsKernel (bool is_kernel)
741{
742 m_kernel_image = is_kernel;
743}
744
745bool
746DynamicLoaderDarwinKernel::KextImageInfo::LoadImageUsingMemoryModule (Process *process)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000747{
748 if (IsLoaded())
749 return true;
750
Greg Claytonc859e2d2012-02-13 23:10:39 +0000751
752 Target &target = process->GetTarget();
Jason Molenda87a04b22012-10-19 03:40:45 +0000753
Jason Molenda306bd0a2013-02-19 05:42:46 +0000754 // If we don't have / can't create a memory module for this kext, don't try to load it - we won't
755 // have the correct segment load addresses.
756 if (!ReadMemoryModule (process))
Jason Molenda87a04b22012-10-19 03:40:45 +0000757 {
758 return false;
759 }
760
Jason Molenda306bd0a2013-02-19 05:42:46 +0000761 bool uuid_is_valid = m_uuid.IsValid();
762
Jason Molendae575e7b2013-02-19 06:11:13 +0000763 if (IsKernel() && uuid_is_valid && m_memory_module_sp.get())
764 {
765 Stream *s = &target.GetDebugger().GetOutputStream();
766 if (s)
767 {
768 char uuidbuf[64];
769 s->Printf ("Kernel UUID: %s\n", m_memory_module_sp->GetUUID().GetAsCString(uuidbuf, sizeof (uuidbuf)));
770 s->Printf ("Load Address: 0x%" PRIx64 "\n", m_load_address);
771 }
772 }
773
Jason Molenda306bd0a2013-02-19 05:42:46 +0000774 if (!m_module_sp)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000775 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000776 // See if the kext has already been loaded into the target, probably by the user doing target modules add.
777 const ModuleList &target_images = target.GetImages();
778 m_module_sp = target_images.FindModule(m_uuid);
779
780 // Search for the kext on the local filesystem via the UUID
781 if (!m_module_sp && uuid_is_valid)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000782 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000783 ModuleSpec module_spec;
784 module_spec.GetUUID() = m_uuid;
785 module_spec.GetArchitecture() = target.GetArchitecture();
Jason Molenda53667f52012-10-06 02:02:26 +0000786
Jason Molendad76fb6e2013-02-19 07:16:22 +0000787 // For the kernel, we really do need an on-disk file copy of the binary to do anything useful.
788 // This will force a clal to
Jason Molenda306bd0a2013-02-19 05:42:46 +0000789 if (IsKernel())
Greg Claytonb9a01b32012-02-26 05:51:37 +0000790 {
Jason Molendad76fb6e2013-02-19 07:16:22 +0000791 if (Symbols::DownloadObjectAndSymbolFile (module_spec, true))
Jason Molendabb860bd2012-10-09 01:17:11 +0000792 {
Jason Molendad76fb6e2013-02-19 07:16:22 +0000793 if (module_spec.GetFileSpec().Exists())
Jason Molendabb860bd2012-10-09 01:17:11 +0000794 {
Jason Molendad76fb6e2013-02-19 07:16:22 +0000795 m_module_sp.reset(new Module (module_spec.GetFileSpec(), target.GetArchitecture()));
796 if (m_module_sp.get() && m_module_sp->MatchesModuleSpec (module_spec))
797 {
798 ModuleList loaded_module_list;
799 loaded_module_list.Append (m_module_sp);
800 target.ModulesDidLoad (loaded_module_list);
801 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000802 }
803 }
Jason Molenda306bd0a2013-02-19 05:42:46 +0000804 }
Jason Molendad76fb6e2013-02-19 07:16:22 +0000805
Jason Molenda1c627542013-04-05 01:03:25 +0000806 // If the current platform is PlatformDarwinKernel, create a ModuleSpec with the filename set
807 // to be the bundle ID for this kext, e.g. "com.apple.filesystems.msdosfs", and ask the platform
808 // to find it.
809 PlatformSP platform_sp (target.GetPlatform());
810 if (platform_sp)
811 {
812 const char *pname = platform_sp->GetShortPluginName();
813 if (pname && strcmp (pname, "darwin-kernel") == 0)
814 {
815 ModuleSpec kext_bundle_module_spec(module_spec);
816 FileSpec kext_filespec(m_name.c_str(), false);
817 kext_bundle_module_spec.GetFileSpec() = kext_filespec;
818 platform_sp->GetSharedModule (kext_bundle_module_spec, m_module_sp, &target.GetExecutableSearchPaths(), NULL, NULL);
819 }
820 }
821
Jason Molendad76fb6e2013-02-19 07:16:22 +0000822 // Ask the Target to find this file on the local system, if possible.
Jason Molenda306bd0a2013-02-19 05:42:46 +0000823 // This will search in the list of currently-loaded files, look in the
824 // standard search paths on the system, and on a Mac it will try calling
825 // the DebugSymbols framework with the UUID to find the binary via its
826 // search methods.
827 if (!m_module_sp)
828 {
829 m_module_sp = target.GetSharedModule (module_spec);
830 }
Jason Molendae575e7b2013-02-19 06:11:13 +0000831
Jason Molendad76fb6e2013-02-19 07:16:22 +0000832 if (IsKernel() && !m_module_sp)
Jason Molendae575e7b2013-02-19 06:11:13 +0000833 {
834 Stream *s = &target.GetDebugger().GetOutputStream();
835 if (s)
836 {
Jason Molenda56c23282013-02-19 06:39:56 +0000837 s->Printf ("WARNING: Unable to locate kernel binary on this system.\n");
Jason Molendae575e7b2013-02-19 06:11:13 +0000838 }
839 }
Jason Molenda306bd0a2013-02-19 05:42:46 +0000840 }
Jason Molenda65d57a32012-12-01 06:13:29 +0000841
Jason Molenda306bd0a2013-02-19 05:42:46 +0000842 // If we managed to find a module, append it to the target's list of images.
843 // If we also have a memory module, require that they have matching UUIDs
844 if (m_module_sp)
845 {
846 bool uuid_match_ok = true;
847 if (m_memory_module_sp)
848 {
849 if (m_module_sp->GetUUID() != m_memory_module_sp->GetUUID())
Jason Molenda65d57a32012-12-01 06:13:29 +0000850 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000851 uuid_match_ok = false;
852 }
853 }
854 if (uuid_match_ok)
855 {
Jason Molendaa4d3e1d2013-02-19 07:41:13 +0000856 target.GetImages().AppendIfNeeded(m_module_sp);
Jason Molenda306bd0a2013-02-19 05:42:46 +0000857 if (IsKernel() && target.GetExecutableModulePointer() != m_module_sp.get())
858 {
859 target.SetExecutableModule (m_module_sp, false);
Jason Molenda65d57a32012-12-01 06:13:29 +0000860 }
Greg Claytonb9a01b32012-02-26 05:51:37 +0000861 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000862 }
863 }
864
Jason Molenda56c23282013-02-19 06:39:56 +0000865 if (!m_module_sp && !IsKernel() && m_uuid.IsValid() && !m_name.empty())
866 {
867 Stream *s = &target.GetDebugger().GetOutputStream();
868 if (s)
869 {
870 char uuidbuf[64];
871 s->Printf ("warning: Can't find binary/dSYM for %s (%s)\n",
872 m_name.c_str(), m_uuid.GetAsCString(uuidbuf, sizeof (uuidbuf)));
873 }
874 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000875
Greg Clayton67408532012-12-11 01:20:51 +0000876 static ConstString g_section_name_LINKEDIT ("__LINKEDIT");
877
Jason Molenda306bd0a2013-02-19 05:42:46 +0000878 if (m_memory_module_sp && m_module_sp)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000879 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000880 if (m_module_sp->GetUUID() == m_memory_module_sp->GetUUID())
Greg Claytonc859e2d2012-02-13 23:10:39 +0000881 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000882 ObjectFile *ondisk_object_file = m_module_sp->GetObjectFile();
883 ObjectFile *memory_object_file = m_memory_module_sp->GetObjectFile();
Greg Clayton67408532012-12-11 01:20:51 +0000884
Jason Molendabb860bd2012-10-09 01:17:11 +0000885 if (memory_object_file && ondisk_object_file)
886 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000887 // The memory_module for kexts may have an invalid __LINKEDIT seg; skip it.
888 const bool ignore_linkedit = !IsKernel ();
Greg Clayton67408532012-12-11 01:20:51 +0000889
Jason Molendabb860bd2012-10-09 01:17:11 +0000890 SectionList *ondisk_section_list = ondisk_object_file->GetSectionList ();
891 SectionList *memory_section_list = memory_object_file->GetSectionList ();
892 if (memory_section_list && ondisk_section_list)
893 {
894 const uint32_t num_ondisk_sections = ondisk_section_list->GetSize();
895 // There may be CTF sections in the memory image so we can't
896 // always just compare the number of sections (which are actually
897 // segments in mach-o parlance)
898 uint32_t sect_idx = 0;
899
900 // Use the memory_module's addresses for each section to set the
901 // file module's load address as appropriate. We don't want to use
902 // a single slide value for the entire kext - different segments may
903 // be slid different amounts by the kext loader.
904
905 uint32_t num_sections_loaded = 0;
906 for (sect_idx=0; sect_idx<num_ondisk_sections; ++sect_idx)
907 {
908 SectionSP ondisk_section_sp(ondisk_section_list->GetSectionAtIndex(sect_idx));
909 if (ondisk_section_sp)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000910 {
Greg Clayton67408532012-12-11 01:20:51 +0000911 // Don't ever load __LINKEDIT as it may or may not be actually
912 // mapped into memory and there is no current way to tell.
913 // I filed rdar://problem/12851706 to track being able to tell
914 // if the __LINKEDIT is actually mapped, but until then, we need
915 // to not load the __LINKEDIT
916 if (ignore_linkedit && ondisk_section_sp->GetName() == g_section_name_LINKEDIT)
917 continue;
918
Jason Molendabb860bd2012-10-09 01:17:11 +0000919 const Section *memory_section = memory_section_list->FindSectionByName(ondisk_section_sp->GetName()).get();
920 if (memory_section)
Greg Claytonc859e2d2012-02-13 23:10:39 +0000921 {
Jason Molendabb860bd2012-10-09 01:17:11 +0000922 target.GetSectionLoadList().SetSectionLoadAddress (ondisk_section_sp, memory_section->GetFileAddress());
923 ++num_sections_loaded;
Greg Claytonc859e2d2012-02-13 23:10:39 +0000924 }
925 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000926 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000927 if (num_sections_loaded > 0)
Jason Molenda306bd0a2013-02-19 05:42:46 +0000928 m_load_process_stop_id = process->GetStopID();
Greg Claytonc859e2d2012-02-13 23:10:39 +0000929 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000930 m_module_sp.reset(); // No sections were loaded
Greg Claytonc859e2d2012-02-13 23:10:39 +0000931 }
932 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000933 m_module_sp.reset(); // One or both section lists
Greg Claytonc859e2d2012-02-13 23:10:39 +0000934 }
935 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000936 m_module_sp.reset(); // One or both object files missing
Greg Claytonc859e2d2012-02-13 23:10:39 +0000937 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000938 else
Jason Molenda306bd0a2013-02-19 05:42:46 +0000939 m_module_sp.reset(); // UUID mismatch
Greg Claytonc859e2d2012-02-13 23:10:39 +0000940 }
Jason Molendabb860bd2012-10-09 01:17:11 +0000941
Greg Claytonc859e2d2012-02-13 23:10:39 +0000942 bool is_loaded = IsLoaded();
943
Jason Molenda306bd0a2013-02-19 05:42:46 +0000944 if (is_loaded && m_module_sp && IsKernel())
Jason Molenda68b36072012-10-02 03:49:41 +0000945 {
946 Stream *s = &target.GetDebugger().GetOutputStream();
947 if (s)
948 {
Jason Molenda732238c2013-03-01 00:06:37 +0000949 ObjectFile *kernel_object_file = m_module_sp->GetObjectFile();
950 if (kernel_object_file)
951 {
952 addr_t file_address = kernel_object_file->GetHeaderAddress().GetFileAddress();
953 if (m_load_address != LLDB_INVALID_ADDRESS && file_address != LLDB_INVALID_ADDRESS)
954 {
Matt Kopec787d1622013-03-12 17:45:38 +0000955 s->Printf ("Kernel slid 0x%" PRIx64 " in memory.\n", m_load_address - file_address);
Jason Molenda732238c2013-03-01 00:06:37 +0000956 }
957 }
Jason Molenda306bd0a2013-02-19 05:42:46 +0000958 if (m_module_sp->GetFileSpec().GetDirectory().IsEmpty())
Jason Molenda743e43962012-10-02 22:23:42 +0000959 {
Jason Molenda306bd0a2013-02-19 05:42:46 +0000960 s->Printf ("Loaded kernel file %s\n", m_module_sp->GetFileSpec().GetFilename().AsCString());
Jason Molenda743e43962012-10-02 22:23:42 +0000961 }
962 else
963 {
964 s->Printf ("Loaded kernel file %s/%s\n",
Jason Molenda306bd0a2013-02-19 05:42:46 +0000965 m_module_sp->GetFileSpec().GetDirectory().AsCString(),
966 m_module_sp->GetFileSpec().GetFilename().AsCString());
Jason Molenda743e43962012-10-02 22:23:42 +0000967 }
Jason Molenda68b36072012-10-02 03:49:41 +0000968 s->Flush ();
969 }
970 }
Greg Claytonc859e2d2012-02-13 23:10:39 +0000971 return is_loaded;
972}
973
Greg Clayton1f746072012-08-29 21:13:06 +0000974uint32_t
Jason Molenda306bd0a2013-02-19 05:42:46 +0000975DynamicLoaderDarwinKernel::KextImageInfo::GetAddressByteSize ()
Greg Clayton1f746072012-08-29 21:13:06 +0000976{
Jason Molenda306bd0a2013-02-19 05:42:46 +0000977 if (m_memory_module_sp)
978 return m_memory_module_sp->GetArchitecture().GetAddressByteSize();
979 if (m_module_sp)
980 return m_module_sp->GetArchitecture().GetAddressByteSize();
Greg Clayton1f746072012-08-29 21:13:06 +0000981 return 0;
982}
983
984lldb::ByteOrder
Jason Molenda306bd0a2013-02-19 05:42:46 +0000985DynamicLoaderDarwinKernel::KextImageInfo::GetByteOrder()
Greg Clayton1f746072012-08-29 21:13:06 +0000986{
Jason Molenda306bd0a2013-02-19 05:42:46 +0000987 if (m_memory_module_sp)
988 return m_memory_module_sp->GetArchitecture().GetByteOrder();
989 if (m_module_sp)
990 return m_module_sp->GetArchitecture().GetByteOrder();
Greg Clayton1f746072012-08-29 21:13:06 +0000991 return lldb::endian::InlHostByteOrder();
992}
993
994lldb_private::ArchSpec
Jason Molenda306bd0a2013-02-19 05:42:46 +0000995DynamicLoaderDarwinKernel::KextImageInfo::GetArchitecture () const
Greg Clayton1f746072012-08-29 21:13:06 +0000996{
Jason Molenda306bd0a2013-02-19 05:42:46 +0000997 if (m_memory_module_sp)
998 return m_memory_module_sp->GetArchitecture();
999 if (m_module_sp)
1000 return m_module_sp->GetArchitecture();
Greg Clayton1f746072012-08-29 21:13:06 +00001001 return lldb_private::ArchSpec ();
1002}
1003
1004
Greg Clayton7b242382011-07-08 00:48:09 +00001005//----------------------------------------------------------------------
1006// Load the kernel module and initialize the "m_kernel" member. Return
1007// true _only_ if the kernel is loaded the first time through (subsequent
1008// calls to this function should return false after the kernel has been
1009// already loaded).
1010//----------------------------------------------------------------------
Greg Clayton374972e2011-07-09 17:15:55 +00001011void
Greg Clayton944b8282011-08-22 22:30:57 +00001012DynamicLoaderDarwinKernel::LoadKernelModuleIfNeeded()
Greg Clayton7b242382011-07-08 00:48:09 +00001013{
Greg Claytond16e1e52011-07-12 17:06:17 +00001014 if (!m_kext_summary_header_ptr_addr.IsValid())
Greg Clayton7b242382011-07-08 00:48:09 +00001015 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001016 m_kernel.Clear();
1017 m_kernel.SetModule (m_process->GetTarget().GetExecutableModule());
1018 m_kernel.SetIsKernel(true);
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001019
1020 ConstString kernel_name("mach_kernel");
Jason Molenda306bd0a2013-02-19 05:42:46 +00001021 if (m_kernel.GetModule().get()
1022 && m_kernel.GetModule()->GetObjectFile()
1023 && !m_kernel.GetModule()->GetObjectFile()->GetFileSpec().GetFilename().IsEmpty())
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001024 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001025 kernel_name = m_kernel.GetModule()->GetObjectFile()->GetFileSpec().GetFilename();
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001026 }
Jason Molenda306bd0a2013-02-19 05:42:46 +00001027 m_kernel.SetName (kernel_name.AsCString());
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001028
Jason Molenda306bd0a2013-02-19 05:42:46 +00001029 if (m_kernel.GetLoadAddress() == LLDB_INVALID_ADDRESS)
Greg Clayton7b242382011-07-08 00:48:09 +00001030 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001031 m_kernel.SetLoadAddress(m_kernel_load_address);
1032 if (m_kernel.GetLoadAddress() == LLDB_INVALID_ADDRESS && m_kernel.GetModule())
Greg Clayton7b242382011-07-08 00:48:09 +00001033 {
Greg Claytonc859e2d2012-02-13 23:10:39 +00001034 // We didn't get a hint from the process, so we will
1035 // try the kernel at the address that it exists at in
1036 // the file if we have one
Jason Molenda306bd0a2013-02-19 05:42:46 +00001037 ObjectFile *kernel_object_file = m_kernel.GetModule()->GetObjectFile();
Greg Claytonc859e2d2012-02-13 23:10:39 +00001038 if (kernel_object_file)
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001039 {
1040 addr_t load_address = kernel_object_file->GetHeaderAddress().GetLoadAddress(&m_process->GetTarget());
1041 addr_t file_address = kernel_object_file->GetHeaderAddress().GetFileAddress();
1042 if (load_address != LLDB_INVALID_ADDRESS && load_address != 0)
1043 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001044 m_kernel.SetLoadAddress (load_address);
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001045 if (load_address != file_address)
1046 {
1047 // Don't accidentally relocate the kernel to the File address --
1048 // the Load address has already been set to its actual in-memory address.
1049 // Mark it as IsLoaded.
Jason Molenda306bd0a2013-02-19 05:42:46 +00001050 m_kernel.SetProcessStopId (m_process->GetStopID());
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001051 }
1052 }
1053 else
1054 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001055 m_kernel.SetLoadAddress(file_address);
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00001056 }
1057 }
Greg Clayton7b242382011-07-08 00:48:09 +00001058 }
1059 }
Greg Claytonc859e2d2012-02-13 23:10:39 +00001060
Jason Molenda306bd0a2013-02-19 05:42:46 +00001061 if (m_kernel.GetLoadAddress() != LLDB_INVALID_ADDRESS)
Greg Clayton2af282a2012-03-21 04:25:00 +00001062 {
1063 if (!m_kernel.LoadImageUsingMemoryModule (m_process))
1064 {
1065 m_kernel.LoadImageAtFileAddress (m_process);
1066 }
1067 }
Greg Clayton7b242382011-07-08 00:48:09 +00001068
Jason Molenda306bd0a2013-02-19 05:42:46 +00001069 if (m_kernel.IsLoaded() && m_kernel.GetModule())
Greg Clayton7b242382011-07-08 00:48:09 +00001070 {
Greg Claytonc859e2d2012-02-13 23:10:39 +00001071 static ConstString kext_summary_symbol ("gLoadedKextSummaries");
Jason Molenda306bd0a2013-02-19 05:42:46 +00001072 const Symbol *symbol = m_kernel.GetModule()->FindFirstSymbolWithNameAndType (kext_summary_symbol, eSymbolTypeData);
Greg Claytonc859e2d2012-02-13 23:10:39 +00001073 if (symbol)
1074 {
Greg Claytone7612132012-03-07 21:03:09 +00001075 m_kext_summary_header_ptr_addr = symbol->GetAddress();
Greg Claytonc859e2d2012-02-13 23:10:39 +00001076 // Update all image infos
1077 ReadAllKextSummaries ();
1078 }
Greg Clayton7b242382011-07-08 00:48:09 +00001079 }
1080 else
Greg Clayton7b242382011-07-08 00:48:09 +00001081 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001082 m_kernel.Clear();
Greg Clayton7b242382011-07-08 00:48:09 +00001083 }
1084 }
Greg Clayton7b242382011-07-08 00:48:09 +00001085}
1086
Greg Clayton7b242382011-07-08 00:48:09 +00001087//----------------------------------------------------------------------
1088// Static callback function that gets called when our DYLD notification
1089// breakpoint gets hit. We update all of our image infos and then
1090// let our super class DynamicLoader class decide if we should stop
1091// or not (based on global preference).
1092//----------------------------------------------------------------------
1093bool
Greg Clayton944b8282011-08-22 22:30:57 +00001094DynamicLoaderDarwinKernel::BreakpointHitCallback (void *baton,
Greg Clayton374972e2011-07-09 17:15:55 +00001095 StoppointCallbackContext *context,
1096 user_id_t break_id,
1097 user_id_t break_loc_id)
Greg Clayton0d9fc762011-07-08 03:21:57 +00001098{
Greg Clayton944b8282011-08-22 22:30:57 +00001099 return static_cast<DynamicLoaderDarwinKernel*>(baton)->BreakpointHit (context, break_id, break_loc_id);
Greg Clayton7b242382011-07-08 00:48:09 +00001100}
1101
1102bool
Greg Clayton944b8282011-08-22 22:30:57 +00001103DynamicLoaderDarwinKernel::BreakpointHit (StoppointCallbackContext *context,
Greg Clayton374972e2011-07-09 17:15:55 +00001104 user_id_t break_id,
1105 user_id_t break_loc_id)
1106{
Greg Clayton5160ce52013-03-27 23:08:40 +00001107 Log *log(GetLogIfAnyCategoriesSet (LIBLLDB_LOG_DYNAMIC_LOADER));
Greg Claytond16e1e52011-07-12 17:06:17 +00001108 if (log)
Greg Clayton944b8282011-08-22 22:30:57 +00001109 log->Printf ("DynamicLoaderDarwinKernel::BreakpointHit (...)\n");
Greg Claytond16e1e52011-07-12 17:06:17 +00001110
Greg Clayton374972e2011-07-09 17:15:55 +00001111 ReadAllKextSummaries ();
Greg Claytond16e1e52011-07-12 17:06:17 +00001112
1113 if (log)
Greg Clayton5160ce52013-03-27 23:08:40 +00001114 PutToLog(log);
Greg Claytond16e1e52011-07-12 17:06:17 +00001115
Greg Clayton374972e2011-07-09 17:15:55 +00001116 return GetStopWhenImagesChange();
1117}
1118
1119
1120bool
Greg Clayton944b8282011-08-22 22:30:57 +00001121DynamicLoaderDarwinKernel::ReadKextSummaryHeader ()
Greg Clayton7b242382011-07-08 00:48:09 +00001122{
1123 Mutex::Locker locker(m_mutex);
1124
1125 // the all image infos is already valid for this process stop ID
Greg Clayton7b242382011-07-08 00:48:09 +00001126
Greg Claytond16e1e52011-07-12 17:06:17 +00001127 if (m_kext_summary_header_ptr_addr.IsValid())
Greg Clayton7b242382011-07-08 00:48:09 +00001128 {
1129 const uint32_t addr_size = m_kernel.GetAddressByteSize ();
1130 const ByteOrder byte_order = m_kernel.GetByteOrder();
1131 Error error;
1132 // Read enough bytes for a "OSKextLoadedKextSummaryHeader" structure
1133 // which is currenty 4 uint32_t and a pointer.
1134 uint8_t buf[24];
1135 DataExtractor data (buf, sizeof(buf), byte_order, addr_size);
1136 const size_t count = 4 * sizeof(uint32_t) + addr_size;
Greg Clayton0d9fc762011-07-08 03:21:57 +00001137 const bool prefer_file_cache = false;
Greg Claytond16e1e52011-07-12 17:06:17 +00001138 if (m_process->GetTarget().ReadPointerFromMemory (m_kext_summary_header_ptr_addr,
1139 prefer_file_cache,
1140 error,
1141 m_kext_summary_header_addr))
Greg Clayton7b242382011-07-08 00:48:09 +00001142 {
Greg Claytond16e1e52011-07-12 17:06:17 +00001143 // We got a valid address for our kext summary header and make sure it isn't NULL
1144 if (m_kext_summary_header_addr.IsValid() &&
1145 m_kext_summary_header_addr.GetFileAddress() != 0)
1146 {
1147 const size_t bytes_read = m_process->GetTarget().ReadMemory (m_kext_summary_header_addr, prefer_file_cache, buf, count, error);
1148 if (bytes_read == count)
1149 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001150 lldb::offset_t offset = 0;
Greg Claytona63d08c2011-07-19 03:57:15 +00001151 m_kext_summary_header.version = data.GetU32(&offset);
1152 if (m_kext_summary_header.version >= 2)
1153 {
1154 m_kext_summary_header.entry_size = data.GetU32(&offset);
1155 }
1156 else
1157 {
1158 // Versions less than 2 didn't have an entry size, it was hard coded
1159 m_kext_summary_header.entry_size = KERNEL_MODULE_ENTRY_SIZE_VERSION_1;
1160 }
1161 m_kext_summary_header.entry_count = data.GetU32(&offset);
Greg Claytond16e1e52011-07-12 17:06:17 +00001162 return true;
1163 }
1164 }
Greg Clayton7b242382011-07-08 00:48:09 +00001165 }
1166 }
Greg Claytond16e1e52011-07-12 17:06:17 +00001167 m_kext_summary_header_addr.Clear();
Greg Clayton7b242382011-07-08 00:48:09 +00001168 return false;
1169}
1170
Jason Molenda306bd0a2013-02-19 05:42:46 +00001171// We've either (a) just attached to a new kernel, or (b) the kexts-changed breakpoint was hit
1172// and we need to figure out what kexts have been added or removed.
1173// Read the kext summaries from the inferior kernel memory, compare them against the
1174// m_known_kexts vector and update the m_known_kexts vector as needed to keep in sync with the
1175// inferior.
Greg Clayton7b242382011-07-08 00:48:09 +00001176
1177bool
Jason Molenda306bd0a2013-02-19 05:42:46 +00001178DynamicLoaderDarwinKernel::ParseKextSummaries (const Address &kext_summary_addr, uint32_t count)
Greg Clayton7b242382011-07-08 00:48:09 +00001179{
Jason Molenda306bd0a2013-02-19 05:42:46 +00001180 KextImageInfo::collection kext_summaries;
Greg Clayton5160ce52013-03-27 23:08:40 +00001181 Log *log(GetLogIfAnyCategoriesSet (LIBLLDB_LOG_DYNAMIC_LOADER));
Greg Clayton7b242382011-07-08 00:48:09 +00001182 if (log)
Jason Molenda306bd0a2013-02-19 05:42:46 +00001183 log->Printf ("Kexts-changed breakpoint hit, there are %d kexts currently.\n", count);
Greg Clayton7b242382011-07-08 00:48:09 +00001184
1185 Mutex::Locker locker(m_mutex);
Greg Clayton7b242382011-07-08 00:48:09 +00001186
1187 if (!ReadKextSummaries (kext_summary_addr, count, kext_summaries))
1188 return false;
1189
Jason Molenda4da2e322013-02-26 00:26:47 +00001190 // read the plugin.dynamic-loader.darwin-kernel.load-kexts setting -- if the user requested no
1191 // kext loading, don't print any messages about kexts & don't try to read them.
1192 const bool load_kexts = GetGlobalProperties()->GetLoadKexts();
1193
Jason Molenda306bd0a2013-02-19 05:42:46 +00001194 // By default, all kexts we've loaded in the past are marked as "remove" and all of the kexts
1195 // we just found out about from ReadKextSummaries are marked as "add".
1196 std::vector<bool> to_be_removed(m_known_kexts.size(), true);
1197 std::vector<bool> to_be_added(count, true);
1198
1199 int number_of_new_kexts_being_added = 0;
1200 int number_of_old_kexts_being_removed = m_known_kexts.size();
1201
1202 const uint32_t new_kexts_size = kext_summaries.size();
1203 const uint32_t old_kexts_size = m_known_kexts.size();
1204
1205 // The m_known_kexts vector may have entries that have been Cleared,
1206 // or are a kernel.
1207 for (uint32_t old_kext = 0; old_kext < old_kexts_size; old_kext++)
1208 {
1209 bool ignore = false;
1210 KextImageInfo &image_info = m_known_kexts[old_kext];
1211 if (image_info.IsKernel())
1212 {
1213 ignore = true;
1214 }
1215 else if (image_info.GetLoadAddress() == LLDB_INVALID_ADDRESS && !image_info.GetModule())
1216 {
1217 ignore = true;
1218 }
1219
1220 if (ignore)
1221 {
1222 number_of_old_kexts_being_removed--;
1223 to_be_removed[old_kext] = false;
1224 }
1225 }
1226
1227 // Scan over the list of kexts we just read from the kernel, note those that
1228 // need to be added and those already loaded.
1229 for (uint32_t new_kext = 0; new_kext < new_kexts_size; new_kext++)
1230 {
1231 bool add_this_one = true;
1232 for (uint32_t old_kext = 0; old_kext < old_kexts_size; old_kext++)
1233 {
1234 if (m_known_kexts[old_kext] == kext_summaries[new_kext])
1235 {
1236 // We already have this kext, don't re-load it.
1237 to_be_added[new_kext] = false;
1238 // This kext is still present, do not remove it.
1239 to_be_removed[old_kext] = false;
1240
1241 number_of_old_kexts_being_removed--;
1242 add_this_one = false;
1243 break;
1244 }
1245 }
1246 if (add_this_one)
1247 {
1248 number_of_new_kexts_being_added++;
1249 }
1250 }
1251
1252 if (number_of_new_kexts_being_added == 0 && number_of_old_kexts_being_removed == 0)
1253 return true;
1254
Greg Clayton07e66e32011-07-20 03:41:06 +00001255 Stream *s = &m_process->GetTarget().GetDebugger().GetOutputStream();
Jason Molenda4da2e322013-02-26 00:26:47 +00001256 if (s && load_kexts)
Greg Clayton7b242382011-07-08 00:48:09 +00001257 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001258 if (number_of_new_kexts_being_added > 0 && number_of_old_kexts_being_removed > 0)
1259 {
1260 s->Printf ("Loading %d kext modules and unloading %d kext modules ", number_of_new_kexts_being_added, number_of_old_kexts_being_removed);
1261 }
1262 else if (number_of_new_kexts_being_added > 0)
1263 {
1264 s->Printf ("Loading %d kext modules ", number_of_new_kexts_being_added);
1265 }
1266 else if (number_of_old_kexts_being_removed > 0)
1267 {
1268 s->Printf ("Unloading %d kext modules ", number_of_old_kexts_being_removed);
1269 }
Greg Clayton7b242382011-07-08 00:48:09 +00001270 }
Jason Molenda306bd0a2013-02-19 05:42:46 +00001271
1272 if (log)
Jason Molenda4da2e322013-02-26 00:26:47 +00001273 {
1274 if (load_kexts)
1275 {
1276 log->Printf ("DynamicLoaderDarwinKernel::ParseKextSummaries: %d kexts added, %d kexts removed", number_of_new_kexts_being_added, number_of_old_kexts_being_removed);
1277 }
1278 else
1279 {
1280 log->Printf ("DynamicLoaderDarwinKernel::ParseKextSummaries kext loading is disabled, else would have %d kexts added, %d kexts removed", number_of_new_kexts_being_added, number_of_old_kexts_being_removed);
1281 }
1282 }
1283
Jason Molenda306bd0a2013-02-19 05:42:46 +00001284
1285 if (number_of_new_kexts_being_added > 0)
1286 {
1287 ModuleList loaded_module_list;
1288
1289 const uint32_t num_of_new_kexts = kext_summaries.size();
1290 for (uint32_t new_kext = 0; new_kext < num_of_new_kexts; new_kext++)
1291 {
1292 if (to_be_added[new_kext] == true)
1293 {
1294 KextImageInfo &image_info = kext_summaries[new_kext];
Jason Molenda4da2e322013-02-26 00:26:47 +00001295 if (load_kexts)
1296 {
1297 if (!image_info.LoadImageUsingMemoryModule (m_process))
1298 {
1299 image_info.LoadImageAtFileAddress (m_process);
1300 }
1301 }
Jason Molenda306bd0a2013-02-19 05:42:46 +00001302
1303 m_known_kexts.push_back(image_info);
1304
1305 if (image_info.GetModule() && m_process->GetStopID() == image_info.GetProcessStopId())
1306 loaded_module_list.AppendIfNeeded (image_info.GetModule());
1307
Jason Molenda4da2e322013-02-26 00:26:47 +00001308 if (s && load_kexts)
Jason Molenda306bd0a2013-02-19 05:42:46 +00001309 s->Printf (".");
1310
1311 if (log)
Greg Clayton5160ce52013-03-27 23:08:40 +00001312 kext_summaries[new_kext].PutToLog (log);
Jason Molenda306bd0a2013-02-19 05:42:46 +00001313 }
1314 }
1315 m_process->GetTarget().ModulesDidLoad (loaded_module_list);
1316 }
1317
1318 if (number_of_old_kexts_being_removed > 0)
1319 {
1320 ModuleList loaded_module_list;
1321 const uint32_t num_of_old_kexts = m_known_kexts.size();
1322 for (uint32_t old_kext = 0; old_kext < num_of_old_kexts; old_kext++)
1323 {
1324 ModuleList unloaded_module_list;
1325 if (to_be_removed[old_kext])
1326 {
1327 KextImageInfo &image_info = m_known_kexts[old_kext];
1328 // You can't unload the kernel.
1329 if (!image_info.IsKernel())
1330 {
1331 if (image_info.GetModule())
1332 {
1333 unloaded_module_list.AppendIfNeeded (image_info.GetModule());
1334 }
1335 if (s)
1336 s->Printf (".");
1337 image_info.Clear();
1338 // should pull it out of the KextImageInfos vector but that would mutate the list and invalidate
1339 // the to_be_removed bool vector; leaving it in place once Cleared() is relatively harmless.
1340 }
1341 }
1342 m_process->GetTarget().ModulesDidUnload (unloaded_module_list);
1343 }
1344 }
1345
Jason Molenda4da2e322013-02-26 00:26:47 +00001346 if (s && load_kexts)
Jason Molenda68b36072012-10-02 03:49:41 +00001347 {
1348 s->Printf (" done.\n");
1349 s->Flush ();
1350 }
1351
Jason Molenda306bd0a2013-02-19 05:42:46 +00001352 return true;
Greg Clayton7b242382011-07-08 00:48:09 +00001353}
1354
Greg Clayton7b242382011-07-08 00:48:09 +00001355uint32_t
Greg Clayton944b8282011-08-22 22:30:57 +00001356DynamicLoaderDarwinKernel::ReadKextSummaries (const Address &kext_summary_addr,
Greg Clayton7b242382011-07-08 00:48:09 +00001357 uint32_t image_infos_count,
Jason Molenda306bd0a2013-02-19 05:42:46 +00001358 KextImageInfo::collection &image_infos)
Greg Clayton7b242382011-07-08 00:48:09 +00001359{
1360 const ByteOrder endian = m_kernel.GetByteOrder();
1361 const uint32_t addr_size = m_kernel.GetAddressByteSize();
1362
1363 image_infos.resize(image_infos_count);
1364 const size_t count = image_infos.size() * m_kext_summary_header.entry_size;
1365 DataBufferHeap data(count, 0);
1366 Error error;
Greg Clayton5b882162011-07-21 01:12:01 +00001367
Greg Clayton0d9fc762011-07-08 03:21:57 +00001368 const bool prefer_file_cache = false;
1369 const size_t bytes_read = m_process->GetTarget().ReadMemory (kext_summary_addr,
1370 prefer_file_cache,
1371 data.GetBytes(),
1372 data.GetByteSize(),
1373 error);
Greg Clayton7b242382011-07-08 00:48:09 +00001374 if (bytes_read == count)
1375 {
Greg Claytona63d08c2011-07-19 03:57:15 +00001376
Greg Clayton7b242382011-07-08 00:48:09 +00001377 DataExtractor extractor (data.GetBytes(), data.GetByteSize(), endian, addr_size);
1378 uint32_t i=0;
Greg Claytona63d08c2011-07-19 03:57:15 +00001379 for (uint32_t kext_summary_offset = 0;
1380 i < image_infos.size() && extractor.ValidOffsetForDataOfSize(kext_summary_offset, m_kext_summary_header.entry_size);
1381 ++i, kext_summary_offset += m_kext_summary_header.entry_size)
Greg Clayton7b242382011-07-08 00:48:09 +00001382 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001383 lldb::offset_t offset = kext_summary_offset;
Greg Clayton7b242382011-07-08 00:48:09 +00001384 const void *name_data = extractor.GetData(&offset, KERNEL_MODULE_MAX_NAME);
1385 if (name_data == NULL)
1386 break;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001387 image_infos[i].SetName ((const char *) name_data);
1388 UUID uuid (extractor.GetData (&offset, 16), 16);
1389 image_infos[i].SetUUID (uuid);
1390 image_infos[i].SetLoadAddress (extractor.GetU64(&offset));
1391 image_infos[i].SetSize (extractor.GetU64(&offset));
Greg Clayton7b242382011-07-08 00:48:09 +00001392 }
1393 if (i < image_infos.size())
1394 image_infos.resize(i);
1395 }
1396 else
1397 {
1398 image_infos.clear();
1399 }
1400 return image_infos.size();
1401}
1402
1403bool
Greg Clayton944b8282011-08-22 22:30:57 +00001404DynamicLoaderDarwinKernel::ReadAllKextSummaries ()
Greg Clayton7b242382011-07-08 00:48:09 +00001405{
Greg Clayton7b242382011-07-08 00:48:09 +00001406 Mutex::Locker locker(m_mutex);
Greg Clayton374972e2011-07-09 17:15:55 +00001407
Greg Clayton7b242382011-07-08 00:48:09 +00001408 if (ReadKextSummaryHeader ())
1409 {
Greg Clayton374972e2011-07-09 17:15:55 +00001410 if (m_kext_summary_header.entry_count > 0 && m_kext_summary_header_addr.IsValid())
Greg Clayton7b242382011-07-08 00:48:09 +00001411 {
Greg Clayton0d9fc762011-07-08 03:21:57 +00001412 Address summary_addr (m_kext_summary_header_addr);
Greg Claytona63d08c2011-07-19 03:57:15 +00001413 summary_addr.Slide(m_kext_summary_header.GetSize());
Greg Clayton0d9fc762011-07-08 03:21:57 +00001414 if (!ParseKextSummaries (summary_addr, m_kext_summary_header.entry_count))
Greg Clayton7b242382011-07-08 00:48:09 +00001415 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001416 m_known_kexts.clear();
Greg Clayton7b242382011-07-08 00:48:09 +00001417 }
1418 return true;
1419 }
1420 }
1421 return false;
1422}
1423
1424//----------------------------------------------------------------------
Greg Clayton7b242382011-07-08 00:48:09 +00001425// Dump an image info structure to the file handle provided.
1426//----------------------------------------------------------------------
1427void
Jason Molenda306bd0a2013-02-19 05:42:46 +00001428DynamicLoaderDarwinKernel::KextImageInfo::PutToLog (Log *log) const
Greg Clayton7b242382011-07-08 00:48:09 +00001429{
1430 if (log == NULL)
1431 return;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001432 const uint8_t *u = (uint8_t *) m_uuid.GetBytes();
Greg Clayton7b242382011-07-08 00:48:09 +00001433
Jason Molenda306bd0a2013-02-19 05:42:46 +00001434 if (m_load_address == LLDB_INVALID_ADDRESS)
Greg Clayton7b242382011-07-08 00:48:09 +00001435 {
1436 if (u)
1437 {
Greg Claytona63d08c2011-07-19 03:57:15 +00001438 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 +00001439 u[ 0], u[ 1], u[ 2], u[ 3],
1440 u[ 4], u[ 5], u[ 6], u[ 7],
1441 u[ 8], u[ 9], u[10], u[11],
1442 u[12], u[13], u[14], u[15],
Jason Molenda306bd0a2013-02-19 05:42:46 +00001443 m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001444 }
1445 else
Jason Molenda306bd0a2013-02-19 05:42:46 +00001446 log->Printf("\tname=\"%s\" (UNLOADED)", m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001447 }
1448 else
1449 {
1450 if (u)
1451 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001452 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\"",
1453 m_load_address, m_size,
Greg Claytona63d08c2011-07-19 03:57:15 +00001454 u[ 0], u[ 1], u[ 2], u[ 3], u[ 4], u[ 5], u[ 6], u[ 7],
1455 u[ 8], u[ 9], u[10], u[11], u[12], u[13], u[14], u[15],
Jason Molenda306bd0a2013-02-19 05:42:46 +00001456 m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001457 }
1458 else
1459 {
Jason Molenda306bd0a2013-02-19 05:42:46 +00001460 log->Printf("\t[0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ") name=\"%s\"",
1461 m_load_address, m_load_address+m_size, m_name.c_str());
Greg Clayton7b242382011-07-08 00:48:09 +00001462 }
Greg Clayton7b242382011-07-08 00:48:09 +00001463 }
1464}
1465
1466//----------------------------------------------------------------------
1467// Dump the _dyld_all_image_infos members and all current image infos
1468// that we have parsed to the file handle provided.
1469//----------------------------------------------------------------------
1470void
Greg Clayton944b8282011-08-22 22:30:57 +00001471DynamicLoaderDarwinKernel::PutToLog(Log *log) const
Greg Clayton7b242382011-07-08 00:48:09 +00001472{
1473 if (log == NULL)
1474 return;
1475
1476 Mutex::Locker locker(m_mutex);
Daniel Malead01b2952012-11-29 21:49:15 +00001477 log->Printf("gLoadedKextSummaries = 0x%16.16" PRIx64 " { version=%u, entry_size=%u, entry_count=%u }",
Greg Clayton0d9fc762011-07-08 03:21:57 +00001478 m_kext_summary_header_addr.GetFileAddress(),
Greg Clayton7b242382011-07-08 00:48:09 +00001479 m_kext_summary_header.version,
1480 m_kext_summary_header.entry_size,
Greg Claytona63d08c2011-07-19 03:57:15 +00001481 m_kext_summary_header.entry_count);
Greg Clayton7b242382011-07-08 00:48:09 +00001482
1483 size_t i;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001484 const size_t count = m_known_kexts.size();
Greg Clayton7b242382011-07-08 00:48:09 +00001485 if (count > 0)
1486 {
1487 log->PutCString("Loaded:");
1488 for (i = 0; i<count; i++)
Jason Molenda306bd0a2013-02-19 05:42:46 +00001489 m_known_kexts[i].PutToLog(log);
Greg Clayton7b242382011-07-08 00:48:09 +00001490 }
1491}
1492
1493void
Greg Clayton944b8282011-08-22 22:30:57 +00001494DynamicLoaderDarwinKernel::PrivateInitialize(Process *process)
Greg Clayton7b242382011-07-08 00:48:09 +00001495{
Greg Clayton944b8282011-08-22 22:30:57 +00001496 DEBUG_PRINTF("DynamicLoaderDarwinKernel::%s() process state = %s\n", __FUNCTION__, StateAsCString(m_process->GetState()));
Greg Clayton7b242382011-07-08 00:48:09 +00001497 Clear(true);
1498 m_process = process;
Greg Clayton7b242382011-07-08 00:48:09 +00001499}
1500
Greg Clayton374972e2011-07-09 17:15:55 +00001501void
Greg Clayton944b8282011-08-22 22:30:57 +00001502DynamicLoaderDarwinKernel::SetNotificationBreakpointIfNeeded ()
Greg Clayton7b242382011-07-08 00:48:09 +00001503{
Jason Molenda306bd0a2013-02-19 05:42:46 +00001504 if (m_break_id == LLDB_INVALID_BREAK_ID && m_kernel.GetModule())
Greg Clayton374972e2011-07-09 17:15:55 +00001505 {
Greg Clayton944b8282011-08-22 22:30:57 +00001506 DEBUG_PRINTF("DynamicLoaderDarwinKernel::%s() process state = %s\n", __FUNCTION__, StateAsCString(m_process->GetState()));
Greg Clayton374972e2011-07-09 17:15:55 +00001507
Greg Claytond16e1e52011-07-12 17:06:17 +00001508
Jim Inghama8558b62012-05-22 00:12:20 +00001509 const bool internal_bp = true;
Greg Claytond16e1e52011-07-12 17:06:17 +00001510 const LazyBool skip_prologue = eLazyBoolNo;
Jim Ingham969795f2011-09-21 01:17:13 +00001511 FileSpecList module_spec_list;
Jason Molenda306bd0a2013-02-19 05:42:46 +00001512 module_spec_list.Append (m_kernel.GetModule()->GetFileSpec());
Jim Ingham969795f2011-09-21 01:17:13 +00001513 Breakpoint *bp = m_process->GetTarget().CreateBreakpoint (&module_spec_list,
Jim Ingham87df91b2011-09-23 00:54:11 +00001514 NULL,
Greg Clayton374972e2011-07-09 17:15:55 +00001515 "OSKextLoadedKextSummariesUpdated",
1516 eFunctionNameTypeFull,
Jim Inghama8558b62012-05-22 00:12:20 +00001517 skip_prologue,
1518 internal_bp).get();
Greg Clayton374972e2011-07-09 17:15:55 +00001519
Greg Clayton944b8282011-08-22 22:30:57 +00001520 bp->SetCallback (DynamicLoaderDarwinKernel::BreakpointHitCallback, this, true);
Greg Clayton374972e2011-07-09 17:15:55 +00001521 m_break_id = bp->GetID();
1522 }
Greg Clayton7b242382011-07-08 00:48:09 +00001523}
1524
1525//----------------------------------------------------------------------
1526// Member function that gets called when the process state changes.
1527//----------------------------------------------------------------------
1528void
Greg Clayton944b8282011-08-22 22:30:57 +00001529DynamicLoaderDarwinKernel::PrivateProcessStateChanged (Process *process, StateType state)
Greg Clayton7b242382011-07-08 00:48:09 +00001530{
Greg Clayton944b8282011-08-22 22:30:57 +00001531 DEBUG_PRINTF("DynamicLoaderDarwinKernel::%s(%s)\n", __FUNCTION__, StateAsCString(state));
Greg Clayton7b242382011-07-08 00:48:09 +00001532 switch (state)
1533 {
1534 case eStateConnected:
1535 case eStateAttaching:
1536 case eStateLaunching:
1537 case eStateInvalid:
1538 case eStateUnloaded:
1539 case eStateExited:
1540 case eStateDetached:
1541 Clear(false);
1542 break;
1543
1544 case eStateStopped:
Greg Clayton374972e2011-07-09 17:15:55 +00001545 UpdateIfNeeded();
Greg Clayton7b242382011-07-08 00:48:09 +00001546 break;
1547
1548 case eStateRunning:
1549 case eStateStepping:
1550 case eStateCrashed:
1551 case eStateSuspended:
1552 break;
Greg Clayton7b242382011-07-08 00:48:09 +00001553 }
1554}
1555
1556ThreadPlanSP
Greg Clayton944b8282011-08-22 22:30:57 +00001557DynamicLoaderDarwinKernel::GetStepThroughTrampolinePlan (Thread &thread, bool stop_others)
Greg Clayton7b242382011-07-08 00:48:09 +00001558{
1559 ThreadPlanSP thread_plan_sp;
Greg Clayton5160ce52013-03-27 23:08:40 +00001560 Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Greg Clayton374972e2011-07-09 17:15:55 +00001561 if (log)
1562 log->Printf ("Could not find symbol for step through.");
Greg Clayton7b242382011-07-08 00:48:09 +00001563 return thread_plan_sp;
1564}
1565
1566Error
Greg Clayton944b8282011-08-22 22:30:57 +00001567DynamicLoaderDarwinKernel::CanLoadImage ()
Greg Clayton7b242382011-07-08 00:48:09 +00001568{
1569 Error error;
1570 error.SetErrorString("always unsafe to load or unload shared libraries in the darwin kernel");
1571 return error;
1572}
1573
1574void
Greg Clayton944b8282011-08-22 22:30:57 +00001575DynamicLoaderDarwinKernel::Initialize()
Greg Clayton7b242382011-07-08 00:48:09 +00001576{
1577 PluginManager::RegisterPlugin (GetPluginNameStatic(),
1578 GetPluginDescriptionStatic(),
Greg Claytone8cd0c92012-10-19 18:02:49 +00001579 CreateInstance,
1580 DebuggerInitialize);
Greg Clayton7b242382011-07-08 00:48:09 +00001581}
1582
1583void
Greg Clayton944b8282011-08-22 22:30:57 +00001584DynamicLoaderDarwinKernel::Terminate()
Greg Clayton7b242382011-07-08 00:48:09 +00001585{
1586 PluginManager::UnregisterPlugin (CreateInstance);
1587}
1588
Greg Claytone8cd0c92012-10-19 18:02:49 +00001589void
1590DynamicLoaderDarwinKernel::DebuggerInitialize (lldb_private::Debugger &debugger)
1591{
1592 if (!PluginManager::GetSettingForDynamicLoaderPlugin (debugger, DynamicLoaderDarwinKernelProperties::GetSettingName()))
1593 {
1594 const bool is_global_setting = true;
1595 PluginManager::CreateSettingForDynamicLoaderPlugin (debugger,
1596 GetGlobalProperties()->GetValueProperties(),
1597 ConstString ("Properties for the DynamicLoaderDarwinKernel plug-in."),
1598 is_global_setting);
1599 }
1600}
Greg Clayton7b242382011-07-08 00:48:09 +00001601
1602const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001603DynamicLoaderDarwinKernel::GetPluginNameStatic()
Greg Clayton7b242382011-07-08 00:48:09 +00001604{
Greg Clayton468ea4e2012-10-19 18:14:47 +00001605 return "dynamic-loader.darwin-kernel";
Greg Clayton7b242382011-07-08 00:48:09 +00001606}
1607
1608const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001609DynamicLoaderDarwinKernel::GetPluginDescriptionStatic()
Greg Clayton7b242382011-07-08 00:48:09 +00001610{
1611 return "Dynamic loader plug-in that watches for shared library loads/unloads in the MacOSX kernel.";
1612}
1613
1614
1615//------------------------------------------------------------------
1616// PluginInterface protocol
1617//------------------------------------------------------------------
1618const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001619DynamicLoaderDarwinKernel::GetPluginName()
Greg Clayton7b242382011-07-08 00:48:09 +00001620{
Greg Clayton944b8282011-08-22 22:30:57 +00001621 return "DynamicLoaderDarwinKernel";
Greg Clayton7b242382011-07-08 00:48:09 +00001622}
1623
1624const char *
Greg Clayton944b8282011-08-22 22:30:57 +00001625DynamicLoaderDarwinKernel::GetShortPluginName()
Greg Clayton7b242382011-07-08 00:48:09 +00001626{
1627 return GetPluginNameStatic();
1628}
1629
1630uint32_t
Greg Clayton944b8282011-08-22 22:30:57 +00001631DynamicLoaderDarwinKernel::GetPluginVersion()
Greg Clayton7b242382011-07-08 00:48:09 +00001632{
1633 return 1;
1634}
1635
Greg Clayton1f746072012-08-29 21:13:06 +00001636lldb::ByteOrder
1637DynamicLoaderDarwinKernel::GetByteOrderFromMagic (uint32_t magic)
1638{
1639 switch (magic)
1640 {
1641 case llvm::MachO::HeaderMagic32:
1642 case llvm::MachO::HeaderMagic64:
1643 return lldb::endian::InlHostByteOrder();
1644
1645 case llvm::MachO::HeaderMagic32Swapped:
1646 case llvm::MachO::HeaderMagic64Swapped:
1647 if (lldb::endian::InlHostByteOrder() == lldb::eByteOrderBig)
1648 return lldb::eByteOrderLittle;
1649 else
1650 return lldb::eByteOrderBig;
1651
1652 default:
1653 break;
1654 }
1655 return lldb::eByteOrderInvalid;
1656}
1657