]>
git.saurik.com Git - apple/xnu.git/blob - tools/lldbmacros/core/kernelcore.py
43a3bd864b0cb5b1dfebf60e8359b1879ba2f531
2 """ Please make sure you read the README COMPLETELY BEFORE reading anything below.
3 It is very critical that you read coding guidelines in Section E in README file.
7 from lazytarget
import *
8 from configuration
import *
13 def IterateTAILQ_HEAD(headval
, element_name
):
14 """ iterate over a TAILQ_HEAD in kernel. refer to bsd/sys/queue.h
16 headval - value : value object representing the head of the list
17 element_name- str : string name of the field which holds the list links.
19 A generator does not return. It is used for iterating.
20 value : an object that is of type as headval->tqh_first. Always a pointer object
22 list_head = kern.GetGlobalVariable('mountlist')
23 for entryobj in IterateTAILQ_HEAD(list_head, 'mnt_list'):
24 print GetEntrySummary(entryobj)
26 iter_val
= headval
.tqh_first
27 while unsigned(iter_val
) != 0 :
29 iter_val
= iter_val
.__getattr
__(element_name
).tqe_next
32 def IterateLinkedList(element
, field_name
):
33 """ iterate over a linked list.
34 This is equivalent to elt = element; while(elt) { do_work(elt); elt = elt-><field_name>; }
36 element - value : value object representing element in the list.
37 field_name - str : name of field that holds pointer to next element
38 returns: Nothing. This is used as iterable
40 first_zone = kern.GetGlobalVariable('first_zone')
41 for zone in IterateLinkedList(first_zone, 'next_zone'):
42 print GetZoneSummary(zone)
45 while unsigned(elt
) != 0:
47 elt
= elt
.__getattr
__(field_name
)
50 def IterateListEntry(element
, element_type
, field_name
, list_prefix
=''):
51 """ iterate over a list as defined with LIST_HEAD in bsd/sys/queue.h
53 element - value : Value object for lh_first
54 element_type - str : Type of the next element
55 field_name - str : Name of the field in next element's structure
56 list_prefix - str : use 's' here to iterate SLIST_HEAD instead
58 A generator does not return. It is used for iterating
59 value : an object thats of type (element_type) head->le_next. Always a pointer object
61 headp = kern.globals.initproc.p_children
62 for pp in IterateListEntry(headp, 'struct proc *', 'p_sibling'):
65 elt
= element
.__getattr
__(list_prefix
+ 'lh_first')
66 if type(element_type
) == str:
67 element_type
= gettype(element_type
)
68 while unsigned(elt
) != 0:
70 next_el
= elt
.__getattr
__(field_name
).__getattr
__(list_prefix
+ 'le_next')
71 elt
= cast(next_el
, element_type
)
73 def IterateLinkageChain(queue_head
, element_type
, field_name
, field_ofst
=0):
74 """ Iterate over a Linkage Chain queue in kernel of type queue_head_t. (osfmk/kern/queue.h method 1)
75 This is equivalent to the qe_foreach_element() macro
77 queue_head - value : Value object for queue_head.
78 element_type - lldb.SBType : pointer type of the element which contains the queue_chain_t. Typically its structs like thread, task etc..
79 - str : OR a string describing the type. ex. 'task *'
80 field_name - str : Name of the field (in element) which holds a queue_chain_t
81 field_ofst - int : offset from the 'field_name' (in element) which holds a queue_chain_t
82 This is mostly useful if a particular element contains an array of queue_chain_t
84 A generator does not return. It is used for iterating.
85 value : An object thats of type (element_type). Always a pointer object
87 coalq = kern.GetGlobalVariable('coalitions_q')
88 for coal in IterateLinkageChain(coalq, 'struct coalition *', 'coalitions'):
89 print GetCoalitionInfo(coal)
92 if type(element_type
) == str:
93 element_type
= gettype(element_type
)
95 if unsigned(queue_head
) == 0:
98 if element_type
.IsPointerType():
99 elem_ofst
= getfieldoffset(element_type
.GetPointeeType(), field_name
) + field_ofst
101 elem_ofst
= getfieldoffset(element_type
, field_name
) + field_ofst
103 link
= queue_head
.next
104 while (unsigned(link
) != unsigned(queue_head
)):
105 addr
= unsigned(link
) - elem_ofst
;
106 # I can't use the GetValueFromAddress function of the kernel class
107 # because I have no instance of that class!
108 obj
= value(link
.GetSBValue().CreateValueFromExpression(None,'(void *)'+str(addr
)))
109 obj
= cast(obj
, element_type
)
114 def IterateQueue(queue_head
, element_ptr_type
, element_field_name
, backwards
=False, unpack_ptr_fn
=None):
115 """ Iterate over an Element Chain queue in kernel of type queue_head_t. (osfmk/kern/queue.h method 2)
117 queue_head - value : Value object for queue_head.
118 element_ptr_type - lldb.SBType : a pointer type of the element 'next' points to. Typically its structs like thread, task etc..
119 - str : OR a string describing the type. ex. 'task *'
120 element_field_name - str : name of the field in target struct.
121 backwards - backwards : traverse the queue backwards
122 unpack_ptr_fn - function : a function ptr of signature def unpack_ptr(long v) which returns long.
124 A generator does not return. It is used for iterating.
125 value : an object thats of type (element_type) queue_head->next. Always a pointer object
127 for page_meta in IterateQueue(kern.globals.first_zone.pages.all_free, 'struct zone_page_metadata *', 'pages'):
130 if type(element_ptr_type
) == str :
131 element_ptr_type
= gettype(element_ptr_type
)
133 queue_head
= queue_head
.GetSBValue()
134 queue_head_addr
= 0x0
135 if queue_head
.TypeIsPointerType():
136 queue_head_addr
= queue_head
.GetValueAsUnsigned()
138 queue_head_addr
= queue_head
.GetAddress().GetLoadAddress(LazyTarget
.GetTarget())
140 def unpack_ptr_and_recast(v
):
141 if unpack_ptr_fn
is None:
143 v_unpacked
= unpack_ptr_fn(v
.GetValueAsUnsigned())
144 obj
= v
.CreateValueFromExpression(None,'(void *)'+str(v_unpacked
))
145 obj
.Cast(element_ptr_type
)
149 cur_elt
= unpack_ptr_and_recast(queue_head
.GetChildMemberWithName('prev'))
151 cur_elt
= unpack_ptr_and_recast(queue_head
.GetChildMemberWithName('next'))
155 if not cur_elt
.IsValid() or cur_elt
.GetValueAsUnsigned() == 0 or cur_elt
.GetValueAsUnsigned() == queue_head_addr
:
157 elt
= cur_elt
.Cast(element_ptr_type
)
160 cur_elt
= unpack_ptr_and_recast(elt
.GetChildMemberWithName(element_field_name
).GetChildMemberWithName('prev'))
162 cur_elt
= unpack_ptr_and_recast(elt
.GetChildMemberWithName(element_field_name
).GetChildMemberWithName('next'))
165 def IterateRBTreeEntry(element
, element_type
, field_name
):
166 """ iterate over a rbtree as defined with RB_HEAD in libkern/tree.h
167 element - value : Value object for rbh_root
168 element_type - str : Type of the link element
169 field_name - str : Name of the field in link element's structure
171 A generator does not return. It is used for iterating
172 value : an object thats of type (element_type) head->sle_next. Always a pointer object
174 elt
= element
.__getattr
__('rbh_root')
175 if type(element_type
) == str:
176 element_type
= gettype(element_type
)
180 while unsigned(elt
) != 0:
182 elt
= cast(elt
.__getattr
__(field_name
).__getattr
__('rbe_left'), element_type
)
186 while unsigned(elt
) != 0:
188 # implementation cribbed from RB_NEXT in libkern/tree.h
189 right
= cast(elt
.__getattr
__(field_name
).__getattr
__('rbe_right'), element_type
)
190 if unsigned(right
) != 0:
192 left
= cast(elt
.__getattr
__(field_name
).__getattr
__('rbe_left'), element_type
)
193 while unsigned(left
) != 0:
195 left
= cast(elt
.__getattr
__(field_name
).__getattr
__('rbe_left'), element_type
)
198 # avoid using GetValueFromAddress
199 addr
= elt
.__getattr
__(field_name
).__getattr
__('rbe_parent')&~
1
200 parent
= value(elt
.GetSBValue().CreateValueFromExpression(None,'(void *)'+str(addr
)))
201 parent
= cast(parent
, element_type
)
203 if unsigned(parent
) != 0:
204 left
= cast(parent
.__getattr
__(field_name
).__getattr
__('rbe_left'), element_type
)
205 if (unsigned(parent
) != 0) and (unsigned(elt
) == unsigned(left
)):
208 if unsigned(parent
) != 0:
209 right
= cast(parent
.__getattr
__(field_name
).__getattr
__('rbe_right'), element_type
)
210 while unsigned(parent
) != 0 and (unsigned(elt
) == unsigned(right
)):
213 # avoid using GetValueFromAddress
214 addr
= elt
.__getattr
__(field_name
).__getattr
__('rbe_parent')&~
1
215 parent
= value(elt
.GetSBValue().CreateValueFromExpression(None,'(void *)'+str(addr
)))
216 parent
= cast(parent
, element_type
)
218 right
= cast(parent
.__getattr
__(field_name
).__getattr
__('rbe_right'), element_type
)
220 # avoid using GetValueFromAddress
221 addr
= elt
.__getattr
__(field_name
).__getattr
__('rbe_parent')&~
1
222 elt
= value(elt
.GetSBValue().CreateValueFromExpression(None,'(void *)'+str(addr
)))
223 elt
= cast(elt
, element_type
)
226 def IteratePriorityQueueEntry(root
, element_type
, field_name
):
227 """ iterate over a priority queue as defined with struct priority_queue from osfmk/kern/priority_queue.h
228 root - value : Value object for the priority queue
229 element_type - str : Type of the link element
230 field_name - str : Name of the field in link element's structure
232 A generator does not return. It is used for iterating
233 value : an object thats of type (element_type). Always a pointer object
236 return value(root
.GetSBValue().CreateValueFromExpression(None,'(struct priority_queue_entry *)'+str(addr
)))
238 queue
= [unsigned(root
.pq_root_packed
) & ~
3]
241 elt
= _make_pqe(queue
.pop())
244 yield containerof(elt
, element_type
, field_name
)
245 addr
= unsigned(elt
.child
)
246 if addr
: queue
.append(addr
)
250 class KernelTarget(object):
251 """ A common kernel object that provides access to kernel objects and information.
252 The class holds global lists for task, terminated_tasks, procs, zones, zombroc etc.
253 It also provides a way to symbolicate an address or create a value from an address.
255 def __init__(self
, debugger
):
256 """ Initialize the kernel debugging environment.
257 Target properties like architecture and connectedness are lazy-evaluted.
259 self
._debugger
= debugger
# This holds an lldb.SBDebugger object for debugger state
260 self
._threads
_list
= []
261 self
._tasks
_list
= []
262 self
._coalitions
_list
= []
263 self
._thread
_groups
= []
265 self
._terminated
_tasks
_list
= []
266 self
._zones
_list
= []
267 self
._zombproc
_list
= []
268 self
._kernel
_types
_cache
= {} #this will cache the Type objects as and when requested.
271 self
._ptrsize
= None # pointer size of kernel, not userspace
272 self
.symbolicator
= None
273 class _GlobalVariableFind(object):
274 def __init__(self
, kern
):
275 self
._xnu
_kernobj
_12obscure
12 = kern
276 def __getattr__(self
, name
):
277 v
= self
._xnu
_kernobj
_12obscure
12.GetGlobalVariable(name
)
278 if not v
.GetSBValue().IsValid():
279 raise ValueError('No such global variable by name: %s '%str
(name
))
281 self
.globals = _GlobalVariableFind(self
)
282 LazyTarget
.Initialize(debugger
)
284 def _GetSymbolicator(self
):
285 """ Internal function: To initialize the symbolication from lldb.utils
287 if not self
.symbolicator
is None:
288 return self
.symbolicator
290 from lldb
.utils
import symbolication
291 symbolicator
= symbolication
.Symbolicator()
292 symbolicator
.target
= LazyTarget
.GetTarget()
293 self
.symbolicator
= symbolicator
294 return self
.symbolicator
296 def Symbolicate(self
, addr
):
297 """ simple method to get name of function/variable from an address. this is equivalent of gdb 'output /a 0xaddress'
299 addr - int : typically hex value like 0xffffff80002c0df0
301 str - '' if no symbol found else the symbol name.
302 Note: this function only finds the first symbol. If you expect multiple symbol conflict please use SymbolicateFromAddress()
305 syms
= self
.SymbolicateFromAddress(addr
)
307 ret_str
+=syms
[0].GetName()
310 def SymbolicateFromAddress(self
, addr
):
311 """ symbolicates any given address based on modules loaded in the target.
313 addr - int : typically hex value like 0xffffff80002c0df0
315 [] of SBSymbol: In case we don't find anything than empty array is returned.
316 Note: a type of symbol can be figured out by gettype() function of SBSymbol.
318 syms = kern.Symbolicate(0xffffff80002c0df0)
320 if s.GetType() == lldb.eSymbolTypeCode:
321 print "Function", s.GetName()
322 if s.GetType() == lldb.eSymbolTypeData:
323 print "Variable", s.GetName()
325 if type(int(1)) != type(addr
):
326 if str(addr
).strip().find("0x") == 0 :
331 symbolicator
= self
._GetSymbolicator
()
332 syms
= symbolicator
.symbolicate(addr
)
336 ret_array
.append(s
.get_symbol_context().symbol
)
339 def IsDebuggerConnected(self
):
340 proc_state
= LazyTarget
.GetProcess().state
341 if proc_state
== lldb
.eStateInvalid
: return False
342 if proc_state
in [lldb
.eStateStopped
, lldb
.eStateSuspended
] : return True
344 def GetGlobalVariable(self
, name
):
345 """ Get the value object representation for a kernel global variable
347 name : str - name of the variable. ex. version
348 returns: value - python object representing global variable.
349 raises : Exception in case the variable is not found.
351 self
._globals
_cache
_dict
= caching
.GetDynamicCacheData("kern._globals_cache_dict", {})
352 if name
not in self
._globals
_cache
_dict
:
353 self
._globals
_cache
_dict
[name
] = value(LazyTarget
.GetTarget().FindGlobalVariables(name
, 1).GetValueAtIndex(0))
354 return self
._globals
_cache
_dict
[name
]
356 def GetLoadAddressForSymbol(self
, name
):
357 """ Get the load address of a symbol in the kernel.
359 name : str - name of the symbol to lookup
360 returns: int - the load address as an integer. Use GetValueFromAddress to cast to a value.
361 raises : LookupError - if the symbol is not found.
364 target
= LazyTarget
.GetTarget()
365 syms_arr
= target
.FindSymbols(name
)
366 if syms_arr
.IsValid() and len(syms_arr
) > 0:
367 symbol
= syms_arr
[0].GetSymbol()
369 return int(symbol
.GetStartAddress().GetLoadAddress(target
))
371 raise LookupError("Symbol not found: " + name
)
373 def GetValueFromAddress(self
, addr
, type_str
= 'void *'):
374 """ convert a address to value
376 addr - int : typically hex value like 0xffffff80008dc390
377 type_str - str: type to cast to. Default type will be void *
379 value : a value object which has address as addr and type is type_str
381 obj
= value(self
.globals.version
.GetSBValue().CreateValueFromExpression(None,'(void *)'+str(addr
)))
382 obj
= cast(obj
, type_str
)
385 def GetValueAsType(self
, v
, t
):
386 """ Retrieves a global variable 'v' of type 't' wrapped in a vue object.
387 If 'v' is an address, creates a vue object of the appropriate type.
388 If 'v' is a name, looks for the global variable and asserts its type.
390 NameError - If 'v' cannot be found
391 TypeError - If 'v' is of the wrong type
394 return self
.GetValueFromAddress(v
, t
)
396 var
= LazyTarget
.GetTarget().FindGlobalVariables(v
, 1)[0]
398 raise NameError("Failed to find global variable '{0}'".format(v
))
399 if var
.GetTypeName() != t
:
400 raise TypeError("{0} must be of type '{1}', not '{2}'".format(v
, t
, var
.GetTypeName()))
403 def _GetIterator(self
, iter_head_name
, next_element_name
='next', iter_head_type
=None):
404 """ returns an iterator for a collection in kernel memory.
406 iter_head_name - str : name of queue_head or list head variable.
407 next_element_name - str : name of the element that leads to next element.
408 for ex. in struct zone list 'next_zone' is the linking element.
410 iterable : typically used in conjunction with "for varname in iterable:"
412 head_element
= self
.GetGlobalVariable(iter_head_name
)
413 return head_element
.GetSBValue().linked_list_iter(next_element_name
)
415 def TruncPage(self
, addr
):
416 return (addr
& ~
(unsigned(self
.GetGlobalVariable("page_size")) - 1))
418 def RoundPage(self
, addr
):
419 return trunc_page(addr
+ unsigned(self
.GetGlobalVariable("page_size")) - 1)
421 def StraddlesPage(self
, addr
, size
):
422 if size
> unsigned(self
.GetGlobalVariable("page_size")):
424 val
= ((addr
+ size
) & (unsigned(self
.GetGlobalVariable("page_size"))-1))
425 return (val
< size
and val
> 0)
428 def PhysToKVARM64(self
, addr
):
429 ptov_table
= self
.GetGlobalVariable('ptov_table')
430 for i
in range(0, self
.GetGlobalVariable('ptov_index')):
431 if (addr
>= long(unsigned(ptov_table
[i
].pa
))) and (addr
< (long(unsigned(ptov_table
[i
].pa
)) + long(unsigned(ptov_table
[i
].len)))):
432 return (addr
- long(unsigned(ptov_table
[i
].pa
)) + long(unsigned(ptov_table
[i
].va
)))
433 return (addr
- unsigned(self
.GetGlobalVariable("gPhysBase")) + unsigned(self
.GetGlobalVariable("gVirtBase")))
435 def PhysToKernelVirt(self
, addr
):
436 if self
.arch
== 'x86_64':
437 return (addr
+ unsigned(self
.GetGlobalVariable('physmap_base')))
438 elif self
.arch
.startswith('arm64'):
439 return self
.PhysToKVARM64(addr
)
440 elif self
.arch
.startswith('arm'):
441 return (addr
- unsigned(self
.GetGlobalVariable("gPhysBase")) + unsigned(self
.GetGlobalVariable("gVirtBase")))
443 raise ValueError("PhysToVirt does not support {0}".format(self
.arch
))
445 def GetNanotimeFromAbstime(self
, abstime
):
446 """ convert absolute time (which is in MATUs) to nano seconds.
447 Since based on architecture the conversion may differ.
449 abstime - int absolute time as shown by mach_absolute_time
451 int - nanosecs of time
453 usec_divisor
= caching
.GetStaticCacheData("kern.rtc_usec_divisor", None)
455 if self
.arch
== 'x86_64':
458 rtclockdata_addr
= self
.GetLoadAddressForSymbol('RTClockData')
459 rtc
= self
.GetValueFromAddress(rtclockdata_addr
, 'struct _rtclock_data_ *')
460 usec_divisor
= unsigned(rtc
.rtc_usec_divisor
)
461 usec_divisor
= int(usec_divisor
)
462 caching
.SaveStaticCacheData('kern.rtc_usec_divisor', usec_divisor
)
463 nsecs
= (abstime
* 1000)/usec_divisor
466 def __getattribute__(self
, name
):
468 self
._zones
_list
= caching
.GetDynamicCacheData("kern._zones_list", [])
469 if len(self
._zones
_list
) > 0: return self
._zones
_list
470 zone_array
= self
.GetGlobalVariable('zone_array')
471 for i
in range(0, self
.GetGlobalVariable('num_zones')):
472 self
._zones
_list
.append(addressof(zone_array
[i
]))
473 caching
.SaveDynamicCacheData("kern._zones_list", self
._zones
_list
)
474 return self
._zones
_list
476 if name
== 'threads' :
477 self
._threads
_list
= caching
.GetDynamicCacheData("kern._threads_list", [])
478 if len(self
._threads
_list
) > 0 : return self
._threads
_list
479 thread_queue_head
= self
.GetGlobalVariable('threads')
480 thread_type
= LazyTarget
.GetTarget().FindFirstType('thread')
481 thread_ptr_type
= thread_type
.GetPointerType()
482 for th
in IterateQueue(thread_queue_head
, thread_ptr_type
, 'threads'):
483 self
._threads
_list
.append(th
)
484 caching
.SaveDynamicCacheData("kern._threads_list", self
._threads
_list
)
485 return self
._threads
_list
488 self
._tasks
_list
= caching
.GetDynamicCacheData("kern._tasks_list", [])
489 if len(self
._tasks
_list
) > 0 : return self
._tasks
_list
490 task_queue_head
= self
.GetGlobalVariable('tasks')
491 task_type
= LazyTarget
.GetTarget().FindFirstType('task')
492 task_ptr_type
= task_type
.GetPointerType()
493 for tsk
in IterateQueue(task_queue_head
, task_ptr_type
, 'tasks'):
494 self
._tasks
_list
.append(tsk
)
495 caching
.SaveDynamicCacheData("kern._tasks_list", self
._tasks
_list
)
496 return self
._tasks
_list
498 if name
== 'coalitions' :
499 self
._coalitions
_list
= caching
.GetDynamicCacheData("kern._coalitions_list", [])
500 if len(self
._coalitions
_list
) > 0 : return self
._coalitions
_list
501 coalition_queue_head
= self
.GetGlobalVariable('coalitions_q')
502 coalition_type
= LazyTarget
.GetTarget().FindFirstType('coalition')
503 coalition_ptr_type
= coalition_type
.GetPointerType()
504 for coal
in IterateLinkageChain(addressof(coalition_queue_head
), coalition_ptr_type
, 'coalitions'):
505 self
._coalitions
_list
.append(coal
)
506 caching
.SaveDynamicCacheData("kern._coalitions_list", self
._coalitions
_list
)
507 return self
._coalitions
_list
509 if name
== 'thread_groups' :
510 self
._thread
_groups
_list
= caching
.GetDynamicCacheData("kern._thread_groups_list", [])
511 if len(self
._thread
_groups
_list
) > 0 : return self
._thread
_groups
_list
512 thread_groups_queue_head
= self
.GetGlobalVariable('tg_queue')
513 thread_group_type
= LazyTarget
.GetTarget().FindFirstType('thread_group')
514 thread_groups_ptr_type
= thread_group_type
.GetPointerType()
515 for coal
in IterateLinkageChain(addressof(thread_groups_queue_head
), thread_groups_ptr_type
, 'tg_queue_chain'):
516 self
._thread
_groups
_list
.append(coal
)
517 caching
.SaveDynamicCacheData("kern._thread_groups_list", self
._thread
_groups
_list
)
518 return self
._thread
_groups
_list
520 if name
== 'terminated_tasks' :
521 self
._terminated
_tasks
_list
= caching
.GetDynamicCacheData("kern._terminated_tasks_list", [])
522 if len(self
._terminated
_tasks
_list
) > 0 : return self
._terminated
_tasks
_list
523 task_queue_head
= self
.GetGlobalVariable('terminated_tasks')
524 task_type
= LazyTarget
.GetTarget().FindFirstType('task')
525 task_ptr_type
= task_type
.GetPointerType()
526 for tsk
in IterateQueue(task_queue_head
, task_ptr_type
, 'tasks'):
527 self
._terminated
_tasks
_list
.append(tsk
)
528 caching
.SaveDynamicCacheData("kern._terminated_tasks_list", self
._terminated
_tasks
_list
)
529 return self
._terminated
_tasks
_list
532 self
._allproc
= caching
.GetDynamicCacheData("kern._allproc", [])
533 if len(self
._allproc
) > 0 : return self
._allproc
534 all_proc_head
= self
.GetGlobalVariable('allproc')
535 proc_val
= cast(all_proc_head
.lh_first
, 'proc *')
537 self
._allproc
.append(proc_val
)
538 proc_val
= cast(proc_val
.p_list
.le_next
, 'proc *')
539 caching
.SaveDynamicCacheData("kern._allproc", self
._allproc
)
542 if name
== 'interrupt_stats' :
543 self
._interrupt
_stats
_list
= caching
.GetDynamicCacheData("kern._interrupt_stats_list", [])
544 if len(self
._interrupt
_stats
_list
) > 0 : return self
._interrupt
_stats
_list
545 interrupt_stats_head
= self
.GetGlobalVariable('gInterruptAccountingDataList')
546 interrupt_stats_type
= LazyTarget
.GetTarget().FindFirstType('IOInterruptAccountingData')
547 interrupt_stats_ptr_type
= interrupt_stats_type
.GetPointerType()
548 for interrupt_stats_obj
in IterateQueue(interrupt_stats_head
, interrupt_stats_ptr_type
, 'chain'):
549 self
._interrupt
_stats
_list
.append(interrupt_stats_obj
)
550 caching
.SaveDynamicCacheData("kern._interrupt_stats", self
._interrupt
_stats
_list
)
551 return self
._interrupt
_stats
_list
553 if name
== 'zombprocs' :
554 self
._zombproc
_list
= caching
.GetDynamicCacheData("kern._zombproc_list", [])
555 if len(self
._zombproc
_list
) > 0 : return self
._zombproc
_list
556 zproc_head
= self
.GetGlobalVariable('zombproc')
557 proc_val
= cast(zproc_head
.lh_first
, 'proc *')
559 self
._zombproc
_list
.append(proc_val
)
560 proc_val
= cast(proc_val
.p_list
.le_next
, 'proc *')
561 caching
.SaveDynamicCacheData("kern._zombproc_list", self
._zombproc
_list
)
562 return self
._zombproc
_list
564 if name
== 'version' :
565 self
._version
= caching
.GetStaticCacheData("kern.version", None)
566 if self
._version
!= None : return self
._version
567 self
._version
= str(self
.GetGlobalVariable('version'))
568 caching
.SaveStaticCacheData("kern.version", self
._version
)
572 self
._arch
= caching
.GetStaticCacheData("kern.arch", None)
573 if self
._arch
!= None : return self
._arch
574 arch
= LazyTarget
.GetTarget().triple
.split('-')[0]
575 if arch
in ('armv7', 'armv7s', 'armv7k'):
579 caching
.SaveStaticCacheData("kern.arch", self
._arch
)
582 if name
== 'ptrsize' :
583 self
._ptrsize
= caching
.GetStaticCacheData("kern.ptrsize", None)
584 if self
._ptrsize
!= None : return self
._ptrsize
585 arch
= LazyTarget
.GetTarget().triple
.split('-')[0]
586 if arch
== 'x86_64' or arch
.startswith('arm64'):
590 caching
.SaveStaticCacheData("kern.ptrsize", self
._ptrsize
)
593 if name
== 'VM_MIN_KERNEL_ADDRESS':
594 if self
.arch
== 'x86_64':
595 return unsigned(0xFFFFFF8000000000)
596 elif self
.arch
.startswith('arm64'):
597 return unsigned(0xffffffe000000000)
599 return unsigned(0x80000000)
601 if name
== 'VM_MIN_KERNEL_AND_KEXT_ADDRESS':
602 if self
.arch
== 'x86_64':
603 return self
.VM_MIN_KERNEL_ADDRESS
- 0x80000000
605 return self
.VM_MIN_KERNEL_ADDRESS
607 return object.__getattribute
__(self
, name
)