Qemu Mac Download

Windows. Linux. Meet Apple Silicon.

UTM employs Apple's Hypervisor virtualization framework to run ARM64 operating systems on Apple Silicon at near native speeds. On Intel Macs, x86/x64 operating system can be virtualized. In addition, lower performance emulation is available to run x86/x64 on Apple Silicon as well as ARM64 on Intel. For developers and enthusiasts, there are dozens of other emulated processors as well including: ARM32, MIPS, PPC, and RISC-V. Your Mac can now truly run anything.

Designed for macOS

Unlike other free virtualization software, UTM was created for macOS and only for Apple platforms. It is designed completely from the ground up for the new style introduced in Big Sur. UTM looks and feels like a Mac app with all the privacy and security features you expect as well.

QEMU without the headache

Qemu emulator free download. PICSimLab - Prog. IC Simulator Lab. PICSimLab is a realtime emulator of development boards with integrated MPLABX/avr-gdb debugger. QEMU without the headache. Under the hood of UTM is QEMU, a decades old, free and open source emulation software that is widely used and actively maintained.While QEMU is powerful, it can be difficult to set up and configure with its plethora of command line options and flags.

Under the hood of UTM is QEMU, a decades old, free and open source emulation software that is widely used and actively maintained. While QEMU is powerful, it can be difficult to set up and configure with its plethora of command line options and flags. UTM is designed to give users the flexibility of QEMU without the steep learning curve that comes with it.

What's the difference in the Mac App Store version?

UTM is and always will be completely free and open source. The Mac App Store version is identical to the free version and there are no features left out of the free version. The only advantage of the Mac App Store version is that you can get automatic updates. Purchasing the App Store version directly funds the development of UTM and shows your support .

How do I contribute?

You can find UTM on Github. You can also contribute to the QEMU project.

Can I run games?

No, probably not. UTM does not currently support GPU emulation/virtualization and therefore lacks support for 3D acceleration (e.g. OpenGL and DirectX). You may be able to run older games with software rendering options, but nothing with hardware acceleration.

UTM for iOS?

I got launchd and recoveryd to start on an emulated iPhone running iOS 12 beta 4’s kernel using a modified QEMU. Here’s what I learned, and how you can try this yourself.

Introduction

This is Part 2 of a series on the iOS boot process. Part 1 is here. Sign up with your email to be the first to read new posts.

skip to: tutorial, writeup

First, let me repeat: this is completely useless unless you’re really interested in iOS internals. If you want to run iOS, you should ask @CorelliumHQ instead, or just buy an iPhone.

I’ve been interested in how iOS starts, so I’ve been trying to boot the iOS kernel in QEMU.

I was inspired by @cmwdotme’s Corellium, a service which can boot any iOS in a virtual machine. Since I don’t have 9 years to build a perfect simulation of an iPhone, I decided to go for a less lofty goal: getting enough of iOS emulated until launchd, the first program to run when iOS boots, is able to start.

Since last week’s post, I got the iOS 12 beta 4 kernel to fully boot in QEMU, and even got it to run launchd and start recoveryd from the restore ramdisk. Here’s the output from the virtual serial port:

If you would like to examine iOS’s boot process yourself, here’s how you can try it out.

Building QEMU

The emulation uses a patched copy of QEMU, which must be compiled from source.

Install dependencies

To compile QEMU, you first need to install some libraries.

macOS:

According to the QEMU wiki and the Homebrew recipe, you need to install Xcode and Homebrew, then run

brew install pkg-config libtool jpeg glib pixman

to install the required libraries to compile QEMU.

Ubuntu 18.04:

According to the QEMU wiki, run

sudo apt install libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev libsdl1.2-dev

to install the required libraries to compile QEMU.

Windows:

QEMU can be built on Windows, but their instructions doesn’t seem to work for this modified QEMU. Please build on macOS or Linux instead. You can set up a virtual machine running Ubuntu 18.04 with Virtualbox or VMWare Player.

Download and build source

Open a terminal, and run

Preparing iOS files for QEMU

Once QEMU is compiled, you need to obtain the required iOS kernelcache, device tree, and ramdisk.

If you don’t want to extract these files yourself, I packaged all the files you need from iOS 12 beta 4. You can download this archive if you sign up for my mailing list.

If you want to extract your own files directly from an iOS update, here’s how:

