Skip to content

Commit

Permalink
Move ToOCI functions out of specs-go package
Browse files Browse the repository at this point in the history
This change moves the ToOCI functions to the cdi package instead
of having them implemented in the specs-go package. This means
that there is no dependency on the OCI runtime spec for clients that
only need a CDI spec definition.

Signed-off-by: Evan Lezar <[email protected]>
  • Loading branch information
elezar committed May 28, 2024
1 parent d7f8736 commit e394a57
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 15 deletions.
34 changes: 24 additions & 10 deletions pkg/cdi/container-edits.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func (e *ContainerEdits) Apply(spec *oci.Spec) error {
if err != nil {
return err
}
dev := d.ToOCI()
dev := dn.ToOCI()
if dev.UID == nil && spec.Process != nil {
if uid := spec.Process.User.UID; uid > 0 {
dev.UID = &uid
Expand All @@ -116,29 +116,30 @@ func (e *ContainerEdits) Apply(spec *oci.Spec) error {
if len(e.Mounts) > 0 {
for _, m := range e.Mounts {
specgen.RemoveMount(m.ContainerPath)
specgen.AddMount(m.ToOCI())
specgen.AddMount((&Mount{m}).ToOCI())
}
sortMounts(&specgen)
}

for _, h := range e.Hooks {
ociHook := (&Hook{h}).ToOCI()
switch h.HookName {
case PrestartHook:
specgen.AddPreStartHook(h.ToOCI())
specgen.AddPreStartHook(ociHook)
case PoststartHook:
specgen.AddPostStartHook(h.ToOCI())
specgen.AddPostStartHook(ociHook)
case PoststopHook:
specgen.AddPostStopHook(h.ToOCI())
specgen.AddPostStopHook(ociHook)
// TODO: Maybe runtime-tools/generate should be updated with these...
case CreateRuntimeHook:
ensureOCIHooks(spec)
spec.Hooks.CreateRuntime = append(spec.Hooks.CreateRuntime, h.ToOCI())
spec.Hooks.CreateRuntime = append(spec.Hooks.CreateRuntime, ociHook)
case CreateContainerHook:
ensureOCIHooks(spec)
spec.Hooks.CreateContainer = append(spec.Hooks.CreateContainer, h.ToOCI())
spec.Hooks.CreateContainer = append(spec.Hooks.CreateContainer, ociHook)
case StartContainerHook:
ensureOCIHooks(spec)
spec.Hooks.StartContainer = append(spec.Hooks.StartContainer, h.ToOCI())
spec.Hooks.StartContainer = append(spec.Hooks.StartContainer, ociHook)
default:
return fmt.Errorf("unknown hook name %q", h.HookName)
}
Expand All @@ -148,7 +149,7 @@ func (e *ContainerEdits) Apply(spec *oci.Spec) error {
// The specgen is missing functionality to set all parameters so we
// just piggy-back on it to initialize all structs and the copy over.
specgen.SetLinuxIntelRdtClosID(e.IntelRdt.ClosID)
spec.Linux.IntelRdt = e.IntelRdt.ToOCI()
spec.Linux.IntelRdt = (&IntelRdt{e.IntelRdt}).ToOCI()
}

for _, additionalGID := range e.AdditionalGIDs {
Expand Down Expand Up @@ -186,7 +187,7 @@ func (e *ContainerEdits) Validate() error {
}
}
if e.IntelRdt != nil {
if err := ValidateIntelRdt(e.IntelRdt); err != nil {
if err := (&IntelRdt{e.IntelRdt}).Validate(); err != nil {
return err
}
}
Expand Down Expand Up @@ -321,8 +322,21 @@ func (m *Mount) Validate() error {
return nil
}

// IntelRdt is a CDI IntelRdt wrapper.
// This is used for validation and conversion to OCI specifications.
type IntelRdt struct {
*specs.IntelRdt
}

// ValidateIntelRdt validates the IntelRdt configuration.
//
// Deprecated: ValidateIntelRdt is deprecated use IntelRdt.Validate() instead.
func ValidateIntelRdt(i *specs.IntelRdt) error {
return (&IntelRdt{i}).Validate()
}

// Validate validates the IntelRdt configuration.
func (i *IntelRdt) Validate() error {
// ClosID must be a valid Linux filename
if len(i.ClosID) >= 4096 || i.ClosID == "." || i.ClosID == ".." || strings.ContainsAny(i.ClosID, "/\n") {
return errors.New("invalid ClosID")
Expand Down
18 changes: 17 additions & 1 deletion specs-go/oci.go → pkg/cdi/oci.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
package specs
/*
Copyright © 2021 The CDI Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package cdi

import (
spec "github.com/opencontainers/runtime-spec/specs-go"
Expand Down
2 changes: 0 additions & 2 deletions specs-go/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module tags.cncf.io/container-device-interface/specs-go

go 1.19

require github.com/opencontainers/runtime-spec v1.1.0
2 changes: 0 additions & 2 deletions specs-go/go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
github.com/opencontainers/runtime-spec v1.1.0 h1:HHUyrt9mwHUjtasSbXSMvs4cyFxh+Bll4AjJ9odEGpg=
github.com/opencontainers/runtime-spec v1.1.0/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=

0 comments on commit e394a57

Please sign in to comment.