Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #817 from bpradipt/backport-1.11
Browse files Browse the repository at this point in the history
oci: Fix running of OCI hooks
  • Loading branch information
egernst authored Aug 27, 2020
2 parents f6cf969 + 89b9678 commit 466db3f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 14 deletions.
7 changes: 5 additions & 2 deletions grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -676,14 +676,14 @@ func (a *agentGRPC) CreateContainer(ctx context.Context, req *pb.CreateContainer
a.sandbox.addGuestHooks(ociSpec)

// write the OCI spec to a file so that hooks can read it
err = writeSpecToFile(ociSpec)
err = writeSpecToFile(ociSpec, req.ContainerId)
if err != nil {
return emptyResp, err
}

// Change cwd because libcontainer assumes the bundle path is the cwd:
// https://github.com/opencontainers/runc/blob/v1.0.0-rc5/libcontainer/specconv/spec_linux.go#L157
oldcwd, err := changeToBundlePath(ociSpec)
oldcwd, err := changeToBundlePath(ociSpec, req.ContainerId)
if err != nil {
return emptyResp, err
}
Expand Down Expand Up @@ -1298,6 +1298,9 @@ func (a *agentGRPC) RemoveContainer(ctx context.Context, req *pb.RemoveContainer
}
}

configJsonDir := filepath.Join("/run/libcontainer/", req.ContainerId)
//Best effort.. Ignore any errors in the deletion of the directory
_ = os.RemoveAll(configJsonDir)
delete(a.sandbox.containers, ctr.id)

return emptyResp, nil
Expand Down
22 changes: 14 additions & 8 deletions oci.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@ import (
const (
ociConfigFile string = "config.json"
ociConfigFileMode os.FileMode = 0444
ociConfigBasePath string = "/run/libcontainer"
)

// writeSpecToFile writes the container's OCI spec to "dirname(spec.Root.Path)/config.json"
// This effectively makes the parent directory a valid OCI bundle.
func writeSpecToFile(spec *specs.Spec) error {
bundlePath := filepath.Dir(spec.Root.Path)
configPath := filepath.Join(bundlePath, ociConfigFile)
// writeSpecToFile writes the container's OCI spec to "/run/libcontainer/<container-id>/config.json"
// Note that the OCI bundle (rootfs) is at a different path
func writeSpecToFile(spec *specs.Spec, containerId string) error {
configJsonDir := filepath.Join(ociConfigBasePath, containerId)
err := os.MkdirAll(configJsonDir, 0700)
if err != nil {
return err
}
configPath := filepath.Join(configJsonDir, ociConfigFile)
f, err := os.OpenFile(configPath, os.O_WRONLY|os.O_CREATE, ociConfigFileMode)
if err != nil {
return err
Expand All @@ -40,7 +45,7 @@ func writeSpecToFile(spec *specs.Spec) error {

// changeToBundlePath changes the cwd to the OCI bundle path defined as
// dirname(spec.Root.Path) and returns the old cwd.
func changeToBundlePath(spec *specs.Spec) (string, error) {
func changeToBundlePath(spec *specs.Spec, containerId string) (string, error) {
cwd, err := os.Getwd()
if err != nil {
return cwd, err
Expand All @@ -51,9 +56,10 @@ func changeToBundlePath(spec *specs.Spec) (string, error) {
}

bundlePath := filepath.Dir(spec.Root.Path)
configPath := filepath.Join(bundlePath, ociConfigFile)
configPath := filepath.Join(ociConfigBasePath, containerId, ociConfigFile)

// Verify that config.json is present at the root of the bundle path.
// config.json is at "/run/libcontainer/<container-id>/"
// Actual bundle (rootfs) is at dirname(spec.Root.Path)
if _, err := os.Stat(configPath); err != nil {
return cwd, errors.New("invalid OCI bundle")
}
Expand Down
19 changes: 15 additions & 4 deletions oci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import (
)

func TestChangeToBundlePath(t *testing.T) {
skipUnlessRoot(t)
containerId := "1"
assert := assert.New(t)

originalCwd, err := os.Getwd()
Expand All @@ -37,15 +39,15 @@ func TestChangeToBundlePath(t *testing.T) {
Readonly: false,
}

_, err = changeToBundlePath(spec)
_, err = changeToBundlePath(spec, containerId)
assert.Error(err)

// Write the spec file to create a valid OCI bundle
spec.Root.Path = rootfsPath
err = writeSpecToFile(spec)
err = writeSpecToFile(spec, containerId)
assert.NoError(err)

cwd, err := changeToBundlePath(spec)
cwd, err := changeToBundlePath(spec, containerId)
assert.NoError(err)
assert.Equal(cwd, originalCwd)

Expand All @@ -55,6 +57,8 @@ func TestChangeToBundlePath(t *testing.T) {
}

func TestWriteSpecToFile(t *testing.T) {
skipUnlessRoot(t)
containerId := "1"
assert := assert.New(t)

bundlePath, err := ioutil.TempDir("", "bundle")
Expand All @@ -75,10 +79,17 @@ func TestWriteSpecToFile(t *testing.T) {
Readonly: false,
},
}
err = writeSpecToFile(spec)
err = writeSpecToFile(spec, containerId)
assert.NoError(err)

file, err := os.Open(path.Join(bundlePath, ociConfigFile))
assert.Error(err)
defer file.Close()

_, err = file.Stat()
assert.Error(err)

file, err = os.Open(path.Join("/run/libcontainer/", containerId, ociConfigFile))
assert.NoError(err)
defer file.Close()

Expand Down

0 comments on commit 466db3f

Please sign in to comment.