1. Download the required files:

  • Download my XNUQEMUScripts repository:
  • Download the iOS 12 beta 4 for iPhone X.

  • To decompress the kernel, download newosxbook’s Joker tool.

2. Extract the kernel using Joker:

replace joker.universal with joker.ELF64 if you are using Linux.

3. extract the ramdisk:

4. Modify the devicetree.dtb file:

Installing a debugger

You will also need lldb or gdb for arm64 installed.

macOS

The version of lldb included in Xcode 9.3 should work. (Later versions should also work.) You don’t need to install anything in this step.

Ubuntu 18.04

I can’t find an LLDB compatible with ARM64: neither the LLDB from the Ubuntu repository nor the version from LLVM’s own repos support ARM64. (Someone please build one!)

Instead, you can use GDB on Linux.

Two versions of GDB can be used: the version from devkitA64, or the Linaro GDB (recommended).

Enter your xnuqemu directory (from the downloaded package or from the clone of the XNUQEMUScripts repo)

Run

to download the Linaro GDB.

Running QEMU

Place your qemu directory into the same directory as the scripts, kernel, devicetree, and ramdisk.

You should have these files:

./runqemu.sh to start QEMU.

in a different terminal, ./lldbit.sh to start lldb, or if you’re using Linux, ./gdbit.sh to start gdb.

Type c into lldb or gdb to start execution.

In the terminal running QEMU, you should see boot messages. Congratulations, you’ve just ran a tiny bit of iOS with a virtual iPhone! Or as UnthreadedJB would say, “#we r of #fakr!”

What works

  • Booting XNU all the way to running userspace programs
  • Console output from virtual serial port

What doesn’t work

  • Wi-Fi
  • Bluetooth
  • USB
  • Screen
  • Internal storage
  • Everything except the serial port

Seriously, though, this only runs a tiny bit of iOS, and is nowhere close to iOS emulation. To borrow a simile from the creator of Corellium, if Corellium is a DeLorean time machine, then this is half a wheel at most.

This experiment only finished the easy part of booting iOS, as it doesn’t emulate an iPhone at all, relying on only the parts common to all ARM devices. No drivers are loaded whatsoever, so there’s no emulation of the screen, the USB, the internal storage… You name it: it doesn’t work.

For full iOS emulation, the next step would be reverse engineering the iPhone’s SoC to find out how its peripherals work. Unfortunately, that’s a 9-year project, as shown by the development history of Corellium. I can’t do that on my own - that’s why I wrote this tutorial!

Qemu

It’s my hope that this work inspires others to look into proper iOS emulation - from what I’ve seen, it’ll be a great learning experience.

How I did this

Last week, I started modifying QEMU to load an iOS kernel and device tree: the previous writeup is here. Here’s how I got from crashing when loading kernel modules to fully booting the kernel.

Tweaking CPU emulation, part 3: Interrupting cow

When we left off, the kernel crashed with a data abort when it tries to bzero a write only region of memory. Why?

To confirm that it’s indeed writing to read-only memory, I implemented a command to dump out the kernel memory mappings, and enabled QEMU’s verbose MMU logging to detect changes to the memory map.

I tracked down the crashing code to OSKext::updateLoadedKextSummaries. After every kext load, this code resets the kext summaries region to writable with vm_map_protect, writes information for the new kext, then sets the region back to read-only. The logs show that the call to protect the region modifies the memory mappings, but the call to reset it to read-write doesn’t do anything. Why isn’t it setting the page to writable?

According to comments in vm_map_protect, it turns out that readonly->readwrite calls actually don’t change the protection immediately, but only sets it on-demand when a program tries - and fails - to write to the page. This is to implement copy on write.

So, it seems the data abort exception is supposed to happen, but the panic is not.

In the data abort exception, the page should be set to writable in arm_fast_fault. The code in open-source XNU can only return KERN_FAILURE or KERN_SUCCESS, but with a breakpoint, I saw it was returning KERN_PROTECTION_FAILURE.

I checked the disassembly: yes, there’s extra code (0xFFFFFFF0071F953C in iOS 12 beta 4) returning KERN_PROTECTION_FAILURE if the page address doesn’t match one of the new KTRR registers added on the A11 processor .

I had been ignoring all writes to KTRR registers, so this code can’t read the value from the register (which the kernel stored at startup), and believes that all addresses are invalid. Thus, instead of setting the page to writable, the kernel panics instead.

