xnu is the name of the operating system kernel that underpins Mac OS X/darwin and iOS.

learn more… | top users | synonyms

0
votes
1answer
17 views

Always have much xcrun error in xnu installing(OSX 10.8.3)

i searched much websites to install the xnu kernel. however, there are some errors when i was installing xnu. Xcode version: 4.6 (installed command line tool) XNU version: xnu-2050.22.13 dtrace ...
1
vote
1answer
81 views

Mach vm_read not returning the expected values for OSX 10.8.2

I just recently moved to the UNIX platform and currently doing research on operating systems. Right now, I am particularly interested at the design/implementation of XNU and currently on the topic of ...
0
votes
0answers
33 views

Failed to read nlist_64 from /dev/kmem (OS X 10.8.2)

I tried to resolve symbols in the kernel. I enabled /dev/kmem, found _LINKEDIT segment and SYMTAB. I know the start of nlist_64 array is linkedit.vmaddr. But when I tried to read /dev/kmem to get ...
2
votes
1answer
83 views

How to determine if process has root privileges in a network kernel extension?

I'm writing a socket filter kext and I would want to ignore any connections made as root. Before OS X Lion, the following code worked flawlessly: static boolean_t is_root() { proc_t p = ...
2
votes
1answer
101 views

XNU Thread States color-coded in Xcode/Instruments

I am doing some analysis of a multi-threaded application using the Apple Instruments tools, which give a lot of information I'm trying to make sense out of. I am trying to find a good resource to ...
0
votes
0answers
132 views

Why isn't my kernel extension writing to kernel.log

I have a simple kernel extension: kern_return_t HelloWorld_start (kmod_info_t *ki, void * d) { printf("Hello World\n"); return KERN_SUCCESS; } kern_return_t HelloWorld_stop (kmod_info_t * ...
1
vote
1answer
78 views

Where is vnode_t defined?

I'm trying to use a vnode_t which is defined as struct vnode *. I can find plenty of references to struct vnode but I cannot find the header in which is defined. Can anyone help?
1
vote
1answer
257 views

Why does lsyncd require xnu?

I am working through the steps of compiling lsyncd on Mac OS X (10.7.3 to be exact). Finally managed to it get it compiled despite a couple minor syntax errors in the lysncd source code; and I ...
1
vote
2answers
568 views

How does OS X generate a crash report?

The material available from web, mail-list, books like Mac OS X Internals, and even source code is quite limited. Now I know that xnu kernel raise an EXC_CRASH, which notify launched to start ...
2
votes
2answers
206 views

Porting a kernel to a different architecture?

I want to port the xnu kernel to the ARM architecture, with the ultimate goal of being able to run a full kernel inside Qemu. While I do realise that this is a very difficult task, I still want to ...
0
votes
1answer
201 views

What are “jetsam priorities”?

Can someone explain what "jetsam priorities" are? They are something that is enforced by launchd. I suspect that they are a way of throttling down the CPU for a particular process, but I don't know ...
5
votes
1answer
319 views

How do I allocate memory buffers which may be reclaimed by the OS for caching in a Mac OS X kernel extension?

Based on documentation and xnu source I've read, I understand that Mac OS X caches file I/O using the Unified Buffer Cache (UBC). The UBC grows as big as it can based on available RAM, but UBC pages ...
1
vote
2answers
587 views

Can I find the library that created a named OSMallocTag?

I use the allocations instrument to measure heap usage in my iOS app. I find that a significant amount of memory is allocated in a region with the tag name "Memory Tag 70", and I would like to know ...