Richardson Dxchanged title from qemu: uncaught target signal 6 (Aborted) - core dumped on Apple Silicon M1 to qemu: uncaught target signal 6 (Aborted) - core dumped on Apple Silicon M1 arm64
changed title from qemu: uncaught target signal 6 (Aborted) - core dumped on Apple Silicon M1 to qemu: uncaught target signal 6 (Aborted) - core dumped on Apple Silicon M1 arm64
@jsnow thank you for the prompt reply. I'm not sure because qemu isn't mentioned anywhere in my app. But this article:
https://www.docker.com/blog/multi-arch-images/ mentions that it come packaged with Docker Desktop.
If that's the case that could* be the version:
% brew info qemuqemu: stable 5.2.0 (bottled), HEAD
Steps to reproduce:
Install docker on an Apple M1 chip machine / arm64
( Thu, Jun 3 2021) – I was only getting that issue when using a a custom FROM which is running additional commands. One of the package in that repo might be causing the issue but its hard to pinpoint which one.
I don't have a setup where I can attempt to reproduce this myself (Don't have the right HW) and I am not familiar with how Docker for Desktop operates, but it would be very useful to see the stack trace from QEMU -- that's just the backtrace from the ruby component that started QEMU.
Normally on linux, I'd say ulimit -c unlimited to allow for core dumps of any size to be created, and then coredumpctl debug to bring up a debugging interface for the most recent crash dump. No clue how this works on macOS.
Maybe https://en.wikipedia.org/wiki/List_of_macOS_components#Crash_Reporter can help -- I am seeing a few StackOverflow links that suggest you need to use the same 'ulimit -c unlimited' invocation to allow core dump files of any size to be created in /cores, but from there I'm not 100% sure on how to get the stack trace.
Usually: gdb ./path/to/qemu ./path/to/corefile followed by, in the GDB interface thread apply all bt. But you need to get the right executable there. It's probably x86_64-linux-user or i386-linux-user. QEMU ships a few different binaries for different purposes and Docker might actually even ship their own from what I'm reading. See if there are QEMU binaries located in the installation files for the Docker package(s). It should be fairly evident if you've picked the right one based on the output from GDB when you try to open it against the core file.
This goes a little bit beyond initial triage for me, so I can't promise my own attention on this bug.
Lastly, it'd be helpful if there's some way to coax Docker into printing or logging the QEMU CLI somehow. If it doesn't crash right away, or if there's a way to somehow delay the crash, you might be able to look at your process list while it runs to see the CLI args it was given, but that might not be feasible. Sorry, you might need to ask the Docker folks how to get this information to report it back to us.
Too early to say if it's the same root cause. The environment is similar, but qemu-user could be crashing for a wide variety of different reasons. Different binaries being executed in the container may exercise different syscalls that we may fail to translate for different reasons. All I know so far is that "QEMU is crashing."
I still don't have a Mac or an ARM machine at all, so -- I am just the tier 1 triage here -- I can't really explore this more in depth myself.
The core dump by itself may not be useful without knowing precisely which version of the qemu binary actually crashed. See above for my response to Richardson Dx -- Can you try to identify exactly which QEMU binary is being launched by Docker and try to use GDB to obtain a stack trace from the core file? The Command line it crashed with is also a crucial piece of information.
Sorry to be helpless here -- The original docker issue you filed was closed and locked. Can you re-file a bug and ask them to help you obtain this information? You can point them here if you'd like; I'm willing to diagnose the problem but need some help to get the information we'd require. It will be helpful to know in the future as I am sure we will begin to see more and more M1 users finding their way to us.
Note: I was getting that error when I was installing erlang and elixir via brew with the latest versions. I then started using a version manager asdf and installed it on my M1 with Rosetta
if you ran into issues while installing these versions; for example cannot find required auxiliary files: install-sh config.guess config.sub . you might have to reinstall autoconf. This is what I did to make it work:
alias ibrew="arch -x86_64 brew"ibrew install autoconf@2.69 && \ibrew link --overwrite autoconf@2.69 && \autoconf -V
To fix the issue in my case I had to reinstall erlang and elixir. In my cases the versions of elixir I needed was elixir:1.8.1 and the version of erlang that worked with it was erlang 23.0. I had some issues running mix with versions from 20-22
@jsnow Also not sure if this helped, but I found a related issue with bundler raising segmentation error https://github.com/rubygems/bundler/issues/5204 (there's a backtrace there) Maybe the issue is not coming from qemu but from one of the dependency and its causing qemu to fail with this error.
Yeah, that's what I am wondering. It could be QEMU, or it could be the userspace application, or a bad interaction between. Without the backtrace, it's hard to really know where to start looking. Thanks for looking into it!