Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rosetta error: Unable to open /proc/self/exe: 40 #6973

Closed
marcpawl-arista opened this issue Sep 11, 2023 · 4 comments
Closed

rosetta error: Unable to open /proc/self/exe: 40 #6973

marcpawl-arista opened this issue Sep 11, 2023 · 4 comments

Comments

@marcpawl-arista
Copy link

Description

On ubuntu:jammy and ubuntu:focal

debootstrap focal /home/builder/rootfs

fails with

rosetta error: Unable to open /proc/self/exe: 40

Reproduce

% cat rootfs

#!/bin/bash -ex
mkdir /home/builder/rootfs
export DEBIAN_FRONTEND=noninteractive
debootstrap focal /home/builder/rootfs || \
(cat /home/builder/rootfs/debootstrap/debootstrap.log && false)

echo SUCCESS

% cat Makefile

all: root

.PHONY: docker
docker:
	docker buildx build --platform=linux/amd64 -t t .

.PHONY: root
root: docker
	docker run --platform=linux/amd64 -u 0:0 \
		t \
		/roots

% cat Dockerfile
FROM --platform=linux/amd64 ubuntu:latest
RUN apt-get update &&
DEBIAN_FRONTEND=noninteractive apt-get install -y
debhelper
debootstrap
RUN useradd --create-home --uid 1000 builder
COPY rootfs /rootfs

% make
...
rosetta error: Unable to open /proc/self/exe: 40
Trace/breakpoint tra

Expected behavior

Container should run.

Container runs on:

docker version

% docker version
Client:
 Cloud integration: v1.0.35-desktop+001
 Version:           24.0.5
 API version:       1.43
 Go version:        go1.20.6
 Git commit:        ced0996
 Built:             Fri Jul 21 20:32:30 2023
 OS/Arch:           darwin/arm64
 Context:           desktop-linux

Server: Docker Desktop 4.22.1 (118664)
 Engine:
  Version:          24.0.5
  API version:      1.43 (minimum version 1.12)
  Go version:       go1.20.6
  Git commit:       a61e2b4
  Built:            Fri Jul 21 20:35:38 2023
  OS/Arch:          linux/arm64
  Experimental:     true
 containerd:
  Version:          1.6.21
  GitCommit:        3dce8eb055cbb6872793272b4f20ed16117344f8
 runc:
  Version:          1.1.7
  GitCommit:        v1.1.7-0-g860f061
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0

docker info

% docker info
Client:
 Version:    24.0.5
 Context:    desktop-linux
 Debug Mode: false
 Plugins:
  buildx: Docker Buildx (Docker Inc.)
    Version:  v0.11.2-desktop.1
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-buildx
  compose: Docker Compose (Docker Inc.)
    Version:  v2.20.2-desktop.1
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-compose
  dev: Docker Dev Environments (Docker Inc.)
    Version:  v0.1.0
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-dev
  extension: Manages Docker extensions (Docker Inc.)
    Version:  v0.2.20
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-extension
  init: Creates Docker-related starter files for your project (Docker Inc.)
    Version:  v0.1.0-beta.6
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-init
  sbom: View the packaged-based Software Bill Of Materials (SBOM) for an image (Anchore Inc.)
    Version:  0.6.0
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-sbom
  scan: Docker Scan (Docker Inc.)
    Version:  v0.26.0
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-scan
  scout: Command line tool for Docker Scout (Docker Inc.)
    Version:  0.20.0
    Path:     /Users/marcpawl/.docker/cli-plugins/docker-scout

Server:
 Containers: 7
  Running: 0
  Paused: 0
  Stopped: 7
 Images: 7
 Server Version: 24.0.5
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Using metacopy: false
  Native Overlay Diff: true
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Cgroup Version: 2
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 3dce8eb055cbb6872793272b4f20ed16117344f8
 runc version: v1.1.7-0-g860f061
 init version: de40ad0
 Security Options:
  seccomp
   Profile: unconfined
  cgroupns
 Kernel Version: 5.15.49-linuxkit-pr
 Operating System: Docker Desktop
 OSType: linux
 Architecture: aarch64
 CPUs: 6
 Total Memory: 7.765GiB
 Name: docker-desktop
 ID: 6c8cb1f0-de47-4bb8-ac27-f3ec90264b8b
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 HTTP Proxy: http.docker.internal:3128
 HTTPS Proxy: http.docker.internal:3128
 No Proxy: hubproxy.docker.internal
 Experimental: true
 Insecure Registries:
  hubproxy.docker.internal:5555
  localhost:5000
  xxx:5000
  xxx:5000
  docker-registry.eng.bigswitch.com:5000
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: daemon is not using the default seccomp profile

Diagnostics ID

A4174B24-49F4-439F-8844-952971D3E578/20230911153719

Additional Info

Works on:

`$ docker info
Client:
Context: default
Debug Mode: false
Plugins:
app: Docker App (Docker Inc., v0.9.1-beta3)
buildx: Docker Buildx (Docker Inc., v0.10.4-docker)

Server:
Containers: 801
Running: 0
Paused: 0
Stopped: 801
Images: 440
Server Version: 20.10.24
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
userxattr: false
Logging Driver: json-file
Cgroup Driver: cgroupfs
Cgroup Version: 1
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc io.containerd.runc.v2 io.containerd.runtime.v1.linux
Default Runtime: runc
Init Binary: docker-init
containerd version: 0197261a30bf81f1ee8e6a4dd2dea0ef95d67ccb
runc version: v1.1.3-0-g6724737
init version: de40ad0
Security Options:
apparmor
seccomp
Profile: default
Kernel Version: 4.15.0-191-generic
Operating System: Ubuntu 18.04.6 LTS
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 31.37GiB
Name: jenkins-w3
ID: OM76:3V7N:UKPR:N3ME:QHDV:XGI5:SJI5:IQFV:R74N:LXES:BKYO:OUT3
Docker Root Dir: /var/lib/docker
Debug Mode: false
Username: bsnjenkins
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Registry Mirrors:
https://XXX
Live Restore Enabled: true

$ docker version
Client: Docker Engine - Community
Version: 20.10.24
API version: 1.41
Go version: go1.19.7
Git commit: 297e128
Built: Tue Apr 4 18:21:02 2023
OS/Arch: linux/amd64
Context: default
Experimental: true

Server: Docker Engine - Community
Engine:
Version: 20.10.24
API version: 1.41 (minimum version 1.12)
Go version: go1.19.7
Git commit: 5d6db84
Built: Tue Apr 4 18:18:49 2023
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.6.7
GitCommit: 0197261a30bf81f1ee8e6a4dd2dea0ef95d67ccb
runc:
Version: 1.1.3
GitCommit: v1.1.3-0-g6724737
docker-init:
Version: 0.19.0
GitCommit: de40ad0

`

@dgageot
Copy link
Member

dgageot commented Nov 17, 2023

@marcpawl-arista The fix should ship in Docker Desktop 4.26.0

@dgageot
Copy link
Member

dgageot commented Dec 6, 2023

@marcpawl-arista did you get a chance to update and test?

@dgageot
Copy link
Member

dgageot commented Dec 11, 2023

I'm going to close this issue. Feel free to reopen if that's not fixed for you

@dgageot dgageot closed this as completed Dec 11, 2023
@marcpawl-arista
Copy link
Author

working with ubuntu jammy and focal.

docker for desktop mac: 4.26.0 (130397)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants