Lucene search

K
googleprojectzeroGoogleProjectZeroGOOGLEPROJECTZERO:61DD70E2338A41EDFC42D7D95205058E
HistoryMar 22, 2016 - 12:00 a.m.

Race you to the kernel!

2016-03-2200:00:00
googleprojectzero.blogspot.com
9

7 High

CVSS3

Attack Vector

LOCAL

Attack Complexity

HIGH

Privileges Required

NONE

User Interaction

REQUIRED

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.0/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H

9.3 High

CVSS2

Access Vector

NETWORK

Access Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

AV:N/AC:M/Au:N/C:C/I:C/A:C

0.003 Low

EPSS

Percentile

71.4%

Posted by Ian Beer of Google Project Zero

The OS X and iOS kernel code responsible for loading a setuid root binary invalidates the old task port after first swapping the new virtual memory map pointer into the old task object, leaving a short race window where you can manipulate the memory of an euid 0 process before the old task port is invalidated. Going a step further this also allows you to also gain any entitlement and, on OS X, load an unsigned kernel extension.


I reported this bug to Apple on December 16th 2015 and it was patched in OS X 10.11.4/iOS 9.3 as CVE-2016-1757. For more technical details see the original bug report where you can also grab the updated exploit.

Task Ports

If youā€™ve ever tried to use ptrace on OS X you were probably sorely disappointed. Whilst the syscall does exists itā€™s severely limited in what it can do. For example thereā€™s no support for peeking and poking memory, a pretty fundamental use-case.


This is one of many areas of XNU where the duality of its kernel is evident; along with ptrace thereā€™s a parallel abstraction layer in the Mach side of the kernel which supports building debugging tools via a set of special mach task ports


Each process executing on OS X has a task port. For example, to allocate a page of memory in your process you might use code like this:


mach_vm_address_t addr = 0;

mach_vm_allocate(mach_task_self(),

&addr,

0x1000,

VM_FLAGS_ANYWHERE);


mach_vm_allocate is a MIG method implemented by the kernel (and defined in mach_vm.defs in the xnu kernel source.) The first argument to this method is the current task port; if you happened to have send rights to another taskā€™s task port and you were to call this method passing that other taskā€™s task port then the allocation would end up in that other taskā€™s virtual address space, even though your task made the call. Similarly the mach_vm_read and mach_vm_write methods allow you to read and write the memory of other processes if you have their task ports, effectively giving you complete control over them.


By default tasks only have send rights to their own task ports, but itā€™s easy to give other processes send rights to your task port using the standard mach messaging mechanisms.

execve

Usually new task ports will only be created when new processes are created (via fork or posix_spawn). Just execing a new binary wonā€™t reset the task port. This leads to the obvious question: since having a send right to a processā€™s task port give you complete control over that process, how do they deal with SUID binaries where the exec call will increase the privileges of the process?


Looking through the exec code we find this snippet:


/*

  • Have mach reset the task and thread ports.

  • We donā€™t want anyone who had the ports before

  • a setuid exec to be able to access/control the

  • task/thread after.

*/

ipc_task_reset(p->task);


Sounds sensible. But execve is a really complex syscall and thereā€™s a lot going on here:

This diagram outline the four major phases of the exec syscall which weā€™re interested in along with the lifetimes of some data structures.


In phase 1 the old task port is still valid, and via the task struct gives us access to the old vm_map which still contains the virtual address space of the task prior to the exec. As part of the load_machfile method the kernel will create a new vm_map into which it will load the new executable image. Note though that at this point the new vm_map isnā€™t matched up with any task; itā€™s just a virtual address space with no process.


In phase 2 the parse_machfile method does the actual parse and load of the MachO image into the new virtual address space. Itā€™s also during this phase that any code signatures which the binary has are checked; weā€™ll come back to that detail later.