I fixed this by adding these registers to QEMU’s virtual CPU, allowing the kernel to read and write them.

After this change, a few more kexts started up, but the kernel then hangs… like it’s waiting for something.

Connecting the timer interrupt

My hunch for why the kernel hangs: one of the kexts tries to sleep for some time during initialization, but never wakes up because there are no timer interrupts, as shown by QEMU not logging any exceptions when it hangs.

On ARM, there are two ways for hardware to signal the CPU: IRQ, shared by many devices, or FIQ, dedicated to just one device.

Qemu Mac Download

QEMU’s virt machine hooks up the processor’s timer to IRQ, like most real ARM platforms. FIQ is usually reserved for debuggers.

Apple, however, hooks up the timer directly to the FIQ. With virt’s timer hooked up to the wrong signal, the kernel would wait forever for an interrupt that would never come.

All I had to do to get the timer working was to hook it up to FIQ. This gets me… a nice panic in the Image4 parser.

Getting the Image4 parser module working

What does this mean? What’s error 0x60?

Qemu

I found the panic string, and looked for where the error message is generated.

It turns out that the Image4 parser queries the device tree for various nodes in “/chosen” or “/default”; if the value doesn’t exist, it returns error 0x60. If the value is the wrong size, it returns 0x54.

iOS’s device tree is missing two properties: chip-epoch and security-domain, which causes the module to panic with the 0x60 error.

Oddly, the device tree doesn’t reserve extra space for these properties. I had to delete two existing properties to make space for them.

With the modified device tree, the Image4 module initializes, but now I have a panic from a data abort in rorgn_lockdown.

Failed attempt to get device drivers to not crash

Of course the KTRR driver crashes when it tries to access the memory controller: there isn’t one! QEMU’s virt machine doesn’t have anything mapped at that address.

Since I don’t have an emulation of the memory controller, I just added a block of empty memory to avoid the crash.

This strategy didn’t work for the next crash, though, from the AppleInterruptController driver. That driver reads and validates values from the device, so just placing a blank block of memory causes the driver to panic.

Something more drastic is needed if I don’t want to spend 9 years reverse engineering each driver.

Driverless like we’re Waymo

To boot XNU, I don’t really need all those drivers, do I? Who needs interrupts or the screen or power management or storage, anyways? All XNU needs to boot into userspace is a serial port and a timer.

I disabled every other driver in the kernel. Drivers are loaded if their IONameMatch property corresponds to a device’s “compatible”, “name”, or “device_type” fields. To disable all the drivers, I erased every “compatible” property in the device tree, along with a few “name” and “device_type” properties.

Now, with no drivers, XNU seems to hang, but after I patiently waited for a minute…

It’s trying to mount the root filesystem!

Loading a RAMDisk

If it’s looking for a root filesystm, let’s give it one. I don’t have any drivers for storage, but I can mount an iOS Recovery RAMDisk, which requires no drivers. All I had to do was:

Mac os qemu windows
  • Load the ramdisk at the end of the kernel, just before the device tree blob
  • put its address and size in the device tree so XNU can find it
  • set boot argument to rd=md0 to boot from ramdisk

The kernel mounts the root filesystem! … but then hangs again.

Qemu Mac Os

Using LLDB to patch out hanging functions

Mac

By putting breakpoints all over bsd_init, I found that the kernel was hanging in IOBSDSecureRoot, when it tries to call the platform function. The platform function looks for a device, but since I removed all the device drivers, it waits forever, in vain.

Run Qemu On Mac

To fix this, I just skipped the problematic call. I used an LLDB breakpoint to jump over the call and simulate a true return instead.

And, after three weeks, the virtual serial port finally printed out:

“Houston, the kernel has booted.”

What I learned

  • quirks of iOS memory management
  • how iOS handles timer interrupts
  • how iOS loads ramdisks
  • building QEMU on different platforms
  • modifying QEMU to add new CPU configuration registers
  • differences between GDB and LLDB’s command syntax
  • how to get people to subscribe to my mailing list. (muhahaha, one last signup link.)

Thanks

Thanks to everyone who shared or commented on my last article. To those who tried building and running it - sorry about taking so long to write up instructions!

Thanks to @matteyeux, @h3adsh0tzz, @_th0ex, and @enzolovesbacon for testing the build instructions.

Qemu Osx Download

Thanks to @winocm, whose darwin-on-arm project originally inspired me to learn about the XNU kernel.

Comments are closed.