-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
syscall: namespace tests fail on Linux with RHEL7.2 ppc64le #13312
Comments
CC @LK4D4 |
@laboger Could you check |
I suppose it might be because of SeLinux rules. Could you try to disable it and rerun? Thanks! |
CONFIG_USER_NS=y tests still failed as before. I set SELINUX to disabled and rebooted. tests still failed as before. I also tried a fedora21 ppc64le system and that passes with selinux enabled. Only RHEL 7.2 fails. |
Same failures when run as root. |
@laboger Are you sure that tests names not different? Those tests should be skipped with |
Oops sorry I wasn't expecting the failing testnames to be different and didn't look closely. Here's my screen output: And with gccgo, I have to hit Ctrl-C to get the output if I run as root: root@willow2 libgo]# make syscall/check |
The unshare system call is returning EINVAL. |
So, it's bug in RHEL, which must be fixed. I'm glad that we helped with finding it :) |
mount namespace isn't supported with user namespace in RHEL 7.2 as some patches haven't been backported. So, this is expected behavior for now. |
@mrunalp I don't see mount namespaces in tests. Maybe without mount namespaces? |
@LK4D4 Let me try that. I tried with everything in my testing. |
@LK4D4 You are right. That fails as well. I am following up with RHEL engineers. |
One has to enable user namespace support with a kernel boot option as it is in tech preview right now. After adding |
From @mrunalp's comments it sounds like this is not a Go bug. |
(We could of course disable the test, if this is important to any developers on RHEL 7.2 and we can detect that case.) |
When building gccgo or gc on RHEL7 2 and running the testsuite, the testcase exec_linux_test.go fails for both gccgo and gc. This happens with gccgo built from trunk and with golang from master with this output from go version:
go version devel +6bf794a Wed Nov 18 19:00:45 2015 +0000 linux/ppc64le
With golang, there are 3 error messages:
go test .
--- FAIL: TestCloneNEWUSERAndRemapNoRootDisableSetgroups (0.00s)
exec_linux_test.go:57: Cmd failed with err fork/exec /usr/bin/whoami: invalid argument, output:
--- FAIL: TestCloneNEWUSERAndRemapNoRootSetgroupsEnableSetgroups (0.00s)
exec_linux_test.go:97: Unprivileged gid_map rewriting with GidMappingsEnableSetgroups must fail
--- FAIL: TestEmptyCredGroupsDisableSetgroups (0.00s)
exec_linux_test.go:105: fork/exec /usr/bin/whoami: invalid argument
FAIL
FAIL syscall 0.014s
And with gccgo there are 2:
make syscall/check
--- FAIL: TestCloneNEWUSERAndRemapNoRootDisableSetgroups (0.00s)
testing.go:284: Cmd failed with err fork/exec /usr/bin/whoami: invalid argument, output:
--- FAIL: TestCloneNEWUSERAndRemapNoRootSetgroupsEnableSetgroups (0.00s)
testing.go:284: Unprivileged gid_map rewriting with GidMappingsEnableSetgroups must fail
FAIL
I know there was another issue for this test related to whoami but the error message was not the same.
I don't see these failures when I build gccgo or golang on other platforms (Ubuntu 14.04, 14.10, SLES12SP1) with the same level of source for the compilers.
uname -r output:
3.10.0-313.el7.ppc64le
The text was updated successfully, but these errors were encountered: