rootless, search: do not create a new userns

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>

Closes: 
Approved by: vrothberg
This commit is contained in:
Giuseppe Scrivano 2018-08-28 09:14:53 +02:00 committed by Atomic Bot
parent ec07b2d021
commit c33b359ed1
3 changed files with 28 additions and 14 deletions

View File

@ -32,6 +32,7 @@ var cmdsNotRequiringRootless = map[string]bool{
"login": true,
"logout": true,
"kill": true,
"search": true,
"stop": true,
}

View File

@ -8,7 +8,6 @@ import (
"github.com/containers/image/docker"
"github.com/containers/libpod/cmd/podman/formats"
"github.com/containers/libpod/cmd/podman/libpodruntime"
"github.com/containers/libpod/libpod/common"
sysreg "github.com/containers/libpod/pkg/registries"
"github.com/docker/distribution/reference"
@ -108,12 +107,6 @@ func searchCmd(c *cli.Context) error {
return err
}
runtime, err := libpodruntime.GetRuntime(c)
if err != nil {
return errors.Wrapf(err, "could not get runtime")
}
defer runtime.Shutdown(false)
format := genSearchFormat(c.String("format"))
opts := searchOpts{
format: format,

View File

@ -58,6 +58,13 @@ var _ = Describe("Podman rootless", func() {
}
})
chownFunc := func(p string, info os.FileInfo, err error) error {
if err != nil {
return err
}
return os.Lchown(p, 1000, 1000)
}
runRootless := func(args []string) {
// Check if we can create an user namespace
err := exec.Command("unshare", "-r", "echo", "hello").Run()
@ -75,13 +82,6 @@ var _ = Describe("Podman rootless", func() {
Expect(mount.ExitCode()).To(Equal(0))
mountPath := mount.OutputToString()
chownFunc := func(p string, info os.FileInfo, err error) error {
if err != nil {
return err
}
return os.Lchown(p, 1000, 1000)
}
err = filepath.Walk(tempdir, chownFunc)
if err != nil {
fmt.Printf("cannot chown the directory: %q\n", err)
@ -160,6 +160,26 @@ var _ = Describe("Podman rootless", func() {
Expect(umount.ExitCode()).To(Equal(0))
}
It("podman rootless search", func() {
xdgRuntimeDir, err := ioutil.TempDir("/run", "")
Expect(err).To(BeNil())
defer os.RemoveAll(xdgRuntimeDir)
err = filepath.Walk(xdgRuntimeDir, chownFunc)
Expect(err).To(BeNil())
home, err := CreateTempDirInTempDir()
Expect(err).To(BeNil())
err = filepath.Walk(xdgRuntimeDir, chownFunc)
Expect(err).To(BeNil())
env := os.Environ()
env = append(env, fmt.Sprintf("XDG_RUNTIME_DIR=%s", xdgRuntimeDir))
env = append(env, fmt.Sprintf("HOME=%s", home))
cmd := podmanTest.PodmanAsUser([]string{"search", "docker.io/busybox"}, 1000, 1000, env)
cmd.WaitWithDefaultTimeout()
Expect(cmd.ExitCode()).To(Equal(0))
})
It("podman rootless rootfs", func() {
runRootless([]string{})
})