In phase 3 load_machfile calls swap_task_map; this sets the task struct to point to the new vm_map into which the target executable was just loaded. From this point on any mach_vm* methods invoked on the old task port will target the new vm_map.


In phase 4 exec_handle_sugid will check if this binary is SUID, and if it is, will reset the task port, at which point the old task port will no longer work.

Somethings not right thereā€¦

From this high-level view itā€™s clear that thereā€™s a fundamental race condition. Between phase 3, when the vm_map is swapped, and phase 4, when the task port is invalidated, we will have full read/write access via the old task port to the new vm_map containing the loaded binary which is about to be executed, even if itā€™s SUID which means that we can just use mach_vm_write to overwrite its text segment with code we control!


From the diagram itā€™s hard to tell but thereā€™s actually quite a long period between those two phases, certainly enough time to sneak in a few mach kernel MIG calls.

Building a reliable exploit

Thereā€™s one small stumbling block to overcome though: although we can now try to write to the new vm_map, where should we write? Userspace ASLR on OS X (for binaries, not dynamic libraries) is randomized per-exec so we first have to figure out where the kernel loaded the image.


Luckily with the task port we can do a lot more than just blindly read and write the new vm_map; we can also APIā€™s like mach_vm_region to ask about properties of memory regions in the map. In this case we just loop constantly asking for the address of the lowest mapping. When it changes we know that it changed to the base address of the image in the new vm_map and that weā€™re now in the race window between phases 3 and 4.


Using this base address we can work out the address of the binaryā€™s entrypoint in the new vm_map, mark that page as RWX using mach_vm_protect and overwrite it with shellcode using mach_vm_write.


Run root_shell.sh in the attached exploit to see this in action. It should work out of the box on any semi-recent OS X system, using otool to extract the entrypoint of the traceroute6 suid-root executable.

Going further: codesigning and entitlements

In the exec phases diagram I mentioned that parse_machfile (in phase 2) is responsible for both loading the MachO as well as verifying any code signatures present. You might ask why this is relevant on OS X since, unlike iOS, thereā€™s no mandatory userspace code signing and we can quite happily execute unsigned code anyway.


But OS X does use userspace code signing to enforce entitlements which are just xml blobs stored in your MachO and signed as part of your code signature.


Kernel code can check whether user space processes have particular entitlements (via IOTaskHasEntitlement) and the kernel kext loading code will now only accept load requests from processes which are both running as root and also have the com.apple.rootless.kext-management entitlement.


This is particularly important since on OS X kext code signatures are enforced by userspace. This means that the kext-management entitlement is a vital part of the separation between root in userspace and kernel code execution.


Two system binaries which do have the kext-management entitlement are kextd and kextload; so in order to defeat kernel code signing we just need to first exec a suid-root binary to get root then exec either kextload or kextd to get the right entitlement.

Patching kextload

kextload is probably the easier target for a binary patch since itā€™s a standalone tool which can load a kext without talking to to kextd. We just need to patch the checkAccess function so that kextload thinks it canā€™t reach kextd and will try to load the kext itself. Then patch out the calls to checkKextSignature and checkSignaturesOfDependents such that kextload thinks they succeeded and it will now load any kext, signed or unsigned :-)

The released exploit contain a binary patch file to remove the signature checks in kextload on OS X 10.11.3 as well as a simple HelloWorld kext and load_kext.sh and unload_kext.sh scripts to load and unload it. These can be run as a regular user. Look in Console.app to see the kernel debug printf output.

7 High

CVSS3

Attack Vector

LOCAL

Attack Complexity

HIGH

Privileges Required

NONE

User Interaction

REQUIRED

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.0/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H

9.3 High

CVSS2

Access Vector

NETWORK

Access Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

AV:N/AC:M/Au:N/C:C/I:C/A:C

0.003 Low

EPSS

Percentile

71.4%

Related for GOOGLEPROJECTZERO:61DD70E2338A41EDFC42D7D95205058E