RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 2140084 - SIGSEGV: segmentation violation on s390x
Summary: SIGSEGV: segmentation violation on s390x
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 8
Classification: Red Hat
Component: podman
Version: 8.7
Hardware: x86_64
OS: Linux
high
medium
Target Milestone: rc
: ---
Assignee: Jindrich Novy
QA Contact: Yuhui Jiang
URL:
Whiteboard:
Depends On:
Blocks: 2140087 2150416 2150429 2150430
TreeView+ depends on / blocked
 
Reported: 2022-11-04 11:50 UTC by Alex Jia
Modified: 2023-09-19 04:29 UTC (History)
10 users (show)

Fixed In Version: podman-4.4.0-1.el8
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
: 2140087 2150416 2150430 (view as bug list)
Environment:
Last Closed: 2023-05-16 08:22:22 UTC
Type: Bug
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Github containers podman pull 16409 0 None Merged Update vendor of containers/(image, storage, common) 2023-01-09 10:31:49 UTC
Red Hat Issue Tracker RHELPLAN-138326 0 None None None 2022-11-04 12:22:25 UTC
Red Hat Product Errata RHSA-2023:2758 0 None None None 2023-05-16 08:23:42 UTC

Comment 3 Jindrich Novy 2022-12-01 12:17:19 UTC
Matt, https://github.com/containers/podman/pull/16416 seems to be not yet applied in the podman-4.3.1 or main branch?

Comment 4 Matthew Heon 2022-12-01 14:27:53 UTC
It's been picked up in both branches, but not by that commit (it got grabbed by a vendor of a newer version of the storage library). I can see the actual code change we wanted is present in Podman's vendored c/storage for both main and 4.3.1.

Comment 5 Jindrich Novy 2022-12-02 10:22:59 UTC
I might be wrong but what I see in podman-4.3.1 is missing at least the essential s390x conditional in vendor/github.com/containers/storage/drivers/overlay/idmapped_utils.go:

@@ -124,7 +125,14 @@ func createIDMappedMount(source, target string, pid int) error {
 // createUsernsProcess forks the current process and creates a user namespace using the specified
 // mappings.  It returns the pid of the new process.
 func createUsernsProcess(uidMaps []idtools.IDMap, gidMaps []idtools.IDMap) (int, func(), error) {
-	pid, _, err := syscall.Syscall6(uintptr(unix.SYS_CLONE), unix.CLONE_NEWUSER|uintptr(unix.SIGCHLD), 0, 0, 0, 0, 0)
+	var pid uintptr
+	var err syscall.Errno
+
+	if runtime.GOARCH == "s390x" {
+		pid, _, err = syscall.Syscall6(uintptr(unix.SYS_CLONE), 0, unix.CLONE_NEWUSER|uintptr(unix.SIGCHLD), 0, 0, 0, 0)
+	} else {
+		pid, _, err = syscall.Syscall6(uintptr(unix.SYS_CLONE), unix.CLONE_NEWUSER|uintptr(unix.SIGCHLD), 0, 0, 0, 0, 0)
+	}
 	if err != 0 {
 		return -1, nil, err
 	}

c/storage 1.43.0 is missing this bit too.

The first c/storage containing this is c/storage 1.44.0.

Comment 14 errata-xmlrpc 2023-05-16 08:22:22 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory (Moderate: container-tools:rhel8 security, bug fix, and enhancement update), and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2023:2758

Comment 15 Red Hat Bugzilla 2023-09-19 04:29:31 UTC
The needinfo request[s] on this closed bug have been removed as they have been unresolved for 120 days


Note You need to log in before you can comment on or make changes to this bug.