diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-05-21 21:21:26 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-05-21 21:21:26 +0200 |
| commit | 4b927bc37359dec23f67d3427fc982945f24f404 (patch) | |
| tree | 245449ef9146942dc7fffd0235b48b7e70a00bf2 /gitlab/issues/target_missing/host_missing/accel_missing/2529.toml | |
| parent | aa8bd79cec7bf6790ddb01d156c2ef2201abbaab (diff) | |
| download | emulator-bug-study-4b927bc37359dec23f67d3427fc982945f24f404.tar.gz emulator-bug-study-4b927bc37359dec23f67d3427fc982945f24f404.zip | |
add gitlab issues in toml format
Diffstat (limited to 'gitlab/issues/target_missing/host_missing/accel_missing/2529.toml')
| -rw-r--r-- | gitlab/issues/target_missing/host_missing/accel_missing/2529.toml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gitlab/issues/target_missing/host_missing/accel_missing/2529.toml b/gitlab/issues/target_missing/host_missing/accel_missing/2529.toml new file mode 100644 index 00000000..254b2665 --- /dev/null +++ b/gitlab/issues/target_missing/host_missing/accel_missing/2529.toml @@ -0,0 +1,42 @@ +id = 2529 +title = "`stack smashing detected` running arm64 image from amd64 machine" +state = "closed" +created_at = "2024-08-22T14:58:31.399Z" +closed_at = "2024-08-23T18:02:02.652Z" +labels = ["linux-user"] +url = "https://gitlab.com/qemu-project/qemu/-/issues/2529" +host-os = "Ubuntu 20.04" +host-arch = "x86_64" +qemu-version = "- qemu/focal-updates,focal-security 1:4.2-3ubuntu6.29 amd64" +guest-os = "ubuntu 20.04" +guest-arch = "linux/arm64" +description = """When running a linux/arm64 `ubuntu:20.04` docker image on a linux/amd64 machine, an single command `apt-get update` will through below error +```sh +root@189bd36b9ae7:/# apt-get update +0% [Working]*** stack smashing detected ***: terminated +Reading package lists... Done +E: Method http has died unexpectedly! +E: Sub-process http received signal 6. + +``` + +Tested this is happening for ubuntu:18.04, ubuntu:20.04, ubuntu:22.04 so far + +If running same image directly from an ARM64 host, issue is gone""" +reproduce = """1. install QEMU on an AMD64 host machine (Ubuntu20) + ```sh + docker run --rm --privileged multiarch/qemu-user-static --reset -p yes + ``` +2. run linux/arm64 docker image of ubuntu:20.04 + ```sh + docker run --platform linux/arm64 -it --entrypoint /bin/bash ubuntu:20.04 + ``` +3. from within the container, run `apt-get update`, it will through below error + ```sh + root@189bd36b9ae7:/# apt-get update + 0% [Working]*** stack smashing detected ***: terminated + Reading package lists... Done + E: Method http has died unexpectedly! + E: Sub-process http received signal 6. + ```""" +additional = "n/a" |