mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-03 06:07:51 +00:00
Merge pull request #8670 from rhatdan/caps
Properly handle --cap-add all when running with a --user flag
This commit is contained in:
commit
eb053df784
2 changed files with 13 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ func securityConfigureGenerator(s *specgen.SpecGenerator, g *generate.Generator,
|
|||
configSpec.Process.Capabilities.Effective = caplist
|
||||
configSpec.Process.Capabilities.Permitted = caplist
|
||||
} else {
|
||||
userCaps, err := capabilities.NormalizeCapabilities(s.CapAdd)
|
||||
userCaps, err := capabilities.MergeCapabilities(nil, s.CapAdd, nil)
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "capabilities requested by user are not valid: %q", strings.Join(s.CapAdd, ","))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -90,6 +90,18 @@ var _ = Describe("Podman privileged container tests", func() {
|
|||
containerCapMatchesHost(session.OutputToString(), host_cap.OutputToString())
|
||||
})
|
||||
|
||||
It("podman cap-add CapEff with --user", func() {
|
||||
// Get caps of current process
|
||||
host_cap := SystemExec("awk", []string{"/^CapEff/ { print $2 }", "/proc/self/status"})
|
||||
Expect(host_cap.ExitCode()).To(Equal(0))
|
||||
|
||||
session := podmanTest.Podman([]string{"run", "--user=bin", "--cap-add", "all", "busybox", "awk", "/^CapEff/ { print $2 }", "/proc/self/status"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
||||
containerCapMatchesHost(session.OutputToString(), host_cap.OutputToString())
|
||||
})
|
||||
|
||||
It("podman cap-drop CapEff", func() {
|
||||
session := podmanTest.Podman([]string{"run", "--cap-drop", "all", "busybox", "grep", "CapEff", "/proc/self/status"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue